/* ============================================================
   Tusken Chiropractic and Acupuncture, spec preview
   Design system
   ============================================================ */

:root {
  /* palette */
  --ink: #1c2620;
  --forest: #2f4a3d;
  --forest-deep: #223a2f;
  --sage: #6f8b78;
  --sage-soft: #a9bcae;
  --cream: #f5efe3;
  --cream-deep: #ece3d1;
  --sand: #e3d7bf;
  --clay: #c07b52;
  --clay-deep: #a9663f;
  --paper: #fbf8f1;
  --white: #ffffff;

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

  /* fluid type scale */
  --step--1: clamp(0.83rem, 0.79rem + 0.2vw, 0.94rem);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.45rem, 1.25rem + 1vw, 2.1rem);
  --step-3: clamp(1.85rem, 1.5rem + 1.7vw, 3rem);
  --step-4: clamp(2.4rem, 1.8rem + 3vw, 4.4rem);
  --step-5: clamp(3rem, 2rem + 5vw, 6rem);

  /* spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: clamp(3.5rem, 2rem + 7vw, 8rem);
  --shell: min(92vw, 1200px);

  --radius: 14px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -30px rgba(28, 38, 32, 0.45);
  --shadow-soft: 0 14px 40px -24px rgba(28, 38, 32, 0.4);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

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

/* Whisper of film grain over the whole page for warmth + cohesion */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }
a { color: inherit; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--clay-deep);
  margin: 0 0 var(--space-sm);
}
.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 1.5px;
  background: currentColor;
  opacity: 0.65;
  flex: none;
}

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

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

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

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step-0);
  letter-spacing: 0.01em;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  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);
  will-change: transform;
}
.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-fg);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--clay); transform: translateY(-3px); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: color-mix(in srgb, var(--forest) 35%, transparent);
}
.btn-ghost:hover {
  border-color: var(--forest);
  background: color-mix(in srgb, var(--forest) 8%, transparent);
  transform: translateY(-3px);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 1.1rem;
}
.site-header.is-stuck {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--ink) 8%, transparent);
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--forest); }
.brand-mark { display: inline-flex; color: var(--forest); transition: transform 0.5s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-8deg); }
.brand-type { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-sub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--sage);
  font-weight: 600;
}

.site-nav { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 2rem); }
.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.nav-cta:hover { background: var(--clay); transform: translateY(-2px); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: stretch;
  min-height: min(90vh, 860px);
  background: var(--forest-deep);
  isolation: isolate;
  overflow: clip;
}
/* Layered light so the copy panel reads as a lit space, not a flat fill */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(130% 90% at -12% -22%, color-mix(in srgb, var(--forest) 88%, var(--sage)) 0%, transparent 48%),
    radial-gradient(120% 120% at 6% 120%, var(--ink) 0%, transparent 55%),
    linear-gradient(180deg, var(--forest-deep), var(--ink));
}
/* Seam of light between the two panels */
.hero::after {
  content: "";
  position: absolute;
  top: 12%; bottom: 12%;
  left: 53%;
  width: 1px;
  z-index: 1;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--sage) 40%, transparent), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  order: 1;
  align-self: center;
  color: var(--cream);
  padding-block: clamp(3rem, 7vw, 6rem);
  padding-left: max(6vw, calc((100vw - min(92vw, 1200px)) / 2));
  padding-right: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 42rem;
}
.hero-copy .eyebrow { color: var(--clay); }

