/* =========================================================
   Center Point Integrative Health — Spec preview
   Woodcrest Marketing
   ========================================================= */

:root {
  /* Brand */
  --forest: #1e3a2b;
  --forest-deep: #14271d;
  --forest-soft: #2c4d3a;
  --sage: #8fa593;
  --sage-light: #b9c8bb;
  --sage-mist: #dde5dd;
  --gold: #c89b2c;
  --gold-deep: #a67e1f;
  --cream: #f4f1e9;
  --cream-2: #faf8f2;
  --paper: #fffdf8;
  --ink: #1c241e;
  --ink-soft: #4a564c;
  --line: rgba(30, 58, 43, 0.14);

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

  /* Fluid type scale */
  --fs-xxl: clamp(2.8rem, 1.55rem + 5.3vw, 5.25rem);
  --fs-xl: clamp(2.1rem, 1.2rem + 3.8vw, 3.9rem);
  --fs-lg: clamp(1.6rem, 1.1rem + 2.1vw, 2.6rem);
  --fs-md: clamp(1.18rem, 1.04rem + 0.6vw, 1.45rem);
  --fs-base: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --fs-sm: 0.82rem;

  /* Space */
  --shell: min(92vw, 1240px);
  --gap: clamp(1rem, 0.6rem + 1.6vw, 2rem);
  --section-y: clamp(4.5rem, 3rem + 7vw, 9rem);

  --radius: 14px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(118% 78% at 86% -8%, rgba(143,165,147,0.26), transparent 52%),
    radial-gradient(86% 58% at -8% -2%, rgba(200,155,44,0.10), transparent 48%),
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 36%);
  background-repeat: no-repeat;
  background-attachment: scroll;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* whole-page warm grain — self-contained SVG, very low opacity */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.035; 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.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; }
h1, h2 { text-wrap: balance; }
h1 { font-feature-settings: "liga" 1; }
p { text-wrap: pretty; }

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--forest); color: var(--cream); padding: 0.7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  --b: var(--forest);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.92em 1.6em;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid var(--b);
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}
.btn-solid { background: var(--forest); color: var(--cream-2); box-shadow: 0 10px 24px -14px rgba(20,39,29,0.8); }
.btn-solid:hover { background: var(--forest-deep); transform: translateY(-3px); box-shadow: 0 18px 34px -16px rgba(20,39,29,0.85); }
.btn-ghost { background: transparent; color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: var(--cream-2); transform: translateY(-3px); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--forest-deep); box-shadow: 0 12px 26px -14px rgba(166,126,31,0.9); }
.btn-gold:hover { background: #d6aa3d; transform: translateY(-3px); box-shadow: 0 20px 36px -16px rgba(166,126,31,0.9); }
.btn-pill { background: var(--forest); color: var(--cream-2); padding: 0.66em 1.25em; font-size: 0.86rem; }
.btn-pill:hover { background: var(--gold); border-color: var(--gold); color: var(--forest-deep); transform: translateY(-2px); }

/* ============ HEADER ============ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 0.7rem 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(244, 241, 233, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 14px 30px -26px rgba(20,39,29,0.7);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--forest); }
.brand img { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.32rem; letter-spacing: 0.005em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--forest-soft); margin-top: 3px; }

.nav { display: flex; gap: clamp(1rem, 2.2vw, 2.1rem); }
.nav a {
  text-decoration: none; color: var(--forest); font-weight: 500; font-size: 0.95rem;
  position: relative; padding: 0.2rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1.5px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.32s var(--ease);
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }

/* ============ HERO ============ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  width: var(--shell); margin-inline: auto;
  padding-top: clamp(8rem, 5.5rem + 7vw, 11rem);
  padding-bottom: clamp(3.5rem, 2.5rem + 4vw, 6rem);
  min-height: clamp(620px, 86svh, 880px);
}
/* faint oversized monogram behind the headline for editorial depth */
.hero::before {
  content: "CP";
  position: absolute; left: -0.12em; top: clamp(4.5rem, 8vw, 7rem);
  font-family: var(--serif); font-weight: 400; font-size: clamp(14rem, 26vw, 30rem);
  line-height: 0.8; letter-spacing: -0.04em; color: rgba(30,58,43,0.045);
  z-index: 0; pointer-events: none; user-select: none;
}
.hero-copy, .hero-media { position: relative; z-index: 1; }
.eyebrow {
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 1.4rem;
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--gold); display: inline-block; }
.hero h1 { font-size: var(--fs-xxl); color: var(--forest); max-width: 14ch; }
.hero-lede { font-size: var(--fs-md); color: var(--ink-soft); max-width: 46ch; margin-top: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.2rem; }
.hero-marks {
  list-style: none; padding: 1.5rem 0 0; margin: 2.6rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.6rem 0;
  font-size: 0.82rem; color: var(--forest-soft); font-weight: 600;
  letter-spacing: 0.005em;
  border-top: 1px solid var(--line);
}
.hero-marks li {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding-right: 1.5rem; margin-right: 1.5rem;
  border-right: 1px solid var(--line);
}
.hero-marks li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero-marks li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(200,155,44,0.16);
}

