/* ==========================================================================
   KC's Canine Spa — design system
   Palette takes its cue from the logo: Irish Setter auburn, coral tulips,
   sage leaves — reworked into a warm editorial scheme rather than flat green.
   ========================================================================== */

:root {
  /* Surfaces */
  --ink:        #100E0C;
  --ink-2:      #17130F;
  --ink-3:      #221B15;
  --cream:      #F7F3EA;
  --cream-2:    #EFE8DA;
  --cream-3:    #E4DACA;

  /* Ink on cream */
  --text:       #241D16;
  --text-soft:  #5B5045;
  --text-faint: #8A7D6F;

  /* Cream on ink */
  --text-inv:       #F7F3EA;
  --text-inv-soft:  rgba(247, 243, 234, 0.72);
  --text-inv-faint: rgba(247, 243, 234, 0.48);

  /* Accents */
  --coral:        #C2543A;   /* on cream — AA contrast */
  --coral-warm:   #F0A07C;   /* on ink */
  --coral-glow:   #E8845C;
  --sage:         #5C7352;
  --sage-warm:    #9DB48D;
  --auburn:       #8C4526;

  --line:         rgba(36, 29, 22, 0.13);
  --line-inv:     rgba(247, 243, 234, 0.16);

  --font-display: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --font-body:    'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);

  --shell:  1280px;
  --gutter: clamp(1.25rem, 4vw, 4rem);

  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

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

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

.skip-link {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -120%);
  z-index: 999; background: var(--cream); color: var(--text);
  padding: 0.75rem 1.5rem; border-radius: 0 0 12px 12px;
  font-weight: 600; font-size: 0.875rem;
  transition: transform 0.25s var(--ease-out);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

h1.display { font-size: clamp(2.6rem, 6.4vw, 4.5rem); line-height: 0.9; }
h2.display { font-size: clamp(2.2rem, 5.6vw, 4.2rem); }
h3.display { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  display: flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: currentColor; opacity: 0.55; flex: none;
}
.on-dark .eyebrow { color: var(--coral-warm); }

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.62;
  color: var(--text-soft);
  font-weight: 400;
}
.on-dark .lede { color: var(--text-inv-soft); }
.lede + .lede { margin-top: 1.1rem; }

.amp { font-family: var(--font-display); font-style: italic; }

/* ---------- Layout ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

.band { padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.band--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.on-cream { background: var(--cream); color: var(--text); }
.on-cream-2 { background: var(--cream-2); color: var(--text); }
.on-dark { background: var(--ink); color: var(--text-inv); }
.on-dark-2 { background: var(--ink-2); color: var(--text-inv); }

.band-head { max-width: 46rem; }
.band-head .eyebrow { margin-bottom: 1.4rem; }
.band-head .lede { margin-top: 1.4rem; }

/* ==========================================================================
   Liquid glass
   ========================================================================== */
