/* ==========================================================================
   Paws For A Pamper - design system

   The palette is the brand's own: the navy sampled from the logo (#101229)
   and the gold of the paw-and-comb mark (#bd9f61 mid, #8a6a2b deep). The
   page ground is a warm cream so the navy reads as ink and the gold as an
   accent rather than a wall of colour. Gold marks Paws For A Pamper and what
   it does for your dog: the calls to action, the steps of a groom, the
   badges. Everything else is cream, navy and white.

   Radius rule: pill for controls, 20px for cards and media, 10px for inputs.
   Type: Playfair Display (the logo's Didone voice) for display, Figtree for
   text. Every token pair below is checked by tools/contrast.py in both
   themes.
   ========================================================================== */

/* --- tokens --------------------------------------------------------------- */

:root {
  color-scheme: light;

  --bg: #faf6ee;
  --sunk: #f1eadb;
  --surface: #ffffff;
  --ink: #101229;
  --ink-2: #3d405a;
  --ink-3: #5d6079;
  --line: #e3dccb;
  --line-strong: #8f8871;

  --navy: #101229;
  --navy-2: #1a1d40;
  --navy-3: #24284f;
  --on-navy: #f7f2e6;
  --on-navy-2: #cfc9b8;
  --line-on-navy: #3a3d63;

  --accent: #7f5f22;          /* deep gold for text and links, AA on cream and white */
  --accent-hover: #5d4515;
  --gold: #a8894c;            /* the mark's gold, deepened a touch so a gold control clears 3:1 on cream */
  --gold-light: #dcc38f;
  --gold-soft: #f4e9cf;
  --on-gold: #101229;

  --shadow-1: 0 1px 2px rgba(16, 18, 41, .05), 0 2px 8px rgba(16, 18, 41, .06);
  --shadow-2: 0 2px 6px rgba(16, 18, 41, .06), 0 18px 44px rgba(16, 18, 41, .12);
  --shadow-gold: 0 10px 30px rgba(189, 159, 97, .35);

  --r-card: 20px;
  --r-input: 10px;
  --r-pill: 999px;

  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --ease-spring: cubic-bezier(.34, 1.4, .64, 1);

  --shell: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  --font-display: 'Playfair Display', 'Iowan Old Style', 'Times New Roman', serif;
  --font-text: 'Figtree', ui-sans-serif, system-ui, 'Segoe UI', sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #0c0e22;
    --sunk: #101229;
    --surface: #181b3a;
    --ink: #f4efe4;
    --ink-2: #d2ccbc;
    --ink-3: #aca696;
    --line: #2b2e4e;
    --line-strong: #6f728f;
    --navy: #0c0e22;
    --navy-2: #151838;
    --navy-3: #1f2247;
    --accent: #dcc38f;
    --accent-hover: #ecd9ae;
    --gold: #bd9f61;
    --gold-soft: #2a2740;
    --shadow-1: 0 1px 2px rgba(0, 0, 0, .3), 0 2px 8px rgba(0, 0, 0, .3);
    --shadow-2: 0 2px 6px rgba(0, 0, 0, .35), 0 18px 44px rgba(0, 0, 0, .5);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0c0e22;
  --sunk: #101229;
  --surface: #181b3a;
  --ink: #f4efe4;
  --ink-2: #d2ccbc;
  --ink-3: #aca696;
  --line: #2b2e4e;
  --line-strong: #6f728f;
  --navy: #0c0e22;
  --navy-2: #151838;
  --navy-3: #1f2247;
  --accent: #dcc38f;
  --accent-hover: #ecd9ae;
  --gold: #bd9f61;
  --gold-soft: #2a2740;
  --shadow-1: 0 1px 2px rgba(0, 0, 0, .3), 0 2px 8px rgba(0, 0, 0, .3);
  --shadow-2: 0 2px 6px rgba(0, 0, 0, .35), 0 18px 44px rgba(0, 0, 0, .5);
}

