/* ================================================================
   BATH BRUSH & BEYOND — Premium Boutique Rebuild
   The definitive version. Breathtaking by design.
   ================================================================ */

/* ─── TOKENS ───────────────────────────── */
:root {
  --cream:        #EDE9E0;
  --cream-soft:   #F4F1EC;
  --linen:        #D9D3C7; /* hero right panel — warm stone */
  --sage:         #879E85;
  --sage-dark:    #6B8169;
  --sage-light:   #A5B8A3;
  --taupe:        #EDE9E0;
  --taupe-dark:   #D9D3C7;
  --charcoal:     #3D3D3D;
  --charcoal-mid: #2E2E2E;
  --charcoal-deep:#222222;
  --gray:         #BEBEBE;
  --rule:         rgba(61,61,61,0.1);
  --rule-m:       rgba(61,61,61,0.15);
  --rule-d:       rgba(237,233,224,0.1);

  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;

  --pad: clamp(90px, 11vw, 150px);
  --w:   min(92%, 1220px);

  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.55, 0, 1, 0.45);
}

/* ─── RESET ─────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
  font-family: var(--fb);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}
img   { display:block; max-width:100%; }
a     { color:inherit; text-decoration:none; }
ul,ol { list-style:none; }
address { font-style:normal; }

/* ─── UTILITY ────────────────────────────── */
.container { max-width:var(--w); margin-inline:auto; padding-inline:clamp(1.5rem,3vw,3rem); }

/* ─── SCROLL REVEAL ─────────────────────── */
.reveal {
  opacity:0; transform:translateY(42px);
  transition:opacity .95s var(--ease-out), transform .95s var(--ease-out);
}
.reveal.in { opacity:1; transform:translateY(0); }

/* ─── SECTION LABELS ─────────────────────── */
.section-label {
  display:flex; align-items:center; gap:1rem;
  padding-bottom:2rem;
  border-bottom:1px solid var(--rule-m);
  margin-bottom:clamp(3.5rem,5vw,6rem);
}
.sec-tag {
  font-size:.63rem; font-weight:500;
  letter-spacing:.26em; text-transform:uppercase; color:var(--sage);
}
.sec-tag.light { color:var(--taupe); }

/* ─── BUTTONS ─────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.9rem 2.1rem;
  font-family:var(--fb); font-size:.72rem; font-weight:500;
  letter-spacing:.13em; text-transform:uppercase;
  border:none; border-radius:100px; cursor:pointer; white-space:nowrap;
  transition:background .3s var(--ease), color .3s, transform .2s, box-shadow .3s;
}
.btn-dark {
  background:var(--charcoal); color:var(--cream);
}
.btn-dark:hover {
  background:var(--charcoal-mid); transform:translateY(-2px);
  box-shadow:0 12px 36px rgba(61,61,61,0.22);
}
.btn-sage {
  background:var(--sage); color:var(--cream);
}
.btn-sage:hover {
  background:var(--sage-dark); transform:translateY(-2px);
  box-shadow:0 12px 36px rgba(107,129,105,0.28);
}
.btn-ring {
  background:transparent; color:var(--charcoal);
  border:1.5px solid rgba(61,61,61,0.22);
}
.btn-ring:hover {
  background:var(--charcoal); color:var(--cream);
  border-color:var(--charcoal); transform:translateY(-2px);
}
.btn-cream {
  background:var(--cream); color:var(--sage-dark);
}
.btn-cream:hover {
  background:white; transform:translateY(-2px);
  box-shadow:0 12px 36px rgba(0,0,0,0.14);
}
.btn-band-ghost {
  background:transparent; color:rgba(237,233,224,0.7);
  border:1px solid rgba(237,233,224,0.25);
}
.btn-band-ghost:hover {
  border-color:rgba(237,233,224,0.6); color:var(--cream);
  transform:translateY(-2px);
}
.btn-full { display:flex; width:100%; justify-content:center; margin-top:2rem; }

/* ─── NAVIGATION ─────────────────────────── */
.nav {
  position:fixed; inset-inline:0; top:0; z-index:100;
  padding-block:1rem;
  background:rgba(237,233,224,0.9);
  backdrop-filter:blur(20px) saturate(1.6);
  -webkit-backdrop-filter:blur(20px) saturate(1.6);
  box-shadow:0 1px 0 var(--rule-m);
}
.nav.scrolled {}
.nav-inner {
  max-width:var(--w); margin-inline:auto;
  padding-inline:clamp(1.5rem,3vw,3rem);
  display:flex; align-items:center; gap:2rem;
}

.nav-logo {
  display:flex; align-items:center; gap:.8rem;
  flex-shrink:0; transition:opacity .2s;
}
.nav-logo:hover { opacity:.7; }
.logo-mark { display:none; }
.logo-wordmark {
  font-family:var(--fd); font-size:.98rem; font-weight:400;
  color:var(--charcoal); line-height:1;
}
.logo-wordmark em { font-style:normal; color:var(--sage); }

