@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700&display=swap');

:root {
  --bg:        #f6f4ee;
  --surface:   #fffdf8;
  --surface-2: #f0ede3;
  --cream:     #efeadd;
  --sage:      #7c9473;
  --sage-deep: #586b51;
  --sage-soft: #d8e0d2;
  --sage-mist: #e9eee4;
  --accent:    #e8b04b;
  --accent-soft:#f6e7c4;
  --ink:       #2d322a;
  --ink-2:     #5c6359;
  --muted:     #8b9085;
  --line:      #e4e0d4;
  --line-soft: #ece8dd;
  --primary: var(--sage);
  --primary-deep: var(--sage-deep);
  --font-display: 'Quicksand', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;
  --sh-sm: 0 2px 8px rgba(60,70,50,.05);
  --sh-md: 0 8px 28px rgba(70,80,55,.08);
  --sh-lg: 0 18px 50px rgba(70,80,55,.12);
  --sh-card: 0 1px 0 rgba(255,255,255,.6) inset, 0 10px 30px rgba(70,80,55,.07);
  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 44px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 600; line-height: 1.08;
  letter-spacing: -0.01em; margin: 0; color: var(--ink); text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary-deep);
}
.kicker::before {
  content: ""; width: 18px; height: 2px; border-radius: 2px;
  background: var(--primary); opacity: .7;
}
.kicker svg { width: 15px; height: 15px; flex: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  letter-spacing: .005em; border: none; border-radius: var(--r-pill);
  padding: 15px 26px;
  transition: transform .18s cubic-bezier(.34,1.3,.64,1), box-shadow .25s, background .2s, color .2s;
  white-space: nowrap; line-height: 1; text-decoration: none;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(88,107,81,.28); }
.btn-primary:hover { background: var(--primary-deep); box-shadow: 0 12px 26px rgba(88,107,81,.34); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { background: #fff; box-shadow: inset 0 0 0 1.5px var(--sage-soft); transform: translateY(-2px); }
.btn-soft { background: var(--sage-mist); color: var(--primary-deep); box-shadow: none; }
.btn-soft:hover { background: var(--sage-soft); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 17.5px; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-lg svg { width: 19px; height: 19px; }

.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  color: var(--ink-2); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 8px 14px 8px 11px; box-shadow: var(--sh-sm);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.chip svg { width: 16px; height: 16px; color: var(--primary); }

.section { padding-block: clamp(56px, 9vw, 104px); }
.section-tight { padding-block: clamp(40px, 7vw, 76px); }
.section-head { max-width: 620px; }
.section-head .kicker { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(28px, 5.2vw, 44px); margin-bottom: 14px; }
.section-head p { color: var(--ink-2); font-size: clamp(16px, 2.4vw, 18.5px); }

.card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); box-shadow: var(--sh-card);
}

/* Photo slot — img with onerror fallback */
.slot-frame {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: var(--sage-mist); box-shadow: var(--sh-card);
}
.slot-frame .slot-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.slot-frame .slot-fallback {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 24px; text-align: center;
}
.slot-frame.empty {
  background: var(--sage-mist);
}
.slot-frame.empty .slot-fallback { display: flex; }
.slot-frame.empty .slot-fallback > * { max-width: 32ch; }
.slot-frame.empty .slot-fallback svg {
  width: 36px; height: 36px; color: var(--primary-deep); opacity: .55;
}
.slot-frame.empty .slot-fallback .slot-hint {
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  color: var(--primary-deep); line-height: 1.35;
}
.slot-frame.empty .slot-fallback .slot-code {
  font-family: monospace; font-size: 11px; color: var(--muted);
  background: rgba(255,253,248,.8); padding: 3px 9px; border-radius: 99px;
  border: 1px solid var(--line);
}

.center { text-align: center; }
.muted { color: var(--muted); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(246,244,238,.86);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(70,80,55,.05);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--primary); display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(88,107,81,.28); flex: none;
}
.brand-mark svg { width: 22px; height: 22px; color: #fff; }
.brand-logo {
  width: 38px; height: 38px; border-radius: 12px;
  box-shadow: 0 6px 16px rgba(88,107,81,.18); flex: none;
}
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -.01em; line-height: 1.05; color: var(--ink);
}
.brand-name small {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary-deep); opacity: .85;
}
.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav a {
  font-weight: 600; font-size: 15.5px; color: var(--ink-2);
  transition: color .18s; cursor: pointer;
}
.header-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 15px; color: var(--ink);
  font-family: var(--font-display);
}
.header-phone svg { width: 17px; height: 17px; color: var(--primary); }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  border-radius: 12px; background: var(--surface);
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--ink); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 10px var(--gutter) 22px;
  background: rgba(246,244,238,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 12px; border-radius: 12px;
  font-weight: 600; font-size: 17px; color: var(--ink); cursor: pointer;
}
.mobile-menu a:active { background: var(--sage-mist); }
.mobile-menu .btn { margin-top: 10px; }