/* --- reset ---------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--font-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--accent); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-hover); }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -.005em; text-wrap: balance; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li + li { margin-top: .35em; }
strong, b { font-weight: 600; }
figure { margin: 0; }
:focus-visible { outline: 3px solid var(--accent); 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 { position: absolute; left: 1rem; top: -4rem; z-index: 100; padding: .6rem 1rem; background: var(--gold); color: var(--on-gold); border-radius: var(--r-pill); font-weight: 600; }
.skip:focus { top: 1rem; }

/* --- type ----------------------------------------------------------------- */

.h-hero { font-size: clamp(2.5rem, 6.2vw, 4.6rem); line-height: 1.02; }
.h-page { font-size: clamp(2.3rem, 5vw, 3.8rem); line-height: 1.04; }
.h-section { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
.h-card { font-size: 1.3rem; }
.h-small { font-size: 1.1rem; font-family: var(--font-text); font-weight: 600; letter-spacing: 0; }
.lede { font-size: clamp(1.1rem, 1.5vw, 1.25rem); line-height: 1.55; color: var(--ink-2); max-width: 60ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  margin: 0 0 1rem; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ""; width: 1.6rem; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow--plain::before { display: none; }
.i { width: 1.15em; height: 1.15em; flex: none; }
.i--lg { width: 1.6em; height: 1.6em; }
em.gold { font-style: italic; color: var(--accent); }
.prose { max-width: 66ch; }
.prose p + h2, .prose ul + h2, .prose ol + h2 { margin-top: 2rem; }
.prose h2 { margin-bottom: .6rem; font-size: 1.55rem; }
.prose h3 { margin: 1.5rem 0 .4rem; font-size: 1.2rem; }
.muted { color: var(--ink-3); }
.small { font-size: .92rem; }
.note {
  padding: 1rem 1.15rem; border-left: 3px solid var(--gold); background: var(--gold-soft); border-radius: 0 12px 12px 0; color: var(--ink-2);
}
.note p:last-child { margin: 0; }

/* --- layout --------------------------------------------------------------- */

.shell { width: min(100% - var(--gutter) * 2, var(--shell)); margin-inline: auto; }
.shell--narrow { width: min(100% - var(--gutter) * 2, 820px); margin-inline: auto; }
.band { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.band--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.band--sunk { background: var(--sunk); }
.band--navy { background: var(--navy); color: var(--on-navy); }
.band--navy .lede, .band--navy .muted { color: var(--on-navy-2); }
.band--navy .eyebrow { color: var(--gold-light); }
.band--navy a:not(.btn) { color: var(--gold-light); }
.band--navy a:not(.btn):hover { color: #fff; }
.section-head { max-width: 62ch; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head .lede { margin-top: .85rem; }
.section-head--center .lede { margin-inline: auto; }
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 840px) { .split { grid-template-columns: 1fr 1fr; } .split--wide-text { grid-template-columns: 1.15fr 1fr; } .split--flip > :first-child { order: 2; } }
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.stack > * + * { margin-top: 1rem; }
.row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.media { overflow: hidden; border-radius: var(--r-card); background: var(--sunk); box-shadow: var(--shadow-1); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--portrait { aspect-ratio: 4 / 5; }
.media--landscape { aspect-ratio: 3 / 2; }
.media--square { aspect-ratio: 1; }
figcaption { margin-top: .6rem; font-size: .88rem; color: var(--ink-3); }

/* --- buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.45rem; border-radius: var(--r-pill); border: 1.5px solid transparent;
  font-weight: 600; font-size: 1rem; line-height: 1.2; text-decoration: none; cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background-color .2s, color .2s, border-color .2s;
}
.btn .i { transition: transform .35s var(--ease-out); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .i--arrow { transform: translateX(3px); }
.btn:active { transform: translateY(0); transition-duration: .1s; }
.btn--primary { background: var(--gold); color: var(--on-gold); box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: var(--gold-light); color: var(--on-gold); }
.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--surface); }
.band--navy .btn--ghost, .hero .btn--ghost, .masthead .btn--ghost, .drawer .btn--ghost, .page-head .btn--ghost, .cta-band .btn--ghost { border-color: rgba(247, 242, 230, .45); color: var(--on-navy); }
.band--navy .btn--ghost:hover, .hero .btn--ghost:hover, .masthead .btn--ghost:hover, .drawer .btn--ghost:hover, .page-head .btn--ghost:hover, .cta-band .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); color: #fff; }
.btn--small { padding: .55rem 1rem; font-size: .92rem; }
.btn--wa { background: #25d366; color: #062a12; }
.btn--wa:hover { background: #3ee07a; color: #062a12; }
.link-more { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; text-decoration: none; }
.link-more .i { transition: transform .3s var(--ease-out); }
.link-more:hover .i { transform: translateX(3px); }

/* --- masthead ------------------------------------------------------------- */

.masthead {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy); color: var(--on-navy);
  border-bottom: 1px solid var(--line-on-navy);
  transition: box-shadow .3s;
}
.masthead[data-stuck="1"] { box-shadow: 0 8px 30px rgba(0, 0, 0, .25); }
.masthead__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.5rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: inherit; text-decoration: none; }
.brand__mark { width: 30px; height: auto; }
.brand__lockup { width: auto; height: 46px; }
.brand__lockup--lg { height: 112px; }

.media-stack { position: relative; }
.media-stack__badge { position: absolute; left: -1.25rem; bottom: -1.5rem; width: clamp(96px, 14vw, 150px); height: auto; filter: drop-shadow(0 10px 24px rgba(16, 18, 41, .35)); transform: rotate(-8deg); }
@media (max-width: 839px) { .media-stack__badge { left: .5rem; bottom: -1rem; } }

/* --- policies ------------------------------------------------------------- */

.policies { display: grid; gap: 1rem; }
.policy { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; padding: 1.4rem 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-1); }
.policy h2 { margin-bottom: .3rem; }
.policy p { margin: 0; color: var(--ink-2); }
.policy-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.policy-list li { padding: .85rem 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.policy-list b { color: var(--ink); }

.team-photo { margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.team-photo .media { aspect-ratio: 3 / 2; }
.team-photo figcaption { text-align: center; }

/* --- team ----------------------------------------------------------------- */

.team { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .team { grid-template-columns: repeat(3, 1fr); } }
.team__card h3 { margin-top: 1rem; }
.team__role { margin: .15rem 0 .6rem; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.team__card .muted { margin: 0; }
.price-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.price-list li { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.price-list b { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; white-space: nowrap; }
.price-list small { display: block; color: var(--ink-3); font-size: .9rem; }
.brand__name { font-family: var(--font-display); font-size: 1.32rem; font-weight: 500; letter-spacing: .01em; white-space: nowrap; }
.brand__tag { display: none; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-navy-2); }
@media (min-width: 1040px) { .brand__tag { display: block; } .brand__text { display: flex; flex-direction: column; gap: .1rem; line-height: 1.1; } }
.nav { display: none; align-items: center; gap: .15rem; }
.nav a {
  position: relative; padding: .55rem .8rem; border-radius: var(--r-pill);
  color: var(--on-navy-2); font-weight: 500; text-decoration: none; font-size: .98rem;
  transition: color .2s, background-color .2s;
}
.nav a:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .25rem; height: 2px; background: var(--gold); border-radius: 2px;
}
.masthead__actions { display: flex; align-items: center; gap: .5rem; }
.masthead__call { display: none; }
@media (min-width: 900px) { .nav { display: flex; } .masthead__call { display: inline-flex; } .burger { display: none; } }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 2.6rem; height: 2.6rem;
  border-radius: 50%; border: 1.5px solid rgba(247, 242, 230, .25); background: transparent; color: var(--on-navy); cursor: pointer;
  transition: border-color .2s, background-color .2s;
}
.icon-btn:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.icon-btn .i { width: 1.25rem; height: 1.25rem; }
.theme-toggle .i--sun { display: none; }
:root[data-theme="dark"] .theme-toggle .i--sun { display: block; }
:root[data-theme="dark"] .theme-toggle .i--moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .i--sun { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .i--moon { display: none; }
}

/* --- drawer --------------------------------------------------------------- */

.drawer {
  position: fixed; inset: 0; z-index: 60; display: grid; grid-template-rows: auto 1fr auto;
  background: var(--navy); color: var(--on-navy); padding: 1rem var(--gutter) 2rem;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform .5s var(--ease-out), opacity .3s, visibility 0s .5s;
}
.drawer[data-open="1"] { transform: none; opacity: 1; visibility: visible; transition: transform .5s var(--ease-out), opacity .3s; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; min-height: 4.5rem; }
.drawer__nav { display: flex; flex-direction: column; justify-content: center; gap: .25rem; }
.drawer__nav a {
  padding: .8rem 0; font-family: var(--font-display); font-size: clamp(1.8rem, 7vw, 2.4rem); color: var(--on-navy); text-decoration: none;
  border-bottom: 1px solid var(--line-on-navy); opacity: 0; transform: translateY(12px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.drawer[data-open="1"] .drawer__nav a { opacity: 1; transform: none; transition-delay: calc(.08s + var(--i, 0) * .05s); }
.drawer__nav a[aria-current="page"] { color: var(--gold-light); }
.drawer__foot { display: flex; flex-wrap: wrap; gap: .75rem; }
body[data-drawer="1"] { overflow: hidden; }

/* --- hero ----------------------------------------------------------------- */

.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--on-navy); }
.hero__inner {
  position: relative; z-index: 2; display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5.5rem);
}
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.1fr .9fr; } }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero .lede { color: var(--on-navy-2); margin-top: 1.25rem; }
.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__meta { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; color: var(--on-navy-2); font-size: .95rem; }
.hero__meta span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__meta .i { color: var(--gold-light); }
.hero__art { position: relative; }
.hero__frame {
  position: relative; border-radius: var(--r-card); overflow: hidden; aspect-ratio: 4 / 3;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45); border: 1px solid rgba(255, 255, 255, .08);
  transform: rotate(-1.2deg);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; right: -.5rem; bottom: -1.1rem; z-index: 3;
  display: flex; align-items: center; gap: .7rem; padding: .7rem 1rem .7rem .8rem;
  background: var(--gold); color: var(--on-gold); border-radius: var(--r-pill); box-shadow: var(--shadow-gold);
  font-size: .9rem; font-weight: 600; line-height: 1.15;
  transform: rotate(2deg);
}
.hero__badge b { display: block; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.hero__badge .i { width: 1.6rem; height: 1.6rem; }
@media (max-width: 899px) { .hero__badge { right: .5rem; } }
.hero__paw { position: absolute; left: -1.6rem; top: -2.2rem; z-index: 3; width: clamp(64px, 7vw, 96px); color: var(--gold-light); transform: rotate(-18deg); filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35)); }
@media (max-width: 899px) { .hero__paw { left: .25rem; top: -1.6rem; } }

