/* ============================================================
   Posh Pamper Mobile Pets Grooming — design system
   Palette + type from research/brand-system.md (verified).
   Signature motif: van-wrap "wave" + sparkle/paw accents.
   ============================================================ */

:root {
  --bg: #F4F9F4;
  --surface: #FFFFFF;
  --surface-2: #EAF4EE;
  --ink: #19241F;
  --ink-soft: #34433C;
  --muted: #5B6B64;
  --primary: #1F9D7A;       /* teal */
  --primary-700: #14785C;
  --primary-900: #0E5743;
  --secondary: #2C5878;     /* deep blue */
  --secondary-700: #1E4360;
  --accent: #F2B84B;        /* gold */
  --accent-700: #D89A26;
  --lime: #74B24B;          /* van green */
  --brand-blue: #2472BE;    /* bright media blue */
  --border: #D8E8DF;
  --border-soft: #E7F1EB;
  --focus: #1F9D7A;
  --shadow-sm: 0 1px 2px rgba(20,60,45,.05), 0 2px 6px rgba(20,60,45,.05);
  --shadow-md: 0 6px 18px rgba(20,60,45,.08), 0 2px 6px rgba(20,60,45,.05);
  --shadow-lg: 0 22px 50px -18px rgba(16,70,52,.32), 0 8px 22px -12px rgba(16,70,52,.20);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --maxw: 1200px;
  --header-h: 70px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-display: "Nunito Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
p { margin: 0; }

.tnum { font-variant-numeric: tabular-nums; letter-spacing: .01em; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(56px, 9vw, 110px) 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary-700);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.section-head { max-width: 640px; margin-bottom: clamp(30px, 5vw, 52px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: clamp(30px, 5.2vw, 50px); margin-top: 14px; }
.section-sub { margin-top: 16px; color: var(--muted); font-size: clamp(16px, 2.1vw, 18px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  min-height: 50px; line-height: 1; transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 22px -10px rgba(31,157,122,.7); }
.btn-primary:hover { background: var(--primary-700); transform: translateY(-2px); box-shadow: 0 16px 28px -12px rgba(31,157,122,.8); }
.btn-accent { background: var(--accent); color: #4a3608; box-shadow: 0 10px 22px -10px rgba(216,154,38,.6); }
.btn-accent:hover { background: var(--accent-700); color: #3a2a05; transform: translateY(-2px); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-white { background: #fff; color: var(--secondary-700); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 55%, white); outline-offset: 2px;
}

/* ---------- pills / chips ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.pill svg { width: 16px; height: 16px; color: var(--primary); }

.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- logo lockup ---------- */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-chip {
  background: #fff; border-radius: 13px; padding: 5px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft); flex: none;
}
.brand-chip img { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; }
.brand-name { font-family: var(--font-display); font-weight: 900; font-size: 17px; line-height: 1.02; letter-spacing: -.01em; }
.brand-name span { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary-700); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70; height: var(--header-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled { background: color-mix(in srgb, #fff 90%, transparent); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-links { display: none; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600; font-size: 15px; color: var(--ink-soft); padding: 9px 13px; border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--surface-2); color: var(--primary-700); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone { display: none; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface); color: var(--ink);
}
.nav-toggle svg { width: 23px; height: 23px; }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80; display: none;
  background: rgba(16,40,30,.45); backdrop-filter: blur(3px);
}
.mobile-menu.open { display: block; }
.mobile-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82%, 340px);
  background: var(--bg); padding: 18px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: -20px 0 50px -20px rgba(0,0,0,.4);
  transform: translateX(100%); transition: transform .32s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }
.mobile-panel .mm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mobile-panel a.mm-link {
  font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--ink);
  padding: 14px 12px; border-radius: 12px; border-bottom: 1px solid var(--border-soft);
}
.mobile-panel a.mm-link:hover { background: var(--surface-2); color: var(--primary-700); }
.mm-actions { margin-top: 16px; display: grid; gap: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: calc(var(--header-h) + 26px); padding-bottom: 18px; overflow: hidden; }
.hero-bg-blob {
  position: absolute; z-index: 0; pointer-events: none;
  width: 760px; height: 760px; right: -260px; top: -220px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--lime) 24%, transparent), transparent 62%);
  filter: blur(4px);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.hero-eyebrow { margin-bottom: 16px; }