/* HERO */
.hero { position: relative; padding-top: clamp(24px, 5vw, 48px); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 88% -10%, var(--sage-mist) 0%, transparent 55%),
    radial-gradient(80% 70% at -10% 110%, var(--accent-soft) 0%, transparent 50%);
  opacity: .8; z-index: -1;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
  padding-block: clamp(34px, 6vw, 70px);
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(38px, 7vw, 62px); font-weight: 700;
  letter-spacing: -.02em; margin: 20px 0 0;
}
.hero h1 .accentword {
  color: var(--primary-deep); position: relative; white-space: nowrap;
}
.hero h1 .accentword::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em;
  height: .32em; background: var(--accent-soft); border-radius: 4px;
  z-index: -1; opacity: .9;
}
.hero-sub { margin-top: 20px; font-size: clamp(17px, 2.6vw, 20px); color: var(--ink-2); max-width: 480px; }
.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-rating { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--ink-2); }
.hero-rating .stars { display: inline-flex; gap: 2px; color: var(--accent); }
.hero-rating .stars svg { width: 16px; height: 16px; }
.hero-rating strong { color: var(--ink); font-family: var(--font-display); }

.hero-visual { position: relative; }
.hero-visual .slot-frame {
  aspect-ratio: 4 / 4.6; border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); rotate: 1.4deg;
}

.hero-badge {
  position: absolute; left: -16px; bottom: 26px;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); box-shadow: var(--sh-lg);
  padding: 14px 18px; display: flex; align-items: center; gap: 13px;
  rotate: -2deg;
}
.hero-badge .ico {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--sage-mist); display: grid; place-items: center; flex: none;
}
.hero-badge .ico svg { width: 22px; height: 22px; color: var(--primary-deep); }
.hero-badge b { font-family: var(--font-display); font-size: 17px; display: block; }
.hero-badge span { font-size: 13px; color: var(--muted); }
.hero-badge.top { left: auto; right: -14px; bottom: auto; top: 30px; rotate: 2.5deg; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-strip-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(20px, 5vw, 56px); padding-block: 22px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 600; font-size: 15px; color: var(--ink-2);
}
.trust-item svg { width: 22px; height: 22px; color: var(--primary); flex: none; }

/* SERVICES */
.services-grid {
  margin-top: 44px; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.service-card {
  padding: 26px 24px 24px; border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .22s cubic-bezier(.34,1.2,.64,1), box-shadow .25s, border-color .2s;
  cursor: pointer; text-align: left; position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line-soft);
  width: 100%; font-family: inherit;
}
.service-card:hover {
  transform: translateY(-5px); box-shadow: var(--sh-lg);
  border-color: var(--sage-soft);
}
.service-ico {
  width: 52px; height: 52px; border-radius: 15px;
  background: var(--sage-mist); display: grid; place-items: center;
  transition: background .2s;
}
.service-card:hover .service-ico { background: var(--sage-soft); }
.service-ico svg { width: 27px; height: 27px; color: var(--primary-deep); }
.service-card h3 { font-size: 20px; font-weight: 600; }
.service-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.service-foot {
  margin-top: auto; padding-top: 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.service-price { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--primary-deep); }
