/* ════════════════════════════════════════════════════
   VIVERE FRAMEWORK — styles.css v1 — ProScape Lawn Care
   Brand: lawn green #2d5a27 · deep green #16321a · beautician rose #b05a72
   ════════════════════════════════════════════════════ */

:root {
  /* Brand */
  --green:        #2d5a27;
  --green-deep:   #16321a;
  --green-mid:    #3d7a35;
  --accent:       #b05a72;   /* beautician rose */
  --accent-dark:  #8f4459;
  --accent-light: #d383a0;
  --gold:         #c9a227;
  --gold-light:   #e8d48a;

  /* Neutrals */
  --black-950:    #14170f;
  --ink:          #1c1c1c;
  --muted:        #55584f;
  --line:         rgba(22,50,26,0.12);
  --line-strong:  rgba(22,50,26,0.22);
  --cream:        #faf8f2;
  --cream-2:      #f2efe4;
  --white:        #ffffff;

  /* Semantic */
  --bg:           #ffffff;
  --bg-alt:       var(--cream);
  --fg:           var(--ink);
  --fg-soft:      var(--muted);

  --glass-bg:     rgba(255,255,255,0.75);
  --glass-line:   rgba(255,255,255,0.6);
  --blur:         14px;

  --space-xs: 0.25rem; --space-sm: 0.5rem; --space-md: 1rem;
  --space-lg: 1.5rem;  --space-xl: 2rem;   --space-2xl: 3rem;
  --space-3xl: 4rem;   --space-4xl: 6rem;
  --section-pad-y: clamp(3.5rem, 6.5vw, 6.5rem);

  --font-main:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --font-fun:     'Caveat', cursive;
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.6vw, 1.3rem);
  --text-xl:   clamp(1.3rem, 1.1rem + 0.85vw, 1.6rem);
  --text-2xl:  clamp(1.6rem, 1.3rem + 1.4vw, 2.25rem);
  --text-3xl:  clamp(2rem, 1.5rem + 2.6vw, 3.25rem);
  --text-4xl:  clamp(2.6rem, 1.8rem + 3.6vw, 4.5rem);

  --radius-sm: 0.6rem;
  --radius:    1.1rem;
  --radius-xl: 1.75rem;
  --shadow-sm: 0 1px 3px rgba(20,40,26,0.08);
  --shadow-md: 0 8px 24px -8px rgba(20,40,26,0.18);
  --shadow-lg: 0 22px 50px -18px rgba(20,40,26,0.28);
  --shadow-glow: 0 18px 48px -16px rgba(176,90,114,0.4);
  --transition: all 0.3s cubic-bezier(0.22,0.61,0.36,1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; scroll-padding-top: 84px; }
