/* ============================================
   Up n' Running Technologies — site stylesheet
   ============================================ */

:root {
  --ink:        #0a0a0a;
  --ink-2:      #15151a;
  --ink-3:      #242429;
  --paper:      #f4efe5;
  --paper-2:    #ebe4d3;
  --paper-3:    #ddd3bd;
  --rule:       #c9bda3;
  --rule-soft:  #e0d6bf;
  --text:       #1a1f23;
  --text-soft:  #565d66;
  --accent:     #c2410c;
  --accent-2:   #9a3208;
  --accent-3:   #f5a76b;
  --white:      #fbf8f0;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-2); }

img { display: block; max-width: 100%; height: auto; }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.wrap-narrow { max-width: 880px; }

/* ============================================
   HEADER
   ============================================ */
header.site {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--ink-3);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 24px;
}
.logo-link {
  display: block;
  flex-shrink: 0;
}
.logo {
  height: 44px;
  width: auto;
  display: block;
}
nav.site {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav.site a {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
nav.site a:hover {
  background: var(--ink-3);
  color: var(--white);
}
nav.site a.current::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
}
nav.site .cta {
  background: var(--accent);
  color: var(--white);
  margin-left: 12px;
  padding: 11px 20px;
  font-weight: 600;
}
nav.site .cta:hover {
  background: var(--accent-2);
  color: var(--white);
}

@media (max-width: 720px) {
  header.site .wrap { flex-direction: column; gap: 16px; }
  nav.site { flex-wrap: wrap; justify-content: center; gap: 2px; }
  nav.site a { padding: 8px 12px; font-size: 13px; }
  nav.site .cta { margin-left: 0; margin-top: 4px; }
  .logo { height: 44px; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.display {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-variation-settings: "opsz" 32;
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.display em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 32;
}

h1.hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-variation-settings: "opsz" 32;
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 0 clamp(64px, 5vw, 80px);
  color: var(--white);
}
h1.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 32;
}

h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-variation-settings: "opsz" 32;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  color: var(--ink);
}
h2 em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 32;
}

h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-variation-settings: "opsz" 24;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.2;
}

h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0;
  margin: 0 0 8px;
  color: var(--ink);
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
  font-weight: 500;
}
.eyebrow.muted { color: var(--text-soft); }
.eyebrow.dark-bg { color: var(--accent-3); }

.lede {
  font-family: 'Inter', sans-serif;
  font-size: 21px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0 0 32px;
  font-weight: 400;
}
.lede.dark-bg { color: rgba(251,248,240,0.78); }

p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0;
  border: none;
  cursor: pointer;
  transition: transform 0.12s, background 0.15s, border-color 0.15s, color 0.15s;
  text-decoration: none;
  border-radius: 2px;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-2);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(251,248,240,0.32);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(251,248,240,0.06);
  color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.15s;
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================
   HERO (homepage)
   ============================================ */
.hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(194,65,12,0.18) 0%, transparent 50%);
  background-position: 85% 15%;
  background-size: 1200px 1200px;
  background-repeat: no-repeat;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}
.hero .wrap {
  padding-top: 56px;
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.hero-title {
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 21px;
  line-height: 1.5;
  color: rgba(251,248,240,0.8);
  max-width: 680px;
  margin: 0 0 28px;
  font-weight: 400;
}
.hero-meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(251,248,240,0.55);
  letter-spacing: 0.05em;
}
.hero-meta .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================
   SECTION SHELLS
   ============================================ */
section {
  padding: 100px 0;
  position: relative;
}
section.tight { padding: 72px 0; }
section.dark {
  background: var(--ink);
  color: var(--white);
}
section.dark h2 { color: var(--white); }
section.dark h3 { color: var(--white); }
section.dark h4 { color: var(--white); }

.section-head {
  margin-bottom: 64px;
}
.section-head h2 { max-width: 760px; }
.section-head .lede { max-width: 640px; margin-bottom: 0; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.svc {
  background: transparent;
  padding: 36px 32px 40px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s;
  position: relative;
}
.svc:hover {
  background: var(--paper-2);
}
.svc .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  display: block;
}
.svc .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  color: var(--ink);
}
.svc h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.svc p {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1024px) {
  .services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services { grid-template-columns: 1fr; }
}

/* ============================================
   WHY US (editorial split)
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 16px;
}
.why-item {
  position: relative;
}
.why-item .why-num {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 16px;
  font-variation-settings: "opsz" 32;
  letter-spacing: -0.04em;
}
.why-item p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================
   SOVEREIGN AI WEDGE
   ============================================ */
.wedge {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.wedge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.wedge .wrap {
  padding: 110px 32px;
  position: relative;
  z-index: 1;
}
.wedge-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
}
.wedge h2 {
  font-size: clamp(40px, 5.5vw, 68px);
  margin-bottom: 24px;
  color: var(--white);
}
.wedge h2 em {
  color: var(--accent-3);
}
.wedge-lede {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(251,248,240,0.78);
  margin: 0 0 32px;
}
.wedge-points {
  border-top: 1px solid rgba(251,248,240,0.12);
}
.wedge-point {
  padding: 22px 0;
  border-bottom: 1px solid rgba(251,248,240,0.12);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  align-items: start;
}
.wedge-point .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent-3);
  letter-spacing: 0.15em;
  padding-top: 4px;
}
.wedge-point h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--white);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.wedge-point p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(251,248,240,0.65);
  margin: 0;
}