.service-price small { font-weight: 600; color: var(--muted); font-size: 12px; }
.service-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); display: grid; place-items: center;
  transition: background .2s, transform .2s;
}
.service-card:hover .service-arrow { background: var(--primary); transform: translateX(2px); }
.service-arrow svg { width: 17px; height: 17px; color: var(--ink-2); transition: color .2s; }
.service-card:hover .service-arrow svg { color: #fff; }
.services-note {
  margin-top: 22px; display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--muted);
}
.services-note svg { width: 18px; height: 18px; color: var(--primary); }

/* LOCAL */
.local { background: var(--surface); border-block: 1px solid var(--line); }
.local-grid {
  display: grid; grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 60px); align-items: center;
}
.local-visual .slot-frame {
  aspect-ratio: 5 / 4; border-radius: var(--r-xl); box-shadow: var(--sh-md);
}
.local-map-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.local-copy h2 { font-size: clamp(26px, 4.6vw, 40px); }
.local-copy .kicker { margin-bottom: 14px; }
.local-copy p { margin-top: 16px; color: var(--ink-2); font-size: 17px; }
.local-points { margin-top: 24px; display: grid; gap: 14px; }
.local-point { display: flex; gap: 13px; align-items: flex-start; }
.local-point .ico {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: var(--sage-mist); display: grid; place-items: center;
}
.local-point .ico svg { width: 20px; height: 20px; color: var(--primary-deep); }
.local-point b { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.local-point span { font-size: 14.5px; color: var(--ink-2); }

/* RESULTS — before/after slider */
.results { background: var(--bg); }
.results-grid {
  margin-top: 44px; display: grid; gap: 28px;
  grid-template-columns: 1.05fr .95fr; align-items: center;
}
.results-copy h2 { font-size: clamp(26px, 4.6vw, 40px); }
.results-copy .kicker { margin-bottom: 14px; }
.results-copy p { margin-top: 16px; color: var(--ink-2); font-size: 17px; }
.results-list { margin-top: 22px; display: grid; gap: 12px; }
.results-list li {
  display: flex; align-items: center; gap: 11px;
  font-weight: 600; font-size: 15.5px; color: var(--ink-2);
  list-style: none;
}
.results-list svg { width: 19px; height: 19px; color: var(--primary); flex: none; }

.ba {
  position: relative; aspect-ratio: 5 / 4;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); background: var(--sage-mist);
  user-select: none; touch-action: pan-y;
}
.ba .ba-half {
  position: absolute; inset: 0; overflow: hidden;
}
.ba .ba-half.after { z-index: 1; }
.ba .ba-half.before { z-index: 2; }
.ba .ba-half .slot-frame {
  position: absolute; inset: 0; border-radius: 0;
  box-shadow: none; background: var(--sage-mist);
}
.ba .ba-half .slot-frame.empty::after {
  bottom: 22px;
}
.ba .ba-label {
  position: absolute; top: 16px; z-index: 4;
  background: rgba(255,253,248,.92); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 99px;
  box-shadow: var(--sh-sm);
}
.ba .ba-label.before { left: 16px; }
.ba .ba-label.after  { right: 16px; }
.ba .ba-divider {
  position: absolute; top: 0; bottom: 0; width: 3px;
  background: #fff; z-index: 5; pointer-events: none;
  box-shadow: 0 0 0 1px rgba(70,80,55,.18), 0 0 18px rgba(70,80,55,.18);
  transform: translateX(-50%);
}
.ba .ba-handle {
  position: absolute; top: 50%; z-index: 6;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--line);
  box-shadow: var(--sh-md);
  display: grid; place-items: center;
  transform: translate(-50%, -50%);
  cursor: ew-resize;
}
.ba .ba-handle svg { width: 22px; height: 22px; color: var(--primary-deep); }
.ba .ba-range {
  position: absolute; inset: 0; z-index: 7;
  width: 100%; height: 100%; margin: 0; padding: 0;
  opacity: 0; cursor: ew-resize;
}