.nav-links { display:flex; gap:2.5rem; margin-left:auto; }
.nav-link {
  font-size:.72rem; font-weight:400; letter-spacing:.1em;
  text-transform:uppercase; color:rgba(61,61,61,0.6);
  position:relative; transition:color .2s;
}
.nav-link::after {
  content:''; position:absolute;
  bottom:-3px; left:0; width:0; height:1px;
  background:var(--sage);
  transition:width .3s var(--ease);
}
.nav-link:hover, .nav-link.active { color:var(--sage); }
.nav-link:hover::after, .nav-link.active::after { width:100%; }

.nav-phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

/* Animated pulse ring */
.nav-pulse {
  position: relative;
  width: 8px; height: 8px;
  flex-shrink: 0;
}
.nav-pulse::before,
.nav-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--sage);
}
.nav-pulse::before {
  /* Solid dot */
}
.nav-pulse::after {
  /* Radiating ring */
  background: transparent;
  border: 1.5px solid var(--sage);
  animation: pulseRing 2.2s var(--ease) infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(2.8); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

.nav-phone {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--charcoal);
  transition: color .2s;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--sage); }

.nav-cta {
  flex-shrink:0; background:var(--charcoal); color:var(--cream);
  padding:.6rem 1.5rem; border-radius:100px;
  font-size:.7rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase;
  transition:background .3s, transform .2s;
}
.nav-cta:hover { background:var(--sage); transform:translateY(-2px); }

.hamburger {
  display:none; flex-direction:column; gap:7px;
  background:none; border:none; cursor:pointer;
  padding:4px; margin-left:auto;
}
.hamburger span {
  display:block; width:22px; height:1.5px;
  background:var(--charcoal); border-radius:2px;
  transition:transform .35s var(--ease), opacity .25s;
}

/* ─── MOBILE OVERLAY ─────────────────────── */
.mob-overlay {
  position:fixed; inset:0; background:var(--charcoal-deep);
  z-index:200; display:flex; flex-direction:column;
  justify-content:center; align-items:center; gap:2rem;
  transform:translateX(100%);
  transition:transform .55s cubic-bezier(0.77,0,0.175,1); overflow:hidden;
}
.mob-overlay.open { transform:translateX(0); }
.mob-close {
  position:absolute; top:1.75rem; right:1.75rem;
  width:44px; height:44px;
  background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.mob-close span {
  position:absolute; width:22px; height:1.5px;
  background:var(--cream); border-radius:2px;
}
.mob-close span:first-child { transform:rotate(45deg); }
.mob-close span:last-child  { transform:rotate(-45deg); }
.mob-nav { display:flex; flex-direction:column; align-items:center; gap:1.25rem; }
.mob-link {
  font-family:var(--fd); font-style:italic;
  font-size:clamp(2rem,7vw,2.8rem); font-weight:300;
  color:rgba(237,233,224,0.65); transition:color .2s;
}
.mob-link:hover { color:var(--sage-light); }
.mob-cta {
  font-size:.7rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase;
  background:var(--sage); color:var(--cream);
  padding:.85rem 2.5rem; border-radius:100px;
  transition:background .3s; white-space:nowrap;
}
.mob-cta:hover { background:var(--sage-dark); }
.mob-foot {
  position:absolute; bottom:2rem;
  font-size:.62rem; letter-spacing:.16em; text-transform:uppercase;
  color:rgba(237,233,224,0.2);
}

/* ─── HERO — SPLIT SCREEN ────────────────── */
.hero {
  display:grid;
  grid-template-columns:1.15fr 1fr;
  /* Height driven by content, not viewport — remove 100svh */
  overflow:hidden;
}

/* Left panel */
.hero-l {
  background:var(--cream);
  display:flex; flex-direction:column;
  position:relative; z-index:1;
}

.hero-l-body {
  display:flex; flex-direction:column; justify-content:center;
  padding:clamp(7rem,11vw,10rem) clamp(2rem,5vw,5rem) clamp(4rem,7vw,6rem);
}

/* Hero eyebrow */
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:.75rem;
  font-size:.62rem; font-weight:500; letter-spacing:.22em;
  text-transform:uppercase; color:var(--sage);
  margin-bottom:2.25rem;
  opacity:0; animation:fadeUp 1s var(--ease-out) .3s forwards;
}
.ey-line { display:inline-block; width:28px; height:1px; background:currentColor; flex-shrink:0; }
.ey-dot  { color:rgba(135,158,133,0.35); font-size:.45rem; }

/* Headline */
.hero-h1 {
  font-family:var(--fd);
  font-size:clamp(4.5rem, 9vw, 12rem);
  font-weight:300; line-height:.9; letter-spacing:-.025em;
  color:var(--charcoal);
  margin-bottom:2.5rem;
}
.hero-h1 em { font-style:italic; color:var(--sage); }