.hero-media { position: relative; }
.hero-media > img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-lg);
  filter: saturate(1.04) contrast(1.02);
  box-shadow: 0 48px 80px -42px rgba(20,39,29,0.62), 0 2px 0 rgba(255,255,255,0.4);
}
/* warm grade overlay to tie the photo into the forest/gold palette */
.hero-media::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  width: 100%; aspect-ratio: 4 / 5; height: auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(158deg, rgba(200,155,44,0.12) 0%, transparent 40%, rgba(20,39,29,0.18) 100%);
  mix-blend-mode: multiply;
}
/* full offset frame behind the photo — deliberate editorial layering */
.hero-media::after {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg); z-index: 0; opacity: 0.55;
}
.hero-rings {
  position: absolute; right: -46px; top: -46px; width: 200px; height: 200px; z-index: 0;
  background:
    repeating-radial-gradient(circle at center, transparent 0 9px, rgba(143,165,147,0.72) 9px 10.6px);
  border-radius: 50%;
  -webkit-mask: radial-gradient(circle at center, #000 56%, transparent 72%);
          mask: radial-gradient(circle at center, #000 56%, transparent 72%);
}
.hero-card {
  position: absolute; z-index: 2; left: clamp(-12px, -1vw, -28px); bottom: 26px;
  background: var(--gold); color: var(--forest-deep);
  padding: 1.05rem 1.4rem; border-radius: 16px;
  box-shadow: 0 24px 44px -20px rgba(166,126,31,0.85);
  display: grid; gap: 1px;
}
.hero-card-k { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; opacity: 0.78; }
.hero-card-v { font-family: var(--serif); font-size: 2.5rem; line-height: 1; }
.hero-card-note { font-size: 0.74rem; font-weight: 600; opacity: 0.85; }

/* ============ TICKER ============ */
.ticker {
  background: var(--forest); color: var(--cream);
  overflow: hidden; padding: 0.95rem 0;
  border-block: 1px solid rgba(255,255,255,0.08);
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.ticker-track {
  display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap;
  font-family: var(--serif); font-size: 1.18rem; letter-spacing: 0.01em;
  animation: ticker 38s linear infinite;
}
.ticker-track .dot { color: var(--gold); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============ APPROACH ============ */
.approach {
  display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: center;
  gap: clamp(1.6rem, 4vw, 4.6rem);
  width: var(--shell); margin-inline: auto;
  padding-block: var(--section-y);
}
.approach-media { position: relative; }
.approach-media img {
  width: 100%; aspect-ratio: 4 / 5.1; object-fit: cover; border-radius: var(--radius-lg);
  filter: saturate(0.94) contrast(1.02) brightness(1.01);
  box-shadow: 0 36px 64px -42px rgba(20,39,29,0.55);
}
/* warm overlay pulls the cool coastal photo into the brand palette */
.approach-media::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(200,155,44,0.16) 0%, transparent 44%, rgba(30,58,43,0.16) 100%);
  mix-blend-mode: multiply;
}
.approach-media::after {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1.5px solid var(--sage); border-radius: var(--radius-lg); z-index: -1;
}
.kicker {
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: var(--gold-deep); margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; gap: 0.65rem;
}
.kicker::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); }
.kicker.light { color: var(--gold); }
.approach-copy h2 { font-size: var(--fs-xl); color: var(--forest); max-width: 16ch; margin-bottom: 1.4rem; }
.approach-copy p { color: var(--ink-soft); max-width: 52ch; margin-bottom: 1.1rem; }
.approach-stats {
  display: flex; flex-wrap: wrap; gap: 1.4rem 0; margin-top: 2.2rem;
  padding-top: 1.8rem; border-top: 1px solid var(--line);
}
.approach-stats > div {
  padding-right: clamp(1.4rem, 2.4vw, 2.4rem);
  margin-right: clamp(1.4rem, 2.4vw, 2.4rem);
  border-right: 1px solid var(--line);
}
.approach-stats > div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.approach-stats dt {
  font-family: var(--serif); font-size: 2.6rem; color: var(--forest); line-height: 1;
}
.approach-stats dt span { font-size: 1rem; color: var(--gold-deep); margin-left: 2px; }
.approach-stats dd { font-size: 0.82rem; color: var(--forest-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.4rem; }

/* ============ SERVICES ============ */
.services { background: var(--cream-2); padding-block: var(--section-y); border-block: 1px solid var(--line); }
.section-head {
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end;
  gap: clamp(1.2rem, 3vw, 3.2rem); margin-bottom: clamp(2.4rem, 4vw, 3.6rem);
}
.section-head h2 { font-size: var(--fs-xl); color: var(--forest); margin-top: 0.4rem; max-width: 16ch; }
.section-lead {
  color: var(--ink-soft); font-size: var(--fs-md); max-width: 42ch;
  padding-bottom: 0.4rem; border-left: 2px solid var(--gold); padding-left: 1.1rem;
}

.services-grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(1.6rem, 3.5vw, 4rem); align-items: start;
}
.services-figure { position: sticky; top: 6rem; }
.services-figure img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius);
  filter: brightness(0.96) contrast(1.05) saturate(1.0);
  box-shadow: 0 30px 54px -38px rgba(20,39,29,0.6);
}
.services-figure-note {
  background: var(--forest); color: var(--sage-mist);
  padding: 1.1rem 1.3rem; border-radius: var(--radius); margin-top: 0.9rem;
  font-size: 0.86rem; line-height: 1.5;
}
.price-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; }
.price-row {
  position: relative; padding: 1.7rem 1.5rem 1.75rem; margin-inline: -1.5rem;
  border-top: 1px solid var(--line); border-radius: 16px;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.price-row:last-child { border-bottom: 1px solid var(--line); }
/* gold tick that grows on hover for a tactile, editorial feel */
.price-row::after {
  content: ""; position: absolute; left: 0; top: 1.9rem; bottom: 1.9rem; width: 2px;
  background: var(--gold); border-radius: 2px;
  transform: scaleY(0); transform-origin: top; transition: transform 0.4s var(--ease);
}
@media (hover: hover) {
  .price-row:hover { background: rgba(200,155,44,0.06); transform: translateX(5px); }
  .price-row:hover::after { transform: scaleY(1); }
  .feature-row:hover { transform: translateX(5px); box-shadow: 0 26px 50px -34px rgba(166,126,31,0.55); }
}
.price-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.price-head h3 { font-size: clamp(1.3rem, 1rem + 1.2vw, 1.78rem); color: var(--forest); }
.price {
  font-family: var(--serif); font-size: clamp(1.65rem, 1.2rem + 1.5vw, 2.4rem);
  color: var(--gold-deep); flex: none; line-height: 1;
}
.price-row p { color: var(--ink-soft); max-width: 60ch; margin-top: 0.7rem; }

/* highlighted "most booked" tier — a real card, not a floating label */
.feature-row {
  border: 1px solid rgba(200,155,44,0.34);
  background: linear-gradient(180deg, rgba(200,155,44,0.085), rgba(200,155,44,0.025));
  box-shadow: 0 20px 44px -34px rgba(166,126,31,0.5);
}
.feature-row::after { transform: scaleY(1); }
.tag {
  display: inline-block; margin-bottom: 0.85rem;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  color: var(--gold-deep); background: rgba(200,155,44,0.18);
  padding: 0.3rem 0.72rem; border-radius: 100px;
}
.services-foot {
  margin-top: 2.4rem; max-width: 70ch; color: var(--ink-soft); font-size: 0.96rem;
}
.services-foot a { color: var(--forest); text-decoration-color: var(--gold); text-underline-offset: 3px; font-weight: 600; }

/* ============ MODALITIES ============ */
.modalities { padding-block: var(--section-y); }
.modalities-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.8rem, 4vw, 4.5rem); align-items: start; }
.modalities-head { position: sticky; top: 6rem; }
.modalities-head h2 { font-size: var(--fs-xl); color: var(--forest); max-width: 14ch; margin-bottom: 1.2rem; }
.modalities-head > p { color: var(--ink-soft); max-width: 42ch; }
.modalities-figure { margin: 2rem 0 0; }
.modalities-figure img {
  width: 100%; max-width: 360px; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 30%;
  border-radius: var(--radius); filter: saturate(0.92);
  box-shadow: 0 28px 50px -38px rgba(20,39,29,0.5);
}
.modalities-list { list-style: none; padding: 0; margin: 0; counter-reset: none; }
.modalities-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: start;
  padding: 1.5rem 0; border-top: 1px solid var(--line);
}
.modalities-list li:last-child { border-bottom: 1px solid var(--line); }
.mod-num {
  font-family: var(--serif); font-size: 1.05rem; color: var(--gold-deep);
  padding-top: 0.35rem; min-width: 2ch;
}
.modalities-list h3 { font-size: 1.3rem; color: var(--forest); margin-bottom: 0.35rem; }
.modalities-list p { color: var(--ink-soft); max-width: 50ch; font-size: 0.98rem; }

