/* ============================================================
   Sonika Singh — Therapist & Counsellor
   Design principle: the page should feel like the room.
   Low contrast, generous air, imagery over prose.
   ============================================================ */

:root {
  /* softer and more tonal than the old forest/cream — calm, not stark */
  --bone:      #FBF9F5;
  --bone-warm: #F5F1E8;
  --linen:     #EFE9DD;
  --linen-2:   #E6DED0;
  --sage:      #A8B7A2;
  --sage-soft: #C7D1C2;
  --sage-deep: #66795F;
  --pine:      #2F3D34;
  --pine-deep: #253128;
  --clay:      #C08D74;
  --clay-soft: #E8D3C6;
  --clay-tint: #F6E9E0;
  --sage-mid:  #8B9E84;
  --sage-tint: #DFE6DB;
  --ink:       #2C2E29;
  --ink-soft:  #55584F;
  --ink-mute:  #7C7E74;

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "DM Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --gut: clamp(22px, 5vw, 72px);
  --max: 1240px;
  --ease: cubic-bezier(.22, .68, .3, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* very fine paper grain — sits above everything, ignores pointers */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 200; pointer-events: none;
  opacity: .028; mix-blend-mode: multiply;
  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='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -.018em;
  margin: 0;
  font-variation-settings: "SOFT" 30, "WONK" 0;
}
h1 { font-size: clamp(3rem, 8.2vw, 6.4rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 400; letter-spacing: -.01em; }
em { font-style: italic; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(84px, 12vw, 168px); }

/* ---------- small caps label ---------- */
.label {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 26px;
}
.on-dark .label { color: var(--sage); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: .92rem; font-weight: 500; letter-spacing: .01em;
  padding: 16px 34px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--sage-deep); outline-offset: 3px; }

.btn-solid { background: var(--pine); color: var(--bone); }
.btn-solid:hover { background: var(--pine-deep); }

/* the one button that matters */
.btn-hero {
  font-size: 1.02rem; padding: 21px 46px; letter-spacing: .015em;
  box-shadow: 0 18px 40px -20px rgba(47,61,52,.6);
}
.btn-hero:hover { box-shadow: 0 24px 48px -20px rgba(47,61,52,.7); }
@media (max-width: 520px) { .btn-hero { font-size: .96rem; padding: 19px 34px; width: 100%; } }

.btn-quiet { background: transparent; color: var(--ink); border-color: var(--linen-2); }
.btn-quiet:hover { border-color: var(--sage-deep); }

.btn-light { background: var(--bone); color: var(--pine); }
.btn-light:hover { background: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(251,249,245,0);
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  background: rgba(251,249,245,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: rgba(230,222,208,.9);
}
.nav-in {
  max-width: var(--max); margin-inline: auto; padding: 22px var(--gut);
  display: flex; align-items: center; gap: 30px;
}
.wordmark {
  font-family: var(--display); font-weight: 400; font-size: 1.22rem;
  letter-spacing: -.01em; color: var(--ink); text-decoration: none; margin-right: auto;
  font-variation-settings: "SOFT" 30, "WONK" 0;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  text-decoration: none; font-size: .88rem; color: var(--ink-soft);
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--sage-deep); transition: right .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav .btn { padding: 12px 26px; font-size: .85rem; }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(40px, 7vw, 90px) clamp(70px, 10vw, 130px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; z-index: 0;
  width: 130vmax; height: 130vmax; right: -46vmax; top: -66vmax;
  background: radial-gradient(circle at center,
              rgba(168,183,162,.30) 0%,
              rgba(199,209,194,.16) 38%,
              rgba(251,249,245,0) 68%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.hero h1 { margin-bottom: 30px; }
.hero h1 em { color: var(--sage-deep); }
.hero-sub {
  font-size: clamp(1rem, 1.25vw, 1.1rem); max-width: 38ch;
  color: var(--ink-soft); margin-bottom: 36px;
}

/* organic portrait frame */
.portrait { position: relative; width: 100%; max-width: 470px; margin-left: auto; }
.portrait::before {
  content: ""; position: absolute; inset: -6% -7% -4% -8%;
  background: linear-gradient(160deg, var(--sage-soft), rgba(168,183,162,.35));
  border-radius: 58% 42% 46% 54% / 44% 48% 52% 56%;
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { border-radius: 58% 42% 46% 54% / 44% 48% 52% 56%; }
  to   { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }
}
.portrait figure {
  position: relative; margin: 0; overflow: hidden;
  border-radius: 240px 240px 14px 14px;
  box-shadow: 0 40px 80px -46px rgba(47,61,52,.55);
}
.portrait img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .portrait { max-width: 300px; margin-inline: auto; }
}

/* ---------- fact strip ---------- */
.facts { border-block: 1px solid var(--linen-2); background: var(--bone-warm); }
.facts-in {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px clamp(18px, 3.5vw, 44px); padding-block: 22px;
  font-size: .82rem; color: var(--ink-mute); letter-spacing: .04em; text-align: center;
}
.facts-in i { font-style: normal; display: flex; align-items: center; gap: clamp(18px, 3.5vw, 44px); }
.facts-in i:not(:last-child)::after {
  content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--sage);
}
@media (max-width: 720px) {
  .facts-in { flex-direction: column; gap: 6px; }
  .facts-in i:not(:last-child)::after { display: none; }
}

/* ---------- the big quote ---------- */
.hero-quote { position: relative; overflow: hidden; background: var(--linen); padding-block: clamp(84px, 12vw, 150px); }
.hero-quote .bg {
  position: absolute; inset: 0; z-index: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .3; filter: saturate(.6);
}
.hero-quote::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, var(--linen) 0%, rgba(239,233,221,.62) 45%, var(--linen) 100%);
}
.hero-quote .wrap { position: relative; z-index: 2; text-align: center; }
.hero-quote blockquote {
  margin: 0 auto; max-width: 20ch;
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.75rem, 4.1vw, 3.1rem); line-height: 1.2;
  letter-spacing: -.017em; color: var(--ink);
  font-variation-settings: "SOFT" 30, "WONK" 0;
}
.hero-quote cite {
  display: block; margin-top: 30px; font-style: normal;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sage-deep);
}