.h1-clip { display:block; overflow:hidden; }
.h1-word {
  display:block;
  opacity:0; transform:translateY(105%);
}
.h1-clip:nth-child(1) .h1-word { animation:lineUp 1.1s var(--ease-out) .55s forwards; }
.h1-clip:nth-child(2) .h1-word { animation:lineUp 1.1s var(--ease-out) .8s  forwards; }

@keyframes lineUp {
  to { opacity:1; transform:translateY(0); }
}

/* Sub */
.hero-sub {
  font-size:clamp(.9rem,1.4vw,1.05rem); font-weight:300;
  line-height:1.82; color:rgba(61,61,61,0.58); max-width:44ch;
  margin-bottom:2.75rem;
  opacity:0; animation:fadeUp 1s var(--ease-out) 1.05s forwards;
}

/* CTAs */
.hero-actions {
  display:flex; gap:1rem; flex-wrap:wrap;
  opacity:0; animation:fadeUp 1s var(--ease-out) 1.25s forwards;
}

/* Right panel */
.hero-r {
  background:var(--linen);
  position:relative; overflow:hidden;
  padding-top:70px; /* nav clearance — keeps dog ear visible */
}

/* Dog image */
.hero-dog {
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-42%);
  /* Fit within panel height — no overflow */
  height:100%;
  width:auto;
  max-width:none;
  display:block;
  mix-blend-mode:multiply;
  animation:dogIn 1.4s var(--ease-out) 1.3s both;
}
@keyframes dogIn {
  from { filter:opacity(0); transform:translateX(-34%); }
  to   { filter:opacity(1); transform:translateX(-42%); }
}

/* Vertical text on right panel */
.hero-r-vert {
  position:absolute; left:1.5rem; top:50%;
  transform:translateY(-50%) rotate(-90deg);
  transform-origin:center center;
  font-size:.58rem; letter-spacing:.22em; text-transform:uppercase;
  color:rgba(61,61,61,0.2); white-space:nowrap;
  user-select:none; pointer-events:none;
}

/* Floating badge */
.hero-r-badge {
  position:absolute; bottom:2rem; right:2rem;
  display:flex; flex-direction:column; align-items:flex-end; gap:.2rem;
}
.hero-r-badge span {
  font-size:.6rem; letter-spacing:.18em; text-transform:uppercase;
  color:rgba(61,61,61,0.3); line-height:1.4;
}
.hero-r-badge span:last-child { color:rgba(61,61,61,0.55); font-weight:500; }

/* ─── MARQUEE ────────────────────────────── */
.marquee {
  background:var(--sage); overflow:hidden;
  white-space:nowrap; padding-block:.9rem; user-select:none;
}
.mq-track { display:inline-flex; animation:mq 32s linear infinite; }
.mq-set { display:inline-flex; align-items:center; flex-shrink:0; }
.mq-set span {
  padding-inline:1.25rem; font-size:.67rem; font-weight:500;
  letter-spacing:.18em; text-transform:uppercase;
  color:rgba(237,233,224,0.88);
}
.mq-set .md { padding-inline:.25rem !important; letter-spacing:0 !important; opacity:.3; font-size:.52rem !important; }
@keyframes mq {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* ─── SECTIONS SHARED ───────────────────── */
.section { padding-block:var(--pad); }

/* ─── ABOUT ─────────────────────────────── */
.about-section { background:var(--cream-soft); }

.about-quote-wrap {
  margin-bottom:clamp(3rem,5vw,5rem);
}
.about-quote {
  font-family:var(--fd); font-style:italic;
  font-size:clamp(1.7rem,3.2vw,3rem); font-weight:300;
  line-height:1.35; color:var(--charcoal);
  padding-left:2rem;
  border-left:3px solid var(--sage);
  max-width:80ch;
}

.about-body-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(3rem,6vw,7rem);
  margin-bottom:clamp(3.5rem,6vw,6rem);
}
.about-body-col p {
  font-size:clamp(.9rem,1.3vw,1rem); line-height:1.85;
  color:rgba(61,61,61,0.62); margin-bottom:1.25rem;
}
.about-sig {
  margin-top:2.5rem; padding-top:1.75rem;
  border-top:1px solid var(--rule-m);
}
.sig-name {
  display:block; font-family:var(--fd); font-style:italic;
  font-size:1.5rem; font-weight:400; color:var(--charcoal); margin-bottom:.3rem;
}
.sig-role {
  display:block; font-size:.62rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--gray);
}

/* ─── PHILOSOPHY (dark) ──────────────────── */
.phil-section { background:var(--charcoal); padding-block:clamp(50px,6vw,80px); }

.phil-head { margin-bottom:clamp(1.5rem,2.5vw,2.5rem); }
.phil-h2 {
  font-family:var(--fd); font-size:clamp(2.5rem,5.5vw,5rem);
  font-weight:300; line-height:1.06; letter-spacing:-.01em; color:var(--cream);
}
.phil-h2 em { font-style:italic; color:var(--cream); }