.hero h1 { font-size: clamp(38px, 9vw, 70px); font-weight: 900; letter-spacing: -.03em; }
.hero h1 .accent { color: var(--primary); position: relative; }
.hero h1 .underline {
  display: inline-block; position: relative;
}
.hero-lead { margin-top: 20px; font-size: clamp(17px, 2.4vw, 20px); color: var(--ink-soft); max-width: 30em; }
.hero-cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; }
.hero-trust .rate { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; }
.hero-trust .rate b { font-family: var(--font-display); font-size: 19px; }
.hero-trust .sep { width: 1px; height: 22px; background: var(--border); }
.hero-trust .loc { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-weight: 600; font-size: 15px; }
.hero-trust .loc svg { width: 17px; height: 17px; color: var(--primary); }

/* hero collage */
.hero-media { position: relative; }
.hero-photo-main {
  position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid #fff; aspect-ratio: 4/5; background: var(--surface-2);
}
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-sub {
  position: absolute; left: -8px; bottom: -26px; width: 44%; aspect-ratio: 1/1;
  border-radius: 22px; overflow: hidden; border: 5px solid #fff; box-shadow: var(--shadow-lg); background: var(--surface-2);
}
.hero-photo-sub img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; right: -6px; top: 22px; background: #fff; border-radius: 18px;
  padding: 12px 15px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 11px; border: 1px solid var(--border-soft);
}
.hero-badge .ring {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: conic-gradient(var(--accent) 0 88%, var(--border) 88% 100%);
  display: grid; place-items: center;
}
.hero-badge .ring span { width: 32px; height: 32px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 14px; color: var(--ink); }
.hero-badge .bx b { font-family: var(--font-display); font-size: 14px; display: block; line-height: 1.1; }
.hero-badge .bx small { font-size: 11.5px; color: var(--muted); }
.hero-vanpill {
  position: absolute; left: 12px; top: 14px; z-index: 2;
  background: color-mix(in srgb, var(--secondary) 92%, black); color: #fff;
  border-radius: 999px; padding: 9px 15px 9px 11px; display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 800; font-size: 13.5px; box-shadow: var(--shadow-md);
}
.hero-vanpill svg { width: 18px; height: 18px; color: var(--lime); }

/* ============================================================
   REASSURANCE STRIP (signature motif)
   ============================================================ */