/* ---------- what we work on ---------- */
.topics-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.topics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(40px, 6vw, 70px);
  border-top: 1px solid var(--linen-2);
}
.topic {
  padding: clamp(26px, 3.4vw, 42px) 24px clamp(26px, 3.4vw, 42px) 4px;
  border-bottom: 1px solid var(--linen-2);
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.2rem, 2.1vw, 1.72rem); color: var(--ink);
  letter-spacing: -.012em; line-height: 1.15;
  display: flex; align-items: baseline; gap: 14px;
  transition: color .3s var(--ease), padding-left .35s var(--ease);
  font-variation-settings: "SOFT" 30, "WONK" 0;
}
.topic:not(:nth-child(3n)) { border-right: 1px solid var(--linen-2); }
.topic span {
  font-family: var(--sans); font-size: .68rem; font-weight: 500;
  letter-spacing: .12em; color: var(--sage); flex: none;
}
.topic:hover { color: var(--sage-deep); padding-left: 10px; }
@media (max-width: 820px) {
  .topics { grid-template-columns: repeat(2, 1fr); }
  .topic:not(:nth-child(3n)) { border-right: none; }
  .topic:nth-child(odd) { border-right: 1px solid var(--linen-2); }
}
@media (max-width: 520px) {
  .topics { grid-template-columns: 1fr; }
  .topic:nth-child(odd) { border-right: none; }
}

/* ---------- about ---------- */
.about { background: var(--bone-warm); }
.about-grid {
  display: grid; grid-template-columns: .88fr 1.12fr;
  gap: clamp(36px, 6vw, 86px); align-items: center;
}
.about figure {
  margin: 0; overflow: hidden; border-radius: 200px 200px 12px 12px;
  box-shadow: 0 34px 70px -46px rgba(47,61,52,.5);
}
.about figure img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; }
.about h2 { margin-bottom: 26px; max-width: 15ch; }
.about-copy p { font-size: clamp(1rem, 1.15vw, 1.06rem); max-width: 46ch; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.chip {
  font-size: .78rem; color: var(--ink-soft);
  padding: 8px 16px; border: 1px solid var(--linen-2); border-radius: 999px;
  background: rgba(251,249,245,.6);
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about figure { max-width: 320px; }
}

/* ---------- quote cluster ---------- */
.voices-grid { columns: 3; column-gap: clamp(16px, 2vw, 26px); margin-top: clamp(40px, 6vw, 66px); }
@media (max-width: 980px) { .voices-grid { columns: 2; } }
@media (max-width: 640px) { .voices-grid { columns: 1; } }

.voice {
  break-inside: avoid; margin: 0 0 clamp(16px, 2vw, 26px);
  padding: clamp(24px, 2.6vw, 34px);
  border-radius: 18px;
  background: var(--bone-warm);
  border: 1px solid var(--linen-2);
}
.voice p { font-size: .97rem; line-height: 1.6; color: var(--ink-soft); }
.voice cite {
  display: block; margin-top: 16px; font-style: normal;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-deep);
}
.voice.accent { background: var(--sage); border-color: var(--sage); }
.voice.accent p { color: #F8FAF7; }
.voice.accent cite { color: rgba(248,250,247,.82); }
.voice.deep { background: var(--pine); border-color: var(--pine); }
.voice.deep p { color: rgba(251,249,245,.92); }
.voice.deep cite { color: var(--sage); }
.voice.big p {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.42rem); line-height: 1.3;
  letter-spacing: -.012em; color: var(--ink); font-variation-settings: "SOFT" 30;
}
.voice.accent.big p { color: #F8FAF7; }
.voice.deep.big p { color: rgba(251,249,245,.95); }

.voices-note { margin-top: 30px; text-align: center; font-size: .78rem; color: var(--ink-mute); letter-spacing: .03em; }

/* ---------- how it works ---------- */
.how { background: var(--pine); color: rgba(251,249,245,.76); }
.how h2 { color: var(--bone); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 4vw, 56px); margin-top: clamp(44px, 6vw, 70px); }
.step { border-top: 1px solid rgba(168,183,162,.36); padding-top: 22px; }
.step b { display: block; font-family: var(--sans); font-weight: 500; font-size: .7rem; letter-spacing: .2em; color: var(--sage); margin-bottom: 14px; }
.step h3 { color: var(--bone); margin-bottom: 8px; }
.step p { font-size: .93rem; color: rgba(251,249,245,.68); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---------- closing ---------- */
.close { text-align: center; position: relative; overflow: hidden; }
.close::before {
  content: ""; position: absolute; z-index: 0;
  width: 120vmax; height: 120vmax; left: 50%; top: 10%; transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(168,183,162,.26) 0%, rgba(251,249,245,0) 60%);
  pointer-events: none;
}
.close .wrap { position: relative; z-index: 1; }
.close h2 { font-size: clamp(2.4rem, 6.4vw, 4.6rem); margin-bottom: 22px; }
.close p { max-width: 40ch; margin-inline: auto; color: var(--ink-soft); }
.close .btn-row { justify-content: center; margin-top: 38px; }
.close small { display: block; margin-top: 30px; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); }