.phil-section .section-label { margin-bottom:clamp(1.5rem,2.5vw,2.5rem); }

.phil-row {
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:clamp(2rem,5vw,6rem);
  align-items:center;
  padding-block:clamp(1rem,2vw,1.75rem);
  border-top:1px solid rgba(237,233,224,0.1);
  position:relative;
  transition:border-color .4s;
  cursor:default;
}
.phil-row:last-child { border-bottom:1px solid rgba(237,233,224,0.1); }

/* Animated sage rule that wipes in on hover */
.phil-row::before {
  content:'';
  position:absolute;
  top:-1px; left:0;
  height:1px;
  width:0;
  background:var(--sage);
  transition:width .55s var(--ease-out);
}
.phil-row:hover::before { width:100%; }
.phil-row:last-child::after {
  content:'';
  position:absolute;
  bottom:-1px; left:0;
  height:1px;
  width:0;
  background:var(--sage);
  transition:width .55s var(--ease-out);
}
.phil-row:last-child:hover::after { width:100%; }

/* Title — slides right on hover */
.phil-row-left { overflow:hidden; }
.phil-row-title {
  font-family:var(--fd);
  font-style:italic;
  font-size:clamp(2rem,4vw,3.5rem);
  font-weight:300;
  line-height:1;
  color:var(--cream);
  letter-spacing:-.02em;
  display:inline-block;
  transition:transform .45s var(--ease-out), color .35s;
}
.phil-row:hover .phil-row-title {
  transform:translateX(1rem);
  color:var(--sage-light);
}

/* Description */
.phil-row-right p {
  font-size:clamp(.88rem,1.3vw,1rem);
  line-height:1.78;
  color:rgba(237,233,224,0.5);
  max-width:58ch;
  transition:color .35s;
}
.phil-row:hover .phil-row-right p { color:rgba(237,233,224,0.72); }

/* ─── SAGE DIVIDER BAR ───────────────────── */
.sage-bar {
  background:var(--sage);
  padding-block:1.25rem;
  display:flex; align-items:center; justify-content:center;
  gap:1.75rem; flex-wrap:wrap;
}
.sage-bar span {
  font-size:.65rem; font-weight:500; letter-spacing:.22em;
  text-transform:uppercase; color:rgba(237,233,224,0.85);
  white-space:nowrap;
}
.sage-bar-dot {
  color:rgba(237,233,224,0.3); font-size:.45rem;
  letter-spacing:0 !important;
}

/* ─── SERVICES ───────────────────────────── */
.services-section { background:#fff; }

.services-head {
  display:grid; grid-template-columns:1fr 1fr;
  gap:3rem; align-items:end;
  margin-bottom:clamp(2.5rem,4vw,4rem);
}
.services-head-left .sec-tag { display:block; margin-bottom:.75rem; }
.services-h2 {
  font-family:var(--fd); font-size:clamp(2.5rem,5vw,4.5rem);
  font-weight:300; line-height:1.06; letter-spacing:-.01em; color:var(--charcoal);
}
.services-h2 em { font-style:italic; color:var(--sage); }
.services-intro {
  font-size:.9rem; line-height:1.78; color:rgba(61,61,61,0.52);
  max-width:42ch; align-self:end;
}

/* Editorial tabs — underline treatment */
.tabs {
  display:flex; gap:0;
  margin-bottom:3rem;
  border-bottom:1px solid var(--rule-m);
}
.tab {
  background:transparent; border:none;
  padding:.75rem 2.5rem .75rem 0;
  font-family:var(--fb); font-size:.76rem; font-weight:500;
  letter-spacing:.1em; text-transform:uppercase;
  color:rgba(61,61,61,0.38);
  cursor:pointer; position:relative;
  transition:color .25s;
}
.tab::after {
  content:'';
  position:absolute; bottom:-1px; left:0;
  width:0; height:2px;
  background:var(--sage);
  transition:width .4s var(--ease-out);
}
.tab:hover { color:var(--charcoal); }
.tab.active { color:var(--charcoal); }
.tab.active::after { width:calc(100% - 2.5rem); }

/* Panels */
.tab-panel { display:none; animation:fadeIn .4s var(--ease) forwards; }
.tab-panel.active { display:block; }
.panel-desc {
  font-size:.88rem; line-height:1.78; color:rgba(61,61,61,0.5);
  max-width:72ch; margin-bottom:0;
  padding-bottom:2rem;
  border-bottom:1px solid var(--rule);
}

/* ── Price rows ── */
.price-rows { margin-bottom:1.5rem; }

/* Column header */
.price-row-head {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:1rem;
  padding:.9rem 1.5rem;
  background:var(--charcoal);
  border-radius:8px;
  margin-bottom:.5rem;
}
.price-row-head span {
  font-size:.65rem; font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:rgba(237,233,224,0.95);
}
.pr-coat-head, .pr-time-head { text-align:center; }

/* Data rows */
.price-row {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:1rem;
  align-items:center;
  padding:1.4rem 1.5rem;
  border-bottom:1px solid rgba(61,61,61,0.22);
  transition:background .25s;
  cursor:default;
}
.price-row:last-of-type { border-bottom:none; }
.price-row:hover { background:rgba(135,158,133,0.05); }

/* Size + weight */
.pr-size {
  font-family:var(--fd); font-size:1.3rem; font-weight:400;
  color:var(--charcoal); line-height:1;
  display:flex; flex-direction:column; gap:.35rem;
}
.pr-weight {
  font-size:.72rem; letter-spacing:.06em; text-transform:uppercase;
  color:rgba(61,61,61,0.55); font-family:var(--fb);
}

/* Prices */
.pr-price {
  font-family:var(--fd); font-size:1.75rem; font-weight:500;
  color:var(--sage); text-align:center; line-height:1;
}

/* Time */
.pr-time {
  font-size:.78rem; letter-spacing:.04em;
  color:rgba(61,61,61,0.65); text-align:center;
}

.price-fn {
  font-size:.78rem; color:var(--gray);
  font-style:italic; line-height:1.6;
  padding-top:1.25rem;
}

/* Add-ons */
.addons-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(248px,1fr));
  gap:1px; background:var(--rule-m);
  border:1px solid var(--rule-m); border-radius:14px; overflow:hidden;
}
.addon {
  background:rgba(255,255,255,0.85); padding:1.75rem;
  transition:background .3s, transform .3s, box-shadow .3s;
}
.addon:hover {
  background:#fff; transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,0.08);
  position:relative; z-index:1;
}
.addon-top {
  display:flex; justify-content:space-between; align-items:baseline;
  gap:1rem; margin-bottom:.55rem;
}
.addon h4 { font-family:var(--fd); font-size:1.15rem; font-weight:500; color:var(--charcoal); }
.addon-p  { font-family:var(--fd); font-size:1.1rem; font-weight:500; color:var(--sage); white-space:nowrap; flex-shrink:0; }
.addon p  { font-size:.81rem; line-height:1.6; color:rgba(61,61,61,0.5); }

