/* ============================================================================
   Mindful Psychiatry LLC — Stephanie Ball, PMHNP-BC
   "where healing begins with a conversation"

   Design direction taken from the three sites she named in her intake:
     aestheticmedstudio.com  full-bleed photo hero, heavy light wash,
                             oversized LEFT-aligned high-contrast serif,
                             very sparse nav
     bare417.com             photo-led hero with display type over it,
                             soft tinted rectangular buttons, muted accents
     bhconciergehealth.com   understated luxury, card sections, generous
                             whitespace (its partner/trust strip was built and
                             then cut on Jameson's call, the page reads calmer
                             without vendor logos between the hero and About)
   Plus Mercy, the brand she admires: patient-forward, service-oriented.

   So: photography carries the emotion, type stays quiet-confident, and the
   palette (sage / blue-gray / creamy beige) lives as a WASH over images and as
   tint blocks, never as flat filled backgrounds.

   Type: Playfair Display (high contrast serif, matches her references) +
         Jost (geometric sans, letter-spaced for nav and buttons).

   Motion: concentrated per the scroll-storytelling rule. Hero headline on load,
   ONE sticky narrative moment (the About panel), staggered reveals elsewhere.
   Native scroll is never hijacked. All of it inside prefers-reduced-motion.
   ========================================================================= */