/* PRICING */
.pricing-band { position: relative; }
.price-row {
  margin-top: 40px; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.price-card {
  padding: 24px; border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 6px;
  position: relative; transition: transform .2s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.price-card .pc-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.price-card .pc-from { font-size: 13px; color: var(--muted); font-weight: 600; }
.price-card .pc-amt {
  font-family: var(--font-display); font-weight: 700; font-size: 34px;
  color: var(--ink); line-height: 1; margin-top: 4px;
}
.price-card .pc-amt small { font-size: 15px; color: var(--muted); font-weight: 600; }
.price-card .pc-desc { font-size: 13.5px; color: var(--ink-2); margin-top: 6px; }
.price-note {
  margin-top: 26px; background: var(--sage-mist);
  border-radius: var(--r-md); padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--primary-deep);
}
.price-note svg { width: 24px; height: 24px; flex: none; color: var(--primary-deep); }
.price-note .btn { margin-left: auto; flex: none; }

/* WHY */
.why { background: var(--surface); border-block: 1px solid var(--line); }
.why-grid {
  margin-top: 40px; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.why-card {
  padding: 26px 22px; border-radius: var(--r-lg);
  background: var(--bg); border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 12px;
}
.why-ico {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--sage-mist); display: grid; place-items: center;
}
.why-ico svg { width: 26px; height: 26px; color: var(--primary-deep); }
.why-card h3 { font-size: 18px; font-weight: 600; }
.why-card p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* BOOKING */
.booking { scroll-margin-top: 90px; }
.booking-grid {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 4vw, 50px); align-items: start;
}
.booking-copy { position: sticky; top: 100px; }
.booking-copy h2 { font-size: clamp(26px, 4.4vw, 40px); margin-bottom: 14px; }
.booking-copy p { color: var(--ink-2); font-size: 17px; }
.booking-steps { margin-top: 26px; display: grid; gap: 16px; }
.bk-step { display: flex; gap: 14px; align-items: flex-start; }
.bk-step .num {
  width: 32px; height: 32px; border-radius: 50%; flex: none;
  background: var(--primary); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  display: grid; place-items: center;
}
.bk-step b { font-family: var(--font-display); font-weight: 600; font-size: 16px; display: block; }
.bk-step span { font-size: 14.5px; color: var(--ink-2); }

.koala-frame {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-xl); box-shadow: var(--sh-lg); overflow: hidden;
}
.koala-top {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 22px; border-bottom: 1px solid var(--line-soft);
  background: var(--surface-2);
}
.koala-top .tag {
  margin-left: auto; font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.koala-top .tag .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 0 rgba(124,148,115,.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(124,148,115,.45); }
  70% { box-shadow: 0 0 0 8px rgba(124,148,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,148,115,0); }
}
.koala-dots { display: flex; gap: 6px; }
.koala-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }

.koala-body { padding: 26px 26px 28px; position: relative; background: var(--surface); }

