/* ============================================================
   Natural Living Chiropractic & Acupuncture — spec preview
   Woodcrest Marketing
   ============================================================ */

:root {
  /* brand */
  --forest: #3c5240;
  --forest-deep: #2c3d30;
  --forest-soft: #55705a;
  --cream: #f4efe4;
  --cream-deep: #ece4d2;
  --paper: #fbf8f1;
  --gold: #c08a4e;
  --gold-deep: #a5713a;
  --ink: #26302a;
  --ink-soft: #55605a;
  --line: rgba(60, 82, 64, 0.16);

  /* type */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* fluid type scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2: clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
  --step-3: clamp(1.95rem, 1.7rem + 1.25vw, 2.9rem);
  --step-4: clamp(2.5rem, 2.05rem + 2.25vw, 4.2rem);
  --step-5: clamp(2.65rem, 1.95rem + 3.4vw, 5.5rem);

  /* space */
  --space-section: clamp(4.5rem, 3rem + 6vw, 9rem);
  --gutter: clamp(1.25rem, 0.8rem + 2.2vw, 3.5rem);
  --maxw: 1240px;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 22px 55px -30px rgba(30, 44, 34, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.68;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* whisper of paper grain over the whole page so flat fills read as warm
   stock, not digital paint. Barely-there, non-interactive, print-like. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.038;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* header and any fixed UI must sit above the grain */
.site-header { z-index: 100; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
ul { list-style: none; padding: 0; }

::selection { background: var(--gold); color: #fff; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  background: var(--forest);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- shared ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  font-family: var(--sans);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1.5px;
  margin-right: 0.85rem;
  background: currentColor;
  opacity: 0.85;
  flex-shrink: 0;
}
.eyebrow-light { color: #e8c79b; }

/* botanical leaf sprig — the brand's one organic motif */
.sprig {
  display: inline-flex;
  color: var(--gold);
  line-height: 0;
}
.sprig svg { width: 30px; height: auto; display: block; }
.sprig-lg svg { width: 42px; }
.sprig-light { color: #e6c398; }

.section-title {
  font-size: var(--step-3);
  max-width: 20ch;
  color: var(--forest-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}
.btn-lg { padding: 1rem 1.9rem; font-size: var(--step-0); }
.btn-solid { background: var(--forest); color: var(--cream); box-shadow: 0 12px 30px -14px rgba(44, 61, 48, 0.9); }
.btn-solid:hover { background: var(--forest-deep); transform: translateY(-3px); box-shadow: 0 18px 34px -14px rgba(44, 61, 48, 0.95); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(244, 239, 228, 0.55); }
.btn-ghost:hover { background: rgba(244, 239, 228, 0.14); transform: translateY(-3px); border-color: var(--cream); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(232, 199, 155, 0.6); }
.btn-outline-light:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0.4rem 0;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.7rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand { flex-shrink: 0; display: inline-flex; }
.brand-mark {
  height: 56px; width: auto;
  border-radius: 8px;
  background: #fff;
  padding: 6px 10px;
  box-shadow: 0 10px 26px -14px rgba(0,0,0,0.45);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.brand:hover .brand-mark { transform: scale(1.04); }

.site-nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  margin-left: auto;
}
.site-nav a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--cream);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-cta { flex-shrink: 0; }

/* scrolled state (added by JS) */
.site-header.scrolled {
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: saturate(1.4) blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(0,0,0,0.4);
}
.site-header.scrolled .site-nav a { color: var(--forest-deep); }
.site-header.scrolled .brand-mark { box-shadow: 0 4px 14px -10px rgba(0,0,0,0.35); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  /* capped height: on a tall full-page render, svh would balloon the hero and
     swallow the whole page — min() keeps it a sane, editorial band. */
  min-height: min(94svh, 858px);
  display: flex;
  align-items: flex-end;
  padding: clamp(6.5rem, 8vw, 9rem) 0 clamp(2.5rem, 5vw, 4rem);
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 32%;
  transform: scale(1.08);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(24,35,27,0.42) 0%, rgba(24,35,27,0.05) 24%, rgba(20,30,23,0.5) 58%, rgba(16,25,19,0.93) 100%),
    linear-gradient(78deg, rgba(17,26,20,0.92) 0%, rgba(17,26,20,0.55) 34%, rgba(17,26,20,0.12) 60%, rgba(17,26,20,0) 78%);
}
/* soft seam that blends the photograph's foot into the forest strip below */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 26%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(60,82,64,0) 0%, rgba(60,82,64,0.35) 62%, var(--forest) 100%);
}
.hero-shell {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: clamp(1.75rem, 4vw, 3rem);
}
.hero-content {
  color: var(--cream);
  max-width: 42rem;
}
.hero-content .eyebrow { color: #ecc999; }
.hero-content .eyebrow::before { width: 2.6rem; opacity: 1; }
.hero-title {
  font-size: var(--step-5);
  max-width: 15ch;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-shadow: 0 6px 44px rgba(12, 20, 14, 0.55);
}
.hero-sub {
  font-size: var(--step-1);
  max-width: 46ch;
  margin-top: 1.5rem;
  color: rgba(247, 244, 236, 0.94);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}
.hero-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(244, 239, 228, 0.28);
}

/* hero contact card fills the lower-right of the frame */
.hero-card {
  align-self: end;
  justify-self: start;
  background: rgba(24, 34, 27, 0.42);
  border: 1px solid rgba(244, 239, 228, 0.22);
  backdrop-filter: saturate(1.3) blur(14px);
  -webkit-backdrop-filter: saturate(1.3) blur(14px);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  color: var(--cream);
  box-shadow: 0 26px 60px -34px rgba(0,0,0,0.8);
  max-width: 22rem;
}
.hero-card-eyebrow {
  font-family: var(--sans);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #ecc999;
  margin-bottom: 0.85rem;
}
.hero-card-address {
  font-family: var(--serif);
  font-size: var(--step-1);
  line-height: 1.35;
  color: #fff;
}
.hero-card-phone {
  display: inline-block;
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-size: var(--step-2);
  color: #fff;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.hero-card-phone:hover { color: #ecc999; }
.hero-card-note {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  color: rgba(244, 239, 228, 0.82);
}
.hero-marks li {
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  color: rgba(247, 244, 236, 0.92);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.hero-marks li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- philosophy strip ---------- */
.strip {
  position: relative;
  background: var(--forest);
  color: var(--cream);
  padding: clamp(3.5rem, 6vw, 6rem) var(--gutter);
  overflow: hidden;
}
.strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 120% at 12% 0%, rgba(192, 138, 78, 0.18), transparent 60%),
    radial-gradient(50% 120% at 100% 100%, rgba(85, 112, 90, 0.4), transparent 60%);
  pointer-events: none;
}
.strip-inner {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.strip-inner .sprig { margin-bottom: 1.6rem; }
.strip-line {
  position: relative;
  max-width: 26ch;
  font-family: var(--serif);
  font-size: var(--step-3);
  line-height: 1.3;
  color: #f6f0e1;
  font-weight: 500;
  letter-spacing: -0.012em;
}
.strip-kicker {
  margin-top: 1.9rem;
  font-family: var(--sans);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: #e6c398;
}
.strip-kicker::before,
.strip-kicker::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  vertical-align: middle;
  background: currentColor;
  opacity: 0.55;
}
.strip-kicker::before { margin-right: 0.9rem; }
.strip-kicker::after { margin-left: 0.9rem; }

/* ---------- about ---------- */
.about {
  padding: var(--space-section) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about-media {
  position: relative;
  min-height: 340px;
  isolation: isolate;
}
/* thin botanical-gold frame offset behind the tall image */
.about-media::after {
  content: "";
  position: absolute;
  top: -1.15rem; right: -1.15rem;
  width: 62%;
  height: 62%;
  border: 1.5px solid rgba(192, 138, 78, 0.42);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.about-img-a {
  position: relative;
  z-index: 1;
  width: 78%;
  aspect-ratio: 4 / 5;
  margin-left: auto;
}
.about-img-b {
  position: absolute;
  z-index: 2;
  bottom: -1.5rem; left: 0;
  width: 48%;
  aspect-ratio: 1 / 1;
  border: 6px solid var(--paper);
}
.about-copy p { color: var(--ink-soft); margin-top: 1.2rem; max-width: 54ch; }
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1.5rem 2.5rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  max-width: max-content;
}
.about-facts dt {
  font-family: var(--sans);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.about-facts dd {
  font-family: var(--serif);
  font-size: var(--step-1);
  color: var(--forest-deep);
}

/* ---------- services ---------- */
.services {
  background: var(--cream);
  padding: var(--space-section) var(--gutter);
}
.services-head, .stages-head, .voices-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
}
.service-row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.75rem) 0;
  border-top: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-media { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.service-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.service-row:hover .service-media img { transform: scale(1.06); }
.service-text {
  position: relative;
  padding-top: 0.5rem;
}
.service-index {
  font-family: var(--serif);
  font-size: clamp(3rem, 2rem + 3vw, 4.5rem);
  font-weight: 600;
  line-height: 0.8;
  color: rgba(192, 138, 78, 0.55);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@supports (-webkit-text-stroke: 1px black) {
  .service-index {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(192, 138, 78, 0.6);
  }
}
.service-text h3 {
  font-size: var(--step-2);
  color: var(--forest-deep);
  margin-bottom: 0.8rem;
}
.service-text p { color: var(--ink-soft); max-width: 50ch; }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}
.service-tags li {
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--forest);
  background: rgba(60, 82, 64, 0.06);
  border: 1px solid rgba(60, 82, 64, 0.16);
  border-radius: 999px;
  padding: 0.34rem 0.85rem;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.service-row:hover .service-tags li {
  border-color: rgba(192, 138, 78, 0.4);
}

/* ---------- stages ---------- */
.stages {
  padding: var(--space-section) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.stages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.stage-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.stage-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
  z-index: 3;
}
.stage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.stage-card:hover::after { transform: scaleX(1); }
.stage-media { overflow: hidden; }
.stage-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.stage-card:hover .stage-media img { transform: scale(1.06); }
.stage-body { padding: 1.5rem 1.5rem 1.75rem; }
.stage-body h3 { font-size: var(--step-1); color: var(--forest-deep); margin-bottom: 0.6rem; }
.stage-body p { color: var(--ink-soft); font-size: var(--step-0); }

/* ---------- testimonials ---------- */
.voices {
  background: var(--forest-deep);
  color: var(--cream);
  padding: var(--space-section) var(--gutter);
}
.voices-head .section-title { color: #fff; }
.voices-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.voice {
  background: rgba(244, 239, 228, 0.06);
  border: 1px solid rgba(244, 239, 228, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
}
.voice::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  position: absolute;
  top: 0.75rem; left: 1.25rem;
  opacity: 0.6;
}
.voice blockquote {
  font-family: var(--serif);
  font-size: var(--step-1);
  line-height: 1.5;
  color: #f3eddf;
  padding-top: 1.75rem;
  max-width: 46ch;
}
.voice figcaption {
  margin-top: 1.25rem;
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ecc999;
  font-weight: 600;
}

/* ---------- visit / CTA ---------- */
.visit {
  position: relative;
  isolation: isolate;
  color: var(--cream);
  padding: clamp(4rem, 7vw, 8rem) var(--gutter);
}
.visit-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.visit-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.visit-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(28,40,31,0.94) 0%, rgba(28,40,31,0.82) 45%, rgba(28,40,31,0.62) 100%);
}
.visit-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.visit-copy .sprig { margin-bottom: 1.1rem; }
.visit-title { font-size: var(--step-4); color: #fff; max-width: 14ch; }
.visit-lede { margin-top: 1.25rem; max-width: 44ch; color: rgba(247,244,236,0.9); font-size: var(--step-1); line-height: 1.55; }
.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}
.detail-block h3 {
  font-family: var(--sans);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ecc999;
  margin-bottom: 0.5rem;
}
.detail-block p, .detail-block a { color: #f3eddf; text-decoration: none; }
.detail-block a { border-bottom: 1px solid rgba(236,201,153,0.5); transition: border-color 0.3s var(--ease); }
.detail-block a:hover { border-color: #ecc999; }
.detail-hours { grid-column: 1 / -1; }
.detail-hours ul { display: grid; gap: 0.3rem; }
.detail-hours li {
  display: flex;
  gap: 0.75rem;
  font-size: var(--step--1);
  color: rgba(243,237,223,0.9);
}
.detail-hours li span {
  width: 2.6rem;
  color: #ecc999;
  font-weight: 600;
  flex-shrink: 0;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(3rem, 5vw, 4.5rem) var(--gutter) 0;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand img {
  height: 72px; width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 1.2rem;
}
.footer-brand p { color: rgba(244,239,228,0.8); max-width: 42ch; font-size: var(--step--1); }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-cols h4 {
  font-family: var(--sans);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ecc999;
  margin-bottom: 1rem;
}
.footer-cols li { margin-bottom: 0.55rem; font-size: var(--step--1); color: rgba(244,239,228,0.82); }
.footer-cols a { text-decoration: none; transition: color 0.3s var(--ease); }
.footer-cols a:hover { color: #fff; }
.footer-base {
  border-top: 1px solid rgba(244,239,228,0.18);
  padding: 1.5rem 0;
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-base p { font-size: 0.8rem; color: rgba(244,239,228,0.6); }

/* ---------- spec footer ---------- */
.spec-footer {
  background: #1c241e;
  color: rgba(244,239,228,0.72);
  font-family: var(--sans);
  font-size: 0.8rem;
  text-align: center;
  padding: 1.1rem var(--gutter);
  line-height: 1.6;
}
.spec-footer a { color: #ecc999; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* stagger children within a group */
.hero-content .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero-content .reveal:nth-child(2) { transition-delay: 0.15s; }
.hero-content .reveal:nth-child(3) { transition-delay: 0.28s; }
.hero-content .reveal:nth-child(4) { transition-delay: 0.4s; }
.hero-content .reveal:nth-child(5) { transition-delay: 0.52s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 720px) {
  .stages-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1.4fr 1fr; }
}

@media (min-width: 880px) {
  /* hero: headline block left-bottom, contact card sits into the lower-right */
  .hero-shell {
    grid-template-columns: minmax(0, 1.55fr) minmax(15rem, 0.9fr);
    align-items: end;
  }
  .hero-card { justify-self: end; margin-bottom: 0.25rem; }
}

@media (min-width: 960px) {
  .about-grid { grid-template-columns: 0.9fr 1.1fr; }
  .service-row {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 4vw, 5rem);
  }
  .service-row-alt .service-media { order: 2; }

  /* Editorial, asymmetric 2x2: the left column runs wider */
  .stages-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .stage-card-tall .stage-media img { aspect-ratio: 4 / 3; }

  .visit-inner { grid-template-columns: 1.1fr 0.9fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* header collapses cta on small screens */
@media (max-width: 860px) {
  .site-nav { display: none; }
}
@media (max-width: 700px) {
  /* stack hero buttons full-width so nothing clips at the edge */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; }
  .hero-card { max-width: 100%; padding: 1.25rem 1.35rem; }
  .hero-card-phone { font-size: var(--step-1); }
  /* keep the hero kicker on one clean line over a busy photo */
  .hero-content .eyebrow { letter-spacing: 0.14em; }
  .hero-content .eyebrow::before { width: 1.75rem; margin-right: 0.6rem; }
  .hero { padding-top: 5.5rem; }
}
@media (max-width: 480px) {
  .header-cta .btn-label { font-size: 0.8rem; }
  .header-inner { gap: 0.75rem; }
  .about-img-a { width: 88%; }
  .about-img-b { width: 52%; }
  .visit-details { grid-template-columns: 1fr; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-img { animation: none; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
