/* ==========================================================================
   WOW Plumbing — Sales Demo Stylesheet (round 11: full creative rebuild)

   Structural shape: the page is framed as WOW's first day online — a
   mascot-led hero, a first-person "honest bit" note, a toolbelt list of
   services, a 3-panel illustrated "what happens when you call" strip, and
   reviews folded into the contact section rather than a standalone section.
   Deliberately not hero -> Challenge/Solution/Outcome -> bento grid ->
   why-us -> testimonials -> contact, which had become the recognizable
   default shape across many prior edit rounds on this file.

   Visual language: an original hand-coded SVG mascot (droplet body, faucet
   spout, simple face) appears at hero scale and recurs through the page,
   replacing the earlier abstract ripple-ring motif with something that
   actually carries personality specific to this business.

   Typography: Bricolage Grotesque (heading) + Nunito Sans (body), kept from
   prior rounds — still the right pairing for "characterful but trustworthy."
   Palette: burnt terracotta/ochre-gold signature system (restored after
   trying wine and steel-blue) — see BRAND-NOTES.md for the full reasoning.
   ========================================================================== */

:root {
  --paper-000: #FFFFFF;
  --paper-100: #F7F2EA;
  --paper-200: #EDE4D6;
  --sand-300: #F1E2CC;
  --ink-blue-500: #C1592C;
  --ink-blue-400: #E08857;
  --ink-blue-600: #973F1E;
  --brass: #C99A3C;
  --brass-deep: #A67B27;
  --ink-text: #241A14;
  --ink-muted: #6B5A4E;
  --white-text: #FBF6EF;
  --white-muted: #C2AE9C;
  --line-light: rgba(36, 26, 20, 0.10);
  --line-dark: rgba(251, 246, 239, 0.14);

  --color-bg: var(--paper-100);
  --color-bg-alt: var(--paper-200);
  --color-surface: var(--paper-000);
  --color-ink: var(--ink-text);
  --color-ink-muted: var(--ink-muted);
  --color-accent: var(--ink-blue-500);
  --color-accent-hover: var(--ink-blue-600);
  --color-focus: var(--ink-blue-600);

  --text-xs: 0.8rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-md: 1.15rem;
  --text-lg: 1.4rem;
  --text-xl: clamp(1.9rem, 2.6vw + 1rem, 2.6rem);
  --text-2xl: clamp(2.2rem, 3.6vw + 1rem, 3rem);
  --text-display: clamp(2.6rem, 5.6vw + 1rem, 5rem);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 8rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Warm ink-tinted, two-layer shadows — a tight contact shadow plus a soft
     ambient one, matched to the page's warm paper instead of the leftover
     blue-navy rgba(11,18,32,…) from the old cool palette. */
  --shadow-sm: 0 1px 2px rgba(36, 26, 20, 0.05), 0 3px 8px rgba(36, 26, 20, 0.06);
  --shadow-md: 0 2px 6px rgba(36, 26, 20, 0.06), 0 16px 36px rgba(36, 26, 20, 0.12);
  --shadow-lg: 0 4px 10px rgba(36, 26, 20, 0.08), 0 30px 70px rgba(36, 26, 20, 0.18);

  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.08; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 var(--space-3); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--color-accent); color: #fff;
  padding: 0.75rem 1.25rem; z-index: 1000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------------- */
/* Header */
/* ---------------------------------------------------------------------- */
.site-header {
  /* Light frosted header instead of a dark bar — the page opens light now,
     so the first thing a visitor sees isn't a heavy panel before they've
     even reached the hero. */
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 242, 234, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-light);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: var(--space-3); }
.logo { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--color-ink); display: flex; align-items: center; gap: 0.5rem; }
.logo span { color: var(--brass-deep); }
.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.header-locale { color: var(--color-ink-muted); font-size: 0.85rem; display: none; }
@media (min-width: 720px) { .header-locale { display: inline; } }

