/* =========================================================
   My Dog House Grooming — cold-pitch v2
   Warm boutique system · mobile-first
   ========================================================= */

/* ---- Tokens ---- */
:root {
  /* palette — warm boutique */
  --cream:     #F4EADB;
  --paper:     #FBF6EE;
  --paper-2:   #F0E4D2;
  --espresso:  #2A2018;
  --espresso-2:#3A2E23;
  --ink:       #2A2018;
  --muted:     #8C7A66;
  --line:      #E3D5C0;

  /* accents (tweakable) */
  --terra:     #C4703F;   /* primary */
  --terra-deep:#A8552E;   /* hover/active */
  --peach:     #DDA277;   /* captions */
  --sage:      #8A9A7B;   /* drop borders / secondary */
  --gold:      #D9A441;   /* tiny highlights */

  /* derived */
  --bg:        var(--cream);
  --fg:        var(--espresso);
  --accent:    var(--terra);
  --accent-ink:#FBF6EE;

  /* type */
  /* Recoleta is a paid face (Latinotype) and not on Google Fonts. Fraunces
     (soft optical axis) is the closest free substitute — swap the value here
     for a real Recoleta @font-face when licensed. */
  --recoleta: "Fraunces", "DM Serif Display", Georgia, serif;
  --display: var(--recoleta);
  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;

  /* rhythm */
  --maxw: 1120px;
  --gut: 22px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(42,32,24,.06), 0 4px 14px rgba(42,32,24,.06);
  --shadow-md: 0 6px 18px rgba(42,32,24,.10), 0 20px 50px rgba(42,32,24,.10);
  --shadow-lg: 0 18px 60px rgba(42,32,24,.18);

  /* motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --reveal-y: 26px;
  --reveal-dur: .8s;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--fg);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1,h2,h3 { font-family: var(--display); font-weight: 400; line-height: 1.04; letter-spacing: -.01em; margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* eyebrow / mono label */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: .55;
}

/* ---- Buttons ---- */
.btn {
  --bg-btn: var(--accent);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--accent-ink);
  background: var(--bg-btn);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
  will-change: transform;
  isolation: isolate;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 140% at 50% -20%, rgba(255,255,255,.32), transparent 60%);
  opacity: 0; transition: opacity .3s var(--ease);
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--terra-deep); }
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(0) scale(.98); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--terra); transform: translateY(-2px); }

.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn .ico { width: 18px; height: 18px; }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gut);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.nav.scrolled {
  background: color-mix(in oklab, var(--cream) 88%, transparent);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 11px; padding-bottom: 11px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-size: 20px; }
.brand .mark {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--espresso);
  color: var(--cream);
  position: relative;
}
.brand .mark svg { width: 20px; height: 20px; }
.brand b { font-weight: 400; }
.brand .tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }

