/* =============================================================
   Forward Grooming — Design System
   Brand: Compassionate, breed-informed dog grooming. Lodi, WI.
   ============================================================= */

:root {
  /* Palette — refined sage + blush */
  --sage-900: #1f3329;
  --sage-800: #2d4538;
  --sage-700: #4a6b59;
  --sage-600: #5b7b6a;
  --sage-500: #6b8e7a;
  --sage-400: #8baf9c;
  --sage-200: #c8d9cd;
  --sage-100: #e3eee7;
  --sage-50:  #f1f6f3;

  --blush-900: #7a1f44;
  --blush-800: #9b2a59;
  --blush-700: #b03567;
  --blush-600: #c14a78;
  --blush-500: #d36694;
  --blush-300: #e8a5bf;
  --blush-100: #fce8ee;
  --blush-50:  #fdf3f6;

  --cream: #faf6f1;
  --paper: #ffffff;
  --ink-900: #1a1f1c;
  --ink-800: #2a2f2c;
  --ink-700: #3a3f3c;
  --ink-500: #6b7570;
  --ink-300: #b6bdb8;
  --ink-200: #dde1de;
  --ink-100: #eef1ef;

  --gold: #c89a3c;

  /* Typography
     Sora (sans) for headings, Fraunces (serif) for body, Caveat for
     handwritten eyebrows + accents. */
  --font-display: 'Sora', -apple-system, system-ui, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', 'Sora', -apple-system, system-ui, 'Segoe UI', Roboto, sans-serif;
  --font-hand: 'Caveat', 'Kalam', 'Comic Sans MS', cursive;
  --font-mono: 'IBM Plex Mono', 'SF Mono', monospace;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Layout */
  --max-w: 1240px;
  --max-w-narrow: 920px;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(26, 31, 28, 0.06), 0 1px 3px rgba(26, 31, 28, 0.04);
  --shadow: 0 4px 14px rgba(26, 31, 28, 0.06), 0 2px 6px rgba(26, 31, 28, 0.04);
  --shadow-lg: 0 18px 48px -16px rgba(26, 31, 28, 0.18), 0 6px 18px rgba(26, 31, 28, 0.08);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  /* Header */
  --hdr-h: 108px;
  --util-h: 36px;

  /* Brand-tuned creative palette */
  --brand-amber: #fde68a;        /* light yellow accent */
  --brand-amber-strong: #fcd34d;
  --brand-card-edge: #1a1f1c;    /* near-black ink for borders/shadows */
  --neon-pink: #ff1f7e;          /* hot/neon pink for primary buttons */
  --neon-pink-strong: #ff0066;   /* deeper neon for hover */
}

/* =============================================================
   Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-800);
  /* Pink wood-plank texture sits behind the utility bar + header +
     hero. Cover-sized so it never tiles. A warm dark filter keeps
     the texture visible while making white foreground text pop. */
  background-color: var(--cream);
  background-image:
    linear-gradient(180deg, rgba(60, 22, 36, 0.4), rgba(60, 22, 36, 0.5)),
    url('pink-wood.jpg');
  background-size: cover, cover;
  background-position: center top, center top;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
@media (max-width: 920px) {
  body { background-attachment: scroll, scroll; }
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: var(--sage-700); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--neon-pink, #ff1f7e); }

::selection { background: var(--blush-100); color: var(--blush-900); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 var(--s-4);
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

/* Section + hero headings — all sans (Sora). */
.hero-content h1,
.page-hero h1,
.section-heading h2,
.about-content h2,
.final-cta h2,
.faq h2,
.area h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--brand-card-edge);
}
.hero-content h1 {
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
}
.section-heading h2,
.about-content h2,
.final-cta h2,
.faq h2,
.area h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  max-width: 22ch;
}
.hero-content h1 .accent {
  color: var(--blush-700);
  font-style: normal;
  font-variation-settings: normal;
  position: relative;
  display: inline-block;
}
.hero-content h1 .accent::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: -8px;
  height: 8px;
  background: var(--brand-amber);
  border-radius: 999px;
  transform: rotate(-1.2deg);
  filter: blur(0.3px);
  z-index: -1;
}
.final-cta h2 { color: var(--cream); }
/* Process h2 inherits from .section-heading h2 — no override needed */

p { margin: 0 0 var(--s-4); }
.lead { font-size: 1.18rem; color: var(--ink-700); line-height: 1.55; }

