/* ============================================================
   PaintHer & Decorator — design tokens
   Palette derived from the brand (logo orchid/blush) and the
   real paints in her portfolio (sage lounge, teal panels).
   One easing curve, two duration tiers. Accent = conversion only.
   ============================================================ */
:root {
  /* neutrals — blush-tinted, never flat white/black */
  --bg: #faf5f2;
  --ink: #2a1c2e;
  --muted: #6b5a70;
  --line: rgba(42, 28, 46, 0.12);

  /* the accent: orchid purple. ONE job: booking/conversion. */
  --accent: #7c3390;
  --accent-deep: #6f2d85;
  --on-accent: #ffffff;

  /* zone walls — each section is a wall being painted */
  --blush-from: #f9eff0;  --blush-to: #f3dde2;
  --teal-from: #eef4f4;   --teal-to: #d7e7e8;  --teal-ink: #276d7c;
  --sage-from: #f1f4ec;   --sage-to: #dde5d3;  --sage-ink: #4d6141;
  --cream-from: #faf4e9;  --cream-to: #f6ead9; --cream-ink: #8a6a3b;
  --plum-field: #3a2440;  --on-plum: #f7ecf4;

  /* type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Albert Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "DM Mono", "SFMono-Regular", Menlo, monospace;

  /* motion — one curve, two tiers */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-ui: 0.3s;
  --t-world: 0.8s;

  /* structure */
  --r-card: 16px;
  --r-pill: 999px;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* the signature: the scroll writes these */
  --paint: 0;     /* global page progress 0→1 */
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: var(--accent); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--bg); padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 0; font-family: var(--font-mono); font-size: 0.85rem;
}
.skip-link:focus { left: 0; }

/* ---------- type system: display speaks, sans labels, mono testifies ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 460; line-height: 1.08; margin: 0; }
h1 { font-size: clamp(2.5rem, 6.5vw, 4.75rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 520; }
p  { margin: 0 0 1rem; }
.eyebrow {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 1rem;
}
.fact {
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.02em;
}

/* headline paint-wipe: each word carries --w (0→1), written by scroll.
   The word also GROWS into its slot as it gets painted (phenomenonstudio's move). */
.wipe .w {
  color: var(--wipe-color, var(--ink)); /* fallback: painted */
  color: color-mix(in srgb, rgba(42, 28, 46, 0.22), var(--wipe-color, var(--ink)) calc(var(--w, 0) * 100%));
}
@media (prefers-reduced-motion: no-preference) {
  .wipe .w {
    display: inline-block;
    transform: translateY(calc((1 - var(--w, 0)) * 0.28em));
  }
}

/* ---------- buttons: pills. Accent = book ONLY. ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 0.9rem 1.75rem; border-radius: var(--r-pill);
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform var(--t-ui) var(--ease), background-color var(--t-ui) var(--ease),
              color var(--t-ui) var(--ease), border-color var(--t-ui) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-book { background: var(--accent); color: var(--on-accent); }
.btn-book:hover { background: var(--accent-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 245, 242, 0.92); /* fallback */
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 0.6rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--ink); }
.brand img { width: 46px; height: 46px; mix-blend-mode: multiply; }
.brand-name { font-family: var(--font-display); font-weight: 560; font-size: 1.15rem; letter-spacing: -0.01em; }
.brand-name .amp { color: var(--accent); }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a:not(.btn) {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--t-ui) var(--ease);
}
.site-nav a:not(.btn):hover { border-bottom-color: var(--accent); }
.site-nav .btn { padding: 0.55rem 1.2rem; font-size: 0.9rem; }
.site-nav a[aria-current="page"] { border-bottom-color: var(--accent); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 10px; color: var(--ink);
  align-items: center; justify-content: center; font-size: 1.4rem; line-height: 1;
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; right: 0; left: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1rem;
    box-shadow: 0 20px 40px -20px rgba(42, 28, 46, 0.3);
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) {
    display: block; padding: 0.85rem 0.25rem; font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav .btn { margin-top: 0.85rem; justify-content: center; }
}

/* mobile sticky call bar — the shortest funnel at 390px */
.callbar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 60;
  display: none; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 0.5rem; font-weight: 600; font-size: 0.95rem; text-decoration: none;
}
.callbar .cb-call { background: var(--bg); color: var(--ink); }
.callbar .cb-book { background: var(--accent); color: var(--on-accent); }
@media (max-width: 760px) {
  .callbar { display: flex; }
  body { padding-bottom: 3.6rem; }
}