/* ─── WHY US ─────────────────────────────── */
.why-section { background:var(--cream); }

.why-grid {
  display:grid; grid-template-columns:1fr 1.1fr;
  gap:clamp(3rem,7vw,9rem); align-items:center;
}
.why-h2 {
  font-family:var(--fd); font-size:clamp(2.2rem,4.5vw,4rem);
  font-weight:300; line-height:1.1; letter-spacing:-.01em; color:var(--charcoal);
  margin-block:.5rem 1.5rem;
}
.why-h2 em { font-style:italic; color:var(--sage); }
.why-left p {
  font-size:.97rem; line-height:1.82; color:rgba(61,61,61,0.55);
  max-width:42ch; margin-bottom:2.25rem;
}
.why-right { display:flex; flex-direction:column; }
.why-feat {
  display:flex; gap:1.25rem; align-items:flex-start;
  padding-block:1.7rem;
  border-bottom:1px solid var(--rule-m);
  transition:border-color .3s;
}
.why-feat:first-child { border-top:1px solid var(--rule-m); }
.why-feat:hover { border-bottom-color:rgba(135,158,133,0.3); }
.wf-icon {
  flex-shrink:0; width:26px; height:26px; border-radius:50%;
  background:rgba(135,158,133,0.1); border:1px solid rgba(135,158,133,0.22);
  display:flex; align-items:center; justify-content:center;
  color:var(--sage); margin-top:2px;
  transition:background .3s, border-color .3s;
}
.why-feat:hover .wf-icon { background:rgba(135,158,133,0.22); border-color:var(--sage); }
.why-feat h4 {
  font-family:var(--fd); font-size:1.12rem; font-weight:500;
  color:var(--charcoal); margin-bottom:.35rem;
}
.why-feat p { font-size:.85rem; line-height:1.7; color:rgba(61,61,61,0.52); }

/* ─── CTA BAND ───────────────────────────── */
.cta-band { background:var(--sage); overflow:hidden; }
.cta-band-inner {
  max-width:var(--w); margin-inline:auto;
  padding-inline:clamp(1.5rem,3vw,3rem);
  padding-block:clamp(5rem,8vw,9rem);
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(3rem,6vw,7rem); align-items:center;
}
.cta-band-label {
  display:block; font-size:.62rem; letter-spacing:.26em;
  text-transform:uppercase; color:rgba(237,233,224,0.6);
  margin-bottom:1rem;
}
.cta-band-h2 {
  font-family:var(--fd); font-size:clamp(2.4rem,5vw,4.5rem);
  font-weight:300; line-height:1.06; letter-spacing:-.01em;
  color:var(--cream);
}
.cta-band-h2 em { font-style:italic; color:rgba(237,233,224,0.7); }
.cta-band-right p {
  font-size:.97rem; line-height:1.8; color:rgba(237,233,224,0.7);
  margin-bottom:2rem; max-width:44ch;
}
.cta-band-btns { display:flex; gap:1rem; flex-wrap:wrap; }