/* Eyebrow + service tag removed by request */
.eyebrow, .service-tag { display: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.container--narrow { max-width: var(--max-w-narrow); }

section { padding: var(--s-9) 0; }
@media (max-width: 720px) { section { padding: var(--s-8) 0; } }

/* =============================================================
   Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
  position: relative;
  line-height: 1;
  transition: transform 0.18s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-lg { height: 60px; padding: 0 2rem; font-size: 1.05rem; }
.btn-sm { height: 40px; padding: 0 1.15rem; font-size: 0.85rem; }

.btn-primary {
  background: var(--neon-pink, #ff1f7e);
  color: white;
  box-shadow: none;
  position: relative;
  overflow: visible;
  z-index: 3;
}
.btn-primary:hover {
  background: var(--neon-pink-strong, #ff0066);
  color: white;
  box-shadow: none;
}

/* Cocker spaniel mascot peeks out sideways from behind primary buttons
   on hover. z-index is positive so the dog renders ON TOP of any
   adjacent button (the previous behavior had it underneath). */
.btn-primary::before {
  content: "";
  position: absolute;
  width: 88px;
  height: 88px;
  top: 50%;
  right: 8px;
  background-image: url('../cppop%20up.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0, -50%) scale(0.4) rotate(-12deg);
  transform-origin: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.5s cubic-bezier(0.5, 1.6, 0.45, 1), filter 0.3s var(--ease);
  pointer-events: none;
  z-index: 50;
  filter: drop-shadow(0 6px 14px rgba(26, 31, 28, 0.22)) saturate(1.3) contrast(1.1) brightness(1.06);
}
.btn-primary:hover::before {
  opacity: 1;
  transform: translate(70%, -55%) scale(1.05) rotate(6deg);
  filter: drop-shadow(0 10px 22px rgba(176, 53, 103, 0.36)) saturate(1.45) contrast(1.12) brightness(1.08);
}
.btn-primary.btn-lg::before {
  width: 110px;
  height: 110px;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary::before { transition: opacity 0.2s; }
  .btn-primary:hover::before { transform: translate(60%, -50%) scale(1) rotate(0); }
}
@media (max-width: 540px) {
  .btn-primary::before { display: none; }
}

.btn-secondary {
  background: var(--brand-card-edge);
  color: var(--cream);
  box-shadow: 0 6px 18px rgba(26, 31, 28, 0.18);
}
.btn-secondary:hover { background: #2a2f2c; color: white; }

.btn-ghost {
  background: var(--cream);
  color: var(--brand-card-edge);
  border: 2px solid var(--brand-card-edge);
}
.btn-ghost:hover {
  background: var(--brand-card-edge);
  color: white;
}

/* (Old duplicate .btn-sm/.btn-lg rules removed — they were overriding
   the handwritten Caveat sizes back to the original Inter dimensions
   and dialing the font weight off.) */

/* =============================================================
   Header / Nav
   ============================================================= */
/* Utility bar (top thin strip) — solid soft pink so it caps the
   page above the textured hero. */
.utility-bar {
  background: var(--blush-100);
  color: var(--brand-card-edge);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  border-bottom: 2px solid var(--brand-card-edge);
  font-weight: 500;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  height: var(--util-h);
}
.utility-bar .util-list {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  list-style: none;
  margin: 0;
  padding: 0;
}
.utility-bar li,
.utility-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.utility-bar a, .utility-bar a:hover { color: inherit; }
.utility-bar a { transition: color 0.18s var(--ease); }
.utility-bar a:hover { color: var(--blush-700); }
.utility-bar svg {
  width: 14px;
  height: 14px;
  fill: var(--brand-card-edge);
  flex: none;
  display: inline-block;
}
.utility-bar .util-list--socials { gap: 6px; }
.utility-bar .util-list--socials svg { width: 18px; height: 18px; }
@media (max-width: 720px) {
  .utility-bar { font-size: 0.74rem; }
  .utility-bar .container { gap: var(--s-3); }
  .utility-bar .util-list { gap: var(--s-3); }
  .utility-bar .util-hide-mobile { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  /* Constant top padding in both states so the pill floats the same
     14px whether the header is transparent or scrolled — no jump. */
  padding-top: 14px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  color: var(--cream);
}
/* Scrolled: inner nav becomes a neon-pink floating pill with all-white
   contents. */
.site-header.is-scrolled {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.is-scrolled .nav {
  background: var(--neon-pink, #ff1f7e);
  border-radius: 999px;
  padding-left: var(--s-6);
  padding-right: var(--s-5);
  box-shadow: 0 14px 34px rgba(26, 31, 28, 0.18);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

/* Brand logo always renders white in both header states (and footer). */
.site-header .brand-logo { filter: brightness(0) invert(1); transition: filter 0.3s var(--ease); }
.site-header:not(.is-scrolled) .nav-links a,
.site-header:not(.is-scrolled) .nav-links a:hover,
.site-header:not(.is-scrolled) .nav-links a.is-active { color: white; font-weight: 700; }
.site-header:not(.is-scrolled) .nav-links a::after { background: white; }

/* Scrolled state — pink pill, white nav */
.site-header.is-scrolled .brand-logo { filter: brightness(0) invert(1); }
.site-header.is-scrolled .nav-links a { color: white; font-weight: 700; }
.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a.is-active { color: white; }
.site-header.is-scrolled .nav-links a::after { background: white; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hdr-h);
  gap: var(--s-5);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand:hover { opacity: 0.85; }
.brand-logo {
  height: 96px;
  width: auto;
  display: block;
  /* Asset has more visual mass at the bottom — nudge a few px up so it
     reads as optically centered inside the pill. */
  transform: translateY(-4px);
}
@media (max-width: 720px) { .brand-logo { height: 68px; } }
@media (max-width: 480px) { .brand-logo { height: 56px; } }
/* Dark variant (used in footer) — flips the black/white logo */
.brand--invert .brand-logo {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink-700);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--neon-pink, #ff1f7e); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--neon-pink, #ff1f7e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: var(--s-5); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--cream);
  white-space: nowrap;
  padding: 0;
  background: transparent;
  border-radius: 0;
  line-height: 1;
  transition: color 0.2s var(--ease);
}
.nav-phone .icon-bubble {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: transparent;
  display: grid; place-items: center;
  color: var(--neon-pink, #ff1f7e);
  transition: color 0.2s var(--ease);
}
.nav-phone .icon-bubble svg { width: 20px; height: 20px; fill: currentColor; }
.nav-phone:hover { color: var(--neon-pink, #ff1f7e); }
.nav-phone:hover .icon-bubble { color: var(--neon-pink, #ff1f7e); }
/* Scrolled state */
.site-header.is-scrolled .nav-phone { color: white; }
.site-header.is-scrolled .nav-phone .icon-bubble { color: white; }
.site-header.is-scrolled .nav-phone:hover { color: white; opacity: 0.85; }
.site-header.is-scrolled .nav-phone:hover .icon-bubble { color: white; }

/* Book Now in scrolled header: white pill, neon-pink text */
.site-header.is-scrolled .btn-primary {
  background: white;
  color: var(--neon-pink, #ff1f7e);
}
.site-header.is-scrolled .btn-primary:hover {
  background: var(--cream);
  color: var(--neon-pink-strong, #ff0066);
  box-shadow: none;
}
/* Hide phone number text on tablet/small laptops where space is tight */
@media (min-width: 721px) and (max-width: 1080px) {
  .nav-phone .num { display: none; }
}
/* Mobile: show the actual phone number text. Drop the small Book Now
   (it's redundant — hero has a big one and the menu has it too) so
   the number has room to breathe alongside the menu toggle. */
@media (max-width: 720px) {
  .nav-cta .btn-primary.btn-sm { display: none; }
  .nav-phone { font-size: 1.2rem; gap: 8px; }
  .nav-phone .icon-bubble { width: 22px; height: 22px; }
  .nav-phone .icon-bubble svg { width: 16px; height: 16px; }
  .nav-cta { gap: var(--s-3); }
}
@media (max-width: 380px) {
  .nav-phone { font-size: 1.05rem; }
  .nav-phone .icon-bubble { display: none; }
}

/* Hours block */
.hours-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.2rem;
  margin-top: var(--s-4);
  font-size: 0.95rem;
}
.hours-block dt { color: var(--ink-500); font-weight: 500; }
.hours-block dd { margin: 0; color: var(--ink-900); font-weight: 500; }

.contact .hours-block dt { color: var(--ink-500); }
.contact .hours-block dd { color: var(--brand-card-edge); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blush-50);
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink-900);
  position: relative;
  transition: 0.3s var(--ease);
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 1.5px; background: var(--ink-900);
  transition: 0.3s var(--ease);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top:  6px; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; }
  /* Menu uses position: fixed; the JS sets `top` to the live bottom
     of the header on open so it always lands directly beneath it
     regardless of utility-bar visibility or scroll position. */
  .nav-links {
    position: fixed;
    top: var(--hdr-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    border-top: 1px solid var(--ink-100);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--s-6) var(--s-5);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
    z-index: 99;
    box-shadow: 0 18px 40px rgba(26, 31, 28, 0.08);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid var(--ink-100); }
  .nav-links a { display: block; padding: var(--s-5) 0; font-size: 1.7rem; font-weight: 700; }
  .nav-cta .btn-ghost { display: none; }
}

/* =============================================================
   Hero
   ============================================================= */
.hero {
  position: relative;
  padding: var(--s-8) 0 var(--s-9);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
}
.hero-copy h1 {
  margin-bottom: var(--s-5);
}
.hero-copy h1 .accent {
  font-style: italic;
  color: var(--blush-700);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.hero-copy .lead { max-width: 520px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5) var(--s-7);
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--ink-100);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta-item strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--sage-800);
  letter-spacing: -0.02em;
}
.hero-meta-item span {
  font-size: 0.82rem;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--blush-50);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 51, 41, 0.18));
}

.hero-badge {
  position: absolute;
  bottom: var(--s-5);
  left: var(--s-5);
  background: var(--paper);
  border-radius: 999px;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  display: flex; align-items: center; gap: var(--s-3);
  box-shadow: var(--shadow);
  z-index: 2;
}
.hero-badge .stars {
  background: var(--blush-700);
  color: white;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem;
}
.hero-badge .stars::before { content: "★"; }
.hero-badge-text { font-size: 0.82rem; line-height: 1.25; }
.hero-badge-text strong { color: var(--ink-900); display: block; font-weight: 600; }
.hero-badge-text span { color: var(--ink-500); }

.hero-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: -1;
}
.hero-blob--pink {
  width: 420px; height: 420px;
  background: var(--blush-100);
  top: -120px; right: -120px;
}
.hero-blob--sage {
  width: 360px; height: 360px;
  background: var(--blush-50);
  bottom: -160px; left: -160px;
  opacity: 0.7;
}

/* Circle-photo hero: portrait on the left, copy + CTA on the right,
   pink wood-plank parallax behind, soft wave at the bottom. */
.hero--circle {
  position: relative;
  padding: var(--s-7) 0 calc(var(--s-9) + 200px);
  overflow: hidden;
  /* Background lives on <body> so utility bar + header float over the
     same wood texture. Hero stays transparent. */
  background: transparent;
}
.hero--circle .hero-content h1 {
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-size: clamp(2.6rem, 5vw, 4rem);
}
.hero--circle .hero-content h1 .accent {
  color: white;
  font-style: normal;
  animation: none;
  display: block;
}
.hero--circle .hero-content h1 .accent::after { display: none; }
.hero--circle .hero-content .lead { color: rgba(255, 255, 255, 0.92); }
@media (max-width: 920px) {
  /* Fixed background-attachment is broken on iOS — fall back to
     scroll on small screens. */
  .hero--circle {
    background-attachment: scroll, scroll;
  }
}
.hero-circle-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-9);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-photo {
  margin: 0;
  display: flex;
  justify-content: center;
}
.hero-photo-circle {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 22px 50px rgba(26, 31, 28, 0.32);
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease);
}
.hero-photo-circle:hover { transform: rotate(0deg); }
.hero-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero slideshow — stacked photos that cross-fade. */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero--circle .hero-content { max-width: 540px; }
.hero--circle .hero-content h1 { margin-bottom: var(--s-5); }
.hero--circle .hero-content .lead { max-width: 50ch; }

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 240px;
  display: block;
  z-index: 0;
}
.hero-wave-fill { fill: var(--paper); }
.hero-wave-line {
  fill: none;
  stroke: var(--sage-400);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
  vector-effect: non-scaling-stroke;
}