:root {
  --cream:      #F7F2E9;
  --cream-deep: #EFE7D9;
  --paper:      #FDFBF7;
  --slate:      #35454F;   /* deep blue-gray, primary ink */
  --slate-deep: #26333B;
  --mist:       #5B7687;   /* mid blue-gray */
  --sage:       #93A68C;
  --sage-soft:  #E5EBE1;
  --clay:       #B08968;   /* warm accent, her "complimentary accent" */
  --clay-deep:  #8C6A4E;
  --ink:        #333B40;
  --ink-soft:   #5F6B72;
  --line:       rgba(53, 69, 79, 0.13);

  --serif: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --sans:  'Jost', -apple-system, 'Helvetica Neue', sans-serif;

  --r: 4px;             /* soft rectangles, not pills: bare417's button shape */
  --shadow: 0 24px 60px -28px rgba(53, 69, 79, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(20px, 5vw, 64px);
}

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

html {
  /* clip, NEVER hidden: overflow-x hidden on a scroll ancestor silently kills
     every position:sticky on the page, including the About panel below. */
  overflow-x: clip;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* height:auto is load-bearing, not tidiness: the width/height HTML attributes
   resolve to a used height that beats CSS aspect-ratio. Without it the About
   portrait rendered at its full 1280px, filled its grid track, and left the
   sticky panel zero travel so it silently never pinned. */
img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--slate);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
p  { color: var(--ink-soft); }
a  { color: var(--slate); }
::selection { background: var(--sage-soft); color: var(--slate); }

.wrap { max-width: 1220px; margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 760px; }

.eyebrow {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 18px;
}
.lede { font-size: 1.1rem; color: var(--ink-soft); }

section { padding: clamp(72px, 10vw, 132px) 0; }

/* ---------- buttons: soft tinted rectangles (bare417), plus an outline
             variant echoing aestheticmedstudio's bordered pill ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
}
.btn-primary { background: var(--slate); color: var(--cream); }
.btn-primary:hover { background: var(--slate-deep); transform: translateY(-2px); }

.btn-tint { background: var(--sage-soft); color: var(--slate); }
.btn-tint:hover { background: var(--sage); color: var(--paper); transform: translateY(-2px); }

.btn-line { background: transparent; color: var(--slate); border-color: rgba(53,69,79,.4); }
.btn-line:hover { border-color: var(--slate); background: rgba(53,69,79,.04); }

.btn-onphoto { background: var(--paper); color: var(--slate); }
.btn-onphoto:hover { background: var(--cream); transform: translateY(-2px); }

/* ---------- nav: sparse, light, one tinted CTA ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  background: rgba(253, 251, 247, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .35s, background-color .35s;
}
.nav.stuck { border-bottom-color: var(--line); background: rgba(253,251,247,.95); }
.nav-in {
  max-width: 1220px; margin: 0 auto; padding: 15px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.logo { display: block; flex-shrink: 0; }
.logo img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.17em;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
  transition: color .25s;
}
.nav-links a:hover { color: var(--clay-deep); }
.nav-links .btn { padding: 13px 24px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--slate); }
#sentinel { position: absolute; top: 0; height: 1px; width: 1px; }

/* ---------- hero: full-bleed photograph, light wash, left-aligned ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex; align-items: flex-end;
  padding: 200px 0 clamp(64px, 9vw, 104px);
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: -8% 0 0 0;   /* extra top room for the parallax drift */
  z-index: 0;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-wash {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(94deg, rgba(253,251,247,.95) 0%, rgba(253,251,247,.86) 38%,
                            rgba(247,242,233,.45) 68%, rgba(247,242,233,.18) 100%),
    linear-gradient(0deg, rgba(247,242,233,.72) 0%, transparent 46%);
}
.hero-in { position: relative; z-index: 2; width: 100%; }
.hero h1 {
  font-size: clamp(2.7rem, 7.4vw, 5.7rem);
  max-width: 15em;
  margin-bottom: 26px;
}
.hero h1 em { font-style: italic; color: var(--mist); }
.hero-sub { font-size: clamp(1.02rem, 1.5vw, 1.18rem); max-width: 34rem; margin-bottom: 36px; color: var(--ink); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cred {
  margin-top: 34px; font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-soft);
}

/* ---------- about: THE narrative moment. Photo pins, copy scrolls past. ---------- */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
.about-sticky { position: sticky; top: 116px; }
/* no reveal/transform transition on this element: a transform transition on a
   sticky element stops it pinning in Chrome. The wrapper animates, not this. */
.about-figure { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.about-figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
/* the plate overlays the portrait rather than stacking under it: it looks more
   composed, and it keeps the sticky panel short enough to have real travel
   inside its grid track (stacked, it ate ~120px of the pin distance). */
.about-plate {
  position: absolute; inset: auto 14px 14px 14px;
  padding: 16px 18px; border-radius: var(--r);
  background: rgba(247, 242, 233, 0.93);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.about-plate .nm { display: block; font-family: var(--serif); font-size: 1.1rem; color: var(--slate); line-height: 1.25; }
.about-plate .rl { display: block; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); margin-top: 5px; }
.about-copy > * + * { margin-top: 22px; }
.about-pull {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  font-style: italic; line-height: 1.34; color: var(--mist);
  padding: 4px 0 4px 26px; border-left: 1px solid var(--sage);
}
.values { margin-top: 42px; display: grid; gap: 2px; }
.value { padding: 24px 0; border-top: 1px solid var(--line); }
.value:last-child { border-bottom: 1px solid var(--line); }
.value h3 { font-family: var(--sans); font-size: .8rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 8px; }
.value p { font-size: .97rem; }

/* ---------- what we treat: card grid, staggered reveal ---------- */
.treat { background: var(--cream); }
.treat-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 52px; }
.treat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.tcard { background: var(--paper); padding: 34px 28px 38px; transition: background-color .4s var(--ease); }
.tcard:hover { background: var(--sage-soft); }
.tcard .n { font-family: var(--serif); font-size: .9rem; font-style: italic; color: var(--clay); display: block; margin-bottom: 16px; }
.tcard h3 { font-size: 1.16rem; margin-bottom: 10px; }
.tcard p { font-size: .93rem; line-height: 1.66; }

/* ---------- process band over photography ---------- */
.process { position: relative; overflow: hidden; color: var(--cream); }
.process-photo { position: absolute; inset: 0; z-index: 0; }
.process-photo img { width: 100%; height: 100%; object-fit: cover; }
.process-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(38,51,59,.9), rgba(38,51,59,.82)); }
.process-in { position: relative; z-index: 1; }
.process h2 { color: var(--cream); }
.process .eyebrow { color: var(--sage); }
.process-lede { color: rgba(247,242,233,.8); max-width: 40rem; }
.steps { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step { padding-top: 22px; border-top: 1px solid rgba(247,242,233,.28); }
.step .k { font-family: var(--serif); font-size: 2.2rem; color: var(--sage); line-height: 1; display: block; margin-bottom: 14px; }
.step h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: rgba(247,242,233,.72); font-size: .92rem; line-height: 1.62; }