.koala-progress {
  display: flex; align-items: center; gap: 0; margin-bottom: 24px;
}
.kp-step { display: flex; align-items: center; gap: 10px; flex: 1; }
.kp-step:last-child { flex: none; }
.kp-dot {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  background: var(--surface-2); color: var(--muted);
  border: 1.5px solid var(--line); transition: all .25s;
}
.kp-step.active .kp-dot { background: var(--primary); color: #fff; border-color: var(--primary); }
.kp-step.done .kp-dot { background: var(--sage-soft); color: var(--primary-deep); border-color: var(--sage-soft); }
.kp-dot svg { width: 14px; height: 14px; }
.kp-label { font-size: 13px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.kp-step.active .kp-label { color: var(--ink); }
.kp-line { flex: 1; height: 2px; background: var(--line); border-radius: 2px; margin: 0 4px; }
.kp-line.done { background: var(--sage-soft); }

.koala-q { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin-bottom: 18px; }

.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.opt {
  text-align: left; background: var(--bg);
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 16px 16px; display: flex; align-items: center; gap: 13px;
  transition: border-color .18s, background .18s, transform .15s;
  font-family: inherit; cursor: pointer; width: 100%;
}
.opt:hover { border-color: var(--sage-soft); transform: translateY(-2px); }
.opt.sel { border-color: var(--primary); background: var(--sage-mist); box-shadow: 0 0 0 3px rgba(124,148,115,.12); }
.opt .opt-ico {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  background: var(--surface); display: grid; place-items: center;
  border: 1px solid var(--line-soft);
}
.opt.sel .opt-ico { background: #fff; }
.opt .opt-ico svg { width: 21px; height: 21px; color: var(--primary-deep); }
.opt .opt-text { display: flex; flex-direction: column; min-width: 0; }
.opt b { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; line-height: 1.2; }
.opt .opt-sub { font-size: 12.5px; color: var(--muted); }
.opt .opt-check {
  margin-left: auto; width: 22px; height: 22px; border-radius: 50%; flex: none;
  border: 1.5px solid var(--line); display: grid; place-items: center;
  transition: all .18s;
}
.opt.sel .opt-check { background: var(--primary); border-color: var(--primary); }
.opt .opt-check svg { width: 13px; height: 13px; color: #fff; opacity: 0; transition: opacity .15s; }
.opt.sel .opt-check svg { opacity: 1; }

.koala-section-title {
  font-size: 13px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .05em; margin: 20px 0 10px;
}

.koala-review { display: grid; gap: 10px; }
.koala-review-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 13px 16px; background: var(--bg);
  border-radius: var(--r-md); border: 1px solid var(--line-soft);
}
.koala-review-row .lbl { color: var(--muted); font-weight: 600; font-size: 14px; }
.koala-review-row .val { font-family: var(--font-display); font-weight: 600; font-size: 15px; text-align: right; }

.koala-summary {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.koala-est .lbl { font-size: 12.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.koala-est .amt { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--ink); line-height: 1; margin-top: 3px; }
.koala-est .amt small { font-size: 14px; color: var(--muted); font-weight: 600; }
.koala-est .note { margin-top: 6px; font-size: 12.5px; line-height: 1.35; color: var(--muted); max-width: 240px; }
.koala-nav { display: flex; gap: 10px; }
.koala-nav .btn[disabled] { opacity: .45; pointer-events: none; }

.koala-foot {
  margin-top: 18px; display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--muted);
}
.koala-foot svg { width: 15px; height: 15px; color: var(--primary); }

.koala-done { text-align: center; padding: 30px 10px 16px; }
.koala-done .big {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--sage-mist); display: grid; place-items: center;
  animation: pop .5s cubic-bezier(.34,1.5,.64,1);
}
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.koala-done .big svg { width: 38px; height: 38px; color: var(--primary-deep); }
.koala-done h3 { font-size: 24px; margin-bottom: 10px; }
.koala-done p { color: var(--ink-2); max-width: 360px; margin: 0 auto 22px; }
.koala-recap {
  display: inline-flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px;
}

.koala-iframe {
  width: 100%; min-height: 520px; border: 0; display: block;
}
.koala-config {
  margin-top: 12px; padding: 12px 14px; border-radius: var(--r-sm);
  background: var(--sage-mist); color: var(--primary-deep);
  font-size: 12.5px; line-height: 1.45;
}
.koala-config code {
  font-family: monospace; background: rgba(255,255,255,.6);
  padding: 2px 6px; border-radius: 5px;
}

/* FINAL CTA */
.final { position: relative; overflow: hidden; }
.final-card {
  background: linear-gradient(165deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-radius: var(--r-xl); padding: clamp(40px, 7vw, 72px);
  text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--sh-lg);
}
.final-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 15% 0%, rgba(255,255,255,.16) 0%, transparent 55%),
    radial-gradient(50% 60% at 100% 100%, rgba(232,176,75,.28) 0%, transparent 55%);
}
.final-card > * { position: relative; }
.final-card .kicker { color: #eef2ea; justify-content: center; }
.final-card .kicker::before { background: var(--accent); opacity: 1; }
.final-card h2 {
  color: #fff; font-size: clamp(30px, 5.5vw, 50px); font-weight: 700;
  margin: 16px auto 0; max-width: 640px; letter-spacing: -.02em;
}
.final-card p { color: #eaefe6; font-size: clamp(16px, 2.5vw, 19px); margin: 18px auto 0; max-width: 480px; }
.final-cta { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-card .btn-primary { background: #fff; color: var(--primary-deep); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.final-card .btn-primary:hover { background: var(--accent); color: var(--ink); }
.final-card .btn-ghost { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); color: #fff; }
.final-card .btn-ghost:hover { background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1.5px #fff; }
.final-reassure { margin-top: 22px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.final-reassure span { display: inline-flex; align-items: center; gap: 7px; color: #dde6d8; font-size: 14px; font-weight: 600; }
.final-reassure svg { width: 17px; height: 17px; color: var(--accent); }

/* FOOTER */
.site-footer { padding-block: 52px 32px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px; padding-bottom: 36px; border-bottom: 1px solid var(--line);
}
.footer-brand p { margin-top: 14px; color: var(--ink-2); font-size: 15px; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 14px;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); margin-bottom: 14px; font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--ink-2); font-size: 15px; }
.footer-col a:hover { color: var(--primary-deep); }
.footer-bottom {
  padding-top: 22px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  font-size: 13.5px; color: var(--muted); flex-wrap: wrap;
}

/* STICKY MOBILE CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 40; display: none;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(246,244,238,.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(70,80,55,.08);
  transition: transform .3s;
}
.sticky-cta.hidden { transform: translateY(110%); }
.sticky-cta-inner { display: flex; align-items: center; gap: 14px; }
.sticky-cta .meta { flex: 1; }
.sticky-cta .meta b { font-family: var(--font-display); font-size: 15px; display: block; line-height: 1.1; }
.sticky-cta .meta span { font-size: 12.5px; color: var(--muted); }

/* BOOKING MODAL */
.bk-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(45,50,42,.42);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: none; align-items: flex-start; justify-content: center;
  padding: clamp(16px, 5vh, 64px) 16px;
  overflow-y: auto;
}
.bk-overlay.open { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.bk-modal {
  position: relative; width: 100%; max-width: 720px;
  margin: auto 0; animation: rise .35s cubic-bezier(.2,.8,.3,1);
}
@keyframes rise { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
.bk-close {
  position: absolute; top: -14px; right: -14px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  display: grid; place-items: center;
  transition: transform .18s, background .18s;
}
.bk-close:hover { transform: rotate(90deg); background: #fff; }
.bk-close svg { width: 20px; height: 20px; color: var(--ink); }
@media (max-width: 560px) {
  .bk-close { top: 8px; right: 8px; background: rgba(255,255,255,.85); }
}
.bk-modal .koala-body { min-height: 70vh; }
.bk-modal .koala-body iframe { min-height: 70vh; }

/* HUB */
.hub-grid {
  margin-top: 44px; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.hub-tile {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line-soft);
  box-shadow: var(--sh-card);
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
.hub-tile:hover {
  transform: translateY(-4px); box-shadow: var(--sh-lg);
  border-color: var(--sage-soft);
}
.hub-tile-name { font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.hub-tile-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sage-mist); display: grid; place-items: center;
  color: var(--primary-deep); font-weight: 700;
}

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; }
.reveal.d4 { transition-delay: .24s; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .price-row     { grid-template-columns: repeat(3, 1fr); }
  .booking-grid  { grid-template-columns: 1fr; }
  .booking-copy  { position: static; }
  .hub-grid      { grid-template-columns: repeat(2, 1fr); }
  .results-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .header-nav { display: none; }
  .header-phone { display: none; }
  .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; }
  .hero-visual .slot-frame { rotate: 0deg; aspect-ratio: 5 / 4; }
  .local-grid { grid-template-columns: 1fr; }
  .local-visual { max-width: 480px; }
  .price-row { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: block; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .price-row     { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 26px; }
  .hub-grid      { grid-template-columns: 1fr; }
  .opt-grid      { grid-template-columns: 1fr; }
  .hero-badge { left: 8px; bottom: 12px; padding: 11px 14px; }
  .hero-badge.top { right: 6px; top: 14px; }
  .price-note { flex-direction: column; align-items: flex-start; }
  .price-note .btn { margin-left: 0; }
  .koala-summary { flex-direction: column; align-items: stretch; }
  .koala-nav { width: 100%; }
  .koala-nav .btn { flex: 1; }
  .kp-label { display: none; }
}