/* ---------- footer ---------- */
.footer { background: var(--bone-warm); border-top: 1px solid var(--linen-2); padding-block: 34px; }
.footer-in {
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  align-items: center; justify-content: space-between;
  font-size: .8rem; color: var(--ink-mute);
}
.footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--ink); }
.footer .wordmark { font-size: 1.05rem; margin-right: 0; }

.crisis { background: var(--bone-warm); padding-bottom: 34px; }
.crisis .wrap {
  border-top: 1px solid var(--linen-2); padding-top: 22px;
  font-size: .76rem; line-height: 1.6; color: var(--ink-mute); max-width: 900px;
}
.crisis strong { color: var(--ink-soft); font-weight: 500; }
.crisis a { color: var(--sage-deep); }

/* ---------- reveal ---------- */
.js .rv { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .rv { opacity: 1; transform: none; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.book-body { background: var(--bone-warm); }
.book-head { padding-block: clamp(48px, 7vw, 84px) 0; text-align: center; }
.book-head h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); }
.book-head p { max-width: 44ch; margin: 16px auto 0; }

.flow { max-width: 700px; margin: clamp(38px, 6vw, 56px) auto 0; }

.stepper { display: flex; margin-bottom: 34px; padding: 0; }
.stepper li { list-style: none; flex: 1; text-align: center; position: relative; padding-top: 28px; }
.stepper li::before {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; border-radius: 50%; background: var(--linen-2); z-index: 2;
  transition: background .3s var(--ease);
}
.stepper li::after { content: ""; position: absolute; top: 11.5px; left: 0; right: 0; height: 1px; background: var(--linen-2); z-index: 1; }
.stepper li:first-child::after { left: 50%; }
.stepper li:last-child::after  { right: 50%; }
.stepper li span { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.stepper li.done::before, .stepper li.active::before { background: var(--sage-deep); }
.stepper li.active span { color: var(--ink); }

.card {
  background: var(--bone); border: 1px solid var(--linen-2);
  border-radius: 20px; padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 26px 60px -48px rgba(47,61,52,.4);
}
.card h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 8px; }
.card > p.sub { color: var(--ink-mute); font-size: .93rem; margin-bottom: 28px; }
.panel[hidden] { display: none; }