body {
  position: relative;
  font-family: var(--font-main);
  font-size: var(--text-base);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(60vw 60vw at 88% -8%, rgba(176,90,114,0.09), transparent 60%),
    radial-gradient(50vw 50vw at -10% 15%, rgba(45,90,39,0.10), transparent 60%),
    radial-gradient(70vw 70vw at 50% 120%, rgba(22,50,26,0.07), transparent 60%);
  pointer-events: none; z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ── A11Y ── */
.skip-link {
  position: absolute; top: -120px; left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--green-deep); color: #fff; font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); z-index: 200;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ── SCROLL PROGRESS ── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--green), var(--accent)); z-index: 999; transition: width .1s linear; }

/* ── SEASONAL RIBBON ── */
.seasonal-ribbon {
  display: block; background: var(--green-deep); color: #fff; text-align: center;
  font-size: var(--text-sm); font-weight: 600; padding: 0.55em 1em;
  border-bottom: 2px solid var(--accent);
}
.seasonal-ribbon:hover { background: var(--green); }
.seasonal-ribbon .ribbon-arrow { margin-left: .3em; }

/* ── NAVBAR ── */
.navbar { position: sticky; top: 0; z-index: 150; background: var(--glass-bg); backdrop-filter: blur(var(--blur)); border-bottom: 1px solid var(--line); transition: var(--transition); }
.navbar.is-scrolled { box-shadow: var(--shadow-sm); }
.navbar-inner { max-width: 1240px; margin: 0 auto; padding: 0.75rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; position: relative; }
.navbar-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--green-deep); }
.navbar-brand .mascot-tiny { width: 38px; height: 38px; }
.navbar-desktop { display: none; align-items: center; gap: 1.75rem; font-weight: 600; font-size: var(--text-sm); }
.navbar-desktop a { color: var(--fg); padding: .4rem 0; border-bottom: 2px solid transparent; transition: var(--transition); }
.navbar-desktop a:hover, .navbar-desktop a[aria-current="page"] { color: var(--green); border-bottom-color: var(--accent); }
.navbar-desktop a.nav-cta { background: var(--accent); color: #fff; padding: .55rem 1.2rem; border-radius: 999px; border: none; }
.navbar-desktop a.nav-cta:hover { background: var(--accent-dark); border: none; }
.navbar-toggle { display: flex; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav-bar { width: 22px; height: 2px; background: var(--green-deep); border-radius: 2px; transition: var(--transition); }
.navbar-toggle[aria-expanded="true"] .nav-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle[aria-expanded="true"] .nav-bar:nth-child(2) { opacity: 0; }
.navbar-toggle[aria-expanded="true"] .nav-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar-mobile { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--line); padding: .5rem 1.25rem 1rem; }
.navbar-mobile.is-open { display: flex; }
.navbar-mobile a { padding: .75rem 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.navbar-mobile a:last-child { border-bottom: none; }
@media (min-width: 900px) {
  .navbar-desktop { display: flex; }
  .navbar-toggle { display: none; }
  .navbar-mobile { display: none !important; }
}

/* ── HERO ── */
.hero { position: relative; min-height: min(88vh, 780px); display: flex; align-items: center; overflow: hidden; background: linear-gradient(160deg, var(--green-deep), var(--green) 65%); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; pointer-events: none; }
.hero-blob--rose { width: 34vw; height: 34vw; background: var(--accent); top: -10%; right: -6%; }
.hero-blob--gold { width: 26vw; height: 26vw; background: var(--gold-light); bottom: -12%; left: -8%; opacity: .25; }
.hero-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: clamp(3rem,8vw,5rem) 1.25rem; color: #fff; }
.hero-badge { display: inline-flex; align-items: center; gap: .5em; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); padding: .4em 1em; border-radius: 999px; font-size: var(--text-sm); font-weight: 600; margin-bottom: 1.25rem; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); }
.hero-headline { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 700; line-height: 1.05; margin-bottom: 1rem; max-width: 15ch; }
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: var(--text-lg); max-width: 42ch; opacity: .92; margin-bottom: .5rem; }
.hero-tagline { font-family: var(--font-fun); font-size: var(--text-xl); color: var(--gold-light); margin-bottom: 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-mascot { position: absolute; right: 3%; bottom: 0; width: clamp(120px,16vw,220px); z-index: 2; filter: drop-shadow(0 12px 24px rgba(0,0,0,.3)); }
@media (max-width: 700px) { .hero-mascot { display: none; } }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: .85em 1.75em; border-radius: 999px; font-weight: 700; font-size: var(--text-sm); transition: var(--transition); white-space: nowrap; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-glow); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--ghost-dark { background: transparent; color: var(--green-deep); border: 2px solid var(--line-strong); }
.btn--ghost-dark:hover { border-color: var(--green); color: var(--green); }
.btn--block { width: 100%; }
.btn--sm { padding: .6em 1.3em; font-size: var(--text-xs); }