/* ---- Composed art panel (replaces full-bleed stock photo) ---- */
.hero-art {
  position: relative;
  order: 2;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: clamp(2.5rem, 5vw, 4.5rem);
}
.js .hero-art { opacity: 0; animation: heroArtIn 1.05s var(--ease) 0.15s forwards; }
@keyframes heroArtIn {
  from { opacity: 0; transform: translateY(26px) scale(0.975); }
  to { opacity: 1; transform: none; }
}
.hero-art-glow {
  position: absolute;
  left: 50%; top: 50%;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--sage) 42%, transparent) 0%, transparent 66%);
  transform: translate(-50%, -50%);
  z-index: 0;
}
.hero-art-sprig {
  position: absolute;
  left: 50%; top: 50%;
  width: clamp(220px, 58%, 360px);
  height: auto;
  aspect-ratio: 120 / 160;
  color: color-mix(in srgb, var(--sage) 58%, transparent);
  opacity: 0.55;
  transform: translate(-30%, -58%) rotate(6deg);
  z-index: 0;
}
.hero-art-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(78%, 410px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid color-mix(in srgb, var(--cream) 16%, transparent);
  transform: rotate(-2.2deg);
}
.hero-art-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* Duotone-forest grade turns the stock botanical into deliberate brand texture */
.hero-art-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, transparent 28%, color-mix(in srgb, var(--forest-deep) 68%, transparent)),
    radial-gradient(120% 100% at 20% 8%, color-mix(in srgb, var(--forest) 30%, transparent), transparent 60%),
    color-mix(in srgb, var(--forest) 16%, transparent);
  mix-blend-mode: multiply;
}
.hero-art-chip {
  position: absolute;
  z-index: 2;
  left: clamp(0.75rem, 8%, 3rem);
  bottom: clamp(1.5rem, 9%, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.85rem 1.2rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--ink) 60%, transparent);
  backdrop-filter: blur(10px) saturate(1.1);
  border: 1px solid color-mix(in srgb, var(--cream) 20%, transparent);
  box-shadow: 0 20px 44px -26px rgba(0, 0, 0, 0.75);
}
.hero-art-chip-num { font-family: var(--font-display); font-size: var(--step-1); color: var(--cream); font-weight: 600; letter-spacing: 0.01em; }
.hero-art-chip-txt { font-size: var(--step--1); color: var(--sage-soft); letter-spacing: 0.01em; }
.hero-title {
  font-size: var(--step-4);
  color: var(--cream);
  max-width: 15ch;
  margin-bottom: var(--space-md);
}
.hero-lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: color-mix(in srgb, var(--cream) 88%, var(--sage));
  max-width: 46ch;
  margin-bottom: var(--space-lg);
  font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.hero-actions .btn-ghost { color: var(--cream); border-color: color-mix(in srgb, var(--cream) 45%, transparent); }
.hero-actions .btn-ghost:hover { border-color: var(--cream); background: color-mix(in srgb, var(--cream) 12%, transparent); }

.hero-facts {
  list-style: none;
  margin: 0; padding: var(--space-md) 0 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(1rem, 4vw, 2.4rem);
  border-top: 1px solid color-mix(in srgb, var(--cream) 22%, transparent);
}
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong { font-family: var(--font-display); font-size: var(--step-1); color: var(--cream); font-weight: 600; }
.hero-facts span { font-size: var(--step--1); color: var(--sage-soft); letter-spacing: 0.02em; }

/* ============================================================
   Ethos band
   ============================================================ */
.ethos { background: var(--cream); padding-block: var(--space-xl); }
.ethos-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.75rem, 5vw, 4.5rem);
  align-items: start;
  padding-top: var(--space-lg);
  border-top: 1px solid color-mix(in srgb, var(--forest) 18%, transparent);
}
.ethos-head { position: relative; display: flex; flex-direction: column; }
.ethos-head .eyebrow { color: var(--forest); }
.ethos-lead {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1.05;
  color: var(--forest);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 12ch;
}
/* Motif anchored to the lead by a thin stem rule so the column reads composed, not floaty */
.ethos-motif {
  width: clamp(120px, 62%, 168px);
  height: auto;
  aspect-ratio: 120 / 160;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid color-mix(in srgb, var(--forest) 20%, transparent);
  color: color-mix(in srgb, var(--forest) 48%, var(--sand));
}
.ethos-body {
  font-size: var(--step-2);
  line-height: 1.5;
  color: color-mix(in srgb, var(--ink) 84%, transparent);
  max-width: 46ch;
  text-wrap: pretty;
}
.ethos-sign {
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-style: italic;
  color: var(--clay-deep);
}

/* ============================================================
   About
   ============================================================ */
.about { background: var(--paper); padding-block: var(--space-xl); }
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-media { position: relative; }