/* ─── CONTACT ────────────────────────────── */
.contact-section {
  background:var(--charcoal-deep);
  position:relative; overflow:hidden;
}
.contact-ghost {
  position:absolute; right:-8%;  bottom:-10%;
  font-family:var(--fd); font-size:clamp(280px,42vw,580px);
  font-weight:700; color:transparent;
  -webkit-text-stroke:1px rgba(135,158,133,0.06);
  pointer-events:none; user-select:none; line-height:1;
}
.contact-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(3rem,7vw,8rem); align-items:start;
  position:relative; z-index:2;
}
.contact-h2 {
  font-family:var(--fd); font-size:clamp(2.2rem,4.5vw,4rem);
  font-weight:300; line-height:1.1; letter-spacing:-.01em; color:var(--cream);
  margin-bottom:3rem;
}
.contact-h2 em { font-style:italic; color:var(--taupe); }
.cinfo-stack { display:flex; flex-direction:column; gap:2rem; }
.cinfo-item { display:flex; flex-direction:column; gap:.5rem; }
.cinfo-lbl {
  font-size:.6rem; letter-spacing:.22em; text-transform:uppercase; color:var(--taupe);
}
.cinfo-item address {
  font-size:.93rem; line-height:1.65; color:rgba(237,233,224,0.55);
}
.cinfo-link {
  font-family:var(--fd); font-size:1.5rem; font-weight:400;
  color:var(--cream); transition:color .2s;
}
.cinfo-link:hover { color:var(--taupe); }
.cinfo-socials { display:flex; gap:1.5rem; }
.csoc {
  font-size:.73rem; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(237,233,224,0.4); position:relative; transition:color .2s;
}
.csoc::after {
  content:''; position:absolute; bottom:-2px; left:0;
  width:0; height:1px; background:var(--taupe);
  transition:width .3s var(--ease);
}
.csoc:hover { color:var(--cream); }
.csoc:hover::after { width:100%; }

.hours-card {
  border:1px solid rgba(237,233,224,0.12); border-radius:18px;
  padding:clamp(2rem,3vw,2.75rem); background:rgba(255,255,255,0.03);
}
.hours-title {
  font-family:var(--fd); font-size:1.5rem; font-weight:400;
  color:var(--cream); margin-bottom:2rem;
  padding-bottom:1.5rem; border-bottom:1px solid rgba(237,233,224,0.1);
}
.hours-list { display:flex; flex-direction:column; }
.hrow {
  display:flex; justify-content:space-between; align-items:center;
  padding-block:.95rem;
  border-bottom:1px solid rgba(237,233,224,0.07);
}
.hrow:last-child { border-bottom:none; }
.hday  { font-size:.84rem; color:rgba(237,233,224,0.5); }
.htime { font-size:.84rem; font-weight:500; color:var(--cream); }
.hclosed { color:rgba(237,233,224,0.22) !important; font-weight:300; font-style:italic; }
.hmuted  { color:rgba(237,233,224,0.42) !important; font-weight:400; }

/* ─── CONTACT BAND ───────────────────────── */
.contact-band {
  background:var(--charcoal-deep);
  border-top:1px solid rgba(237,233,224,0.07);
}
.contact-band-inner {
  max-width:var(--w); margin-inline:auto;
  padding-inline:clamp(1.5rem,3vw,3rem);
  padding-block:2rem;
  display:flex; align-items:center;
  gap:clamp(1.5rem,3vw,3rem); flex-wrap:wrap;
}
.contact-band-item {
  display:flex; flex-direction:column; gap:.35rem;
}
.contact-band-lbl {
  font-size:.58rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--taupe);
}
.contact-band-val {
  font-size:.82rem; color:rgba(237,233,224,0.65);
}
.contact-band-link {
  color:rgba(237,233,224,0.65); transition:color .2s;
}
.contact-band-link:hover { color:var(--cream); }
.contact-band-socials { display:flex; gap:1rem; }
.contact-band-rule {
  width:1px; height:36px; flex-shrink:0;
  background:rgba(237,233,224,0.08);
  align-self:center;
}
@media (max-width:600px) {
  .contact-band-rule { display:none; }
}

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background:var(--charcoal-deep);
  border-top:1px solid rgba(237,233,224,0.07);
  padding-block:5rem 2.5rem;
}
.footer-top {
  display:grid; grid-template-columns:2fr 1fr;
  gap:clamp(2rem,5vw,6rem);
  padding-bottom:4rem;
  border-bottom:1px solid rgba(237,233,224,0.07);
  margin-bottom:2rem;
}
.footer-logo {
  display:block; font-family:var(--fd); font-size:1.45rem;
  font-weight:300; line-height:1.25; color:var(--cream); margin-bottom:1rem;
}
.footer-logo em { font-style:italic; color:var(--sage-light); }
.footer-brand p { font-size:.8rem; line-height:1.78; color:rgba(237,233,224,0.32); margin-bottom:1.5rem; }
.footer-socials { display:flex; gap:.75rem; }
.fsoc {
  width:34px; height:34px; border-radius:50%;
  border:1px solid rgba(237,233,224,0.1);
  display:flex; align-items:center; justify-content:center;
  color:rgba(237,233,224,0.38);
  transition:color .2s, border-color .2s, background .2s;
}
.fsoc:hover { color:var(--cream); border-color:var(--sage); background:rgba(135,158,133,0.12); }
.footer-cols { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.footer-col { display:flex; flex-direction:column; gap:.75rem; }
.fcol-h {
  display:block; font-size:.6rem; letter-spacing:.22em;
  text-transform:uppercase; color:var(--taupe); margin-bottom:.5rem;
}
.footer-col a { font-size:.82rem; color:rgba(237,233,224,0.4); transition:color .2s; }
.footer-col a:hover { color:var(--cream); }
.faddr { font-size:.8rem; color:rgba(237,233,224,0.22); line-height:1.65; margin-top:.25rem; }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  font-size:.7rem; color:rgba(237,233,224,0.22);
}
.footer-bottom a { color:rgba(237,233,224,0.4); transition:color .2s; }
.footer-bottom a:hover { color:var(--cream); }

