/* ============================================================
   Necessity: Massage — Spec preview by Woodcrest Marketing
   Type + color + texture system (no photography available)
   ============================================================ */

:root {
  /* Brand palette */
  --green-900: #1c2a21;
  --green-800: #243528;
  --green-700: #2e4233;
  --green-600: #3a5440;
  --green-400: #6f8a72;
  --clay:      #c08a5e;
  --clay-deep: #a9714a;
  --sand:      #d9c4a3;
  --sand-soft: #e7d8bf;
  --cream:     #f5efe4;
  --paper:     #fbf8f1;
  --ink:       #1f261d;
  --ink-soft:  #4a5347;
  --line:      #e2d8c6;

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

  /* Fluid type scale */
  --fs-eyebrow: clamp(0.72rem, 0.68rem + 0.2vw, 0.82rem);
  --fs-body:    clamp(1rem, 0.96rem + 0.3vw, 1.15rem);
  --fs-lead:    clamp(1.15rem, 1.02rem + 0.6vw, 1.42rem);
  --fs-h3:      clamp(1.35rem, 1.15rem + 0.9vw, 1.85rem);
  --fs-h2:      clamp(1.9rem, 1.35rem + 2.5vw, 3.4rem);
  --fs-display: clamp(2.7rem, 1.4rem + 5.6vw, 6rem);

  /* Space scale */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2.5rem;
  --s-5: 4rem;
  --s-6: 6rem;
  --s-7: 9rem;

  --maxw: 1240px;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; }
p { max-width: 60ch; }
a { color: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--clay); color: var(--paper); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--green-700); color: var(--paper);
  padding: 0.6rem 1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  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;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
              color 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}
.btn-solid {
  background: var(--clay);
  color: var(--green-900);
  box-shadow: 0 10px 24px -12px rgba(169,113,74,0.7);
}
.btn-solid:hover { background: #d8a673; transform: translateY(-3px); box-shadow: 0 18px 34px -14px rgba(169,113,74,0.85); }
.btn-ghost {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-400);
}
.btn-ghost:hover { background: var(--green-700); color: var(--paper); border-color: var(--green-700); transform: translateY(-3px); }
.btn-ghost.light { color: var(--sand); border-color: rgba(217,196,163,0.5); }
.btn-ghost.light:hover { background: var(--sand); color: var(--green-900); border-color: var(--sand); }
.btn-pill {
  background: var(--green-700);
  color: var(--paper);
  padding: 0.7rem 1.3rem;
  font-size: 0.88rem;
}
.btn-pill:hover { background: var(--green-900); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem clamp(1.1rem, 4vw, 2.5rem);
  display: flex; align-items: center; gap: 1.5rem;
}
.site-header.scrolled {
  background: rgba(251,248,241,0.82);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(28,42,33,0.6);
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-700); color: var(--sand);
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  flex: none;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }
.brand-words { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--green-800); letter-spacing: -0.01em; transition: color 0.4s var(--ease); }
.brand-sub { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); transition: color 0.4s var(--ease); }
.site-nav { display: flex; gap: 1.6rem; }
.site-nav a {
  text-decoration: none; font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 0.2rem 0; transition: color 0.4s var(--ease);
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--clay); transition: width 0.35s var(--ease);
}
.site-nav a:hover { color: var(--green-800); }
.site-nav a:hover::after { width: 100%; }