/* bubbles: a slow field of soap bubbles rising behind the hero */
.bubbles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.bubble {
  position: absolute; bottom: -12vmin; left: var(--x); width: var(--s); height: var(--s);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, .28), rgba(255, 255, 255, .04) 55%, rgba(220, 195, 143, .10) 100%);
  border: 1px solid rgba(220, 195, 143, .22);
  opacity: 0;
  animation: rise var(--t) linear infinite; animation-delay: var(--d);
}
.bubble::after { content: ""; position: absolute; left: 22%; top: 18%; width: 18%; height: 12%; border-radius: 50%; background: rgba(255, 255, 255, .45); transform: rotate(-30deg); }
@keyframes rise {
  0% { transform: translate3d(0, 0, 0) scale(.9); opacity: 0; }
  8% { opacity: .9; }
  50% { transform: translate3d(var(--drift), -55vh, 0) scale(1); }
  92% { opacity: .8; }
  100% { transform: translate3d(calc(var(--drift) * -.6), -120vh, 0) scale(1.05); opacity: 0; }
}
.hero__glow { position: absolute; z-index: 1; width: 60vmax; height: 60vmax; right: -25vmax; top: -30vmax; border-radius: 50%; background: radial-gradient(circle, rgba(189, 159, 97, .22), transparent 60%); pointer-events: none; }

