/* Create Your Wellness, Watford – preview site
   Palette sampled from the clinic's own logo (three greens on linen); see _brief.md. */

:root {
  --forest: #1E3E33;
  --forest-deep: #14291F;
  --sage: #4B755F;
  --olive: #747F47;
  --olive-ink: #687240;   /* olive, dark enough to set text on linen/chalk */
  --olive-btn: #6D7743;   /* olive, dark enough to carry white button text */
  --olive-lit: #AFBB78;   /* olive, light enough to read on the forest field */
  --sage-ink: #476E59;    /* sage, dark enough to set label text on linen */
  --linen: #EDE6DC;
  --chalk: #F7F4EE;
  --ink: #16241D;
  --ink-soft: #40514A;
  --line: #D6CCBE;

  --display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --measure: 64ch;
  --gut: clamp(20px, 5vw, 48px);
  --shell: 1180px;
}

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

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

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(16px, 0.95rem + 0.2vw, 18px);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

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

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gut); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--chalk); color: var(--ink);
  padding: 14px 20px; font-weight: 600; text-decoration: none;
}
.skip:focus { left: 8px; top: 8px; }

/* ── Type ───────────────────────────────────────────────────────── */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: 'SOFT' 30, 'WONK' 1;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-ink);
  margin: 0 0 18px;
}

.lede { font-size: clamp(17px, 1rem + 0.35vw, 21px); color: var(--ink-soft); max-width: 58ch; }

/* ── Buttons ────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 30px;
  font-family: var(--body); font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  text-decoration: none; border: 1.5px solid transparent; border-radius: 40px;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn-primary { background: var(--olive-btn); color: #FFFDF8; }
.btn-primary:hover { background: #5F6B3A; transform: translateY(-2px); }
.btn-ghost { border-color: rgba(247,244,238,.45); color: var(--chalk); }
.btn-ghost:hover { border-color: var(--chalk); background: rgba(247,244,238,.1); }
.btn-dark { background: var(--forest); color: var(--chalk); }
.btn-dark:hover { background: var(--forest-deep); transform: translateY(-2px); }
.btn-outline { border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--chalk); }

/* ── Header ─────────────────────────────────────────────────────── */

.site-head {
  position: relative; z-index: 5;
  background: var(--forest);
  padding-block: 20px;
}
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.mark { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--chalk); }
.mark svg { width: 38px; height: 38px; flex: none; }
.mark b {
  font-family: var(--display); font-weight: 400; font-size: 19px;
  line-height: 1.1; letter-spacing: -0.01em;
}
.mark b span { display: block; color: var(--olive-lit); }

.head-nav { display: none; gap: 22px; align-items: center; }
.head-nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding-inline: 2px;
  font-size: 14px; font-weight: 500; text-decoration: none; color: rgba(247,244,238,.82);
  transition: color .2s ease;
}
.head-nav a:hover { color: var(--olive-lit); }

.head-cta { display: flex; }
.head-cta .btn { min-height: 44px; padding: 10px 20px; font-size: 14px; }

@media (min-width: 900px) {
  .head-nav { display: flex; }
  .head-cta .btn { min-height: 48px; padding: 12px 26px; font-size: 15px; }
}

/* ── Hero ───────────────────────────────────────────────────────── */

.hero {
  background: var(--forest);
  color: var(--chalk);
  padding-block: clamp(56px, 9vw, 108px) clamp(0px, 0vw, 0px);
  position: relative;
}
.hero::after {
  /* soft botanical wash, tied to the mid-green of the logo, not decoration for its own sake */
  content: ''; position: absolute; inset: auto 0 0 0; height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(20,41,31,.55));
  pointer-events: none;
}
.hero-in { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(42px, 7.6vw, 72px);
  max-width: 15ch;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--olive-lit); display: block; }

.hero p.lede { color: rgba(247,244,238,.86); max-width: 50ch; margin: 0 0 32px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(40px, 6vw, 60px); }

.proof-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px;
  border-top: 1px solid rgba(168,180,115,.32);
  padding-top: 22px; padding-bottom: clamp(48px, 7vw, 76px);
  font-size: 15px; color: rgba(247,244,238,.8);
}
.proof-strip strong { color: var(--chalk); font-weight: 600; }
.proof-strip .stars { color: var(--olive-lit); letter-spacing: 2px; font-size: 14px; }
.proof-strip a { color: var(--olive-lit); text-underline-offset: 4px; }

/* ── Section scaffolding ────────────────────────────────────────── */

section { scroll-margin-top: 20px; }