/* Header default sits over the dark hero — light treatment */
.site-header:not(.scrolled) .brand-mark { background: var(--clay); color: var(--green-900); }
.site-header:not(.scrolled) .brand-name { color: #fdfaf3; }
.site-header:not(.scrolled) .brand-sub { color: var(--sand); }
.site-header:not(.scrolled) .site-nav a { color: var(--sand-soft); }
.site-header:not(.scrolled) .site-nav a:hover { color: #fff; }
.site-header:not(.scrolled) .btn-pill { background: var(--clay); color: var(--green-900); }
.site-header:not(.scrolled) .btn-pill:hover { background: #d8a673; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 884px);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(6.5rem, 11vh, 8.5rem) clamp(1.1rem, 4vw, 2.5rem) 0;
  background:
    radial-gradient(120% 90% at 85% 0%, var(--green-600) 0%, var(--green-700) 38%, var(--green-800) 70%, var(--green-900) 100%);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 38%;
  z-index: -1; pointer-events: none;
  background: linear-gradient(to top, rgba(18,27,17,0.55), transparent);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; opacity: 0.5; mix-blend-mode: soft-light;
  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='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.hero-orb {
  position: absolute; z-index: -1; border-radius: 50%;
  filter: blur(60px); opacity: 0.4; pointer-events: none;
}
.hero-orb--1 { width: 46vw; height: 46vw; top: -14vw; right: -10vw; background: radial-gradient(circle, var(--clay) 0%, transparent 70%); opacity: 0.5; }
.hero-orb--2 { width: 38vw; height: 38vw; bottom: -16vw; left: -12vw; background: radial-gradient(circle, var(--green-400) 0%, transparent 70%); opacity: 0.35; }

/* Flowing contour-line motif — the brand's visual signature */
.hero-flow {
  position: absolute; inset: -6% -3%; width: 106%; height: 112%;
  z-index: -1; pointer-events: none;
  animation: flowIn 1.6s var(--ease) both;
}
@keyframes flowIn { from { opacity: 0; } to { opacity: 1; } }
.hero-flow path {
  fill: none; stroke: var(--sand); stroke-width: 1.4;
  vector-effect: non-scaling-stroke; opacity: 0.32;
}
.hero-flow path:nth-child(odd) { stroke: var(--clay); opacity: 0.42; }
.hero-flow-g { transform-origin: center; animation: flowDrift 17s ease-in-out infinite alternate; }
@keyframes flowDrift {
  from { transform: translateY(-9px) scaleX(1.01); }
  to   { transform: translateY(9px) scaleX(1); }
}
@media (prefers-reduced-motion: reduce) { .hero-flow-g { animation: none; } }

.hero-grid {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.55fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  flex: 1; padding-bottom: clamp(3rem, 7vh, 5rem);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--fs-eyebrow); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand); font-weight: 600;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 4px rgba(192,138,94,0.25); }
.hero-title {
  font-size: var(--fs-display);
  margin: 1.4rem 0 1.6rem;
  max-width: 16ch;
  color: #fdfaf3;
}
.hero-lead { font-size: var(--fs-lead); color: var(--sand-soft); max-width: 46ch; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 2.2rem 0 1.7rem; }
.hero-note {
  font-size: 0.95rem; color: var(--sand-soft); max-width: 44ch;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
}
.hero-note-tag {
  display: inline-block;
  background: rgba(217,196,163,0.14);
  border: 1px solid rgba(217,196,163,0.3);
  color: var(--sand);
  font-weight: 600; font-size: 0.82rem;
  padding: 0.35rem 0.8rem; border-radius: 100px;
}

/* Hero card */
.hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(245,239,228,0.1), rgba(245,239,228,0.04));
  border: 1px solid rgba(217,196,163,0.24);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: 0 34px 64px -30px rgba(0,0,0,0.55), inset 0 1px 0 rgba(245,239,228,0.16);
  overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--clay), rgba(192,138,94,0));
}
.hero-card-eyebrow {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--sand); margin-bottom: 1.1rem; opacity: 0.85;
}
.hero-rating { display: flex; align-items: baseline; gap: 0.7rem; }
.stars { color: var(--clay); font-size: 1.15rem; letter-spacing: 0.1em; }
.rating-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: #fdfaf3; line-height: 1; }
.hero-card-line { font-size: 0.92rem; color: var(--sand-soft); margin-top: 0.5rem; }
.hero-card-line strong { color: var(--sand); }
.hero-card-rule { border: none; border-top: 1px solid rgba(217,196,163,0.2); margin: 1.3rem 0; }
.hero-card-list { list-style: none; display: grid; gap: 0.85rem; }
.hero-card-list li { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }
.hero-card-list span { color: var(--sand-soft); }
.hero-card-list strong { color: #fdfaf3; font-weight: 600; }

/* Hero marquee */
.hero-marquee {
  width: 100%; overflow: hidden; border-top: 1px solid rgba(217,196,163,0.16);
  padding: 1.1rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 1.6rem; align-items: center; white-space: nowrap;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--sand);
  animation: marquee 38s linear infinite;
}
.marquee-track .dot { color: var(--clay); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Section shared ---------- */
.section-tag {
  font-size: var(--fs-eyebrow); letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--clay-deep);
}
.section-tag.light { color: var(--clay); }