/* ---------------------------------------------------------------------- */
/* Buttons */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; letter-spacing: -0.005em;
  padding: 0.85rem 1.5rem; border-radius: var(--radius-md); border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-call {
  /* Subtle top-to-bottom gradient + inset highlight instead of a flat fill —
     the difference between "colored rectangle" and a button that reads as
     one considered surface. */
  background: linear-gradient(180deg, color-mix(in oklab, var(--color-accent) 100%, white 6%), var(--color-accent));
  color: #fff;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
@media (hover: hover) and (pointer: fine) {
  .btn-call:hover { background: var(--color-accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
}
.btn:active { transform: scale(0.97) translateY(0); }
.btn-ghost { background: transparent; border-color: var(--line-light); color: var(--color-ink); }
@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover { border-color: var(--ink-blue-500); color: var(--ink-blue-600); transform: translateY(-1px); }
}
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------------------------------------------------------------------- */
/* Mascot — shared styling for the recurring illustrated character */
/* ---------------------------------------------------------------------- */
.mascot { display: block; }

/* ---------------------------------------------------------------------- */
/* Hero — asymmetric two-part composition: copy block + oversized mascot
   figure, not a mirrored split-hero. Light warm background, not the old
   dark tech-glow panel — the mascot illustration is the visual anchor now,
   it doesn't need a dramatic gradient underneath to carry weight. */
/* ---------------------------------------------------------------------- */
.hero {
  background: linear-gradient(180deg, var(--paper-200) 0%, var(--paper-100) 100%);
  padding: clamp(3rem, 8vw, var(--space-6)) 0 var(--space-5);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}
.hero-kicker {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-blue-600);
  margin: 0 0 var(--space-3);
}
.hero-headline {
  font-size: var(--text-display);
  font-weight: 800;
  margin-bottom: var(--space-3);
  max-width: 11ch;
}
.hero-headline-accent { color: var(--ink-blue-500); }
.hero-sub { font-size: var(--text-md); color: var(--color-ink-muted); max-width: 46ch; margin: 0 0 var(--space-4); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.hero-figure { display: flex; justify-content: center; }
.mascot--hero { width: min(100%, 320px); height: auto; }

/* Hero entrance — copy and mascot rise in on load instead of appearing
   instantly; mascot follows a beat behind the copy so the eye lands on the
   headline first. Purpose: preventing a jarring first paint on the page's
   most-seen moment. */
.hero-copy { animation: hero-rise 0.6s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-figure { animation: hero-rise 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Mascot personality touches — small, slow, ambient, never blocking reading.
   Wave plays twice on load (a greeting, not a tic); idle bob and drips loop
   gently in the background. All killed outright by the reduced-motion rule
   below, same as the rest of the page's motion. */
.mascot--hero { animation: mascot-idle 3.6s ease-in-out 0.72s infinite; transform-origin: 50% 100%; }
@keyframes mascot-idle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.mascot-wave {
  transform-box: fill-box;
  transform-origin: 15% 100%;
  animation: mascot-wave 0.55s ease-in-out 0.85s 2;
}
@keyframes mascot-wave {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-13deg); }
}
.mascot-drip {
  transform-box: fill-box;
  transform-origin: 50% 0%;
  animation: mascot-drip 2.8s ease-in-out infinite;
}
.mascot-drip--b { animation-delay: 1.2s; }
@keyframes mascot-drip {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(4px); opacity: 0.5; }
}

/* Eye tracking — the pupil groups are nudged by JS every frame toward the
   cursor (desktop/fine-pointer only); will-change keeps that smooth. The
   fallback state (no JS, touch, reduced-motion) is simply centered pupils,
   which is exactly what the markup already renders with no transform. */
.mascot-eye { will-change: transform; }

/* Mascot hover squish — the character was purely decorative outside its
   scripted wave/idle motion. On desktop, hovering the hero mascot gives it
   a quick, springy squash-and-stretch, like it noticed you. Interaction
   reward, not ambient motion, and pointer-fine-gated so it never fires from
   an accidental touch-scroll on mobile. */
@media (hover: hover) and (pointer: fine) {
  .hero-figure:hover .mascot--hero { animation: mascot-squish 0.55s cubic-bezier(0.34, 1.56, 0.64, 1); }
}
@keyframes mascot-squish {
  0% { transform: scale(1, 1); }
  35% { transform: scale(1.08, 0.9) translateY(4px); }
  65% { transform: scale(0.95, 1.07) translateY(-6px); }
  100% { transform: scale(1, 1); }
}

/* Scroll parallax — a dedicated wrapper (kept separate from .hero-figure so
   it never collides with the entrance/idle animations already running on
   that element) drifts the hero mascot slightly slower than the page as you
   scroll past it, using scroll-driven animations where supported. Purely
   additive: browsers without support just don't run it. */
@supports (animation-timeline: scroll()) {
  @media (hover: hover) and (pointer: fine) {
    .hero-figure-wrap {
      animation: hero-parallax linear both;
      animation-timeline: scroll(root);
      animation-range: 0 70vh;
    }
  }
}
@keyframes hero-parallax {
  from { transform: translateY(0); }
  to { transform: translateY(-34px); }
}

/* ---------------------------------------------------------------------- */
/* Honest bit — first-person note, dark panel for contrast/weight instead
   of a repeated Challenge/Solution/Outcome staged layout. Single voice,
   single block, small mascot as a marginal illustration not a hero image. */
/* ---------------------------------------------------------------------- */
.honest {
  /* Was a full dark navy panel — that made two heavy dark sections back to
     back with the header right above it. A warm sand panel keeps this
     section visually distinct from the pure-white services block on either
     side of it (so the page still has rhythm) without adding more weight. */
  background: linear-gradient(180deg, var(--sand-300), var(--paper-200));
  color: var(--color-ink);
  padding: var(--space-6) 0;
}
.honest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: start;
}
@media (min-width: 900px) {
  .honest-grid { grid-template-columns: 1fr 200px; }
}
.honest-copy { max-width: 62ch; }
.honest-kicker {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--ink-blue-600);
  margin: 0 0 var(--space-2);
}
.honest-lede {
  font-size: var(--text-xl);
  font-weight: 600;
  max-width: 44ch;
  margin: 0 0 var(--space-3);
  color: var(--color-ink);
}
.honest-copy p:not(.honest-lede) {
  font-size: var(--text-md);
  color: var(--color-ink-muted);
  max-width: 62ch;
  margin: 0 0 var(--space-3);
}