.reassure {
  background: var(--secondary); color: #fff; position: relative; overflow: hidden;
}
.reassure .wave-top { position: absolute; top: -1px; left: 0; width: 100%; height: 40px; }
.reassure-inner {
  position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 26px;
  padding: 26px 0;
}
.reassure-item { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.reassure-item svg { width: 20px; height: 20px; color: var(--lime); flex: none; }
.reassure-item.muted { opacity: .55; }
.reassure-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.35); align-self: center; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 20px; display: flex; align-items: center; gap: 15px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.svc-ic {
  width: 52px; height: 52px; flex: none; border-radius: 14px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--primary-700);
}
.svc-ic svg { width: 25px; height: 25px; }
.svc-card:nth-child(3n+2) .svc-ic { background: color-mix(in srgb, var(--accent) 22%, #fff); color: var(--accent-700); }
.svc-card:nth-child(3n+3) .svc-ic { background: color-mix(in srgb, var(--brand-blue) 16%, #fff); color: var(--secondary-700); }
.svc-card h3 { font-size: 17px; font-weight: 800; }
.svc-card p { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.svc-note { margin-top: 22px; font-size: 14.5px; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.svc-note svg { width: 18px; height: 18px; color: var(--primary); flex: none; }

/* ============================================================
   HOW IT WORKS (mobile band)
   ============================================================ */
.howto { background: linear-gradient(160deg, var(--primary-900), var(--primary-700)); color: #fff; overflow: hidden; position: relative; }
.howto .paw-field { position: absolute; inset: 0; opacity: .10; pointer-events: none; }
.howto-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.howto h2 { color: #fff; font-size: clamp(28px, 5vw, 46px); }
.howto .section-sub { color: rgba(255,255,255,.82); }
.howto .eyebrow { color: var(--accent); }
.steps { margin-top: 30px; display: grid; gap: 16px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-n {
  width: 46px; height: 46px; flex: none; border-radius: 14px; background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22); display: grid; place-items: center; color: var(--accent);
}
.step-n svg { width: 23px; height: 23px; }
.step h3 { color: #fff; font-size: 18px; }
.step p { color: rgba(255,255,255,.8); font-size: 14.5px; margin-top: 3px; }
.howto-media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid rgba(255,255,255,.9); aspect-ratio: 16/11; }
.howto-media img { width: 100%; height: 100%; object-fit: cover; }
.howto-media .cap {
  position: absolute; left: 12px; bottom: 12px; background: rgba(16,40,30,.72); color: #fff;
  backdrop-filter: blur(6px); padding: 7px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 7px;
}
.howto-media .cap svg { width: 15px; height: 15px; color: var(--lime); }

/* ============================================================
   GALLERY
   ============================================================ */
.gal-filter { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.gal-filter button {
  font-family: var(--font-display); font-weight: 800; font-size: 14px; padding: 10px 17px; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--surface); color: var(--ink-soft); min-height: 44px;
  transition: all .18s var(--ease);
}
.gal-filter button:hover { border-color: var(--primary); color: var(--primary-700); }
.gal-filter button.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 8px 18px -8px rgba(31,157,122,.6); }
.gal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; grid-auto-flow: dense; }
.gal-item {
  position: relative; overflow: hidden; border-radius: var(--r-md); background: var(--surface-2);
  cursor: zoom-in; aspect-ratio: 1/1; box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft);
}
.gal-item.tall { aspect-ratio: 1/1; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-item .gtag {
  position: absolute; left: 9px; bottom: 9px; background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 11.5px; font-weight: 800; padding: 4px 10px; border-radius: 999px; opacity: 0; transform: translateY(6px);
  transition: opacity .22s, transform .22s; font-family: var(--font-display);
}
.gal-item:hover .gtag { opacity: 1; transform: translateY(0); }
.gal-item.hide { display: none; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 20px;
  background: rgba(12,28,21,.9); backdrop-filter: blur(6px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 900px); max-height: 84vh; border-radius: var(--r-md); box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.lb-btn {
  position: absolute; width: 52px; height: 52px; border-radius: 50%; border: none; background: rgba(255,255,255,.16);
  color: #fff; display: grid; place-items: center; backdrop-filter: blur(6px); transition: background .2s;
}
.lb-btn:hover { background: rgba(255,255,255,.3); }
.lb-btn svg { width: 26px; height: 26px; }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.85); font-weight: 700; font-size: 14px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.about-photos .ph { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); background: var(--surface-2); border: 1px solid var(--border-soft); }
.about-photos .ph img { width: 100%; height: 100%; object-fit: cover; }
.about-photos .ph.big { grid-column: 1 / -1; aspect-ratio: 16/9; }
.about-photos .ph.sm { aspect-ratio: 1/1; }
.about-copy p + p { margin-top: 14px; }
.about-copy .lead { font-size: clamp(18px, 2.4vw, 21px); color: var(--ink-soft); font-weight: 500; }
.about-stats { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.stat-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 15px 18px; box-shadow: var(--shadow-sm); flex: 1 1 130px; }
.stat-box b { font-family: var(--font-display); font-size: 26px; display: block; color: var(--primary-700); }
.stat-box span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--surface-2); }
.rev-grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; }
.rev-aggregate { text-align: center; }
.rev-score { font-family: var(--font-display); font-weight: 900; font-size: clamp(60px, 14vw, 96px); line-height: 1; color: var(--primary); }
.rev-aggregate .stars { transform: scale(1.25); margin: 12px 0 8px; }
.rev-aggregate p { color: var(--muted); font-weight: 600; }
.rev-quote {
  background: var(--surface); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md);
  border: 1px solid var(--border); position: relative;
}
.rev-quote .qmark { font-family: var(--font-display); font-size: 80px; line-height: .6; color: color-mix(in srgb, var(--accent) 60%, #fff); height: 36px; }
.rev-quote blockquote { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 3.2vw, 28px); line-height: 1.32; color: var(--ink); margin: 0; letter-spacing: -.01em; }
.rev-quote .by { margin-top: 18px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; font-weight: 600; }
.rev-quote .by .g { width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; color: var(--brand-blue); font-size: 15px; }
.rev-cta { margin-top: 22px; }

/* ============================================================
   CONTACT / BOOK
   ============================================================ */
.book { background: linear-gradient(180deg, var(--bg), var(--surface-2)); }
.book-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.book-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(22px, 3.4vw, 34px); box-shadow: var(--shadow-md); }
.form-row { display: grid; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 700; font-size: 13.5px; color: var(--ink-soft); }
.field label .req { color: var(--accent-700); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15.5px; color: var(--ink); padding: 13px 14px; border-radius: 12px;
  border: 1.5px solid var(--border); background: #fff; transition: border-color .18s, box-shadow .18s; width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 16%, transparent); outline: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d8504a; box-shadow: 0 0 0 3px rgba(216,80,74,.14); }
.field .err { font-size: 12.5px; color: #c0413c; font-weight: 600; display: none; }
.field.invalid .err { display: block; }
.two-col { display: grid; grid-template-columns: 1fr; gap: 14px; }
.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label {
  flex: 1 1 auto; text-align: center; padding: 11px 12px; border-radius: 12px; border: 1.5px solid var(--border);
  background: #fff; font-weight: 700; font-size: 14px; cursor: pointer; transition: all .16s; min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 7px;
}
.seg label svg { width: 17px; height: 17px; }
.seg input:checked + label { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, #fff); color: var(--primary-700); }
.form-success {
  display: none; text-align: center; padding: 18px 6px;
}
.form-success.show { display: block; }
.form-success .ic { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; background: color-mix(in srgb, var(--primary) 14%, #fff); display: grid; place-items: center; color: var(--primary); }
.form-success .ic svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--muted); margin-top: 8px; }

/* contact aside */
.contact-aside { display: grid; gap: 16px; }
.contact-list { display: grid; gap: 4px; }
.contact-row { display: flex; align-items: flex-start; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ci { width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--surface-2); color: var(--primary-700); display: grid; place-items: center; }
.contact-row .ci svg { width: 20px; height: 20px; }
.contact-row .cv b { font-family: var(--font-display); font-size: 15px; display: block; }
.contact-row .cv a, .contact-row .cv span { color: var(--muted); font-size: 14.5px; }
.contact-row .cv a:hover { color: var(--primary-700); }

/* map panel */
.map-panel {
  position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border);
  background:
    radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--lime) 16%, transparent), transparent 40%),
    repeating-linear-gradient(0deg, transparent 0 26px, color-mix(in srgb, var(--secondary) 8%, transparent) 26px 27px),
    repeating-linear-gradient(90deg, transparent 0 26px, color-mix(in srgb, var(--secondary) 8%, transparent) 26px 27px),
    var(--surface-2);
  min-height: 230px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 26px;
  box-shadow: var(--shadow-sm);
}
.map-panel .road { position: absolute; left: 0; right: 0; top: 56%; height: 16px; background: color-mix(in srgb, var(--accent) 50%, #fff); opacity: .5; transform: rotate(-7deg); }
.map-panel .road.v { top: 0; bottom: 0; left: 62%; right: auto; width: 14px; height: auto; transform: rotate(8deg); }
.map-pin { position: relative; z-index: 2; width: 56px; height: 56px; border-radius: 50% 50% 50% 6px; transform: rotate(45deg); background: var(--primary); box-shadow: var(--shadow-md); display: grid; place-items: center; }
.map-pin svg { width: 26px; height: 26px; transform: rotate(-45deg); color: #fff; }
.map-label { position: relative; z-index: 2; background: #fff; border-radius: 12px; padding: 10px 16px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.map-label b { font-family: var(--font-display); font-size: 14.5px; display: block; }
.map-label span { font-size: 12.5px; color: var(--muted); }
.map-panel .mtag { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(255,255,255,.9); font-size: 11px; font-weight: 700; color: var(--muted); padding: 5px 10px; border-radius: 999px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--secondary-700); color: #fff; padding: clamp(46px, 7vw, 70px) 0 30px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name span { color: var(--accent); }
.footer-tag { margin-top: 16px; color: rgba(255,255,255,.7); font-size: 14.5px; max-width: 30ch; }
.footer-social { margin-top: 18px; display: flex; gap: 10px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.1); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--accent); color: #4a3608; transform: translateY(-2px); }
.footer-social a svg { width: 20px; height: 20px; }
.footer-col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; font-family: var(--font-display); }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.78); font-size: 14.5px; padding: 6px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; color: rgba(255,255,255,.6); font-size: 13px; }
.footer-bottom .disc { max-width: 60ch; }