/* Bespoke credential seal replaces off-brand stock photography */
.seal-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 18% 8%, color-mix(in srgb, var(--forest) 82%, var(--sage)) 0%, transparent 52%),
    radial-gradient(120% 120% at 100% 116%, var(--ink) 0%, transparent 58%),
    linear-gradient(160deg, var(--forest), var(--forest-deep) 70%, var(--ink));
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  isolation: isolate;
}
.seal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background:
    radial-gradient(1px 1px at 20% 30%, color-mix(in srgb, var(--sage-soft) 60%, transparent) 40%, transparent),
    repeating-linear-gradient(135deg, transparent 0 22px, color-mix(in srgb, var(--cream) 3%, transparent) 22px 23px);
}
.seal-eyebrow {
  align-self: flex-start;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-weight: 700;
  color: var(--clay);
  padding-bottom: 0.6rem;
  border-bottom: 1.5px solid color-mix(in srgb, var(--clay) 55%, transparent);
}
.seal-motif {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(150px, 42%, 220px);
  height: auto;
  aspect-ratio: 120 / 160;
  transform: translate(-50%, -54%);
  color: color-mix(in srgb, var(--sage) 60%, transparent);
  opacity: 0.5;
  z-index: -1;
}
.seal-stat { position: relative; display: flex; flex-direction: column; margin-top: auto; }
.seal-num {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 8vw, 5.4rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.seal-unit {
  font-size: var(--step--1);
  color: var(--sage-soft);
  max-width: 18ch;
  margin-top: 0.6rem;
  line-height: 1.4;
}
.seal-line {
  position: relative;
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid color-mix(in srgb, var(--cream) 18%, transparent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-1);
  color: color-mix(in srgb, var(--cream) 92%, var(--sage));
  max-width: 24ch;
}

.about-text .section-title { margin-bottom: var(--space-md); }
.about-text p { color: color-mix(in srgb, var(--ink) 84%, transparent); margin-bottom: var(--space-sm); max-width: 54ch; }

.about-meta {
  margin: var(--space-md) 0 0;
  display: grid;
  gap: var(--space-md);
  border-top: 1px solid var(--cream-deep);
  padding-top: var(--space-md);
}
.about-meta dt { font-family: var(--font-display); font-size: var(--step-1); color: var(--forest); font-weight: 600; margin-bottom: 0.25rem; }
.about-meta dd { margin: 0; font-size: var(--step--1); color: var(--sage); }

/* ============================================================
   Treatments
   ============================================================ */
.treatments { background: var(--forest-deep); color: var(--cream); padding-block: var(--space-xl); }
.treat-head { max-width: 40ch; margin-bottom: var(--space-lg); }
.treat-head .eyebrow { color: var(--clay); }
.treat-head .section-title { color: var(--cream); max-width: 22ch; }

.treat-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  background: color-mix(in srgb, var(--cream) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--cream) 14%, transparent);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 1.6rem);
  margin-bottom: var(--space-md);
}
.treat-feature-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    radial-gradient(120% 100% at 85% 12%, color-mix(in srgb, var(--forest) 90%, var(--sage)) 0%, transparent 55%),
    linear-gradient(150deg, color-mix(in srgb, var(--forest) 78%, var(--ink)), var(--ink));
}
.treat-feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background: repeating-linear-gradient(135deg, transparent 0 24px, color-mix(in srgb, var(--cream) 4%, transparent) 24px 25px);
}
.treat-feature-ghost {
  position: absolute;
  right: 0.1em;
  bottom: -0.24em;
  font-family: var(--font-display);
  font-size: clamp(9rem, 22vw, 15rem);
  font-weight: 600;
  line-height: 1;
  color: color-mix(in srgb, var(--cream) 7%, transparent);
  z-index: -1;
  pointer-events: none;
}
.treat-feature-motif {
  width: clamp(88px, 30%, 132px);
  height: auto;
  aspect-ratio: 120 / 160;
  color: color-mix(in srgb, var(--sage) 78%, var(--cream));
  opacity: 0.9;
  transition: transform 0.8s var(--ease);
}
.treat-feature:hover .treat-feature-motif { transform: translateY(-6px) rotate(-3deg); }
.treat-feature-tag {
  position: absolute;
  left: clamp(1rem, 3vw, 1.6rem);
  top: clamp(1rem, 3vw, 1.6rem);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--clay);
}
.treat-feature-copy { padding: clamp(0.5rem, 2vw, 1.5rem) clamp(0.5rem, 2vw, 1.5rem) clamp(0.5rem, 2vw, 1.5rem) 0; }
.treat-index {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.8rem;
}
.treat-feature-copy h3 { font-size: var(--step-2); color: var(--cream); margin-bottom: var(--space-sm); }
.treat-feature-copy p { color: color-mix(in srgb, var(--cream) 82%, var(--sage)); max-width: 42ch; }

.treat-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: color-mix(in srgb, var(--cream) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--cream) 14%, transparent);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.treat-card {
  background: var(--forest-deep);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  transition: background 0.4s var(--ease);
}
.treat-card:hover { background: var(--forest); }
.treat-card .treat-index {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0;
  text-transform: none;
  color: color-mix(in srgb, var(--clay) 85%, var(--cream));
  opacity: 0.9;
}
.treat-card h3 { font-size: var(--step-1); color: var(--cream); margin-bottom: 0.6rem; }
.treat-card p { color: color-mix(in srgb, var(--cream) 78%, var(--sage)); font-size: var(--step--1); line-height: 1.6; }

/* ============================================================
   Testimonial band
   ============================================================ */
.testimonial {
  position: relative;
  background: var(--forest-deep);
  color: var(--cream);
  padding-block: clamp(4rem, 9vw, 7.5rem);
  overflow: clip;
  isolation: isolate;
}
/* Reuse the one on-brand image as a graded botanical texture, not a literal photo */
.testimonial-photo { position: absolute; inset: 0; z-index: -2; }
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.5) saturate(0.85);
}
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 100% at 12% 0%, color-mix(in srgb, var(--forest) 78%, transparent) 0%, transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--forest-deep) 88%, transparent), color-mix(in srgb, var(--ink) 92%, transparent));
}
.testimonial-inner {
  max-width: 44ch;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.testimonial .eyebrow { color: var(--clay); }
.testimonial-quote { position: relative; margin: 0; padding-left: clamp(1.2rem, 3vw, 2rem); }
.testimonial-quote::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35rem; bottom: 0.35rem;
  width: 3px;
  border-radius: 2px;
  background: var(--clay);
}
.testimonial-quote p {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.36;
  font-style: italic;
  color: var(--cream);
  text-wrap: balance;
}
.testimonial-quote cite {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-soft);
  font-weight: 600;
}