.glass {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px) saturate(120%);
  -webkit-backdrop-filter: blur(5px) saturate(120%);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.10);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.glass-strong {
  backdrop-filter: blur(34px) saturate(130%);
  -webkit-backdrop-filter: blur(34px) saturate(130%);
  box-shadow: 4px 4px 14px rgba(0,0,0,0.10), inset 0 1px 1px rgba(255,255,255,0.15);
}
.glass-strong::before {
  background: linear-gradient(180deg,
    rgba(255,255,255,0.5) 0%,
    rgba(255,255,255,0.2) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.2) 80%,
    rgba(255,255,255,0.5) 100%);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease-spring), background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid { background: var(--coral); color: #fff; box-shadow: 0 6px 20px -8px rgba(194,84,58,0.8); }
.btn--solid:hover { background: #AC4830; box-shadow: 0 12px 28px -10px rgba(194,84,58,0.9); }

.btn--cream { background: var(--cream); color: var(--text); }
.btn--cream:hover { background: #fff; }

.btn--ghost { border: 1px solid var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); }
.on-dark .btn--ghost { border-color: var(--line-inv); color: var(--text-inv); }
.on-dark .btn--ghost:hover { border-color: var(--text-inv); }

.btn--glass { color: #fff; border-radius: 999px; }
.btn--glass:hover { background: rgba(255,255,255,0.07); }

.btn--bare {
  padding: 0.95rem 0.25rem;
  color: inherit; font-weight: 500;
}
.btn--bare::after {
  content: ""; position: absolute;
  left: 0.25rem; right: 0.25rem; bottom: 0.7rem; height: 1px;
  background: currentColor; opacity: 0.5;
  transform-origin: right; transform: scaleX(0);
  transition: transform 0.45s var(--ease-spring);
}
.btn--bare:hover::after { transform-origin: left; transform: scaleX(1); }
.btn--bare:hover { transform: none; }

.btn--lg { padding: 1.1rem 2rem; font-size: 0.95rem; }
.btn--sm { padding: 0.62rem 1.1rem; font-size: 0.82rem; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.1rem var(--gutter);
  transition: padding 0.4s var(--ease-out), background-color 0.4s, backdrop-filter 0.4s;
}
.nav__inner {
  max-width: var(--shell); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}

.nav.is-stuck {
  padding-block: 0.6rem;
  background: rgba(16, 14, 12, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.brand { display: flex; align-items: center; gap: 0.7rem; flex: none; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--cream);
  overflow: hidden; flex: none;
  box-shadow: inset 0 0 0 1px rgba(36,29,22,0.08);
}
.brand__mark img { width: 150%; max-width: none; transform: translateY(9%); }
.brand__text { line-height: 1.05; }
.brand__name {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.22rem; color: var(--text-inv); letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand__sub {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-inv-faint); font-weight: 500;
}

.nav__links {
  display: flex; align-items: center; gap: 0.15rem;
  padding: 0.35rem; border-radius: 999px;
  flex: none;               /* .glass clips overflow — never let this shrink */
}
.nav__links a {
  padding: 0.5rem 0.95rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.86);
  transition: color 0.25s, background-color 0.25s;
  position: relative; z-index: 1;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.08); }

.nav__actions { display: flex; align-items: center; gap: 0.6rem; flex: none; }

.nav__call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.86);
  padding: 0.5rem 0.4rem;
}
.nav__call:hover { color: #fff; }

.nav__burger {
  display: none;
  width: 46px; height: 46px; border-radius: 999px;
  place-items: center; color: #fff;
}

.nav__panel {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: rgba(16,14,12,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: calc(var(--nav-h) + 2.5rem) var(--gutter) 2.5rem;
  flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.nav__panel.is-open { opacity: 1; pointer-events: auto; }
.nav__panel a {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2rem, 9vw, 2.9rem);
  color: var(--text-inv);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line-inv);
  display: block;
}
.nav__panel .nav__panel-foot { margin-top: auto; padding-top: 2rem; display: grid; gap: 0.75rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  background: var(--ink);
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video,
.hero__media img.hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  opacity: 0;
}
.hero__media img.hero__poster { opacity: 1; z-index: -1; }

.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(16,14,12,0.72) 0%,
      rgba(16,14,12,0.30) 26%,
      rgba(16,14,12,0.34) 58%,
      rgba(16,14,12,0.88) 100%),
    linear-gradient(to right,
      rgba(16,14,12,0.60) 0%,
      rgba(16,14,12,0.10) 55%,
      rgba(16,14,12,0.35) 100%);
}