/* ---------- hero ---------- */
.hero { padding-block: clamp(2.5rem, 7vh, 5.5rem) clamp(2rem, 6vh, 4rem); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 6.5fr) minmax(0, 5.5fr);
  gap: clamp(1.5rem, 4vw, 4rem); align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 {
  /* Fraunces variable axes wired to the scroll — the £0 signature */
  font-variation-settings: "SOFT" calc(var(--paint) * 100), "WONK" 1;
  font-weight: calc(420 + var(--paint) * 160);
}
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 34rem; margin-top: 1.25rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.75rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; margin-top: 2rem;
  color: var(--muted);
}
.hero-trust .fact strong { color: var(--ink); font-weight: 500; }
.hero-media {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--blush-to);
  box-shadow: 0 30px 60px -30px rgba(42, 28, 46, 0.35);
}
@media (max-width: 900px) { .hero-media { aspect-ratio: 16 / 10; } }
.hero-media video, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
/* swatch label — the motif's first appearance */
.swatch-tag {
  position: absolute; left: 1rem; bottom: 1rem;
  background: var(--bg); border-radius: 10px;
  padding: 0.5rem 0.85rem; display: flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 8px 20px -8px rgba(42, 28, 46, 0.4);
}
.swatch-dot { width: 18px; height: 18px; border-radius: 5px; background: var(--accent); flex: none; }
.swatch-tag .fact { color: var(--ink); }

/* ---------- areas band (mono = fact) ---------- */
.areas { border-block: 1px solid var(--line); padding-block: 1rem; overflow: hidden; }
.areas .container {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; justify-content: center;
  color: var(--muted);
}

/* ---------- drench sections: the wall gets painted as you scroll ---------- */
.drench {
  background: var(--wall-to); /* fallback: arrives painted where color-mix is unsupported */
  background: color-mix(in srgb, var(--wall-from), var(--wall-to) calc(var(--p, 0) * 100%));
}
.section { padding-block: clamp(3.5rem, 9vh, 6.5rem); }
.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 5vh, 3.5rem); }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* ---------- services: swatch-card slabs ---------- */
.services-list { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.service {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3.5vw, 3rem); align-items: center;
  background: var(--bg); border-radius: var(--r-card);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: 0 20px 50px -35px rgba(42, 28, 46, 0.4);
}
.service:nth-child(even) .service-media { order: 2; }
@media (max-width: 820px) {
  .service { grid-template-columns: 1fr; }
  .service:nth-child(even) .service-media { order: 0; }
}
.service-media {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; position: relative;
  background: color-mix(in srgb, var(--wall-to), white 30%);
}
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-copy .eyebrow { color: var(--zone-ink, var(--muted)); margin-bottom: 0.5rem; }
.service-copy p { color: var(--muted); margin-top: 0.75rem; }
.service-copy .fact { color: var(--zone-ink, var(--muted)); display: block; margin-top: 0.75rem; }

/* ---------- before / after wipe ---------- */
.ba {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 16 / 10; max-height: 70vh;
  box-shadow: 0 30px 60px -30px rgba(42, 28, 46, 0.35);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .after { clip-path: inset(0 0 0 calc(var(--ba, 0.5) * 100%)); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: calc(var(--ba, 0.5) * 100%);
  width: 3px; background: var(--bg); transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle::after {
  content: "◂ ▸"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg); color: var(--ink); font-size: 0.8rem;
  padding: 0.5rem 0.65rem; border-radius: var(--r-pill); white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(42, 28, 46, 0.5);
}
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.ba-label {
  position: absolute; top: 1rem; font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(42, 28, 46, 0.72); color: #faf5f2;
  padding: 0.35rem 0.7rem; border-radius: 6px;
  pointer-events: none;
}
.ba-label.before { left: 1rem; }
.ba-label.after-l { right: 1rem; }

/* ---------- gallery: paint-chip cards ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem);
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  /* odd counts: the first (statement) card goes full-width so no row is left ragged */
  .gallery-grid:not(.teaser-grid) > .chip:first-child:nth-last-child(odd) { grid-column: 1 / -1; }
  .gallery-grid:not(.teaser-grid) > .chip:first-child:nth-last-child(odd) .chip-img { aspect-ratio: 16 / 10; }
}
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .gallery-grid:not(.teaser-grid) > .chip:first-child:nth-last-child(odd) .chip-img { aspect-ratio: 4 / 5; } }