.band-linen { background: var(--linen); padding-block: clamp(64px, 9vw, 104px); }
.band-chalk { background: var(--chalk); padding-block: clamp(64px, 9vw, 104px); }
.band-forest { background: var(--forest); color: var(--chalk); padding-block: clamp(68px, 10vw, 112px); }

.sec-head { max-width: 46ch; margin-bottom: clamp(36px, 5vw, 54px); }
.sec-head h2 { font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 16px; }
.band-forest .sec-head h2 { color: var(--chalk); }
.band-forest .eyebrow { color: var(--olive-lit); }
.band-forest .lede { color: rgba(247,244,238,.82); }

/* ── Pillars – organic radii echoing the stacked-stone mark ─────── */

.pillars { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .pillars { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.pillar {
  background: var(--chalk);
  border: 1px solid var(--line);
  padding: 30px 26px 26px;
  display: flex; flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
}
.pillar:nth-child(1) { border-radius: 90px 24px 24px 24px; }
.pillar:nth-child(2) { border-radius: 24px 90px 24px 24px; }
.pillar:nth-child(3) { border-radius: 24px 24px 24px 90px; }
.pillar:nth-child(4) { border-radius: 24px 24px 90px 24px; }
.pillar:hover { transform: translateY(-4px); border-color: var(--sage); }

.pillar .p-dot { width: 26px; height: 26px; border-radius: 50%; margin-bottom: 18px; }
.pillar:nth-child(1) .p-dot { background: var(--forest); }
.pillar:nth-child(2) .p-dot { background: var(--sage); }
.pillar:nth-child(3) .p-dot { background: var(--olive); }
.pillar:nth-child(4) .p-dot { background: #97A35F; }

.pillar h3 { font-size: 25px; margin-bottom: 8px; }
.pillar .p-line { font-size: 14px; font-weight: 600; color: var(--sage-ink); margin: 0 0 12px; }
.pillar p { margin: 0 0 18px; font-size: 15px; color: var(--ink-soft); }
.pillar .p-count {
  margin-top: auto; font-size: 13px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--olive-ink);
}

/* ── Founder ────────────────────────────────────────────────────── */

.founder { display: grid; gap: clamp(32px, 5vw, 56px); align-items: start; }
@media (min-width: 900px) { .founder { grid-template-columns: 1.15fr 1fr; } }

.founder blockquote {
  margin: 0 0 26px; padding: 0 0 0 22px;
  border-left: 3px solid var(--olive);
  font-family: var(--display); font-size: clamp(20px, 2.4vw, 26px); line-height: 1.32;
  color: var(--forest);
}
.founder blockquote cite { display: block; margin-top: 12px; font: 500 14px/1.5 var(--body); font-style: normal; color: var(--ink-soft); }
.founder p { max-width: var(--measure); }

.chips { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.chips li {
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  border: 1px solid var(--line); border-radius: 30px; padding: 8px 16px;
  background: var(--linen); color: var(--forest);
}

.founder-aside {
  background: var(--forest); color: var(--chalk);
  border-radius: 60px 20px 20px 20px; padding: 34px 30px;
}
.founder-aside .big {
  font-family: var(--display); font-size: clamp(54px, 8vw, 74px); line-height: 1;
  color: var(--olive-lit); display: block; margin-bottom: 6px;
}
.founder-aside p { color: rgba(247,244,238,.85); font-size: 15px; margin: 0 0 22px; }
.founder-aside ul { list-style: none; margin: 0; padding: 0; font-size: 15px; }
.founder-aside li { padding: 11px 0; border-top: 1px solid rgba(168,180,115,.28); }
.founder-aside li:first-child { border-top: 0; }

/* ── Signature: the proof block ─────────────────────────────────── */

.figures {
  display: grid; gap: 4px; grid-template-columns: 1fr;
  margin-bottom: clamp(38px, 5vw, 52px);
}
@media (min-width: 720px) { .figures { grid-template-columns: repeat(3, 1fr); gap: 0; } }

.fig { padding: 26px 4px; border-top: 1px solid rgba(168,180,115,.3); }
@media (min-width: 720px) {
  .fig { border-top: 0; border-left: 1px solid rgba(168,180,115,.3); padding: 8px 28px; }
  .fig:first-child { border-left: 0; padding-left: 0; }
}
.fig b {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: clamp(50px, 8.4vw, 82px); line-height: .98; color: var(--olive-lit);
  letter-spacing: -0.02em;
}
.fig span { display: block; margin-top: 8px; font-size: 15px; color: rgba(247,244,238,.8); }

.quotes { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

.quote {
  background: rgba(247,244,238,.07);
  border: 1px solid rgba(168,180,115,.25);
  border-radius: 20px 20px 20px 50px;
  padding: 26px 24px;
  display: flex; flex-direction: column;
}
.quote .stars { color: var(--olive-lit); letter-spacing: 3px; font-size: 13px; margin-bottom: 14px; }
.quote p { margin: 0 0 20px; font-size: 15px; line-height: 1.6; color: rgba(247,244,238,.92); }
.quote footer { margin-top: auto; font-size: 13px; color: rgba(247,244,238,.65); }
.quote footer b { display: block; color: var(--chalk); font-weight: 600; font-size: 14px; }

.proof-note {
  margin-top: 30px; font-size: 14px; color: rgba(247,244,238,.62);
  max-width: 62ch;
}
.proof-note a { color: var(--olive-lit); text-underline-offset: 4px; }

/* ── Texture strips ─────────────────────────────────────────────────
   The clinic publishes no photography of its own rooms, only green-tinted
   stock. Used small and cropped to the still-life, these read as a deliberate
   divider rather than as a photograph claiming to show the premises. */

.strip { position: relative; overflow: hidden; background: var(--forest-deep); line-height: 0; }
.strip img { width: 100%; height: clamp(108px, 15vw, 168px); object-fit: cover; }
.strip-stones img { object-position: 82% 62%; }
.strip-float img { object-position: 58% 52%; }
.strip::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--forest-deep) 0%, rgba(20,41,31,.12) 34%, rgba(20,41,31,.12) 66%, var(--forest-deep) 100%);
  pointer-events: none;
}

/* ── Prices ─────────────────────────────────────────────────────── */

.price-grid { display: grid; gap: clamp(28px, 4vw, 44px); }
@media (min-width: 880px) { .price-grid { grid-template-columns: 1fr 1fr; } }

.price-card { background: var(--chalk); border: 1px solid var(--line); border-radius: 22px; padding: 30px 28px; }
.price-card h3 { font-size: 26px; margin-bottom: 6px; }
.price-card > p { font-size: 15px; color: var(--ink-soft); margin: 0 0 22px; }

.rows { list-style: none; margin: 0; padding: 0; }
.rows li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 13px 0; border-top: 1px solid var(--line); font-size: 15px;
}
.rows li:first-child { border-top: 0; }
.rows .amt { font-weight: 600; color: var(--forest); white-space: nowrap; font-variant-numeric: tabular-nums; }

