/* ============================================================
   Paw Celebration Pet Spa & Boutique — stylesheet
   Palette & type from research/brand-system.md
   Display: Manrope (700–800) · Body: Nunito Sans
   ============================================================ */

:root {
  --bg:        #F6FAF6;
  --surface:   #FFFFFF;
  --surface-2: #EDF5EE;
  --surface-3: #E4F0E6;
  --text:      #182421;
  --muted:     #5E6C67;
  --primary:   #1F9D7A;
  --primary-deep: #167A5F;
  --primary-soft: #E1F2EB;
  --secondary: #2C5573;
  --secondary-deep: #1E3D54;
  --accent:    #F2B84B;
  --accent-deep:#D99A20;
  --border:    #D7E7DF;
  --border-strong:#C2D9CE;
  --focus:     #2C5573;
  --shadow-sm: 0 1px 2px rgba(24,36,33,.06), 0 2px 8px rgba(24,36,33,.05);
  --shadow-md: 0 6px 20px rgba(24,36,33,.08), 0 2px 6px rgba(24,36,33,.05);
  --shadow-lg: 0 18px 50px rgba(24,36,33,.14), 0 6px 16px rgba(24,36,33,.07);
  --shadow-primary: 0 10px 26px rgba(31,157,122,.30);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --maxw: 1180px;
  --gutter: clamp(18px, 5vw, 56px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}

p { margin: 0; }
::selection { background: var(--accent); color: #2a2110; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 116px); position: relative; }
.tabnum { font-variant-numeric: tabular-nums; letter-spacing: .01em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Manrope", sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary-deep);
  margin: 0 0 16px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}
.section-head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head h2 { font-size: clamp(30px, 5.4vw, 50px); }
.section-head p { margin-top: 16px; color: var(--muted); font-size: clamp(16px, 2vw, 19px); }

/* ---------- buttons ---------- */
.btn {
  --pad-y: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) 24px;
  min-height: 50px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 15.5px;
  letter-spacing: .005em;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn-primary:hover { background: var(--primary-deep); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(31,157,122,.38); }
.btn-accent { background: var(--accent); color: #36280a; box-shadow: 0 10px 24px rgba(242,184,75,.36); }
.btn-accent:hover { background: var(--accent-deep); color: #2a1e06; transform: translateY(-2px); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-deep); transform: translateY(-2px); }
.btn-dark { background: var(--secondary); color: #fff; }
.btn-dark:hover { background: var(--secondary-deep); transform: translateY(-2px); }
.btn-outline-light { background: rgba(255,255,255,.07); color:#fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn.block { width: 100%; }

/* star rating inline */
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 16px; height: 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,250,246,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: 0 6px 24px rgba(24,36,33,.06); background: rgba(246,250,246,.94); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  background: #fff; padding: 4px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  object-fit: contain;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.brand-name span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

.nav-desktop { display: none; align-items: center; gap: 4px; }
.nav-desktop a {
  padding: 9px 14px; border-radius: 999px; font-weight: 700; font-size: 15px; color: var(--text);
  transition: background .18s, color .18s; position: relative;
}
.nav-desktop a:hover { background: var(--surface-2); color: var(--primary-deep); }
.nav-desktop a.active { color: var(--primary-deep); }

.header-cta { display: none; align-items: center; gap: 10px; }

.hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--surface); border: 1px solid var(--border-strong); box-shadow: var(--shadow-sm);
  color: var(--text);
}
.hamburger svg { width: 24px; height: 24px; }

/* mobile drawer */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 70; background: rgba(24,36,33,.46);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(2px);
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 80; height: 100dvh; width: min(86vw, 340px);
  background: var(--surface); box-shadow: -20px 0 60px rgba(24,36,33,.22);
  transform: translateX(102%); transition: transform .36s var(--ease);
  display: flex; flex-direction: column; padding: 20px;
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer-close { width: 44px; height: 44px; border-radius: 11px; background: var(--surface-2); border: none; color: var(--text); display: inline-flex; align-items: center; justify-content: center; }
.drawer-close svg { width: 22px; height: 22px; }
.drawer nav { display: flex; flex-direction: column; gap: 2px; margin-top: 6px; }
.drawer nav a {
  padding: 15px 14px; border-radius: 14px; font-family: "Manrope", sans-serif; font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .16s;
}
.drawer nav a:hover, .drawer nav a:focus-visible { background: var(--surface-2); }
.drawer nav a span { color: var(--primary); }
.drawer-foot { margin-top: auto; display: grid; gap: 10px; padding-top: 18px; border-top: 1px solid var(--border); }
.drawer-foot .muted { font-size: 13px; color: var(--muted); text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(40px, 6vw, 80px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 620px; height: 620px; right: -260px; top: -200px; border-radius: 50%;
  background: radial-gradient(circle at center, var(--surface-3), transparent 66%);
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: clamp(30px, 5vw, 56px); align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  font-weight: 700; font-size: 13.5px; color: var(--secondary);
}
.hero-eyebrow .pin { background: var(--primary-soft); color: var(--primary-deep); border-radius: 999px; padding: 3px 10px; font-size: 12px; display: inline-flex; align-items: center; gap: 5px; }
.hero-eyebrow .pin svg { width: 13px; height: 13px; }

.hero h1 { font-size: clamp(38px, 8vw, 70px); margin: 20px 0 0; }
.hero h1 .tint { color: var(--primary); }
.hero h1 .wave { color: var(--secondary); }
.hero-lede { margin-top: 20px; font-size: clamp(17px, 2.3vw, 20px); color: var(--muted); max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 30px; padding-top: 26px; border-top: 1px dashed var(--border-strong); }
.trust-item { display: flex; align-items: center; gap: 11px; }
.trust-rating { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 26px; line-height: 1; }
.trust-meta { font-size: 13.5px; color: var(--muted); line-height: 1.3; }
.trust-meta b { color: var(--text); display: block; font-size: 14px; }
.trust-div { width: 1px; height: 34px; background: var(--border-strong); }

/* hero media */
.hero-media { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid #fff;
  aspect-ratio: 4 / 4.4; background: var(--surface-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-ring {
  position: absolute; inset: auto; z-index: -1;
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  border: 2px dashed var(--border-strong);
  right: -22px; bottom: -26px;
}
.hero-badge {
  position: absolute; left: -14px; bottom: 26px; z-index: 3;
  background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: 13px 16px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--border);
}
.hero-badge .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--primary-soft); color: var(--primary-deep); display: grid; place-items: center; flex: none; }
.hero-badge .ic svg { width: 22px; height: 22px; }
.hero-badge b { font-family: "Manrope", sans-serif; font-size: 15px; display: block; }
.hero-badge span { font-size: 12.5px; color: var(--muted); }
.hero-sparkle { position: absolute; top: 14px; right: 14px; z-index: 3; color: var(--accent); filter: drop-shadow(0 2px 6px rgba(0,0,0,.18)); }
.hero-sparkle svg { width: 40px; height: 40px; }

/* ============================================================
   MARQUEE / VALUES STRIP
   ============================================================ */
.values-strip { background: var(--secondary); color: #fff; }
.values-strip .wrap { display: flex; flex-wrap: wrap; gap: 10px 30px; justify-content: center; align-items: center; padding-block: 18px; }
.values-strip .v { display: inline-flex; align-items: center; gap: 10px; font-family: "Manrope", sans-serif; font-weight: 700; font-size: clamp(14px,2.2vw,17px); letter-spacing: .01em; }
.values-strip .v svg { width: 18px; height: 18px; color: var(--accent); }
.values-strip .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.4); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--surface); }
.svc-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.svc-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  box-shadow: var(--shadow-sm);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.svc-card .num { position: absolute; top: 20px; right: 24px; font-family: "Manrope", sans-serif; font-weight: 800; font-size: 38px; color: var(--surface-2); letter-spacing: -.03em; }
.svc-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; color: #fff; box-shadow: var(--shadow-sm); }
.svc-ic svg { width: 28px; height: 28px; }
.svc-ic.g1 { background: linear-gradient(135deg, #28b48c, var(--primary-deep)); }
.svc-ic.g2 { background: linear-gradient(135deg, #4a82a8, var(--secondary)); }
.svc-ic.g3 { background: linear-gradient(135deg, #f6c768, var(--accent-deep)); }
.svc-ic.g4 { background: linear-gradient(135deg, #d98a86, #a85a55); }
.svc-card h3 { font-size: 21px; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 15.5px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.svc-tags span { font-size: 12.5px; font-weight: 700; color: var(--primary-deep); background: var(--primary-soft); padding: 5px 11px; border-radius: 999px; }
.svc-note { margin-top: 26px; font-size: 14.5px; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.svc-note svg { width: 19px; height: 19px; color: var(--primary); flex: none; margin-top: 2px; }

/* ============================================================
   CARE JOURNEY (signature motif)
   ============================================================ */
.journey { background: linear-gradient(180deg, var(--surface-2), var(--bg)); position: relative; }
.journey .section-head h2 .tint { color: var(--primary); }
.journey-track { position: relative; display: grid; gap: 16px; }
.journey-line { display: none; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px 22px 26px; box-shadow: var(--shadow-sm);
  display: flex; gap: 18px; align-items: flex-start;
}
.step-num {
  flex: none; width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  font-family: "Manrope", sans-serif; font-weight: 800; font-size: 20px; color: #fff;
  background: var(--primary); position: relative; box-shadow: var(--shadow-primary);
}
.step:nth-child(2) .step-num { background: var(--secondary); box-shadow: 0 10px 24px rgba(44,85,115,.28); }
.step:nth-child(3) .step-num { background: var(--accent-deep); box-shadow: 0 10px 24px rgba(217,154,32,.28); }
.step:nth-child(4) .step-num { background: var(--primary-deep); }
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }
.step .step-ic { color: var(--primary); margin-bottom: 4px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--surface); }
.gallery-head { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: flex-end; }
.gal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: clamp(28px,4vw,44px); }
.gal-item {
  position: relative; border-radius: var(--r-md); overflow: hidden; background: var(--surface-2);
  box-shadow: var(--shadow-sm); cursor: pointer; border: none; padding: 0; width: 100%;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24,36,33,.34));
  opacity: 0; transition: opacity .3s;
}
.gal-item:hover::after { opacity: 1; }
.gal-item .cap { position: absolute; left: 12px; bottom: 11px; z-index: 2; color: #fff; font-weight: 700; font-size: 13px; opacity: 0; transform: translateY(6px); transition: .3s; }
.gal-item:hover .cap { opacity: 1; transform: none; }
.gal-item .expand { position: absolute; top: 10px; right: 10px; z-index: 2; width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,.92); color: var(--text); display: grid; place-items: center; opacity: 0; transition: .3s; }
.gal-item:hover .expand { opacity: 1; }
.gal-item .expand svg { width: 16px; height: 16px; }
.gal-tall { grid-row: span 2; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(15,23,21,.92);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lb-btn { position: absolute; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; transition: background .2s; }
.lb-btn:hover { background: rgba(255,255,255,.28); }
.lb-btn svg { width: 26px; height: 26px; }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.85); font-weight: 700; font-size: 14px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: linear-gradient(180deg, var(--bg), var(--surface-2)); }
.about-grid { display: grid; gap: clamp(30px,5vw,52px); align-items: center; }
.about-media { position: relative; }
.about-photos { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: auto auto; gap: 12px; }
.about-photos img { border-radius: var(--r-md); box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; }
.about-photos .a1 { grid-row: span 2; aspect-ratio: 3/4.4; }
.about-photos .a2 { aspect-ratio: 4/3; }
.about-photos .a3 { aspect-ratio: 4/3; }
.about-quotechip {
  position: absolute; right: -8px; bottom: -16px; background: var(--accent); color: #3a2c0c;
  font-family: "Manrope", sans-serif; font-weight: 800; padding: 14px 18px; border-radius: var(--r-md);
  box-shadow: var(--shadow-md); font-size: 15px; max-width: 60%;
}
.about h2 { font-size: clamp(28px,4.6vw,44px); }
.about .lead { font-size: clamp(17px,2.1vw,20px); margin-top: 18px; color: var(--text); font-weight: 600; }
.about p.body { margin-top: 16px; color: var(--muted); }
.about-points { display: grid; gap: 14px; margin-top: 26px; }
.about-point { display: flex; gap: 13px; align-items: flex-start; }
.about-point .tick { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--primary-soft); color: var(--primary-deep); display: grid; place-items: center; }
.about-point .tick svg { width: 17px; height: 17px; }
.about-point b { font-family: "Manrope", sans-serif; }
.about-point span { color: var(--muted); font-size: 15px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--secondary); color: #fff; position: relative; overflow: hidden; }
.reviews::before { content:""; position:absolute; width:480px; height:480px; border-radius:50%; left:-180px; bottom:-220px; background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%); }
.reviews .wrap { position: relative; z-index: 1; }
.rev-grid { display: grid; gap: clamp(28px,4vw,44px); align-items: center; }
.rev-score { text-align: left; }
.rev-score .big { font-family: "Manrope", sans-serif; font-weight: 800; font-size: clamp(64px,14vw,112px); line-height: .9; letter-spacing: -.03em; }
.rev-score .big sub { font-size: .3em; color: rgba(255,255,255,.6); font-weight: 700; vertical-align: super; margin-left: 4px; }
.rev-score .stars-lg { display: flex; gap: 4px; margin: 12px 0 10px; color: var(--accent); }
.rev-score .stars-lg svg { width: 26px; height: 26px; }
.rev-score .sub { color: rgba(255,255,255,.82); font-size: 16px; }
.rev-score .gmaps { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding: 11px 18px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28); font-weight: 700; font-size: 14.5px; transition: background .2s; }
.rev-score .gmaps:hover { background: rgba(255,255,255,.2); }
.rev-score .gmaps svg { width: 17px; height: 17px; }
.rev-quote {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg); padding: clamp(26px,4vw,40px); backdrop-filter: blur(4px);
}
.rev-quote .mark { font-family: "Manrope", sans-serif; font-size: 60px; line-height: .6; color: var(--accent); height: 30px; display: block; }
.rev-quote blockquote { margin: 0; font-family: "Manrope", sans-serif; font-weight: 700; font-size: clamp(20px,3vw,28px); line-height: 1.32; letter-spacing: -.01em; }
.rev-quote .by { margin-top: 20px; display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.82); font-size: 14.5px; }
.rev-quote .by .dot2 { width: 34px; height: 34px; border-radius: 50%; background: var(--primary); display: grid; place-items: center; color: #fff; }
.rev-quote .by .dot2 svg { width: 18px; height: 18px; }
.rev-quote .by b { color: #fff; display: block; font-family: "Manrope", sans-serif; }
.rev-disc { margin-top: 18px; font-size: 12.5px; color: rgba(255,255,255,.55); }

/* ============================================================
   CONTACT CONSOLE
   ============================================================ */
.contact { background: var(--surface); }
.contact-grid { display: grid; gap: clamp(22px,4vw,34px); align-items: start; }
.console {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.console-map { position: relative; aspect-ratio: 16/10; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.console-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.05); }
.console-map .map-fallback {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 20px;
  background:
    radial-gradient(circle at 30% 30%, var(--surface-3), transparent 60%),
    repeating-linear-gradient(45deg, var(--surface-2) 0 16px, var(--bg) 16px 32px);
}
.console-map .map-pin { width: 54px; height: 54px; border-radius: 50% 50% 50% 6px; background: var(--primary); transform: rotate(45deg); display: grid; place-items: center; box-shadow: var(--shadow-md); }
.console-map .map-pin svg { width: 24px; height: 24px; color: #fff; transform: rotate(-45deg); }
.console-rows { padding: 8px; }
.crow { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border-radius: var(--r-md); transition: background .18s; }
.crow + .crow { border-top: 1px solid var(--border); }
.crow .cic { flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--primary-soft); color: var(--primary-deep); display: grid; place-items: center; }
.crow .cic svg { width: 22px; height: 22px; }
.crow .lbl { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.crow .val { font-family: "Manrope", sans-serif; font-weight: 700; font-size: 16.5px; margin-top: 3px; }
.crow .val a:hover { color: var(--primary-deep); }
.crow .sub { font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.crow.link-row { align-items: center; }
.crow.link-row .go { margin-left: auto; align-self: center; color: var(--primary-deep); }
.crow.link-row .go svg { width: 20px; height: 20px; }

/* form */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: clamp(22px,3.5vw,34px); }
.form-card h3 { font-size: clamp(22px,3vw,28px); }
.form-card .fc-sub { color: var(--muted); margin-top: 8px; font-size: 15.5px; }
.field { margin-top: 18px; }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border-strong); border-radius: 13px;
  font-family: inherit; font-size: 16px; background: var(--bg); color: var(--text);
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px var(--primary-soft); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d8553f; box-shadow: 0 0 0 4px rgba(216,85,63,.12); }
.field .err { color: #c2452f; font-size: 13px; margin-top: 6px; display: none; font-weight: 600; }
.field.invalid .err { display: block; }
.field-row { display: grid; gap: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-radio { position: relative; }
.chip-radio input { position: absolute; opacity: 0; pointer-events: none; }
.chip-radio span { display: inline-flex; align-items: center; gap: 7px; padding: 10px 15px; border-radius: 999px; border: 1.5px solid var(--border-strong); font-weight: 700; font-size: 14px; transition: .15s; background: var(--bg); }
.chip-radio span svg { width: 16px; height: 16px; }
.chip-radio input:checked + span { background: var(--primary); border-color: var(--primary); color: #fff; }
.chip-radio input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 2px; }
.form-submit { margin-top: 22px; }
.form-note { margin-top: 14px; font-size: 13px; color: var(--muted); text-align: center; }
.form-success {
  display: none; text-align: center; padding: 18px 10px;
}
.form-success.show { display: block; animation: pop .4s var(--ease); }
.form-success .sic { width: 70px; height: 70px; border-radius: 50%; background: var(--primary-soft); color: var(--primary-deep); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .sic svg { width: 36px; height: 36px; }
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--muted); margin-top: 10px; }
.form-success .btn { margin-top: 20px; }
@keyframes pop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--secondary-deep); color: rgba(255,255,255,.78); padding-block: clamp(48px,7vw,72px) 0; }
.foot-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
.foot-brand .brand-logo { width: 54px; height: 54px; border-radius: 15px; }
.foot-brand .fb-name { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 19px; color: #fff; margin-top: 14px; }
.foot-brand .fb-name span { display: block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 700; margin-top: 4px; }
.foot-brand p { margin-top: 14px; font-size: 14.5px; max-width: 30em; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.foot-social a:hover { background: var(--primary); transform: translateY(-2px); }
.foot-social a svg { width: 20px; height: 20px; }
.foot-col h4 { color: #fff; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-col a:hover, .foot-col li:hover { color: #fff; }
.foot-col .small { font-size: 14px; line-height: 1.5; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-block: 22px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.55); }
.foot-bottom a { text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   MOBILE ACTION BAR
   ============================================================ */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); box-shadow: 0 -6px 22px rgba(24,36,33,.08);
  display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
}
.action-bar a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 4px; border-radius: 13px; font-weight: 800; font-size: 11.5px; font-family: "Manrope", sans-serif; color: var(--text); transition: background .15s; }
.action-bar a svg { width: 22px; height: 22px; }
.action-bar a.primary { background: var(--primary); color: #fff; }
.action-bar a:not(.primary):active { background: var(--surface-2); }
body { padding-bottom: 76px; }

/* reveal class retained for structure; content is always visible (no timeline-based entrance) */
.reveal { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 560px) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .field-row.two { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .action-bar { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-track { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .rev-grid { grid-template-columns: .85fr 1.15fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 2fr 1fr 1fr; }
  .gal-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; }
}

@media (min-width: 940px) {
  .nav-desktop { display: flex; }
  .header-cta { display: flex; }
  .hamburger { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
  .journey-track { grid-template-columns: repeat(4, 1fr); }
  .journey-line { display: block; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--border-strong) 0 8px, transparent 8px 16px); z-index: 0; }
  .journey .step { z-index: 1; }
}

@media (min-width: 1024px) {
  .hero-photo { aspect-ratio: 4/4.7; }
}