@media (max-width: 920px) {
  .hero--circle {
    padding-top: var(--s-7);
    padding-bottom: calc(var(--s-9) + 60px);
  }
  .hero-circle-grid {
    grid-template-columns: 1fr;
    gap: var(--s-6);
    text-align: center;
  }
  .hero-photo { order: -1; }
  .hero-photo-circle {
    max-width: 280px;
    transform: rotate(-3deg);
    box-shadow: 0 16px 36px rgba(26, 31, 28, 0.3);
  }
  .hero--circle .hero-content { max-width: none; margin: 0 auto; }
  .hero--circle .hero-content .lead { margin-left: auto; margin-right: auto; }
  .hero--circle .hero-cta { justify-content: center; }
  .hero-wave { height: 70px; }
}

/* =============================================================
   Trust strip / Value pillars
   ============================================================= */
.pillars {
  background: var(--paper);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
@media (max-width: 860px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-5);
  border-radius: var(--radius);
  background: var(--cream);
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blush-50);
  color: var(--sage-800);
  display: grid; place-items: center;
}
.pillar h4 { margin: 0; font-family: var(--font-display); font-size: 1.18rem; font-weight: 500; }
.pillar p { margin: 0; color: var(--ink-700); font-size: 0.95rem; line-height: 1.5; }