/* ---------- pricing: trust content, one calm fade, no scrub ---------- */
.pricing { background: var(--paper); }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.pcard { border: 1px solid var(--line); border-radius: var(--r); padding: 32px 26px 34px; display: flex; flex-direction: column; }
.pcard.feature { background: var(--cream); border-color: var(--sage); }
.pcard .tag { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--clay); margin-bottom: 16px; display: block; }
.pcard h3 { font-size: 1.14rem; margin-bottom: 14px; }
.pcard .amt { font-family: var(--serif); font-size: 2.5rem; color: var(--slate); line-height: 1; }
.pcard .amt small { font-family: var(--sans); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-top: 8px; }
.pcard .dsc { font-size: .92rem; margin: 16px 0 18px; line-height: 1.62; }
.pcard ul { list-style: none; margin-top: auto; display: grid; gap: 9px; }
.pcard li { font-size: .87rem; color: var(--ink-soft); padding-left: 18px; position: relative; line-height: 1.5; }
.pcard li::before { content: ''; position: absolute; left: 0; top: .58em; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }
.pay-note { margin-top: 30px; font-size: .92rem; }

/* ---------- insurance ---------- */
.ins { background: var(--cream); }
.ins-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 6vw, 80px); }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0 24px; }
.chip { padding: 10px 17px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); font-size: .84rem; color: var(--slate); }
.ins-note { font-size: .95rem; }
.portal { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 34px 32px; }
.portal h3 { margin-bottom: 12px; }
.portal p { font-size: .95rem; margin-bottom: 20px; }
.portal .btn { width: 100%; justify-content: center; }
.portal hr { border: 0; border-top: 1px solid var(--line); margin: 30px 0; }

/* ---------- testimonials ---------- */
.quotes { background: var(--paper); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.quote { border-top: 2px solid var(--sage); padding-top: 26px; }
.quote blockquote { font-family: var(--serif); font-size: 1.16rem; line-height: 1.56; color: var(--slate); }
.quote figcaption { margin-top: 18px; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.review-cta { text-align: center; margin-top: 44px; }
.review-cta a { font-family: var(--serif); font-size: 1.02rem; color: var(--sage); border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.review-cta a:hover { color: var(--slate); }

/* ---------- faq: native details, zero JS ---------- */
.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(30px, 5vw, 76px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 34px 22px 0; position: relative;
  font-family: var(--serif); font-size: 1.14rem; color: var(--slate); line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; position: absolute; right: 4px; top: 32px;
  width: 9px; height: 9px; border-right: 1.5px solid var(--clay); border-bottom: 1.5px solid var(--clay);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-a { padding: 0 40px 24px 0; font-size: .97rem; color: var(--ink-soft); line-height: 1.72; }

/* ---------- closing CTA over photography ---------- */
.close { position: relative; overflow: hidden; text-align: center; }
.close-photo { position: absolute; inset: 0; z-index: 0; }
.close-photo img { width: 100%; height: 100%; object-fit: cover; }
.close-photo::after { content: ''; position: absolute; inset: 0; background: rgba(247,242,233,.8); }
.close-in { position: relative; z-index: 1; }
.close h2 { max-width: 22em; margin: 0 auto 20px; }
.close p { max-width: 30em; margin: 0 auto 34px; }
.crisis {
  max-width: 40rem; margin: 46px auto 0; padding: 20px 24px;
  background: rgba(253,251,247,.9); border-radius: var(--r);
  font-size: .88rem; line-height: 1.62; color: var(--slate-deep); text-align: left;
}
.crisis b { display: block; font-family: var(--sans); font-size: .62rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 7px; }

/* ---------- contact + form ---------- */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 5vw, 74px); }
.crow { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.crow:first-of-type { border-top: 1px solid var(--line); }
.crow .lb { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--clay); display: block; margin-bottom: 5px; }
.crow a, .crow .vl { font-size: .98rem; color: var(--slate); text-decoration: none; }
.crow a:hover { color: var(--clay-deep); }
.fcard { background: var(--cream); border-radius: var(--r); padding: 36px 34px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.fg input, .fg textarea {
  width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: .97rem;
  color: var(--ink); background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); transition: border-color .25s;
}
.fg input:focus, .fg textarea:focus { outline: none; border-color: var(--sage); }
.fg textarea { min-height: 108px; resize: vertical; }
.fnote { font-size: .8rem; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.55; }
.fcard .btn { width: 100%; justify-content: center; border: 0; }

/* ---------- footer ---------- */
.foot { background: var(--slate-deep); color: rgba(247,242,233,.72); padding: 76px 0 34px; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 46px; padding-bottom: 42px; border-bottom: 1px solid rgba(247,242,233,.14); }
.foot-logo { height: 44px; width: auto; margin-bottom: 18px; }
.foot-tag { font-family: var(--serif); font-style: italic; font-size: 1.06rem; color: var(--sage); margin-bottom: 12px; }
.foot p { color: rgba(247,242,233,.66); font-size: .92rem; }
.foot h4 { font-family: var(--sans); font-size: .64rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--cream); margin-bottom: 18px; }
.foot ul { list-style: none; display: grid; gap: 11px; }
.foot li, .foot a { font-size: .92rem; color: rgba(247,242,233,.72); text-decoration: none; }
.foot a:hover { color: var(--cream); }
.foot-legal { padding: 30px 0; font-size: .78rem; line-height: 1.7; color: rgba(247,242,233,.5); border-bottom: 1px solid rgba(247,242,233,.14); }
.foot-btm { padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: .78rem; color: rgba(247,242,233,.5); }
.foot-social { display: flex; gap: 12px; }
.foot-social a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(247,242,233,.24); border-radius: var(--r); color: rgba(247,242,233,.72); }
.foot-social a:hover { border-color: var(--sage); color: var(--sage); }