/* ---------- About ---------- */
.about {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(4.5rem, 11vh, 8rem) clamp(1.1rem, 4vw, 2.5rem);
}
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.about-side { position: sticky; top: 6rem; }
.about-figure {
  margin-top: 2rem;
  min-height: clamp(370px, 54vh, 470px);
  border-radius: var(--radius);
  background: linear-gradient(157deg, var(--green-700) 0%, var(--green-800) 48%, var(--green-900) 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: clamp(1.6rem, 4vh, 2.4rem);
  padding: clamp(1.8rem, 3.4vw, 2.5rem);
  box-shadow: 0 34px 64px -34px rgba(28,42,33,0.62), inset 0 1px 0 rgba(217,196,163,0.14);
}
.about-figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 82% 4%, rgba(192,138,94,0.5), transparent 50%);
}
.figure-flow-bg {
  position: absolute; inset: -8% -4%; width: 108%; height: 116%;
}
.figure-flow-bg path {
  fill: none; stroke: var(--sand); stroke-width: 1; vector-effect: non-scaling-stroke; opacity: 0.2;
}
.figure-flow-bg path:nth-child(even) { stroke: var(--clay); opacity: 0.28; }
.figure-head { position: relative; z-index: 1; display: grid; gap: 0.5rem; }
.figure-label {
  font-size: var(--fs-eyebrow); letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--clay);
}
.figure-sub {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem); color: #fdfaf3; line-height: 1.2;
  max-width: 18ch;
}
.figure-flow { list-style: none; position: relative; z-index: 1; display: grid; gap: clamp(1.1rem, 2.8vh, 1.8rem); }
.figure-flow::before {
  content: ""; position: absolute; left: 16px; top: 14px; bottom: 14px; width: 2px;
  background: linear-gradient(var(--clay) 0%, rgba(192,138,94,0.55) 45%, rgba(192,138,94,0.12) 100%);
  border-radius: 2px;
}
.figure-flow li {
  position: relative; display: grid; grid-template-columns: 33px 1fr;
  align-items: center; gap: 1rem;
}
.figure-idx {
  font-family: var(--sans); font-style: normal; font-weight: 700;
  font-size: 0.66rem; letter-spacing: 0.04em; color: var(--green-900);
  width: 33px; height: 33px; border-radius: 50%;
  background: var(--clay); display: grid; place-items: center;
  box-shadow: 0 0 0 5px var(--green-800), 0 6px 14px -6px rgba(0,0,0,0.6);
}
.figure-step { display: grid; gap: 0.18rem; }
.figure-word {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.45rem, 3.4vw, 2rem); color: var(--sand); line-height: 1.05;
}
.figure-desc {
  font-family: var(--sans); font-style: normal; font-size: 0.82rem;
  color: var(--sand-soft); line-height: 1.4; max-width: 30ch;
}
.about-title { font-size: var(--fs-h2); color: var(--green-800); margin-bottom: 1.6rem; max-width: 18ch; }
.about-main p { color: var(--ink-soft); margin-bottom: 1.2rem; font-size: var(--fs-lead); line-height: 1.55; }
.about-marks {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem;
}
.about-marks li {
  font-size: 0.85rem; font-weight: 600; color: var(--green-700);
  background: var(--cream); border: 1px solid var(--line);
  padding: 0.5rem 1rem; border-radius: 100px;
}