/* Handwritten kicker line above any section h2, with a paw print sitting
   directly above the eyebrow text. */
.kicker {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--sage-700);
  transform: rotate(-2deg);
  margin-bottom: var(--s-3);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  position: relative;
}
.kicker {
  text-align: center;
}
.kicker::before {
  content: "🐾";
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  opacity: 0.6;
  margin: 0 auto 10px;
  transform: rotate(-12deg);
}
.kicker--sage { color: var(--brand-amber); }  /* used on dark/pink section bands */

/* =============================================================
   Section heading utility
   ============================================================= */
.section-heading {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: end;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}
.section-heading h2 { margin: 0; max-width: 22ch; }
.section-heading p { color: var(--ink-700); margin: 0; max-width: 44ch; justify-self: end; }
@media (max-width: 820px) {
  .section-heading { grid-template-columns: 1fr; }
  .section-heading p { justify-self: start; }
}

/* Anchored sections shouldn't sit under the sticky header (utility bar + header) */
section[id], [id="contact"] { scroll-margin-top: calc(var(--util-h, 0px) + var(--hdr-h) + 12px); }

/* =============================================================
   Services — creative-pricing aesthetic (handwritten, rotated cards,
   hard offset shadow). Visual port of the React component the user
   provided as inspiration.
   ============================================================= */
/* =============================================================
   Services — two-column price list
   ============================================================= */
.services-pricelist {
  background: var(--paper);
  padding: var(--s-9) 0;
}
.pricelist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: start;
}
@media (max-width: 760px) {
  .pricelist-grid {
    grid-template-columns: 1fr;
    gap: var(--s-7);
  }
}
.pricelist-col h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--brand-card-edge);
  margin: 0 0 var(--s-5);
  max-width: 14ch;
}
.pricelist-desc {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0 0 var(--s-6);
  max-width: 44ch;
}
.pricelist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricelist li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--ink-100);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-card-edge);
}
.pricelist li:first-child { border-top: 1px solid var(--ink-100); }
.pricelist-icon {
  flex: none;
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.pricelist .pricelist-name {
  flex: 1 1 auto;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}
.pricelist-tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  background: var(--neon-pink, #ff1f7e);
  color: white;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.pricelist .pricelist-price {
  flex: none;
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-card-edge);
  letter-spacing: -0.005em;
}

.pricelist-foot {
  margin-top: var(--s-9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  flex-wrap: wrap;
  padding-top: var(--s-6);
  border-top: 1px solid var(--ink-100);
}
.pricelist-note {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
  max-width: 60ch;
  flex: 1 1 320px;
}
@media (max-width: 600px) {
  .pricelist-foot { flex-direction: column; align-items: flex-start; }
}

/* General-purpose paw print sprinkles */
.paw {
  font-size: 1.8rem;
  opacity: 0.45;
  line-height: 1;
}
.paw.lg { font-size: 2.6rem; }
.paw.sm { font-size: 1.3rem; opacity: 0.55; }
.paw.r-15 { transform: rotate(15deg); }
.paw.r-30 { transform: rotate(30deg); }
.paw.r--15 { transform: rotate(-15deg); }
.paw.r--30 { transform: rotate(-30deg); }
.paw.r-45 { transform: rotate(45deg); }
.paw.r--45 { transform: rotate(-45deg); }

@media (max-width: 720px) {
  .creative-services .doodle,
  section .paw { display: none; }
}

.services {
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush-50) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ink-100);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blush-50);
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush-700);
  font-weight: 600;
  margin-bottom: var(--s-1);
}
.service-card h3 { margin: 0; font-size: 1.4rem; }
.service-card p { color: var(--ink-700); font-size: 0.95rem; margin: 0; }
.service-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: var(--s-3);
  border-top: 1px solid var(--ink-100);
  font-size: 0.9rem;
}
.service-price { font-weight: 600; color: var(--ink-900); }
.service-price small { color: var(--ink-500); font-weight: 500; }