/* ============================================================
   MOBILE ACTION BAR
   ============================================================ */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 75;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
  background: var(--border); border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px -12px rgba(16,60,45,.3);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  background: var(--surface); padding: 10px 6px 11px; font-family: var(--font-display); font-weight: 800; font-size: 12px; color: var(--ink-soft);
  min-height: 58px;
}
.action-bar a svg { width: 22px; height: 22px; }
.action-bar a.call { color: var(--primary-700); }
.action-bar a.call svg { color: var(--primary); }
.action-bar a.wa { color: #1f7a44; }
.action-bar a.wa svg { color: #25D366; }
.action-bar a.book { background: var(--accent); color: #4a3608; }
.action-bar a.book svg { color: #4a3608; }

/* ============================================================
   reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 560px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .gal-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
  .two-col { grid-template-columns: 1fr 1fr; }
  .about-photos .ph.big { aspect-ratio: 16/8; }
}

@media (min-width: 860px) {
  :root { --header-h: 80px; }
  .nav-links { display: flex; }
  .header-phone { display: inline-flex; }
  .nav-toggle { display: none; }
  .action-bar { display: none; }
  body { padding-bottom: 0 !important; }

  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 50px; }
  .hero { padding-bottom: 40px; }
  .hero-photo-sub { width: 42%; left: -34px; bottom: -34px; }
  .hero-badge { right: -22px; }

  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .howto-grid { grid-template-columns: 1fr 1.1fr; gap: 50px; }
  .gal-grid { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1.1fr 1fr; gap: 54px; }
  .about-grid.rev { direction: rtl; }
  .about-grid.rev > * { direction: ltr; }
  .rev-grid { grid-template-columns: .8fr 1.2fr; gap: 40px; }
  .book-grid { grid-template-columns: 1.25fr 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
}

@media (min-width: 1100px) {
  .gal-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
}

/* body bottom padding so action bar doesn't cover content on mobile */
@media (max-width: 859px) {
  body { padding-bottom: 64px; }
}