/* ---------- Services ---------- */
.services {
  background: var(--green-800);
  color: var(--cream);
  padding: clamp(4.5rem, 11vh, 8rem) clamp(1.1rem, 4vw, 2.5rem);
  position: relative;
}
.services-head {
  max-width: var(--maxw); margin: 0 auto 3.5rem;
  display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: end;
}
.services-head .section-tag { grid-column: 1 / -1; }
.services-title { font-size: var(--fs-h2); color: #fdfaf3; margin: 1rem 0 0; max-width: 15ch; }
.services-intro {
  color: var(--sand-soft); font-size: var(--fs-lead); max-width: 42ch;
  padding-bottom: 0.4rem; position: relative;
  padding-left: clamp(0px, 2vw, 1.5rem);
  border-left: 2px solid rgba(192,138,94,0.5);
}
@media (max-width: 760px) {
  .services-head { grid-template-columns: 1fr; gap: 1.4rem; }
  .services-intro { border-left: none; padding-left: 0; }
}
.service-list { max-width: var(--maxw); margin: 0 auto; list-style: none; }
.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: baseline;
  padding: 2rem 0;
  border-top: 1px solid rgba(217,196,163,0.18);
  transition: background 0.4s var(--ease), padding-left 0.4s var(--ease);
}
.service-row:last-child { border-bottom: 1px solid rgba(217,196,163,0.18); }
.service-row:hover { background: linear-gradient(90deg, rgba(192,138,94,0.1), transparent); padding-left: 1rem; }
.service-index { font-family: var(--serif); font-size: 1rem; color: var(--clay); font-weight: 600; padding-top: 0.4rem; }
.service-body h3 { font-size: var(--fs-h3); color: #fdfaf3; margin-bottom: 0.5rem; transition: color 0.3s var(--ease); }
.service-row:hover .service-body h3 { color: var(--sand); }
.service-body p { color: var(--sand-soft); max-width: 54ch; line-height: 1.55; }
.service-meta {
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  color: var(--sand); white-space: nowrap;
  border: 1px solid rgba(217,196,163,0.3); border-radius: 100px; padding: 0.35rem 0.85rem;
}
.services-cta {
  max-width: var(--maxw); margin: 3.5rem auto 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(217,196,163,0.18);
}
.services-cta p { font-family: var(--serif); font-style: italic; font-size: var(--fs-h3); color: var(--sand); max-width: 22ch; }

/* ---------- Stats ---------- */
.stats {
  max-width: var(--maxw);
  width: calc(100% - 2 * clamp(1.1rem, 4vw, 2.5rem));
  margin: clamp(3.5rem, 8vh, 5.5rem) auto;
  padding: clamp(2.2rem, 4vw, 3.2rem) clamp(1.6rem, 4vw, 3rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 3vw, 2.4rem);
  background: linear-gradient(150deg, var(--cream), var(--paper));
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 30px 60px -42px rgba(28,42,33,0.4);
  position: relative; isolation: isolate;
}
.stat {
  text-align: left; padding-top: 1.1rem; position: relative;
}
.stat::before {
  content: ""; position: absolute; top: 0; left: 0; width: 26px; height: 2px;
  background: var(--sand); border-radius: 2px;
  transition: width 0.5s var(--ease);
}
.stat:first-child::before { background: var(--clay); }
.stats:hover .stat::before { width: 40px; }
.stat-num { display: block; font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 600; color: var(--green-700); line-height: 1; letter-spacing: -0.01em; }
.stat:first-child .stat-num { color: var(--clay-deep); }
.stat-unit { font-size: 0.4em; color: var(--clay-deep); margin-left: 0.15em; }
.stat-label { display: block; margin-top: 0.7rem; font-size: 0.88rem; color: var(--ink-soft); letter-spacing: 0.02em; }

/* ---------- Care ---------- */
.care {
  background: var(--cream);
  padding: clamp(4.5rem, 11vh, 8rem) clamp(1.1rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
}
.care-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.care-intro { position: sticky; top: 6rem; }
.care-title { font-size: var(--fs-h2); color: var(--green-800); margin: 1rem 0 1.3rem; max-width: 14ch; }
.care-intro p { color: var(--ink-soft); font-size: var(--fs-lead); line-height: 1.55; }
.care-cards { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.care-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  position: relative; overflow: hidden;
}
.care-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--clay); transform: scaleY(0); transform-origin: top; transition: transform 0.45s var(--ease);
}
.care-card:hover { transform: translateY(-5px); box-shadow: 0 24px 44px -26px rgba(28,42,33,0.4); border-color: var(--sand); }
.care-card:hover::before { transform: scaleY(1); }
.care-card h3 { font-size: 1.2rem; color: var(--green-700); margin-bottom: 0.6rem; }
.care-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Visit ---------- */
.visit {
  position: relative;
  background: radial-gradient(120% 120% at 15% 10%, var(--green-700), var(--green-900) 75%);
  color: var(--cream);
  padding: clamp(4.5rem, 11vh, 8rem) clamp(1.1rem, 4vw, 2.5rem);
  overflow: hidden; isolation: isolate;
}
.visit-grain {
  position: absolute; inset: 0; z-index: -1; opacity: 0.4; mix-blend-mode: soft-light;
  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.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.visit-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.visit-title { font-size: var(--fs-display); color: #fdfaf3; margin: 1rem 0 1.4rem; }
.visit-lead { font-size: var(--fs-lead); color: var(--sand-soft); max-width: 40ch; line-height: 1.5; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.visit-details {
  display: grid; gap: 2rem;
  background: rgba(245,239,228,0.05);
  border: 1px solid rgba(217,196,163,0.2);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem);
}
.visit-block h3 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); margin-bottom: 0.8rem; font-weight: 700; }
.visit-block p { color: var(--sand-soft); line-height: 1.7; }
.hours { list-style: none; display: grid; gap: 0.55rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.92rem; color: var(--sand-soft); border-bottom: 1px dashed rgba(217,196,163,0.18); padding-bottom: 0.55rem; }
.hours li span:last-child { color: #fdfaf3; font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: var(--sand-soft);
  padding: clamp(3rem, 7vh, 4.5rem) clamp(1.1rem, 4vw, 2.5rem) 2rem;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(217,196,163,0.15);
}
.footer-brand { display: grid; gap: 0.6rem; max-width: 30ch; }
.footer-brand .brand-mark { width: 42px; height: 42px; }
.footer-name { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); }
.footer-tag { font-size: 0.9rem; color: var(--sand-soft); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; align-items: flex-start; align-content: flex-start; }
.footer-links a { text-decoration: none; font-size: 0.92rem; color: var(--sand-soft); transition: color 0.3s var(--ease); }
.footer-links a:hover { color: var(--clay); }
.footer-fine { max-width: var(--maxw); margin: 1.5rem auto 0; font-size: 0.8rem; color: var(--green-400); }