/* ============ STATEMENT BAND ============ */
.band { position: relative; isolation: isolate; padding-block: clamp(5rem, 4rem + 7vw, 9rem); overflow: hidden; }
.band-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(20,39,29,0.92) 0%, rgba(20,39,29,0.72) 48%, rgba(20,39,29,0.4) 100%);
}
.band-inner { color: var(--cream); }
.band-statement {
  font-family: var(--serif); font-size: clamp(1.7rem, 1.1rem + 3vw, 3.2rem);
  line-height: 1.16; max-width: 24ch; color: var(--cream-2);
}
.band-attr {
  margin-top: 1.4rem; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

/* ============ ABOUT ============ */
.about { background: var(--cream-2); padding-block: var(--section-y); border-block: 1px solid var(--line); }
.about-inner { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: clamp(1.8rem, 4vw, 5rem); align-items: center; }
.about-media { position: relative; padding: 0 0 1.4rem 1.4rem; }
.about-shape {
  position: absolute; left: 0; bottom: 0; width: 78%; height: 86%; z-index: 0;
  background: var(--sage); border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg);
}
.about-media img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 62% 22%;
  border-radius: var(--radius-lg);
  box-shadow: 0 36px 60px -40px rgba(20,39,29,0.6);
}
.about-credential {
  position: absolute; z-index: 2; right: -6px; bottom: 16px;
  background: var(--paper); border-radius: 14px; padding: 0.8rem 1.1rem;
  box-shadow: 0 22px 40px -24px rgba(20,39,29,0.5); display: grid; gap: 2px;
}
.about-credential span { font-family: var(--serif); color: var(--forest); font-size: 1.05rem; }
.about-credential small { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.about-copy h2 { font-size: var(--fs-xl); color: var(--forest); max-width: 18ch; margin-bottom: 1.4rem; }
.about-copy p { color: var(--ink-soft); max-width: 56ch; margin-bottom: 1.1rem; }
.about-personal { font-style: italic; color: var(--forest-soft); }

/* ============ CONTACT ============ */
.contact { background: var(--forest); color: var(--cream); padding-block: var(--section-y); }
.contact-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 5rem); align-items: center; }
.contact-copy h2 { font-size: var(--fs-xl); color: var(--cream-2); margin-bottom: 1.2rem; }
.contact-copy > p { color: var(--sage-light); max-width: 44ch; margin-bottom: 2rem; }
.contact .btn-gold { margin-bottom: 2.6rem; }
.contact-details {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.7rem 2rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.14);
}
.contact-details dt {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 0.5rem;
}
.contact-details dd { color: var(--cream); font-size: 0.98rem; line-height: 1.55; }
.contact-details a { color: var(--cream); text-decoration-color: var(--gold); text-underline-offset: 3px; }
.contact-details a:hover { color: var(--gold); }
.contact-details .muted { color: var(--sage-light); font-size: 0.86rem; }
.contact-media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: 0 30px 56px -34px rgba(0,0,0,0.6);
}