.field { margin-bottom: 20px; }
.field label, .legend {
  display: block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sage-deep); font-weight: 500; margin-bottom: 9px;
}
.field .hint { text-transform: none; letter-spacing: 0; color: var(--ink-mute); font-size: .8rem; font-weight: 400; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--bone-warm); border: 1px solid var(--linen-2); border-radius: 12px;
  padding: 14px 16px; transition: border-color .25s, background .25s;
}
.field textarea { min-height: 104px; resize: vertical; line-height: 1.6; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage-deep); background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: #A9A99E; }
.field.invalid input, .field.invalid textarea { border-color: #A8574A; }
.err { color: #A8574A; font-size: .8rem; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }

.pills { display: flex; flex-wrap: wrap; gap: 9px; }
.pill { position: relative; }
.pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.pill span {
  display: block; padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--linen-2); font-size: .88rem; color: var(--ink-soft);
  cursor: pointer; transition: .25s var(--ease); background: var(--bone-warm);
}
.pill input:checked + span { background: var(--pine); color: var(--bone); border-color: var(--pine); }
.pill input:focus-visible + span { outline: 2px solid var(--sage-deep); outline-offset: 2px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
@media (max-width: 620px) { .two-col { grid-template-columns: 1fr; } }

.pay-amount {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 22px 24px; border-radius: 14px; background: var(--pine); color: var(--bone);
  margin-bottom: 26px; flex-wrap: wrap;
}
.pay-amount .lab { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); }
.pay-amount .amt { font-family: var(--display); font-weight: 300; font-size: 2rem; }
.pay-amount .amt .cur { font-family: var(--sans); font-weight: 300; font-size: .78em; margin-right: .06em; }

.pay-grid { display: grid; grid-template-columns: 200px 1fr; gap: 30px; align-items: start; }
@media (max-width: 640px) { .pay-grid { grid-template-columns: 1fr; } }
.qr-box { background: #fff; border: 1px solid var(--linen-2); border-radius: 14px; padding: 14px; }
.qr-box img { width: 100%; height: auto; border-radius: 6px; }
.qr-cap { font-size: .74rem; color: var(--ink-mute); margin-top: 10px; letter-spacing: .04em; text-align: center; }

.upi-apps { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; }
.upi-apps .btn { padding: 11px 20px; font-size: .85rem; }
.upi-id-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: var(--bone-warm); border: 1px solid var(--linen-2); border-radius: 12px;
  padding: 13px 15px; margin-bottom: 20px;
}
.upi-id-row code { font-family: var(--sans); font-size: 1rem; color: var(--ink); }
.copy-btn {
  margin-left: auto; background: none; border: 1px solid var(--linen-2); border-radius: 999px;
  padding: 6px 15px; font-family: var(--sans); font-size: .8rem; color: var(--ink-soft); cursor: pointer;
}
.copy-btn:hover { border-color: var(--sage-deep); }

.note {
  background: var(--linen); border-left: 2px solid var(--sage);
  padding: 15px 18px; border-radius: 0 12px 12px 0; font-size: .88rem; color: var(--ink-soft); margin-top: 22px;
}
.note strong { color: var(--ink); font-weight: 500; }

.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--linen-2); }
.actions .spacer { flex: 1; }
.link-back {
  background: none; border: none; font-family: var(--sans); font-size: .88rem;
  color: var(--ink-mute); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; padding: 0;
}
.link-back:hover { color: var(--ink); }

.summary { list-style: none; padding: 0; margin: 0 0 26px; }
.summary li { display: grid; grid-template-columns: 130px 1fr; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--linen-2); font-size: .92rem; }
.summary .k { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-deep); padding-top: 3px; }
.summary .v { color: var(--ink); word-break: break-word; }
@media (max-width: 560px) { .summary li { grid-template-columns: 1fr; gap: 2px; } }

.success-mark {
  width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--sage);
  display: grid; place-items: center; margin: 0 auto 20px; color: var(--sage-deep);
}
.cal-embed { margin-top: 24px; border-radius: 14px; overflow: hidden; border: 1px solid var(--linen-2); background: var(--bone); }
.cal-embed iframe { width: 100%; height: 640px; border: 0; display: block; }

.faq { max-width: 700px; margin: 60px auto 0; }
.faq h2 { font-size: 1.5rem; margin-bottom: 10px; }
.faq details { border-bottom: 1px solid var(--linen-2); padding: 18px 0; }
.faq summary {
  cursor: pointer; list-style: none; font-family: var(--display); font-weight: 400;
  font-size: 1.08rem; color: var(--ink);
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--sage-deep); font-size: 1.25rem; font-family: var(--sans); font-weight: 300; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 12px; font-size: .93rem; color: var(--ink-mute); }

/* ============================================================
   v2 — colour, contrast and the things that make it not-white
   ============================================================ */

/* ---- hero gets a real colour field, not just a pale wash ---- */
.hero { padding-block: clamp(30px, 5vw, 64px) clamp(60px, 8vw, 100px); }
.hero::before { display: none; }

.hero-field {
  position: absolute; z-index: 0; pointer-events: none;
  top: -18%; right: -18%; width: 68%; height: 136%;
  background:
    radial-gradient(closest-side at 34% 26%, rgba(192,141,116,.62), rgba(192,141,116,0) 70%),
    radial-gradient(closest-side at 70% 74%, rgba(139,158,132,.85), rgba(139,158,132,0) 72%),
    linear-gradient(150deg, #CBD6C4, #EFD9CA);
  border-radius: 52% 48% 42% 58% / 46% 52% 48% 54%;
  animation: drift 22s ease-in-out infinite alternate;
}
@media (max-width: 900px) {
  .hero-field { top: 26%; right: -28%; width: 108%; height: 62%; }
}

.hero::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: -22vmax; bottom: -34vmax; width: 56vmax; height: 56vmax;
  background: radial-gradient(circle at center, rgba(192,141,116,.22) 0%, rgba(251,249,245,0) 66%);
}
.hero-grid { align-items: center; }
.portrait::before { display: none; }
.portrait figure { border-radius: 260px 260px 18px 18px; }