/* the paw stamp: pad then toes, printed one after another */
.paw { width: 100%; height: auto; }
.paw .pad, .paw .toe { transform-box: fill-box; transform-origin: center; transform: scale(.2); opacity: 0; }
.is-in .paw .pad, .paw--live .pad { animation: stamp .55s var(--ease-spring) forwards; }
.is-in .paw .toe, .paw--live .toe { animation: stamp .45s var(--ease-spring) forwards; animation-delay: calc(.35s + var(--i) * .12s); }
@keyframes stamp { to { transform: scale(1); opacity: 1; } }

/* --- page header ---------------------------------------------------------- */

.page-head { background: var(--navy); color: var(--on-navy); position: relative; overflow: hidden; }
.page-head__inner { position: relative; z-index: 2; padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2.5rem, 5vw, 4rem); max-width: 60rem; }
.page-head .eyebrow { color: var(--gold-light); }
.page-head h1 { color: #fff; }
.page-head h1 em { font-style: italic; color: var(--gold-light); }
.page-head .lede { color: var(--on-navy-2); margin-top: 1rem; }
.page-head__cta { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.page-head__mark { position: absolute; right: -2rem; bottom: -3rem; width: clamp(180px, 26vw, 340px); opacity: .09; z-index: 1; pointer-events: none; }

/* --- cards ---------------------------------------------------------------- */

.card {
  position: relative; display: flex; flex-direction: column; gap: .7rem;
  padding: 1.6rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--shadow-1);
}
.card p:last-child { margin-bottom: 0; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem;
  border-radius: 14px; background: var(--gold-soft); color: var(--accent); margin-bottom: .3rem;
}
.card__icon .i { width: 1.5rem; height: 1.5rem; }
.card--navy { background: var(--navy-2); border-color: var(--line-on-navy); color: var(--on-navy); }
.card--navy .card__icon { background: rgba(189, 159, 97, .16); color: var(--gold-light); }
.card--navy .muted { color: var(--on-navy-2); }
.card--gold { background: var(--gold); border-color: transparent; color: var(--on-gold); }
.card--gold .card__icon { background: rgba(16, 18, 41, .1); color: var(--on-gold); }
.card--gold .muted { color: #2c2a24; }
.card--photo { padding: 0; overflow: hidden; }
.card--photo .media { border-radius: 0; box-shadow: none; }
.card--photo .card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; }
.lift { transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out); }
.lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.card a.stretch::after { content: ""; position: absolute; inset: 0; }
.card__list { margin: .3rem 0 0; padding: 0; list-style: none; }
.card__list li { display: flex; gap: .6rem; align-items: flex-start; }
.card__list .i { color: var(--accent); margin-top: .2em; }
.card--navy .card__list .i, .card--gold .card__list .i { color: currentColor; }
.price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--ink); }
.pill { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .75rem; border-radius: var(--r-pill); background: var(--gold-soft); color: var(--accent); font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.card--navy .pill { background: rgba(189, 159, 97, .16); color: var(--gold-light); }

/* --- feature list --------------------------------------------------------- */

.features { display: grid; gap: 1.5rem 2rem; margin: 0; padding: 0; list-style: none; }
@media (min-width: 640px) { .features { grid-template-columns: 1fr 1fr; } }
.features li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.features .card__icon { width: 2.6rem; height: 2.6rem; border-radius: 12px; margin: 0; }
.features .card__icon .i { width: 1.3rem; height: 1.3rem; }
.features b { display: block; font-size: 1.05rem; margin-bottom: .15rem; }
.features p { margin: 0; color: var(--ink-2); }

/* --- the visit flow ------------------------------------------------------- */

.flow { position: relative; }
.flow__track { display: grid; gap: 1.5rem; position: relative; }
@media (min-width: 900px) { .flow__track { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }
.flow__line { position: absolute; left: 1.35rem; top: 1.5rem; bottom: 1.5rem; width: 2px; background: var(--line); overflow: hidden; }
.flow__line::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform 2.2s var(--ease-in-out); }
.flow.is-in .flow__line::after { transform: none; }
@media (min-width: 900px) {
  .flow__line { left: 10%; right: 10%; top: 1.4rem; bottom: auto; width: auto; height: 2px; }
  .flow__line::after { transform: scaleX(0); transform-origin: left; }
}
.step { position: relative; display: grid; grid-template-columns: 2.7rem 1fr; gap: 1rem; align-items: start; }
@media (min-width: 900px) { .step { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.step__dot {
  position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center;
  width: 2.7rem; height: 2.7rem; border-radius: 50%; background: var(--bg); border: 2px solid var(--line); color: var(--ink-3);
  transition: background-color .4s, border-color .4s, color .4s, transform .5s var(--ease-spring);
  transition-delay: calc(var(--i) * .4s);
  transform: scale(.85);
}
.step__dot .i { width: 1.25rem; height: 1.25rem; }
.flow.is-in .step__dot { background: var(--gold); border-color: var(--gold); color: var(--on-gold); transform: none; }
.step b { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: .2rem; }
.step p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.step__text { opacity: 0; transform: translateY(8px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); transition-delay: calc(var(--i) * .4s + .15s); }
.flow.is-in .step__text { opacity: 1; transform: none; }

/* --- testimonial ---------------------------------------------------------- */

.quote {
  position: relative; padding: 2rem 2rem 1.75rem; background: var(--surface); color: var(--ink); border-radius: var(--r-card); border: 1px solid var(--line); box-shadow: var(--shadow-1);
}
.quote::before { content: "\201C"; position: absolute; left: 1.4rem; top: -.2rem; font-family: var(--font-display); font-size: 5rem; line-height: 1; color: var(--gold); opacity: .55; }
.quote blockquote { margin: 0; padding-top: 1rem; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.45; }
.quote footer { margin-top: 1rem; display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--ink-3); }
.quote footer b { color: var(--ink); font-weight: 600; }
.stat { display: flex; flex-direction: column; gap: .15rem; }
.stat b { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 500; line-height: 1; color: var(--accent); }
.stat span { color: var(--ink-2); font-size: .95rem; }
.band--navy .stat b { color: var(--gold-light); }
.band--navy .stat span { color: var(--on-navy-2); }

/* --- marquee -------------------------------------------------------------- */

.marquee { overflow: hidden; border-block: 1px solid var(--line-on-navy); background: var(--navy-2); color: var(--on-navy); padding-block: .9rem; }
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: slide 46s linear infinite; }
.marquee__track span { display: inline-flex; align-items: center; gap: .7rem; white-space: nowrap; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; color: var(--on-navy-2); }
.marquee__track .i { color: var(--gold); width: 1rem; height: 1rem; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* --- photo strip ---------------------------------------------------------- */

.strip { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .strip { grid-template-columns: repeat(5, 1fr); } }
.strip .media { aspect-ratio: 4 / 5; }
.strip figcaption { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }

/* --- gallery -------------------------------------------------------------- */

.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); } .gallery > :first-child { grid-row: span 2; grid-column: span 2; } }
.gallery .media { aspect-ratio: 1; }
.gallery > :first-child .media { aspect-ratio: auto; height: 100%; }