.hero__body {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 1.25rem;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.35rem 1rem 0.35rem 0.35rem;
  border-radius: 999px;
  font-size: 0.82rem; color: rgba(255,255,255,0.92);
  width: fit-content;
}
.hero__badge b {
  background: var(--coral-glow); color: #241108;
  padding: 0.22rem 0.7rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 { color: #fff; max-width: 17ch; margin-top: 1.35rem; }
.hero h1 em { font-style: italic; color: var(--coral-warm); }

.hero__sub {
  margin-top: 1.25rem;
  max-width: 44ch;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
}

.hero__cta { display: flex; align-items: center; gap: 1.4rem; margin-top: 1.9rem; flex-wrap: wrap; }

.hero__stats {
  display: flex; gap: 0.8rem; margin-top: 1.85rem; flex-wrap: wrap;
}
.hero__stat {
  padding: 1.05rem 1.2rem;
  border-radius: 1.25rem;
  min-width: 168px;
}
.hero__stat svg { color: rgba(255,255,255,0.9); margin-bottom: 1.05rem; }
.hero__stat b {
  display: block;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.85rem; line-height: 1; color: #fff; letter-spacing: -0.02em;
}
.hero__stat span {
  display: block; margin-top: 0.45rem;
  font-size: 0.75rem; font-weight: 300; line-height: 1.35;
  color: rgba(255,255,255,0.8);
}

.hero__foot {
  position: relative; z-index: 2;
  padding-bottom: 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.hero__chip {
  padding: 0.35rem 1rem; border-radius: 999px;
  font-size: 0.74rem; font-weight: 500; color: rgba(255,255,255,0.9);
}
.hero__trust {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem); flex-wrap: wrap;
}
.hero__trust li {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.05rem, 2.1vw, 1.6rem);
  color: rgba(255,255,255,0.92); letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Video switcher */
.hero__switch {
  position: absolute; right: var(--gutter); bottom: 8.5rem; z-index: 3;
  display: flex; flex-direction: column; gap: 0.45rem; align-items: flex-end;
}
.hero__switch button {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.09em;
  text-transform: uppercase; color: #fff;
  opacity: 0.45; transition: opacity 0.3s, transform 0.4s var(--ease-spring);
  padding: 0.2rem 0;
}
.hero__switch button:hover { opacity: 0.8; transform: translateX(-4px); }
.hero__switch button[aria-current="true"] { opacity: 1; }
.hero__switch i {
  font-style: normal; font-size: 0.6rem; opacity: 0.6;
  font-variant-numeric: tabular-nums;
}
.hero__switch em {
  width: 22px; height: 1px; background: currentColor;
  display: block; opacity: 0.5;
  transition: width 0.5s var(--ease-spring);
}
.hero__switch button[aria-current="true"] em { width: 42px; opacity: 1; background: var(--coral-warm); }

/* Blur-in word animation */
.blur-word {
  display: inline-block;
  margin-right: 0.26em;
  will-change: filter, opacity, transform;
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  background: var(--ink-3);
  border-block: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding-block: 1.05rem;
}
.marquee__track {
  display: flex; width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__group span {
  display: inline-flex; align-items: center; gap: 1.1rem;
  padding-inline: 1.4rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.18rem; color: rgba(247,243,234,0.82);
  white-space: nowrap;
}
.marquee__group span::after {
  content: ""; width: 5px; height: 5px; border-radius: 999px;
  background: var(--coral-glow); opacity: 0.85;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Promise / editorial split
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split--media-first .split__media { order: -1; }

.split__media {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-3) center / cover no-repeat;
}
.split__media img, .split__media video {
  width: 100%; height: 100%; object-fit: cover;
}
.split__media--wide { aspect-ratio: 5 / 4; }

.split__badge {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  padding: 0.6rem 1.1rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 500; color: #fff;
  display: flex; align-items: center; gap: 0.55rem;
}

.pillars { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.pillar { display: flex; gap: 1.1rem; align-items: flex-start; }
.pillar__icon {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: rgba(194,84,58,0.09); color: var(--coral);
}
.on-dark .pillar__icon { background: rgba(240,160,124,0.13); color: var(--coral-warm); }
.pillar h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
.pillar p { font-size: 0.92rem; color: var(--text-soft); margin-top: 0.3rem; line-height: 1.55; }
.on-dark .pillar p { color: var(--text-inv-soft); }

/* ==========================================================================
   Services
   ========================================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.service {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: flex; flex-direction: column;
  min-height: 340px;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease-spring), border-color 0.4s;
}
.service::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, rgba(240,160,124,0.14), transparent 62%);
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.service:hover { transform: translateY(-6px); border-color: rgba(240,160,124,0.34); }
.service:hover::after { opacity: 1; }

.service__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.service__icon {
  width: 46px; height: 46px; border-radius: 0.8rem; flex: none;
  display: grid; place-items: center; color: #fff;
}
.service__price {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.5rem; color: var(--coral-warm); line-height: 1;
  text-align: right; white-space: nowrap;
}
.service__price small {
  display: block; font-family: var(--font-body); font-style: normal;
  font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--text-inv-faint); margin-bottom: 0.3rem; font-weight: 500;
}
.service h3 { margin-top: auto; padding-top: 1.5rem; color: #fff; }
.service p {
  margin-top: 0.7rem; font-size: 0.89rem; line-height: 1.55;
  color: var(--text-inv-soft); font-weight: 300; max-width: 34ch;
}
.service__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 1.1rem; }
.service__tags li {
  padding: 0.25rem 0.7rem; border-radius: 999px;
  font-size: 0.68rem; color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.14);
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.price-toggle {
  display: inline-flex; padding: 0.3rem; border-radius: 999px;
  background: rgba(36,29,22,0.07); margin-top: 2rem;
  position: relative;
}
.price-toggle button {
  padding: 0.6rem 1.35rem; border-radius: 999px;
  font-size: 0.86rem; font-weight: 600; color: var(--text-soft);
  position: relative; z-index: 1; transition: color 0.3s;
  white-space: nowrap;
}
.price-toggle button[aria-selected="true"] { color: #fff; }
.price-toggle__pill {
  position: absolute; top: 0.3rem; bottom: 0.3rem;
  border-radius: 999px; background: var(--coral);
  transition: transform 0.5s var(--ease-spring), width 0.5s var(--ease-spring);
  z-index: 0;
}

.price-panel { margin-top: 2.5rem; }
.price-panel[hidden] { display: none; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 196px), 1fr));
  gap: 1rem;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  padding: 1.6rem;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s, border-color 0.4s;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px -26px rgba(36,29,22,0.4);
  border-color: rgba(194,84,58,0.4);
}
.price-card__size {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.6rem; line-height: 1;
}
.price-card__eg {
  font-size: 0.78rem; color: var(--text-faint); margin-top: 0.45rem; min-height: 2.4em;
}
.price-card__amt {
  margin-top: 1.3rem; padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 0.4rem;
}
.price-card__amt b {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 2.5rem; line-height: 1; color: var(--coral);
}
.price-card__amt span { font-size: 0.72rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.1em; }

.price-includes {
  margin-top: 1.75rem; padding: 1.5rem 1.6rem;
  background: rgba(92,115,82,0.08);
  border-radius: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; align-items: center;
}
.price-includes h4 {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage); font-weight: 700; width: 100%;
}
.price-includes li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.87rem; color: var(--text-soft);
}
.price-includes li svg { color: var(--sage); flex: none; }

.price-note {
  margin-top: 1.5rem; font-size: 0.82rem; color: var(--text-faint);
  display: flex; gap: 0.6rem; align-items: flex-start; max-width: 60ch;
}
.price-note svg { flex: none; margin-top: 0.15rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.5rem; }
.filters button {
  padding: 0.55rem 1.15rem; border-radius: 999px;
  font-size: 0.83rem; font-weight: 500;
  border: 1px solid var(--line-inv);
  color: var(--text-inv-soft);
  transition: all 0.3s var(--ease-out);
}
.filters button:hover { color: var(--text-inv); border-color: rgba(255,255,255,0.4); }
.filters button[aria-pressed="true"] {
  background: var(--cream); color: var(--text); border-color: var(--cream);
}

.gallery {
  margin-top: 2.25rem;
  columns: 4;
  column-gap: 0.9rem;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 0.9rem;
  border-radius: 1.1rem;
  overflow: hidden;
  position: relative;
  background: var(--ink-3);
  cursor: zoom-in;
  display: block; width: 100%;
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.gallery__item img {
  width: 100%;
  transition: transform 0.8s var(--ease-spring), filter 0.5s;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: attr(data-caption);
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(16,14,12,0.9), transparent);
  color: #fff; font-size: 0.8rem; font-weight: 500;
  text-align: left;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.gallery__item:hover::after { opacity: 1; transform: translateY(0); }
.gallery__item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,8,7,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%; max-height: 82vh;
  border-radius: 0.9rem;
  transform: scale(0.96);
  transition: transform 0.45s var(--ease-spring);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__cap {
  margin-top: 1rem; text-align: center;
  color: rgba(255,255,255,0.8); font-size: 0.87rem;
}
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 2;
  width: 48px; height: 48px; border-radius: 999px;
  display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(10px);
  transition: background-color 0.3s, transform 0.3s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__nav--prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }

/* ==========================================================================
   Before / after
   ========================================================================== */
.ba {
  position: relative;
  border-radius: 1.75rem; overflow: hidden;
  aspect-ratio: 3 / 4;
  max-width: 560px;
  background: var(--ink-3);
  user-select: none; touch-action: pan-y;
  cursor: ew-resize;
}
.ba img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 2px; background: rgba(255,255,255,0.9);
  pointer-events: none;
  box-shadow: 0 0 18px rgba(0,0,0,0.5);
}
.ba__grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 999px;
  background: rgba(255,255,255,0.95);
  display: grid; place-items: center; color: var(--text);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.ba__tag {
  position: absolute; top: 1rem;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff;
  background: rgba(16,14,12,0.6);
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.ba__tag--before { left: 1rem; }
.ba__tag--after { right: 1rem; }

/* ==========================================================================
   Reels
   ========================================================================== */
.reels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 1rem; margin-top: 3rem;
}
.reel {
  position: relative;
  border-radius: 1.35rem; overflow: hidden;
  aspect-ratio: 9 / 16;
  /* Poster is painted on the container: a <video> with no source yet won't
     reliably render its own poster attribute. */
  background: var(--ink-3) center / cover no-repeat;
  transition: transform 0.55s var(--ease-spring);
}
.reel:hover { transform: translateY(-6px); }
.reel video, .reel img {
  width: 100%; height: 100%; object-fit: cover;
}
.reel__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(to top, rgba(16,14,12,0.92), transparent);
  color: #fff;
}
.reel__label b { display: block; font-size: 0.92rem; font-weight: 600; }
.reel__label span { font-size: 0.76rem; color: rgba(255,255,255,0.72); }
.reel__sound {
  position: absolute; top: 0.85rem; right: 0.85rem;
  width: 36px; height: 36px; border-radius: 999px;
  display: grid; place-items: center; color: #fff;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.quote {
  background: #fff; border: 1px solid var(--line);
  border-radius: 1.35rem; padding: 1.75rem;
  display: flex; flex-direction: column;
}
.quote__stars { display: flex; gap: 0.15rem; color: var(--coral); margin-bottom: 1rem; }

.quote__icon {
  width: 46px; height: 46px; border-radius: 0.85rem;
  display: grid; place-items: center;
  background: rgba(194,84,58,0.1); color: var(--coral);
  margin-bottom: 1.4rem;
}
.quote h3 { letter-spacing: -0.01em; }
.quote > p {
  margin-top: 0.7rem;
  font-size: 0.93rem; line-height: 1.6; color: var(--text-soft);
}
.quote blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.28rem; line-height: 1.35; letter-spacing: -0.01em;
}
.quote figcaption {
  margin-top: auto; padding-top: 1.4rem;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.85rem;
}
.quote figcaption b { font-weight: 600; }
.quote figcaption span { color: var(--text-faint); }
.quote__avatar {
  width: 40px; height: 40px; border-radius: 999px; flex: none;
  display: grid; place-items: center;
  background: rgba(194,84,58,0.12); color: var(--coral);
  font-weight: 700; font-size: 0.85rem;
}

/* ==========================================================================
   Booking
   ========================================================================== */
.booking-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
  margin-top: 3rem;
}