/* quote card floating over the portrait — testimonials, immediately */
.hero-card {
  position: absolute; z-index: 3;
  left: -17%; bottom: -4%; width: min(310px, 74%);
  background: var(--bone);
  border-radius: 18px; padding: 22px 24px;
  box-shadow: 0 28px 56px -26px rgba(47,61,52,.42);
}
.hero-card p {
  font-family: var(--display); font-weight: 300;
  font-size: 1.02rem; line-height: 1.32; letter-spacing: -.01em; color: var(--ink);
  font-variation-settings: "SOFT" 30;
}
.hero-card cite {
  display: block; margin-top: 12px; font-style: normal;
  font-size: .66rem; letter-spacing: .17em; text-transform: uppercase; color: var(--sage-deep);
}
.hero-card::before {
  content: ""; position: absolute; left: 24px; top: -9px;
  width: 34px; height: 3px; border-radius: 2px; background: var(--clay);
}
@media (max-width: 900px) { .hero-card { left: -6%; bottom: -5%; width: min(300px, 88%); } }
@media (max-width: 560px) { .hero-card { position: relative; left: auto; bottom: auto; width: 100%; margin-top: 30px; } }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px;
  font-size: .82rem; color: var(--ink-mute);
}
.hero-meta span { display: flex; align-items: center; gap: 22px; }
.hero-meta span:not(:last-child)::after {
  content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--clay);
}

/* ---- scrolling testimonial marquee, straight after the hero ---- */
.marquee {
  background: var(--pine); color: var(--bone);
  padding-block: 34px; overflow: hidden; position: relative;
  border-bottom: 3px solid var(--clay);
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--pine), rgba(47,61,52,0)); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--pine), rgba(47,61,52,0)); }
.marquee-track { display: flex; width: max-content; animation: slide 58s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
}
.marquee-item {
  display: flex; align-items: center; gap: 16px;
  padding-inline: clamp(24px, 3vw, 46px); flex: none;
}
.marquee-item q {
  font-family: var(--display); font-weight: 300; font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.22rem); color: var(--bone);
  letter-spacing: -.008em; quotes: "“" "”";
}
.marquee-item b {
  font-family: var(--sans); font-weight: 500; font-size: .66rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sage); white-space: nowrap;
}
.marquee-item::after {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--clay); flex: none;
}