/* =============================================================
   Process steps
   ============================================================= */
.process { background: var(--paper); color: var(--ink-700); position: relative; overflow: hidden; }
.process h2 { color: var(--brand-card-edge); }
.process .container { position: relative; z-index: 1; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-6);
  position: relative;
}
@media (max-width: 860px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding: var(--s-5);
  border-radius: 14px;
  background: var(--cream);
  border: 2px solid var(--brand-card-edge);
  box-shadow: 5px 5px 0 var(--brand-card-edge);
  color: var(--brand-card-edge);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.process-step:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--brand-card-edge);
}
.process-step:nth-child(4n+1) { transform: rotate(-1deg); }
.process-step:nth-child(4n+2) { transform: rotate(1deg); }
.process-step:nth-child(4n+3) { transform: rotate(-0.5deg); }
.process-step:nth-child(4n+4) { transform: rotate(1.5deg); }
.process-step:nth-child(4n+1):hover { transform: rotate(-1deg) translate(-3px, -3px); }
.process-step:nth-child(4n+2):hover { transform: rotate(1deg) translate(-3px, -3px); }
.process-step:nth-child(4n+3):hover { transform: rotate(-0.5deg) translate(-3px, -3px); }
.process-step:nth-child(4n+4):hover { transform: rotate(1.5deg) translate(-3px, -3px); }

.process-step h4 {
  color: var(--brand-card-edge);
  margin: var(--s-3) 0 var(--s-2);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.process-step p {
  color: var(--ink-700);
  font-size: 0.96rem;
  margin: 0;
}
.process-num {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blush-700);
  letter-spacing: 0;
}

/* =============================================================
   About founder
   ============================================================= */
.about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Two-column layout: manifesto left, polaroid + CTA right */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-9);
  align-items: start;
  position: relative;
}
@media (max-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--s-7);
  }
}

.about-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-6);
  /* Pull the polaroid up so its top aligns with the heading line */
  margin-top: var(--s-5);
}
@media (max-width: 920px) {
  .about-side { margin-top: 0; }
}

.about-signoff {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
  margin-top: var(--s-5);
}
.about-signoff .about-sig { margin: 0; }

.about-content {
  text-align: left;
}
.about-content h2 { max-width: 22ch; margin: 0 0 var(--s-5); }
.about-content .lead { max-width: 60ch; margin: 0 0 var(--s-5); }
.about-content .about-quote {
  text-align: left;
  max-width: 42ch;
  margin: var(--s-6) 0;
  position: relative;
}
.about-content .about-quote::before,
.about-content .about-quote::after {
  content: "";
  display: block;
  width: 48px; height: 1px;
  background: var(--blush-300);
  margin: var(--s-3) 0;
}
.about-content .about-credits { justify-content: flex-start; }

/* Side column: photo + CTA */
.about-side .about-cta {
  display: inline-flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: 0;
  justify-content: center;
}

/* Polaroid-style portrait */
.about-photo {
  margin: 0;
  padding: 18px 18px 22px;
  background: white;
  border: 1px solid var(--ink-100);
  box-shadow: 0 18px 40px rgba(26, 31, 28, 0.16);
  transform: rotate(3deg);
  transition: transform 0.4s var(--ease);
  align-self: center;
  max-width: 520px;
  width: 100%;
}
.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
}
.about-photo figcaption {
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand-card-edge);
  letter-spacing: 0.01em;
  line-height: 1;
}
.about-photo:hover { transform: rotate(1deg) translateY(-3px); }

@media (max-width: 920px) {
  .about-photo {
    max-width: 360px;
    transform: rotate(-2deg);
    margin: 0 auto;
  }
  .about-photo:hover { transform: rotate(-0.5deg) translateY(-3px); }
}

.about-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-900);
  margin: var(--s-6) 0;
  font-variation-settings: "SOFT" 100;
}
.about-sig {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blush-700);
  margin-top: var(--s-5);
}
.about-credits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.credit-pill {
  background: var(--blush-50);
  color: var(--sage-800);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* =============================================================
   Gallery
   ============================================================= */
.gallery { background: var(--paper); }

/* Instagram-feed styled grid */
.gallery-handle {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: var(--s-2);
}
.gallery-handle svg { width: 22px; height: 22px; fill: var(--blush-700); }
.gallery-handle:hover { color: var(--blush-700); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; } }

/* Instagram embed strip — 4 lightly-tilted tiles with breathing room.
   Comment row at the bottom of each card is clipped via clip-path. */