/* Before/after compare card — the concrete "what changes" moment inside the
   honest section: the real absence-of-presence fact (unclaimed directory
   listing, nothing to check before calling) set directly against this page,
   instead of a generic "why choose us" claim. */
.honest-compare {
  background: var(--paper-000);
  border: 1.5px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  margin: 0 0 var(--space-3);
  display: grid;
  gap: 0.65rem;
  max-width: 56ch;
}
.compare-row { margin: 0; font-size: 0.95rem; color: var(--color-ink-muted); }
.compare-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-right: 0.5rem;
  vertical-align: 1px;
}
.compare-tag--before { background: rgba(193, 89, 44, 0.08); color: var(--ink-blue-600); }
.compare-tag--after { background: rgba(201, 154, 60, 0.16); color: var(--brass-deep); }

/* Stakes line — the cost-of-inaction moment. Left-border callout, not a
   boxed alarm banner, so it stays in the page's honest/understated register
   instead of reading as scare-copy. */
.honest-stakes {
  font-weight: 600;
  color: var(--color-ink);
  border-left: 3px solid var(--ink-blue-500);
  padding-left: var(--space-2);
  max-width: 54ch;
  font-size: var(--text-md);
}

/* Story promises — a short, honest "what you actually get" list closing out
   the expanded story section. Checkmarks, not decoration — each line is a
   concrete commitment, not a vague trust claim. */
.story-promises {
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: var(--space-3) 0 0;
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: var(--space-2);
  max-width: 56ch;
}
.story-promises li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.98rem;
  color: var(--color-ink-muted);
}
.promise-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(193, 89, 44, 0.12);
  color: var(--ink-blue-600);
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.1rem;
}

.honest-figure { display: flex; justify-content: center; }
.mascot--story { width: min(100%, 180px); height: auto; }
@media (max-width: 899px) { .honest-figure { display: none; } }

/* ---------------------------------------------------------------------- */
/* Services — a toolbelt list. Rows, not cards; each row reads like an item
   clipped to a belt rather than a repeated icon+heading+text tile grid. */
/* ---------------------------------------------------------------------- */
.services { background: var(--color-surface); padding: var(--space-7) 0 var(--space-6); }
.services-head { max-width: 640px; margin: 0 0 var(--space-4); }
.services-head h2 { font-size: var(--text-xl); margin-bottom: var(--space-2); }
.services-head p { color: var(--color-ink-muted); font-size: var(--text-md); margin: 0; }