@media (max-width: 880px) {
  .wedge-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   SERVICE AREA
   ============================================ */
.area {
  background: var(--paper-2);
}
.area .wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.towns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.town {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: all 0.15s;
}
.town:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

@media (max-width: 880px) {
  .area .wrap { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-strip h2 {
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: clamp(36px, 5vw, 56px);
}
.cta-strip .lede {
  max-width: 560px;
  margin: 0 auto 40px;
  color: rgba(251,248,240,0.7);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  background: var(--ink);
  color: var(--white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}
.about-hero .wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
.about-hero h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-size: clamp(54px, 7.5vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--white);
  margin: 0;
  font-variation-settings: "opsz" 32;
}
.about-hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.about-hero .eyebrow {
  display: block;
  margin-bottom: 32px;
  color: var(--accent-3);
}

.story {
  padding: 100px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.story-meta {
  position: sticky;
  top: 120px;
}
.story-meta .eyebrow {
  margin-bottom: 16px;
}
.story-meta h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  margin-bottom: 0;
}
.story-body {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text);
}
.story-body p {
  margin-bottom: 28px;
}
.story-body p.lift {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 28px;
  margin: 36px 0;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.story-body strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-meta { position: static; }
}

/* Principles section */
.principles {
  background: var(--paper-2);
  padding: 100px 0;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.principle {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.principle .pnum {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  display: block;
}
.principle h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.principle p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 880px) {
  .principles-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  background: var(--ink);
  color: var(--white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}
.contact-hero .wrap {
  position: relative;
  z-index: 1;
}
.contact-hero h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-size: clamp(54px, 7.5vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--white);
  margin: 0 0 24px;
  font-variation-settings: "opsz" 32;
  max-width: 900px;
}
.contact-hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.contact-hero .lede {
  font-size: 22px;
  color: rgba(251,248,240,0.78);
  max-width: 620px;
  margin-bottom: 0;
}

.contact-methods {
  padding: 0;
  background: var(--paper);
}
.contact-methods .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--rule);
}
.contact-method {
  padding: 56px 36px 64px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  transition: background 0.2s;
}
.contact-method:hover {
  background: var(--paper-2);
}
.contact-method .cmeta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-method .cmeta .num {
  color: var(--text-soft);
}
.contact-method h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 12px;
  font-style: italic;
  color: var(--text-soft);
  letter-spacing: -0.005em;
}
.contact-method .value {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: block;
  margin-bottom: 16px;
  line-height: 1.1;
  word-break: break-word;
}
.contact-method .value a {
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.contact-method .value a:hover {
  color: var(--accent);
}
.contact-method .note {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 880px) {
  .contact-methods .wrap { grid-template-columns: 1fr; border-left: none; }
  .contact-method { padding: 40px 28px; }
  .contact-method .value { font-size: 26px; }
}

.hours-section {
  padding: 100px 0;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}
.hours-list .day {
  color: var(--text);
  font-weight: 500;
  flex-shrink: 0;
}
.hours-list .time {
  color: var(--text-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  text-align: right;
}
.hours-list .time.closed {
  color: var(--accent);
}
.hours-list .time.emergency {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .hours-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================
   FOOTER
   ============================================ */
footer.site {
  background: var(--ink);
  color: rgba(251,248,240,0.6);
  padding: 72px 0 36px;
  position: relative;
}
footer.site::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}
footer.site .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
footer.site h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin: 0 0 20px;
  font-weight: 500;
}
footer.site .ftagline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 20px 0 0;
  max-width: 320px;
}
footer.site .flogo {
  height: 44px;
  width: auto;
  margin-bottom: 4px;
}
footer.site ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.site ul li {
  margin-bottom: 12px;
}
footer.site ul a {
  color: rgba(251,248,240,0.7);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}
footer.site ul a:hover {
  color: var(--white);
}
footer.site .contact-block {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(251,248,240,0.7);
}
footer.site .contact-block a {
  color: rgba(251,248,240,0.85);
}
footer.site .contact-block a:hover {
  color: var(--white);
}
footer.site .legal {
  border-top: 1px solid rgba(251,248,240,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(251,248,240,0.45);
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  footer.site .wrap { grid-template-columns: 1fr 1fr; gap: 36px; }
  footer.site .ftagline { font-size: 18px; }
}
@media (max-width: 560px) {
  footer.site .wrap { grid-template-columns: 1fr; }
  footer.site .legal { flex-direction: column; gap: 8px; }
}

/* ============================================
   LOAD-IN ANIMATION
   ============================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow,
.hero-title,
.hero-lede,
.hero .btn-row,
.hero-meta,
.about-hero .eyebrow,
.about-hero h1,
.contact-hero .eyebrow,
.contact-hero h1,
.contact-hero .lede {
  animation: rise 0.7s ease both;
}
.hero-title, .about-hero h1, .contact-hero h1 { animation-delay: 0.06s; }
.hero-lede, .contact-hero .lede { animation-delay: 0.16s; }
.hero .btn-row { animation-delay: 0.26s; }
.hero-meta { animation-delay: 0.36s; }

/* prevent animation on reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