/* ============ FOOTER ============ */
.site-footer { background: var(--forest-deep); color: var(--sage-light); padding-block: 3rem; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2rem; align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-brand img { width: 44px; height: 44px; background: var(--cream); border-radius: 10px; padding: 4px; }
.footer-name { font-family: var(--serif); color: var(--cream-2); font-size: 1.18rem; }
.footer-tag { font-size: 0.8rem; color: var(--sage); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem; justify-content: center; }
.footer-nav a { text-decoration: none; color: var(--sage-light); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--gold); }
.footer-meta { font-size: 0.84rem; text-align: right; line-height: 1.6; }
.footer-meta a { color: var(--sage-light); text-decoration-color: var(--gold); }
.footer-meta a:hover { color: var(--gold); }

/* ============ SPEC FOOTER ============ */
.spec-footer {
  background: var(--ink); color: #c9cfc8; text-align: center;
  font-size: 0.8rem; padding: 1.1rem 1.5rem; line-height: 1.5;
}
.spec-footer a { color: var(--gold); text-underline-offset: 2px; }

/* ============ REVEAL ANIMATION ============ */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal[data-reveal-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-reveal-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-reveal-delay="3"] { transition-delay: 0.24s; }
.js .reveal[data-reveal-delay="4"] { transition-delay: 0.32s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .nav, .header-cta { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 2.5rem; padding-top: 7.5rem; }
  .hero::before { top: 3.5rem; font-size: clamp(10rem, 40vw, 16rem); color: rgba(30,58,43,0.04); }
  .hero h1 { max-width: 16ch; }
  .hero-media { max-width: 520px; }
  .approach, .services-grid, .modalities-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; align-items: start; gap: 1.4rem; }
  .section-head h2 { max-width: 18ch; }
  .approach-media, .services-figure, .modalities-head { position: static; }
  .approach { gap: 2.4rem; }
  .approach-media { max-width: 540px; order: 1; }
  .approach-copy { order: 2; }
  .services-figure { max-width: 540px; }
  .modalities-figure img { max-width: 300px; }
  .about-media { max-width: 480px; }
  .contact-media { max-width: 480px; order: -1; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 1.4rem; justify-items: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 540px) {
  :root { --shell: 90vw; }
  .hero { padding-top: 6.5rem; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-card { left: 8px; padding: 0.85rem 1.1rem; }
  .hero-card-v { font-size: 2rem; }
  .price-head { flex-direction: column; gap: 0.25rem; }
  .approach-stats { gap: 1.1rem 0; }
  .approach-stats dt { font-size: 2.1rem; }
  .approach-stats > div {
    padding-right: 1.4rem; margin-right: 1.4rem;
  }
  .price-row { padding: 1.4rem 1.1rem; margin-inline: 0; }
  .price-row::after { display: none; }
  .feature-row { padding-inline: 1.1rem; }
  .contact-details { grid-template-columns: 1fr; }
  .modalities-list li { gap: 0.9rem; }
}

/* ============ MOTION PREFERENCES ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .btn, .nav a::after { transition: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