.toolbelt {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px dashed var(--line-light);
}
.tool {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 2px dashed var(--line-light);
  transition: padding-left 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .tool:hover { padding-left: var(--space-2); }
  .tool:hover .tool-icon { color: var(--ink-blue-500); border-color: var(--ink-blue-500); box-shadow: var(--shadow-sm); }
}
.tool-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--line-light);
  color: var(--ink-blue-600);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s, opacity 0.3s ease 0.05s;
  transform: scale(0.75);
  opacity: 0;
}
/* Each row's icon pops in a beat after the row itself fades up, so the
   toolbelt reveal reads as two small motions instead of one flat fade —
   the "satisfying reveal" the list otherwise lacked. */
.reveal.is-visible .tool-icon { transform: scale(1); opacity: 1; }
.no-js .tool-icon { transform: none; opacity: 1; }
.tool--urgent .tool-icon { color: var(--brass-deep); border-color: rgba(201, 154, 60, 0.4); }
.tool-copy { display: flex; flex-direction: column; gap: 0.2rem; padding-top: 0.35rem; }
.tool-copy strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--color-ink); }
.tool-copy span { color: var(--color-ink-muted); font-size: 0.95rem; }
.tool--open .tool-copy span { max-width: 60ch; }

/* ---------------------------------------------------------------------- */
/* Service area — real neighbourhood names as a tag grid, closing the
   "where do you even go" gap a one-line mention left open. */
/* ---------------------------------------------------------------------- */
.area { background: var(--color-surface); border-top: 1px solid var(--line-light); padding: var(--space-6) 0 var(--space-7); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: start;
}
@media (min-width: 900px) {
  .area-grid { grid-template-columns: 0.9fr 1.1fr; }
}
.area-copy h2 { font-size: var(--text-xl); margin: 0 0 var(--space-2); }
.area-lede { font-size: var(--text-md); color: var(--color-ink); margin: 0 0 var(--space-2); max-width: 46ch; }
.area-copy p:not(.area-lede) { color: var(--color-ink-muted); max-width: 46ch; margin: 0; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-content: flex-start;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--color-bg-alt);
  border: 1.5px solid var(--line-light);
  color: var(--color-ink);
}
.area-tag--more { background: transparent; border-style: dashed; color: var(--ink-blue-600); }

/* ---------------------------------------------------------------------- */
/* How it goes — 3-panel illustrated strip replacing a bulleted "why us"
   list. Each panel is a tiny scene: mascot + step number + line. */
/* ---------------------------------------------------------------------- */
.strip { background: var(--color-bg-alt); padding: var(--space-7) 0 var(--space-6); }
.strip-title { font-size: var(--text-xl); max-width: 20ch; margin: 0 0 var(--space-5); }
.strip-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 760px) {
  .strip-panels { grid-template-columns: repeat(3, 1fr); }
}
.panel {
  background: var(--color-surface);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .panel:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(193, 89, 44, 0.18); }
}
.mascot--panel {
  width: 64px; height: auto; margin-bottom: var(--space-2);
  transform: scale(0.7);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}
/* Panel icon settles in a beat after the card itself, on top of the
   130ms panel-to-panel stagger — together they read as three steps
   unfolding in sequence rather than a single grid fading in at once. */
.panel.is-visible .mascot--panel { transform: scale(1); }
.no-js .mascot--panel { transform: none; }
.panel-step {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--paper-200);
  margin: 0;
}
.panel h3 { font-size: 1.1rem; margin-bottom: 0.4rem; max-width: 20ch; }
.panel p { color: var(--color-ink-muted); font-size: 0.95rem; margin: 0; }

/* ---------------------------------------------------------------------- */
/* FAQ — real, useful questions a nervous first-time caller has, answered in
   the same honest voice as the rest of the page (including flagging what's
   genuinely unconfirmed rather than glossing over it). */
/* ---------------------------------------------------------------------- */
.faq { background: var(--color-bg-alt); border-top: 1px solid var(--line-light); padding: var(--space-6) 0 var(--space-7); }
.faq-head { max-width: 640px; margin: 0 0 var(--space-4); }
.faq-head h2 { font-size: var(--text-xl); margin: 0 0 var(--space-2); }
.faq-lede { color: var(--color-ink-muted); font-size: var(--text-md); margin: 0; }