/* ============================================================
   Visit
   ============================================================ */
.visit { background: var(--paper); padding-block: var(--space-xl); }
.visit-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.visit-lede { font-size: var(--step-1); color: color-mix(in srgb, var(--ink) 80%, transparent); max-width: 44ch; margin-block: var(--space-md); }
.visit-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-lg); }

.visit-detail { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-md); }
.visit-detail li {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: var(--space-sm);
  align-items: baseline;
  padding-top: var(--space-md);
  border-top: 1px solid var(--cream-deep);
}
.visit-label { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 700; color: var(--clay-deep); }
.visit-detail a { text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--forest) 30%, transparent); transition: border-color 0.3s var(--ease); }
.visit-detail a:hover { border-color: var(--forest); }

.hours-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
  position: sticky;
  top: 6rem;
}
.hours-card h3 { color: var(--cream); font-size: var(--step-2); margin-bottom: var(--space-md); }
.hours-list { list-style: none; margin: 0 0 var(--space-md); padding: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--cream) 16%, transparent);
  font-size: var(--step--1);
}
.hours-list li span:first-child { color: var(--sage-soft); font-weight: 600; }
.hours-list li span:last-child { font-variant-numeric: tabular-nums; }
.hours-off span { color: color-mix(in srgb, var(--cream) 55%, transparent) !important; }
.hours-cta {
  display: block;
  text-align: center;
  background: var(--clay);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.hours-cta:hover { background: var(--clay-deep); transform: translateY(-2px); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--cream); padding-block: var(--space-lg); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.footer-brand .brand-name { color: var(--cream); font-size: var(--step-1); display: block; margin-bottom: 0.6rem; }
.footer-brand p { color: color-mix(in srgb, var(--cream) 65%, transparent); max-width: 42ch; font-size: var(--step--1); }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.footer-cols h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.7rem; color: var(--sage-soft); margin-bottom: var(--space-sm); font-weight: 700; }
.footer-cols a, .footer-cols span { display: block; text-decoration: none; color: color-mix(in srgb, var(--cream) 78%, transparent); font-size: var(--step--1); padding: 0.28rem 0; }
.footer-cols a { transition: color 0.3s var(--ease); }
.footer-cols a:hover { color: var(--clay); }

.spec-footer {
  background: #12180f;
  color: color-mix(in srgb, var(--cream) 60%, transparent);
  text-align: center;
  font-size: 0.8rem;
  padding: 1.1rem var(--space-md);
  line-height: 1.6;
}
.spec-footer a { color: var(--clay); }

/* ============================================================
   Reveal animations
   Gated behind .js so content is fully visible with JS disabled.
   ============================================================ */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* stagger children within a shared parent */
.js .hero-copy [data-reveal] { transition-delay: calc(var(--i, 0) * 90ms); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: unset; }
  .hero::after { display: none; }
  /* Copy first on mobile, art as a controlled band below (no giant blob) */
  .hero-copy {
    order: 1;
    padding-left: max(6vw, calc((100vw - min(92vw, 1200px)) / 2));
    padding-right: max(6vw, calc((100vw - min(92vw, 1200px)) / 2));
    padding-block: clamp(2.75rem, 10vw, 4rem);
    max-width: none;
  }
  .hero-art {
    order: 2;
    min-height: clamp(300px, 66vw, 440px);
    padding: clamp(1.5rem, 7vw, 3rem);
    padding-top: 0;
  }
  .hero-art-figure { width: min(70%, 320px); }
  .hero-art-sprig { width: clamp(200px, 62%, 320px); }
  .ethos-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; }
  .treat-feature { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .hours-card { position: static; max-width: 460px; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-md); }
}

@media (max-width: 620px) {
  .site-nav a:not(.nav-cta):not([href^="tel"]) { display: none; }
  .hero-facts { grid-template-columns: 1fr; gap: 0.9rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 12rem; }
  .visit-detail li { grid-template-columns: 1fr; gap: 0.2rem; }
  .footer-cols { grid-template-columns: 1fr; }
  .seal-card { aspect-ratio: 5 / 6; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .js [data-reveal], [data-reveal] { opacity: 1 !important; transform: none !important; }
  .js .hero-art { opacity: 1 !important; animation: none !important; }
}