/* the 4-service teaser: always symmetric — 4 across, 2×2, or single column */
.teaser-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .teaser-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 560px) { .teaser-grid { grid-template-columns: 1fr !important; } }
.teaser-grid .chip { text-decoration: none; color: var(--ink); }
.teaser-grid .chip-label .fact { display: none; } /* names only — the mono fact clips at 4-across */
.teaser-grid .chip-label .name { white-space: nowrap; }
.chip {
  background: var(--bg); border-radius: var(--r-card); overflow: hidden;
  box-shadow: 0 20px 50px -35px rgba(42, 28, 46, 0.45);
  display: flex; flex-direction: column;
}
.chip-img { aspect-ratio: 4 / 5; overflow: hidden; }
.chip-img.wide { aspect-ratio: 4 / 3; }
.chip-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-world) var(--ease);
}
.chip:hover .chip-img img { transform: scale(1.04); }
.chip-label {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.8rem 1rem;
}
.chip-label .name { font-weight: 600; font-size: 0.95rem; }
.chip-label .fact { color: var(--muted); margin-left: auto; white-space: nowrap; }

/* ---------- process strip ---------- */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 2rem);
}
@media (max-width: 820px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }
.step .fact { color: var(--zone-ink, var(--accent)); }
.step h3 { margin: 0.4rem 0 0.5rem; }
.step p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* ---------- about ---------- */
.about-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 4vw, 4rem); align-items: center;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-media {
  border-radius: var(--r-card); overflow: hidden; aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -30px rgba(42, 28, 46, 0.35);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .lead { font-size: 1.2rem; }
.about-facts {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.5rem; color: var(--muted);
}

/* ---------- reviews: light testimonial wall ----------
   White cards on an orchid-tinted wall. Proof stays honest:
   Facebook recommendations (thumbs) + one Nextdoor rec. */
.reviews { background: linear-gradient(180deg, #f9f2f8, #f0e2f0); }
.reviews-cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2vw, 1.5rem); align-items: start;
}
@media (max-width: 960px) { .reviews-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 660px) { .reviews-cols { grid-template-columns: 1fr; } }
.reviews-col { display: grid; gap: clamp(1.1rem, 2vw, 1.5rem); align-content: start; }
.reviews-head { max-width: 34rem; padding: 0.5rem 0; }
.reviews-head h2 { margin: 0.35rem 0 0.9rem; }
.reviews-head p:last-child { color: var(--muted); margin: 0; }

.review-card {
  background: #fff; border-radius: var(--r-card); margin: 0;
  padding: clamp(1.35rem, 2vw, 1.75rem);
  box-shadow: 0 12px 32px rgba(42, 28, 46, 0.09);
}
.stars { display: flex; gap: 0.3rem; color: var(--accent); margin-bottom: 0.9rem; }
.stars svg { width: 18px; height: 18px; fill: currentColor; }
.review-card blockquote {
  margin: 0; font-family: var(--font-display);
  font-size: 1.08rem; font-weight: 420; line-height: 1.55;
}
.quote-meta { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.2rem; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none; overflow: hidden;
  display: grid; place-items: center; font-weight: 600; font-size: 0.85rem;
  color: var(--accent-deep); background: #f1e5f3;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.who { min-width: 0; }
.who strong { display: block; font-weight: 600; font-size: 0.95rem; line-height: 1.3; }
.who .role {
  display: block; margin-top: 0.2rem; font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
}
.platform-badge { margin-left: auto; flex: none; display: inline-flex; }
.badge-nd {
  width: 24px; height: 24px; border-radius: 7px; background: #b8ec51; color: #006142;
  display: grid; place-items: center; font-weight: 700; font-size: 1rem;
  line-height: 1; padding-bottom: 2px;
}
.badge-fb {
  width: 24px; height: 24px; border-radius: 50%; background: #1877f2;
  display: grid; place-items: center;
}
.badge-fb svg { width: 15px; height: 15px; display: block; }

/* the Facebook proof card */
.fb-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.25rem; }
.fb-head .fact { color: var(--muted); }
.pp-logo {
  width: 44px; height: 44px; border-radius: 50%; background: #1877f2;
  display: grid; place-items: center; flex: none;
}
.pp-logo svg { width: 26px; height: 26px; }
.fb-summary .big-stat {
  font-family: var(--font-display); font-weight: 500; margin: 0;
  font-size: clamp(2.75rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -0.02em;
}
.fb-summary .big-stat .fact {
  display: block; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 0.6rem; color: var(--muted);
}
.thumb-row { display: grid; grid-template-columns: repeat(5, max-content); gap: 0.4rem; margin-top: 1.25rem; }
.thumb {
  width: 24px; height: 24px; border-radius: 50%; background: #1877f2;
  display: grid; place-items: center; flex: none;
}
.thumb svg { width: 12px; height: 12px; fill: #fff; }
.thumb-caption { margin: 0.7rem 0 1.4rem; color: var(--muted); }

/* ---------- booking ---------- */
.book .section-head { max-width: 40rem; }
.book-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 4vw, 4rem); align-items: start;
}
@media (max-width: 860px) { .book-grid { grid-template-columns: 1fr; } }
.book-form {
  background: var(--bg); border-radius: var(--r-card);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 20px 50px -35px rgba(42, 28, 46, 0.4);
  display: grid; gap: 1rem;
}
.field { display: grid; gap: 0.35rem; }
.field label { font-weight: 600; font-size: 0.92rem; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  padding: 0.75rem 0.9rem; border: 1.5px solid var(--line);
  border-radius: 10px; background: #fff;
  transition: border-color var(--t-ui) var(--ease);
  width: 100%;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--muted); }