/* ── SECTIONS ── */
.section { padding: var(--section-pad-y) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--green-deep); color: #fff; }
.section--dark .section-lead { color: rgba(255,255,255,0.8); }
.section--warm { background: linear-gradient(160deg, #fbeef1, var(--cream)); }
.section-inner { max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }
.section-head { max-width: 46ch; margin-bottom: 2.5rem; }
.section-head.center { max-width: 60ch; margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow { display: inline-block; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: var(--text-xs); color: var(--accent); margin-bottom: .6rem; }
.section--dark .section-eyebrow { color: var(--gold-light); }
.section-title { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; line-height: 1.1; }
.section-title em { color: var(--accent); font-style: italic; }
.section--dark .section-title em { color: var(--gold-light); }
.section-lead { color: var(--fg-soft); font-size: var(--text-lg); margin-top: .75rem; }

/* ── SCROLL REVEAL (staggered) ── */
.scroll-fade-up { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); transition-delay: var(--stagger, 0ms); }
.scroll-fade-up.is-visible { opacity: 1; transform: translateY(0); }
.services-grid > :nth-child(1), .difference-grid > :nth-child(1), .testimonials > :nth-child(1), .makeover-strip > :nth-child(1), .area-grid > :nth-child(1) { --stagger: 0ms; }
.services-grid > :nth-child(2), .difference-grid > :nth-child(2), .testimonials > :nth-child(2), .makeover-strip > :nth-child(2), .area-grid > :nth-child(2) { --stagger: 90ms; }
.services-grid > :nth-child(3), .difference-grid > :nth-child(3), .testimonials > :nth-child(3), .makeover-strip > :nth-child(3), .area-grid > :nth-child(3) { --stagger: 180ms; }
.services-grid > :nth-child(4), .difference-grid > :nth-child(4), .area-grid > :nth-child(4) { --stagger: 270ms; }
.services-grid > :nth-child(5) { --stagger: 360ms; }
@media (prefers-reduced-motion: reduce) { .scroll-fade-up { transition-delay: 0ms !important; } }

/* ── MOWED-EDGE SECTION DIVIDER (on-brand alternative to generic waves) ── */
.turf-divider { line-height: 0; position: relative; z-index: 2; }
.turf-divider svg { width: 100%; height: 34px; display: block; }
.turf-divider--flip svg { transform: scaleY(-1); }

/* ── MAGNETIC BUTTON + TILT (JS-driven transform target) ── */
.btn--primary, .btn--green { transition: transform .25s cubic-bezier(.22,.61,.36,1), background .25s, box-shadow .25s; will-change: transform; }
.service-card, .testimonial-card, .area-card { will-change: transform; transform-style: preserve-3d; }

/* ── COUNT-UP STAT ── */
.trust-stat-num .count-target { display: inline; }

/* ── STAT / TRUST BAND ── */
.trust-band { background: linear-gradient(135deg, var(--green-deep), var(--green)); color: #fff; }
.trust-band-inner { max-width: 1240px; margin: 0 auto; padding: 2rem 1.25rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.trust-stat-num { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--gold-light); }
.trust-stat-lbl { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .06em; opacity: .85; margin-top: .35rem; }
@media (max-width: 700px) { .trust-band-inner { grid-template-columns: repeat(2,1fr); } }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 1.5rem; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: var(--transition); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--accent); }
.service-card .icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.service-card h3 { font-family: var(--font-display); font-size: var(--text-lg); margin-bottom: .4rem; color: var(--green-deep); }
.service-card p { color: var(--fg-soft); font-size: var(--text-sm); margin-bottom: .75rem; }
.service-card .details-link { font-weight: 700; font-size: var(--text-sm); color: var(--accent); }
.service-card--seasonal { background: linear-gradient(160deg, #fbeef1, var(--white)); border-color: var(--accent); }

/* Bento variant: first card featured (spans 2 rows) on wide screens for visual rhythm */
@media (min-width: 900px) {
  .services-grid--bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(140px, auto); }
  .services-grid--bento > :first-child { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(160deg, var(--green-deep), var(--green)); color: #fff; border-color: var(--green-deep); }
  .services-grid--bento > :first-child h3 { color: #fff; }
  .services-grid--bento > :first-child p { color: rgba(255,255,255,0.85); }
  .services-grid--bento > :first-child .details-link { color: var(--gold-light); }
  .services-grid--bento > :first-child:hover { transform: translateY(-4px) scale(1.01); }
}

/* ── BENTO / DIFFERENCE COLUMNS ── */
.difference-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.5rem; }
.difference-card { text-align: center; padding: 2rem 1.25rem; }
.difference-card .icon-circle { width: 64px; height: 64px; border-radius: 50%; background: rgba(176,90,114,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 1rem; }
.difference-card h3 { font-family: var(--font-display); font-size: var(--text-lg); margin-bottom: .5rem; }
.difference-card p { color: var(--fg-soft); font-size: var(--text-sm); }

/* ── MAKEOVER STRIP (before/after) ── */
.makeover-strip { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.5rem; }
.makeover-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: var(--white); }
.ba-slider { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: ew-resize; user-select: none; }
.ba-slider .ba-before, .ba-slider .ba-after { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: #fff; }
.ba-slider .ba-before { background: linear-gradient(135deg,#8a7355,#a89370); }
.ba-slider .ba-after { background: linear-gradient(135deg,var(--green),var(--green-mid)); clip-path: inset(0 0 0 50%); }
.ba-slider .ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.4); transform: translateX(-2px); }
.ba-slider .ba-handle::after { content: '◂▸'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: #fff; color: var(--green-deep); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; box-shadow: var(--shadow-md); }
.makeover-caption { padding: 1rem 1.25rem; }
.makeover-caption h4 { font-family: var(--font-display); font-size: var(--text-base); color: var(--green-deep); }
.makeover-caption p { font-size: var(--text-xs); color: var(--fg-soft); }

/* ── TESTIMONIALS ── */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.testimonial-stars { color: var(--gold); font-size: var(--text-lg); margin-bottom: .6rem; letter-spacing: .1em; }
.testimonial-card blockquote { font-style: italic; color: var(--ink); margin-bottom: 1rem; }
.testimonial-card figcaption { font-weight: 700; color: var(--green-deep); font-size: var(--text-sm); }
.testimonial-card figcaption span { font-weight: 400; color: var(--fg-soft); }

/* ── AREA MAP ── */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.25rem; }
.area-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: var(--transition); }
.area-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.area-card .pin { font-size: 1.75rem; }
.area-card h3 { font-family: var(--font-display); margin: .5rem 0 .25rem; color: var(--green-deep); }
.area-card p { font-size: var(--text-xs); color: var(--fg-soft); }

/* ── SALON MENU (services.html) ── */
.menu-item { display: grid; grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.menu-item-head h3 { font-family: var(--font-display); font-size: var(--text-xl); color: var(--green-deep); }
.menu-item-price { font-family: var(--font-display); font-weight: 700; color: var(--accent); white-space: nowrap; }
.menu-item-sub { font-family: var(--font-fun); color: var(--accent); font-size: var(--text-lg); }
.menu-item p { color: var(--fg-soft); margin: .5rem 0 1rem; max-width: 60ch; }
.menu-item-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: var(--text-xs); color: var(--fg-soft); margin-bottom: 1rem; }
.menu-item-meta span { background: var(--cream-2); padding: .3em .8em; border-radius: 999px; }
.menu-item-media img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
@media (min-width: 760px) { .menu-item.has-media { grid-template-columns: 240px 1fr; align-items: center; } }
.town-hero { position: relative; overflow: hidden; }
.town-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.town-hero .section-inner { position: relative; z-index: 1; }

/* ── QUOTE FORM WIZARD ── */
.wizard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: clamp(1.5rem,4vw,2.75rem); max-width: 640px; margin: 0 auto; }
.wizard-progress { display: flex; gap: .4rem; margin-bottom: 1.75rem; }
.wizard-progress span { flex: 1; height: 5px; border-radius: 999px; background: var(--line); transition: var(--transition); }
.wizard-progress span.is-active, .wizard-progress span.is-done { background: var(--accent); }
.wizard-step { display: none; }
.wizard-step.is-active { display: block; animation: wizFade .35s ease; }
@keyframes wizFade { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }
.wizard-step h3 { font-family: var(--font-display); font-size: var(--text-xl); color: var(--green-deep); margin-bottom: .35rem; }
.wizard-step .wizard-hint { color: var(--fg-soft); font-size: var(--text-sm); margin-bottom: 1.25rem; }
.wizard-options { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: .75rem; margin-bottom: 1.5rem; }
.wizard-option { border: 2px solid var(--line); border-radius: var(--radius); padding: 1rem .75rem; text-align: center; font-weight: 600; font-size: var(--text-sm); transition: var(--transition); }
.wizard-option .opt-icon { display: block; font-size: 1.5rem; margin-bottom: .4rem; }
.wizard-option:hover { border-color: var(--accent-light); }
.wizard-option.is-selected { border-color: var(--accent); background: rgba(176,90,114,0.08); color: var(--accent-dark); }
.wizard-field { margin-bottom: 1.25rem; }
.wizard-field label { display: block; font-weight: 600; font-size: var(--text-sm); margin-bottom: .4rem; color: var(--green-deep); }
.wizard-field input, .wizard-field textarea { width: 100%; padding: .8em 1em; border: 2px solid var(--line); border-radius: var(--radius-sm); font-size: var(--text-base); transition: var(--transition); }
.wizard-field input:focus, .wizard-field textarea:focus { border-color: var(--accent); outline: none; }
.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; gap: 1rem; }
.wizard-nav .btn { flex: 1; }
.wizard-back { background: transparent; color: var(--fg-soft); font-weight: 600; font-size: var(--text-sm); flex: 0 0 auto !important; }
.wizard-confirm { text-align: center; padding: 1rem 0; }
.wizard-confirm .confirm-icon { font-size: 3rem; margin-bottom: 1rem; }
.wizard-confirm h3 { font-family: var(--font-display); font-size: var(--text-xl); color: var(--green-deep); margin-bottom: .5rem; }
.wizard-confirm p { color: var(--fg-soft); }
.form-msg { font-size: var(--text-sm); margin-top: .75rem; min-height: 1.2em; }
.form-msg.err { color: #b03030; } .form-msg.ok { color: var(--green); }

/* ── FAQ ACCORDION ── */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; font-weight: 700; font-family: var(--font-display); font-size: var(--text-base); color: var(--green-deep); text-align: left; }
.faq-q .faq-icon { transition: var(--transition); font-size: 1.2rem; color: var(--accent); }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--fg-soft); }
.faq-item.is-open .faq-a { max-height: 300px; }
.faq-a-inner { padding-bottom: 1.25rem; }