/* ---- topics become real, colour-filled cards ---- */
.topics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
  margin-top: clamp(40px, 6vw, 66px);
  border-top: none;
}
.topic {
  display: flex; flex-direction: column; justify-content: space-between;
  text-decoration: none; padding: clamp(26px, 2.8vw, 38px);
  border: none; border-radius: 20px;
  background: #D5DFCE;
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.18rem, 1.9vw, 1.55rem); color: var(--ink);
  letter-spacing: -.014em; line-height: 1.18;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  min-height: clamp(150px, 17vw, 200px);
  position: relative;
  font-variation-settings: "SOFT" 30, "WONK" 0;
}
.topic span {
  display: block; font-family: var(--sans); font-size: .66rem; font-weight: 500;
  letter-spacing: .2em; opacity: .8;
}
.topic b { font-weight: inherit; display: block; padding-right: 42px; }
.topic:hover { transform: translateY(-5px); box-shadow: 0 26px 44px -28px rgba(47,61,52,.42); }
.topic i {
  position: absolute; right: clamp(24px, 2.6vw, 34px); bottom: clamp(24px, 2.6vw, 34px);
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid currentColor; opacity: .32;
  display: grid; place-items: center; font-style: normal; font-size: .72rem;
  transition: opacity .35s var(--ease);
}
.topic:hover i { opacity: .75; }
@media (max-width: 860px) { .topics { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .topics { grid-template-columns: 1fr; } .topic { min-height: 0; } }

.about figure { border-radius: 220px 220px 16px 16px; }

/* ---- life strip: the photos that show a person, not a brand ---- */
.life-grid {
  display: grid; grid-template-columns: 1.25fr .95fr .8fr;
  gap: clamp(12px, 1.6vw, 20px); align-items: end;
}
.life figure { margin: 0; position: relative; }
.life img {
  width: 100%; height: auto; object-fit: cover; border-radius: 16px;
  filter: saturate(.78) contrast(1.02);
}
.life figure:nth-child(1) img { aspect-ratio: 4/3; object-position: 50% 42%; filter: saturate(.6) contrast(1.03); }
.life figure:nth-child(2) img { aspect-ratio: 4/3; }
.life figure:nth-child(3) img { aspect-ratio: 3/4; }
.life figcaption {
  font-size: .74rem; color: var(--ink-mute); margin-top: 10px; line-height: 1.45; max-width: 34ch;
}
@media (max-width: 820px) {
  .life-grid { grid-template-columns: 1fr 1fr; }
  .life figure:nth-child(1) { grid-column: 1 / -1; }
}

/* ---- voices on deep green ---- */
#voices { background: var(--pine); }
#voices h2 { color: var(--bone); }
#voices .label { color: var(--sage); }
.voice { background: rgba(251,249,245,.06); border-color: rgba(168,183,162,.24); }
.voice p { color: rgba(251,249,245,.9); }
.voice cite { color: var(--sage); }
.voice.big p { color: var(--bone); }
.voice.accent { background: var(--sage); border-color: var(--sage); }
.voice.accent p, .voice.accent.big p { color: #23301F; }
.voice.accent cite { color: rgba(35,48,31,.72); }
.voice.deep { background: var(--clay); border-color: var(--clay); }
.voice.deep p, .voice.deep.big p { color: #3A241B; }
.voice.deep cite { color: rgba(58,36,27,.72); }
.voices-note { color: rgba(251,249,245,.45); }

/* ---- how it works, on bone with a sage panel ---- */
.how { background: var(--bone); color: var(--ink-soft); }
.how h2 { color: var(--ink); }
.how .label { color: var(--sage-deep); }
.step { border-top: 1px solid var(--linen-2); }
.step b { color: var(--clay); }
.step h3 { color: var(--ink); }
.step p { color: var(--ink-mute); }

/* ---- closing: full colour ---- */
.close { background: var(--sage-tint); }
.close::before {
  width: 100vmax; height: 100vmax; top: -20%;
  background: radial-gradient(circle at center, rgba(192,141,116,.34) 0%, rgba(223,230,219,0) 62%);
}
.close small { color: var(--sage-deep); }

.footer { background: var(--sage-tint); border-top-color: rgba(168,183,162,.4); }
.crisis { background: var(--sage-tint); }
.crisis .wrap { border-top-color: rgba(168,183,162,.4); }

/* ============================================================
   v3 — the radiant motif, applied as a system
   ============================================================ */

:root {
  /* --radiant / --radiant-soft are defined in the v5 block below */
}

/* ---------- ABOUT, rebuilt ---------- */
.about { background: var(--bone); position: relative; overflow: hidden; }
.about::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--radiant-soft); opacity: .85;
}
.about .wrap { position: relative; z-index: 1; }
.about-grid { grid-template-columns: 1.06fr .94fr; align-items: center; }
.about-copy { order: -1; }
.about figure {
  border-radius: 22px; box-shadow: 0 44px 80px -46px rgba(47,61,52,.5); margin: 0;
}
.about figure img { aspect-ratio: 4/3; border-radius: 22px; }
.about h2 { max-width: 13ch; }
.about-copy p { max-width: 44ch; }
@media (max-width: 880px) { .about figure { max-width: none; } }

/* credentials as a real timeline */
.tl { margin-top: clamp(56px, 8vw, 92px); position: relative; z-index: 1; }
.tl-head {
  font-size: .7rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 30px;
}
.tl-track {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 2vw, 26px);
  border-top: 1px solid rgba(102,121,95,.32); padding-top: 0;
}
.tl-item { padding-top: 26px; position: relative; }
.tl-item::before {
  content: ""; position: absolute; top: -5px; left: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--clay); box-shadow: 0 0 0 4px var(--bone);
}
.tl-item:nth-child(even)::before { background: var(--sage-deep); }
.tl-item .yr {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; letter-spacing: -.01em;
  font-variation-settings: "SOFT" 30;
}
.tl-item .what { display: block; font-size: .9rem; color: var(--ink-soft); line-height: 1.45; }
.tl-item .where { display: block; font-size: .8rem; color: var(--ink-mute); margin-top: 4px; line-height: 1.4; }
@media (max-width: 900px) { .tl-track { grid-template-columns: repeat(2, 1fr); row-gap: 30px; } }
@media (max-width: 520px) { .tl-track { grid-template-columns: 1fr; } }

/* ---------- LIFE: big images, not thumbnails ---------- */
.life { background: var(--bone); padding-block: 0 clamp(80px, 11vw, 150px); }
.life-grid { grid-template-columns: 1.4fr 1fr; gap: clamp(14px, 2vw, 24px); align-items: stretch; }
.life figure:nth-child(1) img,
.life figure:nth-child(2) img { aspect-ratio: 3/2; border-radius: 20px; }
.life figure:nth-child(1) img { object-position: 50% 40%; }
.life figure:nth-child(2) img { object-position: 50% 32%; }
.life figcaption { font-size: .78rem; margin-top: 12px; }
@media (max-width: 820px) {
  .life-grid { grid-template-columns: 1fr; }
  .life figure:nth-child(1) { grid-column: auto; }
}

/* full-bleed atmospheric band between sections */
.band {
  position: relative; height: clamp(240px, 34vw, 420px); overflow: hidden;
  display: grid; place-items: center;
}
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(251,249,245,.9) 0%, rgba(251,249,245,.25) 40%, rgba(251,249,245,.9) 100%);
}
.band blockquote {
  position: relative; z-index: 2; margin: 0; text-align: center;
  max-width: 18ch; padding-inline: var(--gut);
  font-family: var(--display); font-weight: 300; font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.22;
  letter-spacing: -.016em; color: var(--ink);
  font-variation-settings: "SOFT" 30;
}
.band cite {
  position: relative; z-index: 2; display: block; margin-top: 20px; font-style: normal;
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sage-deep);
}