.faq-list { display: grid; gap: 0.75rem; max-width: 760px; }
.faq-item {
  background: var(--color-surface);
  border: 1.5px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item + .faq-item { margin-top: 0; }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink-blue-500);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg) scale(1.15); transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1); }
.faq-item p {
  color: var(--color-ink-muted);
  font-size: 0.96rem;
  margin: 0.75rem 0 0;
  max-width: 62ch;
}
/* Wrapper the accordion JS animates the height of (see script) — clips the
   answer during open/close instead of the native <details> instant snap. */
.faq-body { overflow: hidden; }
@media (hover: hover) and (pointer: fine) {
  .faq-item:hover { border-color: var(--ink-blue-500); transform: translateY(-1px); }
}

/* ---------------------------------------------------------------------- */
/* Contact — reviews folded in as a small honest aside, not a standalone
   testimonials section, since there are only three of them to show. */
/* ---------------------------------------------------------------------- */
.contact {
  /* Was a dark navy-teal panel — the last of the two remaining heavy dark
     surfaces on the page. Flipped to the same warm-paper family the rest of
     the page already uses, with a soft ink-blue glow standing in for the
     old dark-panel drama. Weight now comes from the bordered/elevated phone
     card and form, not from a dark background. */
  background: radial-gradient(circle at 85% 8%, rgba(193, 89, 44, 0.12), transparent 45%), linear-gradient(180deg, var(--paper-200), var(--sand-300));
  color: var(--color-ink);
  padding: var(--space-6) 0;
}
.contact-inner { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 900px) { .contact-inner { grid-template-columns: 1fr 1fr; } }

.mascot--contact { width: 84px; height: auto; margin-bottom: var(--space-2); }
.contact-info h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: var(--space-2); color: var(--color-ink); }
.contact-info p { color: var(--color-ink-muted); margin-bottom: var(--space-3); max-width: 46ch; }

.contact-phone-card {
  /* Bordered, elevated, ink-blue-tinted card carries the "this is the
     important bit" weight that a dark background used to carry. */
  display: flex; align-items: center; gap: var(--space-2);
  background: linear-gradient(180deg, rgba(193, 89, 44, 0.08), rgba(193, 89, 44, 0.03));
  border: 1.5px solid rgba(193, 89, 44, 0.28);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-sm);
}
.contact-phone-card svg { color: var(--ink-blue-500); flex-shrink: 0; }
.contact-phone-card .phone-label { font-size: 0.8rem; color: var(--color-ink-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-phone-card .phone-number { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--color-ink); }

.contact-hours { font-size: 0.9rem; color: var(--color-ink-muted); margin-bottom: var(--space-4); }
.contact-hours strong { color: var(--color-ink); }

.mini-reviews {
  border-top: 1px solid var(--line-light);
  padding-top: var(--space-3);
}
.mini-reviews-head {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink);
  margin: 0 0 var(--space-2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mini-reviews .stars { color: var(--ink-blue-500); letter-spacing: 1px; font-size: 0.9rem; }
.mini-reviews blockquote {
  margin: 0 0 0.6rem;
  padding: 0 0 0 0.75rem;
  border-left: 2px solid var(--ink-blue-500);
  font-size: 0.9rem;
  color: var(--color-ink-muted);
}
.mini-reviews blockquote cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--color-ink-muted);
  opacity: 0.85;
  margin-top: 0.2rem;
}

.contact-form {
  /* On a light section, the plain white card no longer contrasts against
     its background on its own — a visible border + shadow give it the
     "elevated, important" read the dark backdrop used to provide for free. */
  background: var(--paper-000);
  color: var(--color-ink);
  border: 1.5px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
  align-self: start;
}
.contact-form h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.contact-form .form-sub { color: var(--color-ink-muted); font-size: 0.88rem; margin-bottom: var(--space-3); }
.form-row { display: grid; gap: var(--space-2); margin-bottom: var(--space-2); }
@media (min-width: 520px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--color-ink); }
input, textarea, select {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem;
  padding: 0.75rem 0.9rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-light); background: var(--paper-100); color: var(--color-ink);
}
input::placeholder, textarea::placeholder { color: #A8988A; }
textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.78rem; color: var(--color-ink-muted); margin-top: var(--space-2); }