/* ==========================================================================
   MOTION. Everything scroll-linked lives inside no-preference, per WCAG and
   because motion sensitivity is a real clinical concern for this audience.
   ======================================================================== */
@media (prefers-reduced-motion: no-preference) {

  /* hero headline arrives on LOAD, not on scroll: it is already in view */
  .hero h1, .hero-sub, .hero-cta, .hero-cred, .hero .eyebrow {
    animation: rise .95s var(--ease) both;
  }
  .hero .eyebrow { animation-delay: .05s; }
  .hero h1        { animation-delay: .14s; }
  .hero-sub       { animation-delay: .26s; }
  .hero-cta       { animation-delay: .36s; }
  .hero-cred      { animation-delay: .46s; }
  @keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

  /* Native scroll-driven animations only. Compositor thread, cannot jank, and
     critically: NOTHING here hides content by default.

     The reveals used to be JS/IntersectionObserver driven, with .reveal starting
     at opacity:0 and JS adding .seen. That is a bad trade on a healthcare site:
     if the observer never fires for any reason, 28 elements stay invisible and
     the page reads as broken to someone who may already be anxious about
     reaching out. Now the at-rest state IS visible, the motion lives entirely
     in keyframes, and a browser without view() timelines simply shows a calm
     static page. Progressive enhancement, not progressive breakage. */
  @supports (animation-timeline: view()) {
    .reveal {
      animation: rise-in linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 58%;
    }
    @keyframes rise-in { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

    /* hero photograph drifts down slightly slower than the page */
    .hero-photo {
      animation: drift linear both;
      animation-timeline: scroll(root);
      animation-range: 0 90vh;
    }
    @keyframes drift { to { transform: translateY(7%) scale(1.05); } }

    /* the sage rule under each section heading draws itself in */
    .draw { animation: draw linear both; animation-timeline: view(); animation-range: entry 8% cover 34%; transform-origin: left center; }
    @keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

    /* closing CTA settles rather than pops: the conversion moment stays calm */
    .settle { animation: settle linear both; animation-timeline: view(); animation-range: entry 4% cover 40%; }
    @keyframes settle { from { opacity: .35; transform: scale(.975); } to { opacity: 1; transform: none; } }

    /* condition cards lift as the grid enters, each offset by its own range */
    .treat-grid .tcard { animation: cardin linear both; animation-timeline: view(); animation-range: entry 0% entry 62%; }
    @keyframes cardin { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
  }

  .hr-rule { display: block; height: 1px; background: var(--sage); width: 64px; margin-top: 26px; }
}

/* reduced motion: nothing moves, nothing is hidden, everything still reads.
   Motion sensitivity is a clinical concern for this audience, not a checkbox. */
@media (prefers-reduced-motion: reduce) {
  .reveal, .settle, .tcard { opacity: 1; transform: none; animation: none; }
  .about-sticky { position: static; }
  .hr-rule { display: block; height: 1px; background: var(--sage); width: 64px; margin-top: 26px; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .treat-grid, .price-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .about-grid, .ins-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  /* a pinned panel on a narrow screen is a known failure mode: unpin it */
  .about-sticky { position: static; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links {
    display: none; position: absolute; inset: 100% 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 16px; justify-content: center; border-bottom: 0; }
  .nav-toggle { display: flex; }
  .hero { padding-top: 150px; min-height: auto; }
  .hero-wash { background: linear-gradient(180deg, rgba(253,251,247,.52) 0%, rgba(253,251,247,.82) 42%, rgba(247,242,233,.94) 100%); }
  .treat-grid, .price-grid, .steps, .foot-top { grid-template-columns: 1fr; }
}