/* --- faq ------------------------------------------------------------------ */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .i { flex: none; color: var(--accent); transition: transform .35s var(--ease-out); }
.faq details[open] summary .i { transform: rotate(45deg); }
.faq .faq__body { padding: 0 0 1.2rem; color: var(--ink-2); max-width: 66ch; }
.faq .faq__body p:last-child { margin: 0; }

/* --- contact -------------------------------------------------------------- */

.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 3.5rem; } }
.detail { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.detail:last-child { border-bottom: 0; }
.detail .card__icon { width: 2.6rem; height: 2.6rem; border-radius: 12px; margin: 0; }
.detail .card__icon .i { width: 1.3rem; height: 1.3rem; }
.detail b { display: block; margin-bottom: .1rem; }
.detail p { margin: 0; color: var(--ink-2); }
.detail a { font-weight: 600; }
.form { display: grid; gap: 1rem; padding: 1.75rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-1); }
.form__row { display: grid; gap: 1rem; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 600; font-size: .95rem; }
.field label span { font-weight: 400; color: var(--ink-3); }
.field input, .field textarea, .field select {
  width: 100%; padding: .75rem .9rem; border-radius: var(--r-input); border: 1.5px solid var(--line-strong); background: var(--bg); color: var(--ink); font: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--gold-soft); }