/* ---------------------------------------------------------------------- */
/* Sticky mobile call bar */
/* ---------------------------------------------------------------------- */
.mobile-call-bar {
  /* Matches the light header instead of the old dark bar — one fewer heavy
     surface on screen at once on mobile, where header + call bar used to
     sandwich the content between two dark strips. */
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: rgba(247, 242, 234, 0.96); border-top: 1px solid var(--line-light);
  box-shadow: 0 -8px 24px rgba(36, 26, 20, 0.10);
  padding: 0.7rem var(--space-3); display: flex; justify-content: center;
}
@media (min-width: 720px) { .mobile-call-bar { display: none; } }
.mobile-call-bar .btn { width: 100%; }

/* ---------------------------------------------------------------------- */
/* Footer */
/* ---------------------------------------------------------------------- */
.site-footer {
  /* Last dark surface on the page — flipped to a light warm paper tone to
     match the contact section above it, so nothing on the page reads as a
     heavy dark panel anymore. */
  background: var(--paper-200); color: var(--color-ink-muted);
  border-top: 1px solid var(--line-light);
  padding: var(--space-5) 0 calc(var(--space-4) + 3.5rem); font-size: 0.9rem;
}
@media (min-width: 720px) { .site-footer { padding-bottom: var(--space-4); } }

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line-light);
}
@media (min-width: 640px) {
  .footer-grid { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: var(--space-5); }
  .footer-reach { text-align: right; }
}
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink);
  margin: 0 0 var(--space-2);
}
.footer-col nav, .footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col nav a, .footer-text-link { color: var(--color-ink-muted); font-size: 0.88rem; }
@media (hover: hover) and (pointer: fine) {
  .footer-col nav a:hover, .footer-text-link:hover { color: var(--ink-blue-600); }
}
.footer-logo { font-family: var(--font-display); color: var(--color-ink); font-weight: 700; font-size: 1.1rem; }

/* Footer sign-off mascot — footer was the one section on the page with no
   trace of the character at all, which read flat next to a mascot-led hero,
   story, panel strip, and contact block. A small static head is the sign-off;
   the arm only wiggles on hover, so it's an interaction reward, not ambient
   motion competing with the rest of the page. */
.footer-brand-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.35rem; }
.mascot--footer { flex-shrink: 0; }
.mascot-wave--footer { transform-box: fill-box; transform-origin: 20% 100%; }
@media (hover: hover) and (pointer: fine) {
  .footer-brand-head:hover .mascot-wave--footer { animation: mascot-wave 0.5s ease-in-out 2; }
}
.footer-tagline { font-size: 0.88rem; max-width: 32ch; margin: 0; }
.footer-stars { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; }
.footer-stars .stars { color: var(--ink-blue-600); letter-spacing: 1px; }
.footer-text { font-size: 0.88rem; margin: 0; color: var(--color-ink-muted); }
.footer-phone { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--color-ink); }
@media (hover: hover) and (pointer: fine) { .footer-phone:hover { color: var(--ink-blue-600); } }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--space-2);
  padding-top: var(--space-3); font-size: 0.8rem;
}

/* ---------------------------------------------------------------------- */
/* Splash burst — on-theme "confetti": a few small droplets pop from a Call
   button or the callback form on click, water-splash rather than generic
   confetti, rewarding the page's actual conversion moments (spawned/removed
   by the script below). */
/* ---------------------------------------------------------------------- */
.splash-drop {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50% 50% 50% 0;
  background: var(--ink-blue-400);
  pointer-events: none;
  z-index: 999;
  animation: splash-out 0.62s cubic-bezier(0.2, 0.8, 0.4, 1) forwards;
}
@keyframes splash-out {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.95; }
  100% { transform: translate(var(--dx), var(--dy)) rotate(200deg) scale(0.3); opacity: 0; }
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-blue-600);
  background: rgba(193, 89, 44, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: var(--space-2);
  animation: hero-rise 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.form-success.is-visible { display: flex; }

/* ---------------------------------------------------------------------- */
/* Scroll-reveal */
/* ---------------------------------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