.gallery-wide {
  width: min(1440px, calc(100% - var(--s-5) * 2));
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.ig-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: var(--s-6);
  padding: var(--s-6) 0 var(--s-7);
}
.ig-grid .instagram-media {
  flex: 0 0 auto;
  width: 300px !important;
  min-width: 300px !important;
  max-width: 300px !important;
  margin: 0 !important;
  background: white !important;
  border-radius: 12px !important;
  border: 0 !important;
  box-shadow: 0 10px 26px rgba(26, 31, 28, 0.18) !important;
  position: relative;
  z-index: 1;
  transform-origin: center center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), z-index 0s;
}
.ig-grid .instagram-media:nth-child(1) { transform: rotate(-2.5deg) translateY(6px); }
.ig-grid .instagram-media:nth-child(2) { transform: rotate(1.5deg)  translateY(0); }
.ig-grid .instagram-media:nth-child(3) { transform: rotate(-1deg)   translateY(4px); }
.ig-grid .instagram-media:nth-child(4) { transform: rotate(2.5deg)  translateY(8px); }
.ig-grid .instagram-media:hover {
  transform: scale(1.12) translateY(-12px) rotate(0deg) !important;
  z-index: 20;
  box-shadow: 0 14px 36px rgba(26, 31, 28, 0.22),
              0 0 0 3px var(--neon-pink, #ff1f7e) !important;
}
/* Hide the "Add a comment..." footer row of the iframe by clipping the
   bottom 56px and pulling siblings up with a negative margin so the card
   visually shrinks to fit. */
.ig-grid .instagram-media iframe {
  min-width: 0 !important;
  width: 100% !important;
  border-radius: 12px !important;
  clip-path: inset(0 0 56px 0);
  margin-bottom: -56px !important;
}
@media (max-width: 1100px) {
  .ig-grid {
    flex-wrap: wrap;
    gap: var(--s-4);
    padding: var(--s-5) 0;
  }
  .ig-grid .instagram-media {
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    transform: none !important;
  }
  .ig-grid .instagram-media:hover {
    transform: translateY(-6px) !important;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--blush-50);
  cursor: zoom-in;
  padding: 0;
  border: 0;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
/* IG overlays removed — clean photo tiles only */
.gallery-item .ig-overlay, .gallery-item .ig-stack { display: none; }

.gallery-follow {
  margin-top: var(--s-7);
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}
.gallery-follow .btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 1.7rem;
  line-height: 1;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: white;
  background: var(--neon-pink);
  transition: transform 0.18s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.gallery-follow .btn-social:hover {
  transform: translateY(-2px);
  background: var(--neon-pink-strong);
  color: white;
}
.gallery-follow .btn-social svg { width: 20px; height: 20px; fill: white; flex: none; }
.gallery-follow .btn-social--fb {
  background: var(--brand-card-edge);
}
.gallery-follow .btn-social--fb:hover {
  background: #2a2f2c;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 31, 28, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: var(--s-6);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: var(--s-5); right: var(--s-5);
  width: 48px; height: 48px;
  background: var(--paper);
  border-radius: 50%;
  font-size: 1.4rem;
  display: grid; place-items: center;
}

/* =============================================================
   Hero Google reviews badge
   ============================================================= */
.hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 22px rgba(26, 31, 28, 0.22);
  color: var(--brand-card-edge);
  text-decoration: none;
  transition: transform 0.18s var(--ease), box-shadow 0.2s var(--ease);
  font-family: var(--font-display);
}
.hero-google-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 31, 28, 0.28);
  color: var(--brand-card-edge);
}
.hero-google-badge .g-stars {
  color: #f4b400;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
.hero-google-badge .g-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
}
.hero-google-badge .g-text strong {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand-card-edge);
}
.hero-google-badge .g-text span {
  font-size: 0.78rem;
  color: var(--ink-500);
  font-weight: 500;
}

/* =============================================================
   Service area
   ============================================================= */
.area { background: var(--cream); position: relative; overflow: hidden; }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 880px) { .area-grid { grid-template-columns: 1fr; } }

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: var(--s-5);
}
.area-city {
  display: inline-block;
  padding: 0.5rem 1.05rem;
  background: var(--cream);
  border: 2px solid var(--brand-card-edge);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand-card-edge);
  box-shadow: 3px 3px 0 var(--brand-card-edge);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}
.area-city:nth-child(odd)  { transform: rotate(-1.5deg); }
.area-city:nth-child(even) { transform: rotate(1.5deg); }
.area-city:nth-child(3n)   { transform: rotate(-0.5deg); }
.area-city:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--brand-card-edge);
  background: white;
}
.area-city::before { display: none; }

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* =============================================================
   FAQ
   ============================================================= */