.booking-form {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 1.6rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.steps { display: flex; gap: 0.4rem; margin-bottom: 1.75rem; }
.steps li {
  flex: 1; height: 3px; border-radius: 999px;
  background: rgba(255,255,255,0.14);
  transition: background-color 0.5s;
}
.steps li.is-done { background: var(--coral-warm); }

.field { margin-bottom: 1.15rem; }
.field > label,
.fieldset > legend {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.03em; margin-bottom: 0.55rem;
  color: var(--text-inv);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-inv);
  transition: border-color 0.3s, background-color 0.3s;
  font-size: 0.92rem;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(247,243,234,0.36); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--coral-warm);
  background: rgba(255,255,255,0.08);
}
.field select option { background: var(--ink-2); color: var(--text-inv); }
.field--half { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips label {
  padding: 0.55rem 1rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.83rem; cursor: pointer;
  color: var(--text-inv-soft);
  transition: all 0.3s var(--ease-out);
}
.chips label:hover { border-color: rgba(255,255,255,0.4); color: var(--text-inv); }
.chips input:checked + label {
  background: var(--coral-warm); border-color: var(--coral-warm); color: #2A1206; font-weight: 600;
}
.chips input:focus-visible + label { outline: 2px solid var(--coral-warm); outline-offset: 2px; }

.booking-summary {
  margin-top: 1.5rem; padding: 1.1rem 1.25rem;
  border-radius: 1rem;
  background: rgba(240,160,124,0.10);
  border: 1px solid rgba(240,160,124,0.24);
  font-size: 0.87rem; line-height: 1.6;
  color: var(--text-inv-soft);
}
.booking-summary b { color: var(--coral-warm); font-weight: 600; }

.booking-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.5rem; }