.field textarea { resize: vertical; min-height: 6.5rem; }
.field .err { color: #a02040; font-size: 0.85rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #a02040; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-note { color: var(--muted); font-size: 0.9rem; margin: 0; }
.form-status { font-weight: 600; margin: 0; display: none; }
.form-status.ok { display: block; color: var(--sage-ink); }
.contact-cards { display: grid; gap: 0.9rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg); border-radius: 14px; padding: 1rem 1.25rem;
  text-decoration: none; color: var(--ink);
  box-shadow: 0 15px 40px -30px rgba(42, 28, 46, 0.5);
  transition: transform var(--t-ui) var(--ease);
}
.contact-card:hover { transform: translateY(-2px); }
.contact-card .swatch-dot {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-card strong { display: block; font-size: 0.98rem; }
.contact-card span.sub { color: var(--muted); font-size: 0.88rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: color-mix(in srgb, var(--bg) 82%, transparent); padding-block: 3rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--bg); font-family: var(--font-body); font-size: 0.95rem; margin: 0 0 0.75rem; }
.site-footer a { color: color-mix(in srgb, var(--bg) 88%, transparent); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--bg) 15%, transparent);
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img { width: 54px; height: 54px; border-radius: 12px; }

/* ---------- subpage hero ---------- */
.page-hero { padding-block: clamp(2.5rem, 6vh, 4.5rem) clamp(1rem, 3vh, 2rem); }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
.page-hero .hero-sub { margin-top: 1rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--plum-field); color: var(--on-plum); text-align: center; }
.cta-band h2 { margin-bottom: 0.75rem; }
.cta-band p { color: rgba(247, 236, 244, 0.78); max-width: 34rem; margin-inline: auto; }
.cta-band .btn-book { margin-top: 1.25rem; font-size: 1.05rem; padding: 1rem 2.2rem; }
.cta-band .fact { display: block; margin-top: 1.25rem; color: rgba(247, 236, 244, 0.7); }
.cta-band .fact a { color: var(--on-plum); }

/* ---------- footer logo chip (transparent logo needs a light ground) ---------- */
.footer-brand img { background: var(--bg); padding: 6px; }

/* ---------- reveal (support act only — the signature is the drench) ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity var(--t-world) var(--ease) var(--d, 0ms),
              transform var(--t-world) var(--ease) var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- polish: entrances, shrink, lift, nudge ---------- */
@media (prefers-reduced-motion: no-preference) {
  body { animation: page-in 0.45s var(--ease); }
  @keyframes page-in { from { opacity: 0; } }

  .hero .eyebrow, .hero h1, .hero-sub, .hero-ctas, .hero-trust, .hero-media {
    animation: rise-in 0.7s var(--ease) backwards;
  }
  .hero .eyebrow { animation-delay: 0.05s; }
  .hero h1       { animation-delay: 0.12s; }
  .hero-sub      { animation-delay: 0.2s; }
  .hero-ctas     { animation-delay: 0.28s; }
  .hero-trust    { animation-delay: 0.36s; }
  .hero-media    { animation-delay: 0.2s; }
  @keyframes rise-in { from { opacity: 0; transform: translateY(18px); } }

  .ba.in .ba-handle::after { animation: ba-nudge 1.1s var(--ease) 0.7s 2; }
  @keyframes ba-nudge {
    0%, 100% { transform: translate(-50%, -50%); }
    30%      { transform: translate(calc(-50% - 12px), -50%); }
    65%      { transform: translate(calc(-50% + 12px), -50%); }
  }
}
.chip { transition: transform var(--t-ui) var(--ease), box-shadow var(--t-ui) var(--ease); }
.chip:hover { transform: translateY(-4px); box-shadow: 0 28px 55px -32px rgba(42, 28, 46, 0.55); }
.site-header { transition: box-shadow var(--t-ui) var(--ease); }
.site-header .container { transition: padding var(--t-ui) var(--ease); }
.site-header.scrolled { box-shadow: 0 12px 30px -22px rgba(42, 28, 46, 0.35); }
.site-header.scrolled .container { padding-block: 0.35rem; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .chip-img img, .contact-card { transition: none; }
  .wipe .w { color: var(--wipe-color, var(--ink)); }
  .drench { background: var(--wall-to); }
}