.price-foot { margin: 22px 0 0; font-size: 13.5px; color: var(--ink-soft); }

/* ── Visit ──────────────────────────────────────────────────────── */

.visit { display: grid; gap: clamp(30px, 5vw, 52px); }
@media (min-width: 900px) { .visit { grid-template-columns: 1fr 1fr; } }

.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 12px 0; border-top: 1px solid var(--line); font-size: 15px;
}
.hours li:first-child { border-top: 0; }
.hours .d { font-weight: 600; }
.hours .t { color: var(--ink-soft); font-variant-numeric: tabular-nums; text-align: right; }

.contact-list { list-style: none; margin: 0 0 26px; padding: 0; }
.contact-list li { padding: 12px 0; border-top: 1px solid var(--line); font-size: 15px; }
.contact-list li:first-child { border-top: 0; }
.contact-list .k { display: block; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-ink); margin-bottom: 3px; }
.contact-list a { font-weight: 500; text-underline-offset: 3px; }

.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Footer ─────────────────────────────────────────────────────── */

.site-foot { background: var(--forest-deep); color: rgba(247,244,238,.72); padding-block: clamp(46px, 6vw, 66px) 32px; font-size: 14px; }
.foot-grid { display: grid; gap: 30px; margin-bottom: 36px; }
@media (min-width: 820px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; } }
.site-foot h4 { font: 600 12px/1.4 var(--body); letter-spacing: .15em; text-transform: uppercase; color: var(--olive-lit); margin: 0 0 14px; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { padding: 5px 0; }
.site-foot a { text-decoration: none; transition: color .2s ease; }
.site-foot a:hover { color: var(--olive-lit); text-decoration: underline; }
.foot-base { border-top: 1px solid rgba(168,180,115,.2); padding-top: 22px; font-size: 13px; color: rgba(247,244,238,.5); }
.foot-base p { margin: 0 0 6px; }

/* ── Motion ─────────────────────────────────────────────────────── */

.rv { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .rv { opacity: 1; transform: none; }
  .btn:hover, .pillar:hover { transform: none; }
  html { scroll-behavior: auto; }
}