.booking-aside { display: grid; gap: 1rem; }
.booking-embed {
  border-radius: 1.6rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.03);
  min-height: 320px;
  display: grid; place-items: center;
  padding: 2rem; text-align: center;
}
.booking-embed iframe { width: 100%; min-height: 620px; border: 0; }
.booking-embed__ph { max-width: 34ch; }
.booking-embed__ph svg { margin-inline: auto; color: var(--coral-warm); margin-bottom: 1rem; }
.booking-embed__ph h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.booking-embed__ph p { font-size: 0.85rem; color: var(--text-inv-soft); line-height: 1.55; }
.booking-embed__ph code {
  font-size: 0.76rem; background: rgba(255,255,255,0.08);
  padding: 0.15rem 0.4rem; border-radius: 5px;
}

.hours { display: grid; gap: 0.1rem; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.6rem 0; font-size: 0.89rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { color: var(--text-inv-soft); }
.hours li.is-closed span:last-child { color: var(--text-inv-faint); }
.hours li.is-today { color: var(--coral-warm); font-weight: 600; }
.hours li.is-today span:first-child { color: var(--coral-warm); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { margin-top: 3rem; max-width: 52rem; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 0;
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.25rem 3rem 1.25rem 0;
  font-size: clamp(1rem, 1.5vw, 1.12rem); font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--coral); }
.faq summary::after {
  content: ""; position: absolute; right: 0.5rem; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.4s var(--ease-spring);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq__body {
  padding: 0 3rem 1.4rem 0;
  color: var(--text-soft); font-size: 0.95rem; line-height: 1.65;
}
.faq details[open] .faq__body { animation: faqIn 0.45s var(--ease-out); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); margin-top: 3rem; align-items: start;
}
.contact-list { display: grid; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item__icon {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: rgba(240,160,124,0.13); color: var(--coral-warm);
}
.contact-item h4 {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-inv-faint); font-weight: 600; margin-bottom: 0.3rem;
}
.contact-item a, .contact-item p { font-size: 1.02rem; color: var(--text-inv); line-height: 1.45; }
.contact-item a:hover { color: var(--coral-warm); }

.contact-cta { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.5rem; }

.map {
  border-radius: 1.6rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.11);
  min-height: 380px; background: var(--ink-3);
}
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(0.35) contrast(1.05); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.08); }
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer__brand { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.2rem; }
.footer__brand img { width: 64px; }
.footer h5 {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-inv-faint); font-weight: 600; margin-bottom: 1.1rem;
}
.footer nav a, .footer__col li {
  display: block; padding-block: 0.35rem;
  font-size: 0.92rem; color: var(--text-inv-soft);
  transition: color 0.25s;
}
.footer nav a:hover { color: var(--coral-warm); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.6rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--text-inv-faint);
}
.footer__bottom a:hover { color: var(--coral-warm); }