.faq { background: var(--paper); position: relative; overflow: hidden; }
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--ink-100);
}
.faq-item:first-child { border-top: 1px solid var(--ink-100); }
.faq-item > summary { list-style: none; }
.faq-item > summary::-webkit-details-marker { display: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--brand-card-edge);
  text-align: left;
  letter-spacing: -0.01em;
  cursor: pointer;
  font-variation-settings: "SOFT" 50;
}
.faq-q:hover { color: var(--neon-pink, #ff1f7e); }

.faq-q .icon {
  flex: none;
  width: 22px;
  height: 22px;
  background: transparent;
  border-radius: 0;
  color: var(--brand-card-edge);
  display: inline-block;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.faq-q:hover .icon { color: var(--neon-pink, #ff1f7e); }
.faq-item[open] > .faq-q { color: var(--neon-pink, #ff1f7e); }
.faq-item[open] .faq-q .icon {
  transform: rotate(180deg);
  color: var(--neon-pink, #ff1f7e);
}

.faq-a-inner p {
  padding: 0 0 var(--s-5);
  color: var(--ink-700);
  margin: 0;
  max-width: 64ch;
  animation: faqOpen 0.35s var(--ease);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* =============================================================
   Final CTA
   ============================================================= */
.final-cta {
  background: var(--cream);
  color: var(--ink-700);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  color: var(--brand-card-edge);
  max-width: 18ch;
  margin: 0 auto var(--s-4);
}
.final-cta p { color: var(--ink-700); max-width: 50ch; margin: 0 auto var(--s-6); font-size: 1.1rem; }

.final-cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
}

/* =============================================================
   Footer / Contact — green-wood parallax with reverse wave
   ============================================================= */
.contact {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  padding: calc(var(--s-9) + 100px) 0 var(--s-6);
  border-top: 0;
  background-color: #2c3a2f;
  background-image:
    linear-gradient(180deg, rgba(20, 36, 26, 0.55), rgba(20, 36, 26, 0.7)),
    url('green-wood.jpg');
  background-size: cover, cover;
  background-position: center top, center top;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
}
@media (max-width: 920px) {
  .contact { background-attachment: scroll, scroll; }
}
.contact .container { position: relative; z-index: 1; }
.contact h2, .contact h4 { color: white; }

/* Reverse wave: points DOWN from the previous section into the footer.
   Sits at the top of the footer; fill matches the previous section
   (--cream from .final-cta) so the wave looks like the prior section
   pouring down into the wood. */
.contact-wave {
  position: absolute;
  top: -1px; left: 0; right: 0;
  width: 100%;
  height: 200px;
  display: block;
  pointer-events: none;
  z-index: 0;
}
.contact-wave-fill { fill: var(--cream); }
.contact-wave-line {
  fill: none;
  stroke: var(--sage-400);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.55;
  vector-effect: non-scaling-stroke;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
@media (max-width: 540px) { .contact-grid { grid-template-columns: 1fr; } }

.contact h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: var(--s-4);
  color: var(--neon-pink, #ff1f7e);
}
.contact ul { list-style: none; padding: 0; margin: 0; }
.contact ul li { margin-bottom: var(--s-3); color: rgba(255, 255, 255, 0.82); }
.contact a { color: rgba(255, 255, 255, 0.88); }
.contact a:hover { color: white; }

.contact .hours-block dt { color: rgba(255, 255, 255, 0.6); }
.contact .hours-block dd { color: white; }

.contact-brand .brand { display: inline-block; }
.contact-brand .brand-logo {
  width: clamp(160px, 22vw, 240px);
  height: auto;
  filter: brightness(0) invert(1);
}
.contact-brand p {
  margin-top: var(--s-5);
  color: rgba(255, 255, 255, 0.78);
  max-width: 36ch;
  font-size: 0.98rem;
  line-height: 1.6;
}

.socials { display: flex; gap: 14px; margin-top: var(--s-5); }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--neon-pink, #ff1f7e);
  border-radius: 999px;
  padding: 0;
  width: 40px;
  height: 40px;
  transition: background 0.2s var(--ease), transform 0.18s var(--ease);
}
.socials a:hover { background: var(--neon-pink-strong, #ff0066); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }

.contact-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  padding-top: var(--s-5);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}
.contact-foot a { color: rgba(255, 255, 255, 0.78); }
.contact-foot ul {
  display: flex; gap: var(--s-5);
  list-style: none; padding: 0; margin: 0;
}

/* =============================================================
   Page Hero (subpage banner)
   ============================================================= */
.page-hero {
  padding: var(--s-8) 0 var(--s-7);
  background: linear-gradient(180deg, var(--blush-50) 0%, var(--cream) 100%);
  text-align: center;
}
.page-hero h1 { max-width: 18ch; margin: 0 auto var(--s-4); }
.page-hero p { max-width: 56ch; margin: 0 auto; font-size: 1.1rem; color: var(--ink-700); }

/* =============================================================
   Service detail blocks (services page)
   ============================================================= */
.svc-detail { padding: var(--s-9) 0; border-bottom: 1px solid var(--ink-100); }
.svc-detail:nth-of-type(odd) { background: var(--cream); }
.svc-detail:nth-of-type(even) { background: var(--paper); }

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-8);
  align-items: center;
}
.svc-detail:nth-of-type(even) .svc-detail-grid { direction: rtl; }
.svc-detail:nth-of-type(even) .svc-detail-grid > * { direction: ltr; }
@media (max-width: 880px) {
  .svc-detail-grid, .svc-detail:nth-of-type(even) .svc-detail-grid { grid-template-columns: 1fr; direction: ltr; }
}

.svc-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--blush-50);
}
.svc-detail-img img { width: 100%; height: 100%; object-fit: cover; }

.svc-detail h3 { font-size: clamp(1.7rem, 2.4vw, 2.2rem); margin-bottom: var(--s-3); }
.svc-detail .lead { margin-bottom: var(--s-5); }

.svc-includes {
  list-style: none;
  padding: 0;
  margin: var(--s-2) 0 var(--s-5);
  border-top: 1px solid var(--ink-100);
}
.svc-includes li {
  font-size: 0.98rem;
  color: var(--ink-700);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--ink-100);
}

.svc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin: var(--s-5) 0;
  padding: var(--s-4);
  background: var(--sage-50);
  border-radius: var(--radius);
  border: 1px solid var(--sage-100);
}
.svc-meta-item { display: flex; flex-direction: column; gap: 2px; padding-right: var(--s-5); border-right: 1px solid var(--sage-100); }
.svc-meta-item:last-child { border-right: 0; padding-right: 0; }
.svc-meta-item small {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-700);
  font-weight: 600;
}
.svc-meta-item strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink-900); }

/* =============================================================
   Animations
   ============================================================= */
/* =============================================================
   Scroll & load reveal animations — slow, cinematic, local-biz charm
   ============================================================= */
:root {
  --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal-dur: 1.25s;
}

.reveal {
  opacity: 0;
  transition: opacity var(--reveal-dur) var(--reveal-ease),
              transform var(--reveal-dur) var(--reveal-ease);
}
.reveal.is-visible { opacity: 1; }

/* Plain prose / images / buttons also slide up; cards just fade so
   their rotations stay intact. */
.reveal:not(.tier):not(.process-step):not(.t-card):not(.area-city):not(.gallery-item) {
  transform: translateY(40px);
}
.reveal:not(.tier):not(.process-step):not(.t-card):not(.area-city):not(.gallery-item).is-visible {
  transform: translateY(0);
}