/* ── SPLIT LAYOUT ── */
.split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.split-media img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.split-body h2 { font-family: var(--font-display); font-size: var(--text-2xl); margin-bottom: 1rem; color: var(--green-deep); }
.split-body p { color: var(--fg-soft); margin-bottom: 1rem; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } .split--rev .split-media { order: 2; } }

/* ── PLACEHOLDER IMAGE BLOCK (Phase 0: no client photos yet) ── */
.ph-img { background: linear-gradient(135deg, var(--cream-2), var(--line)); border: 2px dashed var(--line-strong); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--fg-soft); font-size: var(--text-xs); font-weight: 600; padding: 1rem; min-height: 180px; }

/* ── PULL QUOTE ── */
.pull-quote { padding: var(--section-pad-y) 0; text-align: center; }
.pull-quote--dark { background: var(--green-deep); color: #fff; }
.pull-quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--accent); line-height: 1; }
.pull-quote-text { font-family: var(--font-display); font-size: var(--text-2xl); max-width: 30ch; margin: 0 auto 1rem; }
.pull-quote-attr { opacity: .75; font-size: var(--text-sm); }

/* ── FOOTER ── */
.footer { background: var(--black-950); color: rgba(255,255,255,0.85); padding: var(--space-3xl) 0 var(--space-lg); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand-name { font-family: var(--font-display); font-size: var(--text-xl); color: #fff; }
.footer-brand-sub { color: var(--gold-light); font-size: var(--text-sm); }
.footer-tagline { margin-top: .75rem; max-width: 40ch; font-size: var(--text-sm); opacity: .8; }
.footer-address p { font-size: var(--text-sm); margin-bottom: .5rem; }
.footer-social { display: inline-block; font-size: var(--text-sm); color: var(--gold-light); margin-top: .25rem; }
.footer-areas { display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin-top: .75rem; font-size: var(--text-xs); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; padding: 1.5rem 0; font-size: var(--text-sm); }
.footer-legal { padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: var(--text-xs); opacity: .75; }
.footer-legal-links { display: flex; gap: 1rem; margin-top: .5rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; padding-top: 1rem; font-size: var(--text-xs); opacity: .7; }
.footer-bottom a { text-decoration: underline; }
@media (min-width: 700px) { .footer-top { grid-template-columns: 1.4fr 1fr; } }

/* ── BACK TO TOP + MOBILE CTA ── */
.to-top { position: fixed; right: 1.1rem; bottom: 1.1rem; width: 46px; height: 46px; border-radius: 50%; background: var(--green-deep); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(10px); transition: var(--transition); z-index: 120; }
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; display: flex; gap: .5rem; padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); z-index: 110; transform: translateY(100%); transition: var(--transition); }
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta-btn { flex: 1; text-align: center; padding: .75em; border-radius: 999px; font-weight: 700; font-size: var(--text-sm); }
.mobile-cta-btn--solid { background: var(--accent); color: #fff; }
.mobile-cta-btn--ghost { border: 2px solid var(--green); color: var(--green-deep); }
@media (min-width: 900px) { .mobile-cta { display: none; } }

/* ── WAVE DIVIDERS ── */
.wave { line-height: 0; }
.wave svg { width: 100%; height: 60px; display: block; }

/* ── MASCOT BUBBLE (dismissible hero corner) ── */
.mascot-bubble { position: fixed; right: 1rem; bottom: 5.5rem; z-index: 100; display: flex; align-items: flex-end; gap: .5rem; }
.mascot-bubble img { width: 64px; }
.mascot-bubble .bubble-msg { background: #fff; border: 2px solid var(--accent); border-radius: var(--radius); padding: .6em 1em; font-size: var(--text-xs); font-weight: 600; box-shadow: var(--shadow-md); max-width: 160px; }
.mascot-bubble .bubble-close { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; background: var(--ink); color: #fff; border-radius: 50%; font-size: .65rem; display: flex; align-items: center; justify-content: center; }
@media (max-width: 700px) { .mascot-bubble { display: none; } }

/* ── UTILITIES ── */
.badge { display: inline-block; background: rgba(176,90,114,0.12); color: var(--accent-dark); padding: .3em 1em; border-radius: 999px; font-size: var(--text-xs); font-weight: 700; }
.ph { color: var(--accent-dark); background: rgba(176,90,114,0.1); padding: .1em .4em; border-radius: 4px; font-style: normal; font-size: .92em; }
.center-cta { text-align: center; padding: var(--section-pad-y) 0; }
.center-cta h2 { font-family: var(--font-display); font-size: var(--text-2xl); margin-bottom: .5rem; }
.center-cta p { color: var(--fg-soft); margin-bottom: 1.5rem; }
.town-hero { background: linear-gradient(150deg, var(--green-deep), var(--green)); color: #fff; padding: clamp(3rem,7vw,5rem) 0 3rem; }
.town-hero .section-inner { max-width: 900px; }
.town-hero h1 { font-family: var(--font-display); font-size: var(--text-3xl); margin-bottom: .75rem; }
.town-hero p { font-size: var(--text-lg); opacity: .92; max-width: 55ch; }
.breadcrumb { font-size: var(--text-xs); opacity: .8; margin-bottom: 1rem; }
.breadcrumb a { text-decoration: underline; }

@media (min-width: 700px) {
  .hero-headline { font-size: var(--text-4xl); }
}