/* ==========================================================================
   Voice assistant
   ========================================================================== */
.assistant-fab {
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 400;
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 1.25rem 0.7rem 0.7rem;
  border-radius: 999px;
  background: var(--coral); color: #fff;
  box-shadow: 0 14px 34px -12px rgba(194,84,58,0.85);
  font-size: 0.88rem; font-weight: 600;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.4s, opacity 0.3s;
}
.assistant-fab:hover { transform: translateY(-3px) scale(1.02); }
.assistant-fab.is-hidden { opacity: 0; pointer-events: none; transform: scale(0.85); }
.assistant-fab__dot {
  width: 34px; height: 34px; border-radius: 999px; flex: none;
  background: rgba(255,255,255,0.2);
  display: grid; place-items: center;
}
.assistant-fab__pulse {
  position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid var(--coral);
  animation: fabPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%   { opacity: 0.7; transform: scale(1); }
  70%  { opacity: 0; transform: scale(1.22); }
  100% { opacity: 0; transform: scale(1.22); }
}

.assistant {
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 401;
  width: min(400px, calc(100vw - 2rem));
  height: min(620px, calc(100svh - 2rem));
  background: rgba(23, 19, 15, 0.86);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 1.5rem;
  display: flex; flex-direction: column;
  overflow: hidden;
  color: var(--text-inv);
  opacity: 0; pointer-events: none;
  transform: translateY(20px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-spring);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.7);
}
.assistant.is-open { opacity: 1; pointer-events: auto; transform: none; }