.nav-links { display: none; gap: 28px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--fg); position: relative; opacity: .8; transition: opacity .2s; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-5px; height:2px; width:0; background: var(--terra); transition: width .25s var(--ease); }
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  padding: 124px 0 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(2px);
  opacity: .5;
}
.blob.b1 { width: 340px; height: 340px; right: -120px; top: -40px; background: radial-gradient(circle at 30% 30%, #F6D9B8, transparent 70%); }
.blob.b2 { width: 280px; height: 280px; left: -120px; top: 220px; background: radial-gradient(circle at 30% 30%, #DCE4CF, transparent 70%); }

.hero-inner { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--recoleta);
  font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 90, "WONK" 0;
  /* capped so "Tails wagging out." always fits its row with margin up to 1920px */
  font-size: clamp(2.6rem, 7.4vw, 5.2rem);
  margin: 22px 0 0;
  letter-spacing: -.02em;
  line-height: .95;
  text-wrap: balance;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; }
/* italic word overhangs into the next word — pad its trailing edge so
   "wagging" and "out." always keep a clear gap (the markup space alone
   isn't enough against the italic slant) */
.hero h1 em { font-style: italic; color: var(--terra); padding-right: .14em; margin-right: .06em; }
.hero-sub {
  margin: 22px 0 0;
  font-size: clamp(17px, 4.6vw, 20px);
  color: var(--espresso-2);
  max-width: 58ch;
  line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-media {
  position: relative;
  margin-top: 40px;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 16/8;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  /* sage+cream diagonal-stripe fallback shows through if the photo fails */
  background: repeating-linear-gradient(45deg, var(--cream), var(--cream) 16px, color-mix(in oklab, var(--sage) 26%, var(--cream)) 16px, color-mix(in oklab, var(--sage) 26%, var(--cream)) 32px);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* floating price/rating chips on hero */
.chip {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 11px 15px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
}
.chip .big { font-family: var(--display); font-size: 22px; line-height: 1; }
.chip--rating { top: 20px; left: -6px; }
.chip--book { bottom: 22px; right: -6px; }
.chip .stars { color: var(--gold); letter-spacing: 1px; font-size: 13px; }
.chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px color-mix(in oklab, var(--sage) 25%, transparent); }

/* bubbles drifting up */
.bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.bubble {
  position: absolute; bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.9), rgba(255,255,255,.15) 55%, rgba(196,112,63,.12));
  box-shadow: inset 0 0 6px rgba(255,255,255,.6);
  animation: rise linear infinite;
  opacity: 0;
}
@keyframes rise {
  0% { transform: translateY(0) scale(.7); opacity: 0; }
  12% { opacity: .8; }
  88% { opacity: .55; }
  100% { transform: translateY(-78vh) scale(1.05); opacity: 0; }
}

/* trust strip */
.trust {
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
}
.trust-track { display: flex; align-items: center; gap: 46px; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.trust-track span { font-family: var(--mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 46px; }
.trust-track span::after { content: "🐾"; font-size: 12px; filter: grayscale(1) opacity(.5); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===========================================================
   SECTION SCAFFOLD
   =========================================================== */
section { position: relative; }
.block { padding: 78px 0; }
.section-head { max-width: 640px; margin-bottom: 38px; }
.section-head h2 { font-size: clamp(32px, 8vw, 52px); margin-top: 14px; }
.section-head p { color: var(--espresso-2); font-size: 17px; margin: 14px 0 0; }

/* ---- Services ---- */
.services { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.svc {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--terra) 40%, var(--line)); }
.svc .svc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.svc h3 { font-size: 25px; }
.svc .price { font-family: var(--display); font-size: 26px; white-space: nowrap; }
.svc .price small { font-size: 13px; font-family: var(--sans); color: var(--muted); }
.svc p { margin: 9px 0 0; color: var(--espresso-2); font-size: 15.5px; }
.svc .ico-wrap {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: grid; place-items: center;
  background: color-mix(in oklab, var(--terra) 14%, var(--paper));
  color: var(--terra-deep);
  margin-bottom: 14px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.svc:hover .ico-wrap { transform: rotate(-6deg) scale(1.06); background: var(--terra); color: var(--paper); }
.svc .ico-wrap svg { width: 24px; height: 24px; }
.svc .feat { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 7px; }
.svc .feat span { font-size: 12.5px; padding: 4px 10px; border-radius: 999px; background: var(--paper-2); color: var(--espresso-2); }
.svc--feature { background: var(--espresso); color: var(--paper); border-color: var(--espresso); }
.svc--feature p { color: color-mix(in oklab, var(--paper) 78%, transparent); }
.svc--feature .price { color: var(--gold); }
.svc--feature .feat span { background: rgba(255,255,255,.08); color: color-mix(in oklab, var(--paper) 80%, transparent); }
.svc--feature .ico-wrap { background: rgba(255,255,255,.1); color: var(--gold); }
.svc--feature:hover .ico-wrap { background: var(--gold); color: var(--espresso); }
.svc .ribbon { position: absolute; top: 14px; right: -34px; transform: rotate(45deg); background: var(--terra); color: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; padding: 4px 40px; }

/* ---- Why us ---- */
.why { background: var(--espresso); color: var(--paper); }
.why .eyebrow { color: var(--gold); }
.why .section-head h2 { color: var(--paper); }
.why .section-head p { color: color-mix(in oklab, var(--paper) 76%, transparent); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item .n { font-family: var(--mono); font-size: 12px; color: var(--gold); letter-spacing: .1em; padding-top: 6px; }
.why-item h3 { font-size: 23px; color: var(--paper); }
.why-item p { margin: 8px 0 0; color: color-mix(in oklab, var(--paper) 72%, transparent); font-size: 15.5px; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 44px; }
.stat { text-align: center; padding: 22px 8px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.stat .num { font-family: var(--display); font-size: clamp(34px, 11vw, 52px); color: var(--gold); line-height: 1; }
.stat .lbl { font-size: 12.5px; color: color-mix(in oklab, var(--paper) 70%, transparent); margin-top: 8px; letter-spacing: .02em; }

/* ---- Gallery ---- */
.gallery { background: var(--paper); border-top: 1px solid var(--line); }
.ba-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.ba {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream);
}
.ba-slots { display: grid; grid-template-columns: 1fr 1fr; }
.ba-slots image-slot { width: 100%; aspect-ratio: 1/1; }
.ba .ba-label { position: absolute; bottom: 12px; left: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; background: color-mix(in oklab, var(--espresso) 82%, transparent); color: var(--cream); padding: 6px 12px; border-radius: 999px; }
.ba .divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--cream); transform: translateX(-50%); box-shadow: 0 0 0 1px var(--line); }
.ba .pill-ba { position: absolute; top: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; background: var(--paper); color: var(--espresso); padding: 4px 10px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.ba .pill-ba.before { left: 12px; }
.ba .pill-ba.after { right: 12px; background: var(--terra); color: var(--paper); }

/* ---- Testimonials ---- */
.quotes { overflow: hidden; }
.q-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.q {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.q:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.q .stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.q blockquote { margin: 14px 0 0; font-family: var(--display); font-size: 21px; line-height: 1.34; }
.q .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.q .who image-slot { width: 42px; height: 42px; flex: none; }
.q .who .nm { font-weight: 600; font-size: 15px; }
.q .who .br { font-size: 13px; color: var(--muted); }

/* ---- Booking / CTA ---- */
.book { background: var(--espresso); color: var(--paper); position: relative; overflow: hidden; }
.book .blob { opacity: .22; }
.book .blob.bb1 { width: 380px; height: 380px; right: -120px; top: -120px; background: radial-gradient(circle at 30% 30%, var(--terra), transparent 70%); filter: blur(20px); }
.book-grid { display: grid; grid-template-columns: 1fr; gap: 34px; position: relative; z-index: 2; }
.book h2 { font-size: clamp(34px, 9vw, 58px); color: var(--paper); }
.book .eyebrow { color: var(--gold); }
.book p.lead { color: color-mix(in oklab, var(--paper) 78%, transparent); font-size: 17px; margin: 16px 0 0; max-width: 38ch; }
.book .contact-row { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.book .contact-row a { display: inline-flex; align-items: center; gap: 12px; font-size: 16px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; transition: background .2s, border-color .2s; }
.book .contact-row a:hover { background: rgba(255,255,255,.06); border-color: var(--gold); }
.book .contact-row .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; flex: none; color: var(--gold); }
.book .contact-row .ic svg { width: 19px; height: 19px; }
.book .contact-row .sub { font-size: 12.5px; color: color-mix(in oklab, var(--paper) 62%, transparent); }

/* booking card / form */
.book-card { background: var(--paper); color: var(--ink); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); }
.book-card h3 { font-size: 24px; }
.field { margin-top: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .02em; margin-bottom: 7px; color: var(--espresso-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15px; background: var(--cream); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terra); box-shadow: 0 0 0 4px color-mix(in oklab, var(--terra) 18%, transparent);
}
.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg button {
  flex: 1 1 auto; padding: 11px 10px; border-radius: 11px; border: 1.5px solid var(--line);
  background: var(--cream); font-size: 14px; font-weight: 600; color: var(--espresso-2);
  transition: all .2s var(--ease); min-width: 72px;
}
.seg button[aria-pressed="true"] { background: var(--terra); border-color: var(--terra); color: var(--paper); }
.seg button:hover { border-color: var(--terra); }
.book-card .btn { width: 100%; margin-top: 20px; }
.book-card .reassure { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.book-card.done { text-align: center; }
.book-card .check { width: 64px; height: 64px; margin: 4px auto 8px; border-radius: 50%; background: color-mix(in oklab, var(--sage) 22%, var(--paper)); display: grid; place-items: center; color: var(--sage); }
.book-card .check svg { width: 32px; height: 32px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.foot { background: var(--cream); padding: 46px 0 120px; }
.foot-grid { display: flex; flex-direction: column; gap: 24px; }
.foot .brand { font-size: 22px; }
.foot p { color: var(--muted); font-size: 14px; margin: 12px 0 0; max-width: 34ch; }
.foot .cols { display: flex; flex-wrap: wrap; gap: 36px; }
.foot .col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--terra-deep); margin: 0 0 12px; }
.foot .col a { display: block; font-size: 14.5px; color: var(--espresso-2); padding: 4px 0; transition: color .2s; }
.foot .col a:hover { color: var(--terra); }
.foot-bottom { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 20px; font-size: 12.5px; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ===========================================================
   STICKY MOBILE CTA
   =========================================================== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; gap: 10px; padding: 12px var(--gut) calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in oklab, var(--cream) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform .4s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { flex: 1; }
.sticky-cta .btn--ghost { flex: 0 0 52px; padding: 0; }

/* ===========================================================
   REVEAL ANIMATIONS
   =========================================================== */
.reveal { opacity: 0; transform: translateY(var(--reveal-y)); transition: opacity var(--reveal-dur) var(--ease), transform var(--reveal-dur) var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

.hero h1 .line > span { transform: translateY(110%); opacity: 0; transition: transform .9s var(--ease), opacity .9s var(--ease); }
.hero.ready h1 .line > span { transform: none; opacity: 1; }
.hero.ready h1 .line:nth-child(2) > span { transition-delay: .1s; }
.hero.ready h1 .line:nth-child(3) > span { transition-delay: .2s; }

.float-up { animation: floaty 5.5s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* failsafe: non-painting context (transitions/rAF frozen) — show everything instantly */
html.no-motion .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
html.no-motion .hero h1 .line > span { opacity: 1 !important; transform: none !important; transition: none !important; }

/* tweaks intensity off */
body[data-anim="off"] .reveal { opacity: 1 !important; transform: none !important; }
body[data-anim="off"] .bubble,
body[data-anim="off"] .float-up,
body[data-anim="off"] .trust-track { animation: none !important; }
body[data-anim="off"] .hero h1 .line > span { transform: none; opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero h1 .line > span { transform: none; opacity: 1; }
}

/* ===========================================================
   RESPONSIVE — tablet & up
   =========================================================== */
@media (min-width: 760px) {
  :root { --gut: 40px; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hero { padding-top: 150px; }
  .hero-sub { font-size: 20px; }
  .hero-photo { aspect-ratio: 5/4; }
  /* deliberate asymmetric hero: full-width headline, lede + media share a row */
  .hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    column-gap: 56px;
    grid-template-areas: "head head" "lede media";
    align-items: start;
  }
  .hero-head  { grid-area: head; }
  .hero-lede  { grid-area: lede; align-self: center; }
  .hero-media { grid-area: media; align-self: center; margin-top: 0; }
  .hero-lede .hero-sub { max-width: 48ch; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 44px; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .q-grid { grid-template-columns: repeat(3, 1fr); }
  .book-grid { grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
  .foot-grid { flex-direction: row; justify-content: space-between; }
  .sticky-cta { display: none; }
  .block { padding: 104px 0; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* desktop H1 sizing is handled by the capped clamp on .hero h1 — no fixed override */

/* ===========================================================
   COMPLIANCE REWRITE — almanac / atlas / drop-cards / visit
   =========================================================== */

/* OWNER TO SUPPLY marker */
.supply {
  font-family: var(--mono);
  font-size: .82em;
  letter-spacing: .04em;
  color: var(--terra-deep);
  background: color-mix(in oklab, var(--terra) 9%, transparent);
  border: 1px dashed color-mix(in oklab, var(--terra) 50%, var(--line));
  border-radius: 6px;
  padding: .1em .5em;
}
.on-dark .supply, .visit .supply { color: var(--gold); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.06); }

/* wordmark in Recoleta */
.brand b { font-family: var(--recoleta); font-weight: 700; font-variation-settings: "opsz" 40, "SOFT" 60; }
.brand .wm { font-family: var(--recoleta); font-weight: 700; font-variation-settings: "opsz" 40, "SOFT" 60; font-size: 19px; line-height: 1; letter-spacing: -.01em; }

/* hero chips updated */
.chip--draft { bottom: 22px; right: -6px; }
.chip--draft .k { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hero-cta { align-items: center; }
.btn--phone { font-family: var(--mono); letter-spacing: .04em; font-weight: 700; }

/* ---- Bath Atlas ---- */
.atlas { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.atlas .section-head { text-align: center; margin: 0 auto 30px; }
.atlas .section-head .eyebrow { justify-content: center; }
.atlas .section-head .eyebrow::before { display: none; }
.atlas-wrap { max-width: 620px; margin: 0 auto; position: relative; }
.atlas-plate { width: 100%; height: auto; display: block; }
.atlas-foot { text-align: center; font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 18px; }
.atlas-plate .orbit { fill: none; stroke: var(--terra); stroke-width: 1.4; stroke-dasharray: 1 9; stroke-linecap: round; opacity: .8; }
.atlas-plate .ring-out { fill: none; stroke: var(--espresso); stroke-width: 1; opacity: .18; }
.atlas-plate .ring-dash { fill: none; stroke: var(--espresso); stroke-width: 1; stroke-dasharray: 2 7; opacity: .28; }
.atlas-plate .node { fill: var(--cream); stroke: var(--espresso); stroke-width: 1.5; }
.atlas-plate .node-n { fill: var(--terra-deep); font-family: var(--mono); font-size: 17px; font-weight: 700; text-anchor: middle; dominant-baseline: central; }
.atlas-plate .lab { fill: var(--espresso); font-family: var(--mono); font-size: 14px; letter-spacing: .08em; }
.atlas-plate .tick { stroke: var(--espresso); stroke-width: 1; opacity: .25; }
.atlas-plate .basin { fill: color-mix(in oklab, var(--terra) 8%, var(--cream)); stroke: var(--terra); stroke-width: 1.4; opacity: .9; }
.atlas-plate .basin-ring { fill: none; stroke: var(--terra); stroke-width: 1; opacity: .35; }
.atlas-plate .basin-k { fill: var(--terra-deep); font-family: var(--mono); font-size: 12px; letter-spacing: .22em; text-anchor: middle; }
.atlas-plate .basin-t { fill: var(--espresso); font-family: var(--recoleta); font-weight: 900; font-size: 40px; text-anchor: middle; }
.atlas-plate .drop { fill: var(--terra); opacity: .55; }

/* ---- Services drop-cards ---- */
.svc-drops { background: var(--cream); }
.drop-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.drop {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 16px 16px 18px;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.drop:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.drop .num { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--terra-deep); text-transform: uppercase; }
.drop h3 { font-family: var(--recoleta); font-weight: 700; font-variation-settings: "opsz" 40, "SOFT" 70; font-size: 24px; margin: 6px 0 12px; }
.drop-zone {
  position: relative;
  aspect-ratio: 4/3;
  border: 1.8px dashed var(--sage);
  border-radius: 13px;
  background: color-mix(in oklab, var(--sage) 7%, var(--paper));
  display: grid; place-items: center;
  text-align: center;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.drop:hover .drop-zone { border-color: color-mix(in oklab, var(--sage) 70%, var(--espresso)); background: color-mix(in oklab, var(--sage) 12%, var(--paper)); }
/* photo-filled service frame: solid frame + cover image, diagonal-stripe fallback */
.drop-zone.has-photo {
  border-style: solid;
  border-color: var(--line);
  overflow: hidden;
  background: repeating-linear-gradient(45deg, var(--cream), var(--cream) 14px, color-mix(in oklab, var(--sage) 26%, var(--cream)) 14px, color-mix(in oklab, var(--sage) 26%, var(--cream)) 28px);
}
.drop-zone.has-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.drop:hover .drop-zone.has-photo { border-color: color-mix(in oklab, var(--terra) 45%, var(--line)); background: none; }
.drop:hover .drop-zone.has-photo img { transform: scale(1.05); }
.drop-zone .glyph { width: 30px; height: 30px; color: var(--sage); opacity: .85; }
.drop-zone .hint { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: color-mix(in oklab, var(--sage) 80%, var(--espresso)); margin-top: 8px; }
.drop .cap { font-style: italic; color: var(--peach); font-size: 14px; line-height: 1.45; margin: 12px 2px 0; }
.drop .cap b { font-style: normal; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--terra-deep); display: block; margin-bottom: 2px; }

/* ---- Reviews placeholder ---- */
.reviews { background: var(--espresso); color: var(--paper); text-align: center; }
.reviews .eyebrow { color: var(--gold); justify-content: center; }
.reviews .eyebrow::before { display: none; }
.reviews h2 { color: var(--paper); font-family: var(--recoleta); font-weight: 900; }
.reviews .rating-big { display: flex; align-items: baseline; justify-content: center; gap: 14px; margin: 22px 0 6px; }
.reviews .rating-big .score { font-family: var(--recoleta); font-weight: 900; font-size: clamp(64px, 18vw, 104px); color: var(--gold); line-height: 1; }
.reviews .rating-big .of { font-family: var(--mono); font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: color-mix(in oklab, var(--paper) 72%, transparent); }
.reviews .stars-row { color: var(--gold); letter-spacing: 6px; font-size: 22px; }
.reviews .src { font-family: var(--mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: color-mix(in oklab, var(--paper) 64%, transparent); margin-top: 10px; }
.reviews .supply-row { margin-top: 30px; display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 760px; margin-left: auto; margin-right: auto; }
.reviews .supply-card { border: 1.6px dashed rgba(255,255,255,.26); border-radius: var(--radius); padding: 22px; text-align: left; }
.reviews .supply-card .rv-q { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.reviews .supply-card p { margin: 10px 0 0; color: color-mix(in oklab, var(--paper) 72%, transparent); font-size: 14.5px; line-height: 1.5; }

/* reviews atmospheric photo strip (illustrative grooming imagery, not customer claims) */
.reviews .photo-strip { margin: 34px auto 0; max-width: 900px; display: grid; grid-template-columns: 1fr; gap: 12px; }
.reviews .photo-strip .ph {
  position: relative; aspect-ratio: 3/2; border-radius: var(--radius); overflow: hidden;
  background: repeating-linear-gradient(45deg, color-mix(in oklab, var(--espresso) 80%, #000), color-mix(in oklab, var(--espresso) 80%, #000) 14px, color-mix(in oklab, var(--sage) 40%, var(--espresso)) 14px, color-mix(in oklab, var(--sage) 40%, var(--espresso)) 28px);
  box-shadow: var(--shadow-md);
}
.reviews .photo-strip .ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.reviews .photo-strip .ph:hover img { transform: scale(1.05); }
.reviews .gbtn {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 30px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 999px; min-height: 44px;
  color: var(--espresso); background: var(--gold);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.reviews .gbtn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.reviews .gbtn svg { width: 17px; height: 17px; }
.reviews .note { font-size: 13px; color: color-mix(in oklab, var(--paper) 56%, transparent); margin-top: 16px; font-style: italic; }
@media (min-width: 760px) {
  .reviews .photo-strip { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ---- Visit ---- */
.visit { background: var(--cream); }
.visit-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.visit .lines { font-size: 17px; }
.visit .row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.visit .row:last-child { border-bottom: 0; }
.visit .row .ic { width: 40px; height: 40px; border-radius: 11px; background: color-mix(in oklab, var(--terra) 12%, var(--paper)); color: var(--terra-deep); display: grid; place-items: center; flex: none; }
.visit .row .ic svg { width: 20px; height: 20px; }
.visit .row .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.visit .row .v { font-size: 17px; line-height: 1.4; }
.visit .row a.v { color: var(--terra-deep); font-weight: 600; }
.visit .row a.v:hover { text-decoration: underline; }
.map-embed { width: 100%; height: 300px; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); filter: saturate(.92) contrast(1.02); }

@media (min-width: 760px) {
  .drop-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews .supply-row { grid-template-columns: repeat(3, 1fr); }
  .visit-grid { grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: stretch; }
  .map-embed { height: 100%; min-height: 340px; }
}

/* ===========================================================
   DESKTOP FLOOR — wider monitors (1100 / 1280 / 1536 / 1920)
   Mobile layout untouched; everything here is min-width gated.
   =========================================================== */

/* prose measure caps so paragraphs never run edge-to-edge */
.section-head p,
.reviews .supply-card p,
.atlas-foot { max-width: 70ch; }
.atlas .section-head p { margin-left: auto; margin-right: auto; }

@media (min-width: 1100px) {
  .hero-grid { grid-template-columns: 1.12fr .88fr; column-gap: 72px; }
  .hero-photo { aspect-ratio: 4/3; }
  /* keep the four service frames as a comfortable 3-up on wide screens */
  .drop-grid { gap: 22px; }
}

@media (min-width: 1280px) {
  :root { --maxw: 1200px; --gut: 64px; }
  .block { padding: 124px 0; }
  .hero { padding-top: 172px; padding-bottom: 56px; }
  .hero-head { margin-bottom: 6px; }
  .section-head { margin-bottom: 46px; }
  /* atlas plate has a sensible ceiling so it doesn't balloon on huge screens */
  .atlas-wrap { max-width: 660px; }
}

@media (min-width: 1536px) {
  :root { --maxw: 1280px; --gut: 88px; }
  .block { padding: 140px 0; }
}

/* On very wide monitors keep generous side gutters so content never
   touches the viewport edge; the centered max-width does the rest. */
@media (min-width: 1800px) {
  :root { --gut: 120px; }
}