/* ---------- Spec footer (mandatory) ---------- */
.spec-footer {
  background: #11160f;
  color: #9aa593;
  font-size: 0.8rem;
  text-align: center;
  padding: 1.1rem 1.5rem;
  line-height: 1.6;
}
.spec-footer a { color: var(--clay); }

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

/* No-JS / reduced-motion: everything visible */
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .care-card, .brand-mark, .service-row { transition: none; }
  .hero-flow { animation: none; opacity: 1; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .site-nav { display: none; }
  .hero { min-height: auto; padding-top: clamp(6rem, 12vh, 8rem); }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: clamp(2.5rem, 6vh, 4rem); }
  .hero-card { max-width: 420px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-side { position: static; }
  .about-figure { max-width: 320px; }
  .care-grid { grid-template-columns: 1fr; }
  .care-intro { position: static; }
  .visit-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 560px) {
  .header-inner { padding: 0.85rem 1.1rem; gap: 0.8rem; }
  .brand-sub { display: none; }
  .btn-pill { padding: 0.6rem 1rem; }
  .hero { min-height: auto; padding-top: 7rem; }
  .hero-actions .btn { flex: 1 1 auto; }
  .care-cards { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: auto 1fr; }
  .service-meta { grid-column: 2; justify-self: start; margin-top: 0.6rem; }
  .services-cta { flex-direction: column; align-items: flex-start; }
  .stats { grid-template-columns: 1fr 1fr; }
}