.assistant__head {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex: none;
}
.assistant__avatar {
  width: 42px; height: 42px; border-radius: 999px; flex: none;
  overflow: hidden; background: rgba(255,255,255,0.06);
  display: grid; place-items: center; position: relative;
}
.assistant__avatar img { width: 150%; max-width: none; transform: translateY(8%); }
.assistant__avatar::after {
  content: ""; position: absolute; inset: -3px;
  border-radius: 999px; border: 2px solid var(--coral-warm);
  opacity: 0; transition: opacity 0.3s;
}
.assistant.is-speaking .assistant__avatar::after { opacity: 1; animation: fabPulse 1.6s ease-out infinite; }
.assistant__title b { display: block; font-size: 0.95rem; font-weight: 600; }
.assistant__title span {
  font-size: 0.74rem; color: var(--text-inv-faint);
  display: flex; align-items: center; gap: 0.35rem;
}
.assistant__title span::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: #6FCF7F; box-shadow: 0 0 8px #6FCF7F;
}
.assistant__tools { margin-left: auto; display: flex; gap: 0.25rem; }
.assistant__tools button {
  width: 34px; height: 34px; border-radius: 999px;
  display: grid; place-items: center;
  color: var(--text-inv-soft);
  transition: background-color 0.25s, color 0.25s;
}
.assistant__tools button:hover { background: rgba(255,255,255,0.1); color: #fff; }
.assistant__tools button[aria-pressed="true"] { color: var(--coral-warm); background: rgba(240,160,124,0.15); }

.assistant__log {
  flex: 1; overflow-y: auto;
  padding: 1.1rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.assistant__log::-webkit-scrollbar { width: 6px; }
.assistant__log::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 999px; }

.msg { max-width: 88%; font-size: 0.9rem; line-height: 1.55; }
.msg--bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.07);
  padding: 0.75rem 1rem;
  border-radius: 1rem 1rem 1rem 0.25rem;
}
.msg--user {
  align-self: flex-end;
  background: var(--coral); color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 1rem 1rem 0.25rem 1rem;
}
.msg a { color: var(--coral-warm); text-decoration: underline; text-underline-offset: 2px; }
.msg--bot strong { color: #fff; }
.msg--typing { display: flex; gap: 0.28rem; padding: 1rem; }
.msg--typing i {
  width: 7px; height: 7px; border-radius: 999px; background: rgba(255,255,255,0.55);
  animation: typing 1.3s ease-in-out infinite;
}
.msg--typing i:nth-child(2) { animation-delay: 0.18s; }
.msg--typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.assistant__chips {
  display: flex; gap: 0.4rem; padding: 0 1.1rem 0.75rem;
  overflow-x: auto; flex: none;
  scrollbar-width: none;
}
.assistant__chips::-webkit-scrollbar { display: none; }
.assistant__chips button {
  padding: 0.45rem 0.85rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.78rem; white-space: nowrap;
  color: var(--text-inv-soft);
  transition: all 0.25s;
}
.assistant__chips button:hover { background: rgba(255,255,255,0.1); color: #fff; }

.assistant__input {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem; flex: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.assistant__input input {
  flex: 1; padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.88rem;
}
.assistant__input input:focus { outline: none; border-color: var(--coral-warm); }
.assistant__btn {
  width: 42px; height: 42px; border-radius: 999px; flex: none;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.09); color: #fff;
  transition: background-color 0.25s, transform 0.3s;
}
.assistant__btn:hover { background: rgba(255,255,255,0.18); }
.assistant__btn--send { background: var(--coral); }
.assistant__btn--send:hover { background: #AC4830; }
.assistant__btn--mic.is-listening {
  background: var(--coral); animation: micPulse 1.4s ease-in-out infinite;
}
@keyframes micPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(194,84,58,0.65); }
  50% { box-shadow: 0 0 0 11px rgba(194,84,58,0); }
}
.assistant__hint {
  font-size: 0.7rem; color: var(--text-inv-faint);
  text-align: center; padding: 0 1.1rem 0.7rem;
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-spring);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Nav links need ~1150px before they'd collide with the brand and actions. */
@media (max-width: 1150px) {
  .nav__links, .nav__call { display: none; }
  .nav__burger { display: grid; }
  .nav__panel { display: flex; }
}

@media (max-width: 1100px) {
  .gallery { columns: 3; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--media-first .split__media { order: 0; }
  .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero__switch { display: none; }
  .gallery { columns: 2; }
}

/* The brand lockup plus actions stop fitting the bar well before this. */
@media (max-width: 760px) {
  .brand__sub { display: none; }
  .brand__name { font-size: 1.05rem; }
  .brand__mark { width: 40px; height: 40px; }
  .nav__burger { width: 42px; height: 42px; }
  .nav { padding-inline: 1rem; }
}

@media (max-width: 470px) {
  .brand__name { font-size: 0; }        /* keep the mark, drop the wordmark */
  .brand__name::after {
    content: "KC's Canine Spa";
    font-size: 1rem; white-space: nowrap;
  }
  .nav__actions .btn--cream { padding: 0.55rem 0.9rem; font-size: 0.78rem; }
  .nav__actions .btn--cream svg { display: none; }
  .nav__actions { gap: 0.4rem; }
}

@media (max-width: 380px) {
  .brand__name::after { content: "KC's"; }
}

@media (max-width: 640px) {
  .hero__stats { gap: 0.6rem; }
  .hero__stat { min-width: 0; flex: 1 1 150px; padding: 1rem; }
  .hero__stat svg { margin-bottom: 1rem; }
  .hero__stat b { font-size: 1.7rem; }
  .hero__cta { gap: 0.75rem; }
  .hero__cta .btn { flex: 1 1 auto; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .field--half { grid-template-columns: 1fr; }
  .ba { aspect-ratio: 4 / 5; }
  .assistant {
    right: 0; bottom: 0; left: 0;
    width: 100%; height: 100svh;
    border-radius: 0; border: 0;
  }
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
}

@media (max-width: 420px) {
  .gallery { columns: 1; }
}

/* ==========================================================================
   Motion & print
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

@media print {
  .nav, .assistant, .assistant-fab, .hero__media, .lightbox, .reels { display: none !important; }
  body { background: #fff; color: #000; }
  .on-dark, .on-dark-2 { background: #fff !important; color: #000 !important; }
}