/* ─── KEYFRAMES ──────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Full mobile overhaul
   1060px · 900px · 600px · 480px
   ═══════════════════════════════════════════ */

/* ─── 1060px — Tablet landscape ─────────── */
@media (max-width:1060px) {
  .services-head { grid-template-columns:1fr; gap:1.5rem; }
  .price-row, .price-row-head { grid-template-columns:1.6fr 1fr 1fr 1fr; }
  .pr-time, .pr-time-head { display:none; }
  .why-grid { gap:clamp(2rem,5vw,6rem); }
  .cta-band-inner { gap:clamp(2rem,4vw,5rem); }
}

/* ─── 900px — Tablet portrait ───────────── */
@media (max-width:900px) {
  /* Nav */
  .nav-links, .nav-cta, .nav-phone-wrap { display:none; }
  .hamburger { display:flex; }

  /* Hero */
  .hero {
    grid-template-columns:1fr;
    min-height:auto;
  }
  .hero-l { padding-top:80px; }
  .hero-l-body {
    padding:clamp(5rem,9vw,7rem) clamp(1.75rem,5vw,3.5rem) clamp(3rem,6vw,4.5rem);
  }
  .hero-r {
    height:60vw; min-height:260px; max-height:400px;
    padding-top:0;
  }
  .hero-dog {
    height:130%; top:auto; bottom:-8%;
    transform:translateX(-38%);
  }
  .hero-r-vert { display:none; }

  /* Sections */
  .about-body-grid { grid-template-columns:1fr; gap:2rem; }
  .about-quote { font-size:clamp(1.4rem,3.5vw,2rem); }

  /* Why */
  .why-grid { grid-template-columns:1fr; gap:2.5rem; }
  .why-left p { max-width:none; }

  /* CTA band */
  .cta-band-inner {
    grid-template-columns:1fr;
    gap:2rem;
    padding-block:clamp(3.5rem,6vw,5rem);
  }
  .cta-band-right p { max-width:none; }

  /* Contact band */
  .contact-band-inner {
    flex-wrap:wrap;
    gap:1.5rem 2.5rem;
  }
  .contact-band-rule { display:none; }
  .contact-band-item { min-width:140px; }

  /* Footer */
  .footer-top { grid-template-columns:1fr; gap:3rem; }
  .footer-cols { grid-template-columns:repeat(3,1fr); }
}