.field textarea { min-height: 7.5rem; resize: vertical; }
.field[data-invalid="1"] input, .field[data-invalid="1"] textarea { border-color: #b3261e; }
.field__err { display: none; font-size: .85rem; color: #b3261e; }
.field[data-invalid="1"] .field__err { display: block; }
.form__foot { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; align-items: center; }
.form__status { font-size: .92rem; color: var(--ink-2); }
.hours { width: 100%; border-collapse: collapse; font-size: .98rem; }
.hours td { padding: .5rem 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; color: var(--ink-2); }
.hours tr:last-child td { border-bottom: 0; }

/* --- cta band ------------------------------------------------------------- */

.cta-band { background: var(--navy); color: var(--on-navy); position: relative; overflow: hidden; }
.cta-band__inner { position: relative; z-index: 2; max-width: 44rem; }
.cta-band h2 { color: #fff; }
.cta-band .lede { color: var(--on-navy-2); margin-top: .75rem; }
.cta-band__row { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.cta-band__mark { position: absolute; right: -1rem; top: 50%; transform: translateY(-50%) rotate(-12deg); width: clamp(180px, 24vw, 300px); opacity: .08; z-index: 1; pointer-events: none; }

/* --- footer --------------------------------------------------------------- */

.footer { background: var(--navy); color: var(--on-navy-2); border-top: 1px solid var(--line-on-navy); padding-block: 3.5rem 2rem; font-size: .95rem; }
.footer__grid { display: grid; gap: 2.25rem; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h3 { font-family: var(--font-text); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--on-navy); margin-bottom: .8rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li + li { margin-top: .45rem; }
.footer a { color: var(--on-navy-2); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer .brand { color: var(--on-navy); }
.footer__blurb { margin: 1rem 0 0; max-width: 34ch; }
.footer__social { display: flex; gap: .5rem; margin-top: 1.25rem; }
.footer__social .icon-btn { width: 2.4rem; height: 2.4rem; }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line-on-navy); display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .85rem; color: var(--on-navy-2); }
.footer__bottom a { text-decoration: underline; text-underline-offset: .18em; }

/* --- reveal --------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: calc(var(--i, 0) * .08s); }
.reveal.is-in { opacity: 1; transform: none; }

/* --- reduced motion ------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .reveal { opacity: 1; transform: none; }
  .bubble { display: none; }
  .paw .pad, .paw .toe { transform: none; opacity: 1; }
  .flow__line::after { transform: none; }
  .step__dot { background: var(--gold); border-color: var(--gold); color: var(--on-gold); transform: none; }
  .step__text { opacity: 1; transform: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; }
}

/* --- print ---------------------------------------------------------------- */

@media print {
  .masthead, .drawer, .footer__social, .cta-band, .bubbles, .theme-toggle, .burger { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}