/* Hero circle photo: swipe in from the left on page load.
   Uses a CSS animation rather than IntersectionObserver because a -120%
   transform takes the element off-screen and the observer never fires. */
.hero-photo {
  animation: hero-swipe-in 1.1s var(--reveal-ease) both;
}
@keyframes hero-swipe-in {
  from { transform: translateX(-120%); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: none; }
}

/* Stagger children inside grids — bigger gaps so the cascade reads
   like a deliberate sequence rather than a snap-in. */
.pro-grid > .reveal:nth-child(1),
.process-grid > .reveal:nth-child(1),
.testimonials-grid > .reveal:nth-child(1) { transition-delay: 0ms; }
.pro-grid > .reveal:nth-child(2),
.process-grid > .reveal:nth-child(2),
.testimonials-grid > .reveal:nth-child(2) { transition-delay: 140ms; }
.pro-grid > .reveal:nth-child(3),
.process-grid > .reveal:nth-child(3),
.testimonials-grid > .reveal:nth-child(3) { transition-delay: 280ms; }
.pro-grid > .reveal:nth-child(4),
.process-grid > .reveal:nth-child(4) { transition-delay: 420ms; }
.pro-grid > .reveal:nth-child(5) { transition-delay: 560ms; }
.pro-grid > .reveal:nth-child(6) { transition-delay: 700ms; }

.gallery-grid > .reveal:nth-child(1) { transition-delay: 0ms; }
.gallery-grid > .reveal:nth-child(2) { transition-delay: 90ms; }
.gallery-grid > .reveal:nth-child(3) { transition-delay: 180ms; }
.gallery-grid > .reveal:nth-child(4) { transition-delay: 270ms; }
.gallery-grid > .reveal:nth-child(5) { transition-delay: 360ms; }
.gallery-grid > .reveal:nth-child(6) { transition-delay: 450ms; }
.gallery-grid > .reveal:nth-child(7) { transition-delay: 540ms; }
.gallery-grid > .reveal:nth-child(8) { transition-delay: 630ms; }

.area-cities .area-city.reveal:nth-child(1) { transition-delay: 0ms; }
.area-cities .area-city.reveal:nth-child(2) { transition-delay: 110ms; }
.area-cities .area-city.reveal:nth-child(3) { transition-delay: 220ms; }
.area-cities .area-city.reveal:nth-child(4) { transition-delay: 330ms; }
.area-cities .area-city.reveal:nth-child(5) { transition-delay: 440ms; }
.area-cities .area-city.reveal:nth-child(6) { transition-delay: 550ms; }
.area-cities .area-city.reveal:nth-child(7) { transition-delay: 660ms; }
.area-cities .area-city.reveal:nth-child(8) { transition-delay: 770ms; }

/* Hero load-in sequence — slower, more deliberate timing */
.hero-content > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s var(--reveal-ease),
              transform 1.2s var(--reveal-ease);
}
.hero-content.is-visible > h1 { opacity: 1; transform: none; transition-delay: 0.85s; }
.hero-content.is-visible > .lead { opacity: 1; transform: none; transition-delay: 1.25s; }
.hero-content.is-visible > .hero-cta { opacity: 1; transform: none; transition-delay: 1.65s; }

/* On-load animation for the top of the page: utility bar slides down,
   then header fades in, then the hero takes over. */
.utility-bar {
  animation: util-slide 1.05s var(--reveal-ease) 0.05s both;
}
.site-header {
  animation: header-fade 1.1s var(--reveal-ease) 0.35s both;
}
@keyframes util-slide {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Keep this animation transform-free — any non-`none` transform on
   .site-header creates a stacking/containing-block context that
   breaks the fixed-positioned mobile menu inside it. */
@keyframes header-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Tier-popular badge pops in with a bouncy scale, slower entry */
.tier.is-visible .tier-popular {
  animation: pop-in 0.95s cubic-bezier(0.34, 1.56, 0.64, 1) 0.85s both;
}

/* The accent word "happy" gives a slow, gentle wag — keyframes start
   and end at rest (0deg) so there's no snap-in when the animation
   kicks off. */
.hero-content h1 .accent {
  display: inline-block;
  transform-origin: bottom center;
  animation: wag 3.6s ease-in-out 2.6s infinite;
  will-change: transform;
}

/* Decorative paws bob gently — uses CSS `translate` so we don't fight
   any rotation set inline. */
.paw,
.testimonials .doodle {
  animation: paw-bob 5s ease-in-out infinite;
}
.paw.r-15, .paw.r-30, .paw.r-45 { animation-name: paw-bob-pos; }
.paw:nth-of-type(2n) { animation-delay: 1.7s; animation-duration: 6.2s; }
.paw:nth-of-type(3n) { animation-delay: 0.8s; animation-duration: 5.5s; }

@keyframes paw-bob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -5px; }
}
@keyframes paw-bob-pos {
  0%, 100% { translate: 0 0; }
  50%      { translate: 2px -6px; }
}
@keyframes pop-in {
  0%   { opacity: 0; transform: rotate(-12deg) scale(0.5); }
  60%  { opacity: 1; transform: rotate(12deg) scale(1.12); }
  100% { opacity: 1; transform: rotate(8deg) scale(1); }
}
@keyframes wag {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(-3deg); }
  75%      { transform: rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-content > * { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  .paw,
  .testimonials .doodle,
  .hero-content h1 .accent,
  .tier.is-visible .tier-popular { animation: none; }
}

/* =============================================================
   Utilities
   ============================================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: var(--s-4);
  top: var(--s-4);
  background: var(--paper);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-sm);
  z-index: 999;
}