/* ─── 600px — Mobile ─────────────────────── */
@media (max-width:600px) {
  /* Global section padding */
  :root { --pad: clamp(60px,10vw,90px); }

  /* Hero */
  .hero-h1 { font-size:clamp(3.8rem,14vw,5.5rem); margin-bottom:1.5rem; }
  .hero-sub { font-size:.9rem; margin-bottom:2rem; }
  .hero-actions { flex-direction:column; gap:.75rem; }
  .hero-actions .btn { width:100%; justify-content:center; text-align:center; }
  .hero-r { height:55vw; min-height:220px; }
  .hero-r-badge { bottom:1rem; right:1rem; }

  /* Marquee — slow down slightly on small screens */
  .mq-track { animation-duration:22s; }

  /* Sage bar */
  .sage-bar { gap:1rem .75rem; padding-block:1rem; justify-content:center; }
  .sage-bar-dot { display:none; }

  /* About */
  .about-quote { padding-left:1.25rem; }
  .about-sig { margin-top:1.75rem; padding-top:1.25rem; }

  /* Services */
  .services-head { gap:1rem; }
  .tabs { gap:0; overflow-x:auto; -webkit-overflow-scrolling:touch; flex-wrap:nowrap; }
  .tab { flex-shrink:0; padding:.75rem 1.25rem .75rem 0; font-size:.68rem; }
  .price-row, .price-row-head {
    grid-template-columns:1.2fr .9fr .9fr .9fr;
    padding-inline:.6rem;
    gap:.3rem;
  }
  .pr-price { font-size:1.05rem; }
  .pr-size { font-size:1rem; }
  .pr-coat-head { font-size:.55rem; letter-spacing:.06em; }
  .addons-grid { grid-template-columns:1fr; }
  .panel-desc { font-size:.82rem; }

  /* Why */
  .why-feat { gap:1rem; padding-block:1.4rem; }
  .why-feat h4 { font-size:1rem; }

  /* CTA band */
  .cta-band-h2 { font-size:clamp(2rem,8vw,3rem); }
  .cta-band-btns { flex-direction:column; gap:.75rem; }
  .cta-band-btns .btn { width:100%; justify-content:center; }

  /* Contact band */
  .contact-band-inner {
    flex-direction:column;
    gap:1.25rem;
    padding-block:1.75rem;
  }
  .contact-band-item { width:100%; }
  .contact-band-socials { gap:1.5rem; }

  /* Footer */
  .footer-cols { grid-template-columns:1fr 1fr; gap:1.5rem; }
  .footer-col:last-child { grid-column:1/-1; }
  .footer-bottom { flex-direction:column; gap:.5rem; text-align:center; }
  .footer { padding-block:4rem 7rem; } /* extra bottom room for sticky bar */

  /* Sticky bottom CTA bar */
  .mob-sticky {
    display:flex;
  }
}

/* ─── 480px — Small phones ───────────────── */
@media (max-width:480px) {
  .hero-h1 { font-size:clamp(3.2rem,13vw,4.5rem); }
  .hero-r { height:50vw; }
  .about-quote { font-size:clamp(1.2rem,5vw,1.6rem); }
  .why-h2 { font-size:clamp(1.9rem,7vw,2.5rem); }
  .contact-band-inner { padding-inline:1.25rem; }
  .footer { padding-inline:1.25rem; }
}

/* ─── STICKY MOBILE BOTTOM BAR ───────────── */
.mob-sticky {
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:90;
  background:var(--charcoal);
  border-top:1px solid rgba(237,233,224,0.1);
  padding:.85rem 1.25rem;
  padding-bottom:calc(.85rem + env(safe-area-inset-bottom));
  gap:.75rem;
  align-items:center;
}
.mob-sticky-call {
  flex:1;
  display:flex; align-items:center; justify-content:center;
  gap:.6rem;
  background:var(--sage); color:var(--cream);
  border-radius:100px;
  padding:.85rem 1.25rem;
  font-family:var(--fb); font-size:.78rem; font-weight:500;
  letter-spacing:.1em; text-transform:uppercase;
  transition:background .2s;
}
.mob-sticky-call:hover { background:var(--sage-dark); }
.mob-sticky-call svg { flex-shrink:0; }
.mob-sticky-addr {
  font-size:.6rem; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(237,233,224,0.35); white-space:nowrap; text-align:center;
  line-height:1.5;
}

/* ─── MOBILE BOTTOM NAV ──────────────────── */
.mob-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--charcoal-deep);
  border-top: 1px solid rgba(237,233,224,0.08);
  padding-bottom: env(safe-area-inset-bottom);
}
.mob-bottom-nav-inner {
  display: flex; align-items: stretch;
  height: 60px;
}
.mob-nav-item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  color: rgba(237,233,224,0.4);
  font-family: var(--fb); font-size: .56rem;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  transition: color .2s;
  cursor: pointer; text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.mob-nav-item:hover,
.mob-nav-item.active { color: var(--sage-light); }
.mob-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Center call button */
.mob-nav-call {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  color: var(--cream);
  font-family: var(--fb); font-size: .56rem;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.mob-nav-call-bubble {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: -16px;
  box-shadow: 0 4px 20px rgba(135,158,133,0.45);
  transition: background .2s, transform .2s;
}
.mob-nav-call:hover .mob-nav-call-bubble {
  background: var(--sage-dark); transform: translateY(-2px);
}
.mob-nav-call-label {
  margin-top: 20px;
  color: rgba(237,233,224,0.4);
}

@media (max-width:600px) {
  .mob-bottom-nav { display: block; }
  .mob-sticky { display: none; } /* hide old sticky if present */
  .footer { padding-bottom: calc(60px + env(safe-area-inset-bottom) + 2rem); }
}

/* ─── REDUCED MOTION ─────────────────────── */
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after {
    animation-duration:.01ms !important;
    transition-duration:.01ms !important;
    animation-iteration-count:1 !important;
  }
  .reveal { opacity:1; transform:none; }
}