/* ---------- CLIENTS, rebuilt on the radiant ground ---------- */
#voices { background: #33463A; position: relative; overflow: hidden; }
#voices::before {
  content: ""; position: absolute; inset: 0; z-index: 0; background: var(--radiant); opacity: .96;
}
#voices .wrap { position: relative; z-index: 1; }
#voices .label { color: rgba(255,244,235,.72); }
#voices h2 { color: #FFF7F0; }

.voice-lead {
  max-width: 22ch; margin: 0 auto clamp(44px, 6vw, 70px); text-align: center;
}
.voice-lead blockquote {
  margin: 0; font-family: var(--display); font-weight: 300;
  font-size: clamp(1.7rem, 3.9vw, 3rem); line-height: 1.18;
  letter-spacing: -.018em; color: #FFF8F2;
  font-variation-settings: "SOFT" 30;
}
.voice-lead cite {
  display: block; margin-top: 24px; font-style: normal;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,244,235,.7);
}

/* one consistent card shape — no more ragged masonry */
.voices-grid {
  columns: auto; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px); margin-top: 0;
}
.voice {
  margin: 0; display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(24px, 2.4vw, 32px);
  border-radius: 18px;
  background: rgba(255,248,242,.10);
  border: 1px solid rgba(255,248,242,.20);
  backdrop-filter: blur(3px);
}
.voice p, .voice.big p, .voice.accent p, .voice.deep p, .voice.accent.big p, .voice.deep.big p {
  font-family: var(--sans); font-weight: 400;
  font-size: .95rem; line-height: 1.6; letter-spacing: 0;
  color: rgba(255,248,242,.94);
}
.voice cite, .voice.accent cite, .voice.deep cite {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,248,242,.2);
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,244,235,.68);
}
.voice.accent, .voice.deep { background: rgba(255,248,242,.10); border-color: rgba(255,248,242,.20); }
.voices-note { color: rgba(255,244,235,.5); margin-top: 34px; }
@media (max-width: 900px) { .voices-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .voices-grid { grid-template-columns: 1fr; } }

/* ---------- HOW ---------- */
.how { background: var(--bone); }
.step b {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--clay); color: #FFF8F2; font-size: .78rem; letter-spacing: 0; margin-bottom: 18px;
}
.step:nth-child(2) b { background: var(--sage-mid); }
.step:nth-child(3) b { background: var(--pine); }

/* ---------- CLOSE keeps the radiant, now shared with the rest ---------- */
.close { background: transparent; position: relative; overflow: hidden; }
.close::before {
  content: ""; position: absolute; inset: 0; width: auto; height: auto;
  left: 0; top: 0; transform: none;
  background: var(--radiant-soft);
}

/* ============================================================
   v4 — palette correction
   The saturated orange→green gradient read as a flag. Back to the
   earlier scheme: bone / clay-tint / deep pine, with the clay bloom
   kept only as a soft wash, never a full-strength gradient.
   ============================================================ */

:root {
  /* the only "radiant" left: a quiet clay bloom over sage tint */
  --radiant:
    radial-gradient(90% 70% at 18% 8%, rgba(192,141,116,.20) 0%, rgba(192,141,116,0) 60%),
    radial-gradient(90% 80% at 84% 92%, rgba(139,158,132,.20) 0%, rgba(139,158,132,0) 62%);
  --radiant-soft:
    radial-gradient(90% 70% at 16% 6%, rgba(192,141,116,.16) 0%, rgba(192,141,116,0) 62%),
    radial-gradient(90% 80% at 86% 94%, rgba(139,158,132,.18) 0%, rgba(139,158,132,0) 64%);
}

/* ---- ABOUT: warm neutral ground, no colour ramp ---- */
.about { background: var(--clay-tint); }
.about::before { background: var(--radiant-soft); opacity: 1; }

/* ---- CLIENTS: flat deep green again ---- */
#voices { background: var(--pine); }
#voices::before { background: var(--radiant); opacity: 1; }
#voices .label { color: var(--sage); }
#voices h2 { color: var(--bone); }
.voice-lead blockquote { color: var(--bone); }
.voice-lead cite { color: var(--sage); }
.voice {
  background: rgba(251,249,245,.07);
  border-color: rgba(168,183,162,.22);
}
.voice p { color: rgba(251,249,245,.92); }
.voice cite { color: var(--sage); border-top-color: rgba(168,183,162,.22); }
.voices-note { color: rgba(251,249,245,.45); }

/* ---- CLOSE: sage tint with the soft clay bloom, as before ---- */
.close { background: var(--sage-tint); }
.close::before {
  background: radial-gradient(circle at 50% 24%, rgba(192,141,116,.30) 0%, rgba(223,230,219,0) 62%);
}

/* ---- fixes carried over ---- */

/* the lead quote was breaking to five lines */
.voice-lead { max-width: 760px; }
.voice-lead blockquote { max-width: none; }

/* her face was being cropped out of the at-home photo */
.life figure:nth-child(1) img,
.life figure:nth-child(2) img { aspect-ratio: 4/3; }
.life figure:nth-child(2) img { object-position: 50% 18%; }

/* the closing call to action should be as big as the one in the hero */
.close .btn { font-size: 1.02rem; padding: 21px 46px; box-shadow: 0 18px 40px -20px rgba(47,61,52,.5); }
@media (max-width: 520px) { .close .btn { width: 100%; padding: 19px 34px; } }

/* ---- mobile corrections (must come last to beat the v3 desktop rules) ---- */
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr !important; gap: 34px; }
  .about-copy { order: -1; }
  .about figure { max-width: none; }
  .about figure img { aspect-ratio: 4/3; }
  .tl { margin-top: 48px; }
}
@media (max-width: 820px) {
  .life-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 900px) {
  .voices-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .voices-grid { grid-template-columns: 1fr !important; }
  .band { height: clamp(300px, 62vw, 380px); }
  .band blockquote { max-width: 14ch; }
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr !important; gap: 30px; }
}
@media (max-width: 900px) {
  .tl-track { grid-template-columns: repeat(2, 1fr) !important; row-gap: 32px; }
}
@media (max-width: 520px) {
  .tl-track { grid-template-columns: 1fr !important; }
  .topics { grid-template-columns: 1fr !important; }
}

/* ============================================================
   v5 — no orange anywhere; topics woven with client quotes
   ============================================================ */

/* the only warm note left is a near-neutral sand. no clay, no peach. */
:root {
  --sand-1: #EFEAE0;   /* neutral warm card */
  --sand-2: #E4DED2;   /* one step deeper */
  --radiant:
    radial-gradient(90% 70% at 20% 8%, rgba(168,183,162,.16) 0%, rgba(168,183,162,0) 62%);
  --radiant-soft:
    radial-gradient(90% 70% at 16% 6%, rgba(168,183,162,.14) 0%, rgba(168,183,162,0) 64%);
}

/* ---- ABOUT: neutral warm, no tint ramp ---- */
.about { background: var(--bone-warm); }
.about::before { background: var(--radiant-soft); }

/* ---- TOPIC MOSAIC ---- */
.topics { grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.4vw, 18px); }

.topic { background: var(--sand-1); color: var(--ink); }
.topic:nth-of-type(2) { background: var(--sage-tint); }
.topic:nth-of-type(3) { background: var(--sand-2); }
.topic:nth-of-type(4) { background: var(--sage-tint); }
.topic:nth-of-type(5) { background: var(--sage-mid); color: #F8FAF7; }
.topic:nth-of-type(6) { background: var(--sand-1); }
.topic span { opacity: .7; }


/* ---- the two photographs: one pair, same size, same weight ---- */
.life { background: var(--bone); padding-block: 0 clamp(80px, 11vw, 150px); }
.life-grid { grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 26px); align-items: start; }
.life figure:nth-child(1) img,
.life figure:nth-child(2) img {
  aspect-ratio: 4/3; border-radius: 20px; width: 100%; height: auto; object-fit: cover;
}
.life figure:nth-child(1) img { object-position: 50% 46%; filter: saturate(.62) contrast(1.03); }
.life figure:nth-child(2) img { object-position: 50% 22%; filter: saturate(.8) contrast(1.02); }
.life figcaption { font-size: .78rem; margin-top: 12px; max-width: 40ch; }

/* ---- CLOSE: keep the bloom, drop the orange out of it ---- */
.close { background: var(--sage-tint); }
.close::before {
  background: radial-gradient(circle at 50% 22%, rgba(239,234,224,.9) 0%, rgba(223,230,219,0) 60%);
}

@media (max-width: 860px) { .topics { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 560px) {
  .topics { grid-template-columns: 1fr !important; }
  .life-grid { grid-template-columns: 1fr !important; }
}

/* ---------- slot picker ---------- */
.daystrip {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.daystrip::-webkit-scrollbar { height: 5px; }
.daystrip::-webkit-scrollbar-thumb { background: var(--linen-2); border-radius: 3px; }
.day { position: relative; flex: none; scroll-snap-align: start; }
.day input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.day span {
  display: grid; place-items: center; gap: 1px;
  width: 62px; padding: 11px 0 9px; border-radius: 14px;
  border: 1px solid var(--linen-2); background: var(--bone-warm);
  cursor: pointer; transition: .22s var(--ease);
  font-size: 1.06rem; color: var(--ink); line-height: 1.1;
}
.day span b {
  font-size: .62rem; font-weight: 500; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-mute);
}
.day span i {
  font-style: normal; font-size: .6rem; letter-spacing: .11em;
  text-transform: uppercase; color: var(--ink-mute);
}
.day input:checked + span {
  background: var(--pine); border-color: var(--pine); color: var(--bone);
}
.day input:checked + span b,
.day input:checked + span i { color: var(--sage); }
.day input:focus-visible + span { outline: 2px solid var(--sage-deep); outline-offset: 2px; }
.field.invalid .daystrip .day span,
.field.invalid #timestrip .pill span { border-color: #A8574A; }
