/* ============================================================
   207 HouseKeeping — Landing page styles
   Layers on colors_and_type.css + ds-components.css
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--fg1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
:root { --accent: var(--brand); --accent-strong: var(--brand-strong); }

/* tweakable accent applies to brand-driven bits */
.acc-bg { background: var(--accent); }
.acc-text { color: var(--accent); }

.wrap { width: min(1180px, 92vw); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 112px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; flex-wrap: nowrap; }
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--accent);
}

.h-display { font-family: var(--font-display); font-weight: 800;
  line-height: 1.02; letter-spacing: -0.025em; color: var(--fg1);
  font-size: clamp(38px, 6vw, 68px); margin: 0; }
.h2 { font-family: var(--font-display); font-weight: 700;
  line-height: 1.08; letter-spacing: -0.02em; color: var(--fg1);
  font-size: clamp(30px, 4vw, 44px); margin: 0; }
.h3 { font-family: var(--font-display); font-weight: 700;
  font-size: clamp(21px, 2.4vw, 26px); margin: 0; letter-spacing: -0.01em; }
.lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; color: var(--fg2); }
.muted { color: var(--fg3); }

/* ---------- Buttons (extend ds) ---------- */
.btn { font-size: 15px; }
.btn-primary { background: var(--accent); }
.btn-primary:hover { background: var(--accent-strong); }
.btn-block { width: 100%; }
.btn-xl { padding: 18px 30px; font-size: 17px; border-radius: var(--r-pill); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px;
  padding: 14px 0; }
.brand-lockup { display: flex; align-items: center; gap: 12px; text-decoration: none; white-space: nowrap; }
.brand-lockup .mark { width: 44px; height: 44px; flex: none; }
.brand-lockup > span { display: flex; flex-direction: column; gap: 4px; line-height: 1; }
.brand-name { display: block; font-family: var(--font-display); font-weight: 800;
  font-size: 19px; letter-spacing: -0.01em; line-height: 1; color: var(--fg1); }
.brand-sub { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal-600); line-height: 1; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a { text-decoration: none; font-weight: 600; font-size: 15px; white-space: nowrap;
  color: var(--fg2); padding: 9px 14px; border-radius: var(--r-pill);
  transition: background var(--dur), color var(--dur); }
.nav a:hover { background: var(--teal-100); color: var(--teal-700); }
.header-cta { display: flex; align-items: center; gap: 10px; }

/* "Text us" pill in the header. Always visible at every viewport —
   never goes into the hamburger drawer. */
.header-text { white-space: nowrap; }
.header-text svg { width: 17px; height: 17px; }

/* Subtle drop shadow when the page has scrolled. */
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

/* Hamburger button — hidden on desktop, shown by the <1200px
   media query below. */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 0;
  transition: background var(--dur) var(--ease-soft);
}
.menu-toggle:hover { background: var(--teal-100); }
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--fg1);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease-soft), opacity var(--dur);
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 64px); align-items: center;
  padding: clamp(48px, 7vw, 96px) 0; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 32ch; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px;
  border-radius: var(--r-pill); background: var(--paper); border: 1px solid var(--line);
  font-weight: 700; font-size: 14px; color: var(--fg1); text-decoration: none;
  box-shadow: var(--shadow-xs); transition: transform var(--dur) var(--ease-out),
    box-shadow var(--dur), border-color var(--dur), color var(--dur); }
.hero-chip svg { color: var(--teal-600); }
.hero-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm);
  border-color: transparent; color: var(--teal-700); }
.mini-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal-600); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 34px; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 14px;
  font-weight: 600; color: var(--fg2); }
.trust-item .dot { width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); flex: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent); }

.hero-media { position: relative; }
.hero-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.hero-badge-card {
  position: absolute; left: -22px; bottom: 28px;
  background: var(--paper); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: 16px 18px;
  display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.hero-badge-card .stars { color: #F5A623; font-size: 15px; letter-spacing: 1px; }
.hero-badge-card .big { font-family: var(--font-display); font-weight: 800;
  font-size: 26px; line-height: 1; }
/* Caption next to the rating in the hero badge. */
.hero-badge-card .meta { font-size: var(--t-caption); color: var(--fg2); line-height: 1.4; }
/* Headline spacing inside the hero copy block. */
.hero-copy .h-display { margin-top: var(--sp-4); }
.float-bubble { position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff8, transparent 42%),
    linear-gradient(140deg, var(--accent), var(--lime));
  opacity: 0.9; pointer-events: none; }

/* Brand soap-bubble shape — gradient sphere with highlight.
   Size is data-driven via the component prop (inline width/height).
   Add a position class (e.g. .hero-deco-bubble--lg) for placement. */
.bubble {
  border-radius: 50%;
  display: inline-block;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.7), transparent 42%),
    linear-gradient(140deg, var(--accent), var(--lime));
}

/* Decorative bubbles overlaid on the hero photo. */
.hero-deco-bubble--lg { position: absolute; top: -22px; right: 30px;  opacity: 0.85; }
.hero-deco-bubble--sm { position: absolute; top: 40px;  right: -12px; opacity: 0.70; }

/* Decorative bubble inside the dark contact-info card. */
.book-info-deco-bubble { position: absolute; right: -30px; bottom: -34px; opacity: 0.16; }

/* bubble motif overlay band */
.bubbles-off .bubble-motif { display: none; }

/* page-wide floating soap bubbles (behind all content) */
.bg-bubbles { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.75), transparent 46%),
    linear-gradient(140deg, var(--accent), var(--lime));
  animation: bubble-drift var(--bdur, 26s) var(--ease-out) var(--bdelay, 0s) infinite;
  will-change: transform;
}
@keyframes bubble-drift {
  0%   { transform: translate3d(0, 14px, 0) scale(1); }
  50%  { transform: translate3d(10px, -20px, 0) scale(1.05); }
  100% { transform: translate3d(0, 14px, 0) scale(1); }
}
.bubbles-off .bg-bubbles { display: none; }
@media (prefers-reduced-motion: reduce) {
  .bg-bubble { animation: none; }
}

/* ============================================================
   ENGAGEMENT ROW
   ============================================================ */
.engage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.engage-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px 22px 24px;
  text-align: left; cursor: pointer; display: flex; flex-direction: column;
  gap: 10px; transition: transform var(--dur) var(--ease-out),
    box-shadow var(--dur), border-color var(--dur); text-decoration: none;
  box-shadow: var(--shadow-xs); position: relative; overflow: hidden;
}
.engage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: transparent; }
/* Icon tile. Background color is data-driven via --engage-icon-bg
   (set by the consumer for non-featured cards). Featured cards
   override to the brand gradient (see below). */
.engage-icon { width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; color: #fff; margin-bottom: 6px;
  background: var(--engage-icon-bg, var(--brand)); }
.engage-icon svg { width: 24px; height: 24px; }
.engage-card.featured .engage-icon {
  background: linear-gradient(140deg, var(--accent), var(--lime));
  color: var(--teal-900);
}
.engage-card h4 { margin: 0; font-family: var(--font-display); font-weight: 700;
  font-size: 19px; }
.engage-card p { margin: 0; font-size: 14px; color: var(--fg2); line-height: 1.5; }
.engage-card .go { margin-top: auto; padding-top: 10px; font-weight: 700;
  font-size: 14px; color: var(--accent); display: inline-flex; gap: 6px; align-items: center; }
.engage-card.featured { background: var(--ink-surface); border-color: transparent; }
.engage-card.featured h4 { color: #fff; }
.engage-card.featured p { color: var(--fg-on-dark); opacity: 0.82; }
.engage-card.featured .go { color: var(--lime); }

/* ============================================================
   THE PLAN (price hero)
   ============================================================ */
.plan-card { position: relative; overflow: hidden;
  background: var(--ink-surface); color: var(--fg-on-dark);
  border-radius: var(--r-xl); padding: clamp(32px, 4vw, 52px);
  box-shadow: var(--shadow-lg); }
.plan-card .bubble-motif { position: absolute; width: 320px; height: 320px;
  right: -90px; top: -110px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.12), transparent 60%),
    linear-gradient(140deg, var(--accent), transparent 70%); opacity: 0.5; }
.plan-main { position: relative; z-index: 1; }
.plan-name { font-family: var(--font-display); font-weight: 800; font-size: 24px;
  color: #fff; }
.plan-price { display: flex; align-items: baseline; gap: 14px; margin: 8px 0 14px; }
.plan-price .amt { font-family: var(--font-display); font-weight: 800;
  font-size: clamp(56px, 8vw, 84px); line-height: 0.95; letter-spacing: -0.02em;
  color: #fff; padding-right: 6px; }
.plan-price .per { font-size: 20px; font-weight: 700; color: var(--lime); white-space: nowrap; }
.plan-note { color: var(--fg-on-dark); opacity: 0.85; line-height: 1.6;
  font-size: 16px; max-width: 42ch; margin: 0 0 26px; }
.plan-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-ghost-light { background: rgba(255,255,255,0.08); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); }

/* ============================================================
   WHAT'S INCLUDED
   ============================================================ */
.incl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.incl-card { background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px 24px; display: flex; gap: 16px;
  box-shadow: var(--shadow-xs); transition: transform var(--dur) var(--ease-out),
    box-shadow var(--dur), border-color var(--dur); }
.incl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: transparent; }
.incl-bubble { width: 46px; height: 46px; flex: none; border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--lime));
  display: grid; place-items: center; box-shadow: var(--shadow-xs); }
.incl-bubble svg { width: 22px; height: 22px; color: var(--teal-900); }
.incl-body h4 { margin: 0 0 4px; font-family: var(--font-display); font-weight: 700;
  font-size: 19px; }
.incl-short { font-weight: 700; color: var(--teal-700); font-size: 14px; margin-bottom: 7px; }
.incl-body p { margin: 0; font-size: 14px; color: var(--fg2); line-height: 1.55; }
/* CTA tile inside the included-grid — slight stagger so it lands
   after the regular cards. */
.incl-card.incl-cta.reveal-up { transition-delay: 120ms; }
.incl-card.incl-cta { background: var(--ink-surface); border-color: transparent;
  flex-direction: column; justify-content: center; }
.incl-card.incl-cta:hover { transform: translateY(-4px); }

/* ============================================================
   EXTRAS (monthly add-ons)
   ============================================================ */
.extra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.extra-card { position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur), border-color var(--dur); }
.extra-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.extra-card.featured { border-color: transparent;
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-md); }
.extra-flag { position: absolute; top: -11px; right: 22px; font-size: 11px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--teal-900);
  background: var(--lime); padding: 5px 12px; border-radius: var(--r-pill); white-space: nowrap; }
.extra-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--accent), var(--lime)); margin-bottom: 18px; }
.extra-icon svg { width: 22px; height: 22px; color: var(--teal-900); }
.extra-card h4 { margin: 0 0 10px; font-family: var(--font-display); font-weight: 700; font-size: 21px; }
.extra-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.extra-price .amt { font-family: var(--font-display); font-weight: 800; font-size: 34px;
  line-height: 1; letter-spacing: -0.02em; color: var(--teal-700); padding-right: 2px; }
.extra-price .unit { font-size: 13.5px; font-weight: 600; color: var(--fg3); }
.extra-card p { margin: 0; font-size: 14.5px; color: var(--fg2); line-height: 1.6; text-wrap: pretty; }
.extra-foot { text-align: center; margin: 26px auto 0; max-width: 600px; font-size: 14.5px;
  color: var(--fg3); line-height: 1.6; }

/* ============================================================
   VALUE COMPARISON
   ============================================================ */
.value-table { background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  max-width: 980px; margin: 0 auto; }
.vt-head, .vt-row, .vt-total, .vt-pay { display: grid;
  grid-template-columns: 1.9fr 1.1fr 1.2fr 0.9fr; gap: 16px; align-items: center;
  padding: 16px 26px; }
.vt-head { background: var(--teal-900); color: #fff; font-size: 12.5px;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.vt-row { border-top: 1px solid var(--line); font-size: 15px; }
.vt-row:nth-child(odd) { background: var(--bg-2); }
.vt-svc { font-weight: 700; color: var(--fg1); }
.vt-row span[data-k="With your plan"] { display: flex; align-items: center; gap: 9px;
  font-weight: 600; color: var(--teal-700); }
.vt-tick { width: 19px; height: 19px; flex: none; border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--lime)); display: grid;
  place-items: center; }
.vt-tick svg { width: 11px; height: 11px; color: var(--teal-900); }
.vt-row span[data-k="Pay as you go"] { color: var(--fg2); }
.num { text-align: right; font-variant-numeric: tabular-nums; }
.vt-row .num { font-family: var(--font-display); font-weight: 800; font-size: 17px;
  color: var(--fg1); }
.vt-total, .vt-pay { border-top: 1px solid var(--line-2); }
.vt-total { background: var(--bg-3); }
.vt-total .vt-svc, .vt-pay .vt-svc { font-family: var(--font-display); font-weight: 800;
  font-size: 18px; }
.vt-spacer { }
.vt-totlabel { font-size: 13px; color: var(--fg3); font-weight: 600; }
.vt-total .num.strike { font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: var(--fg3); text-decoration: line-through;
  text-decoration-color: var(--fg3); }
.vt-pay { background: linear-gradient(135deg, var(--teal-100), #fff); }
.vt-pay .num.big { font-family: var(--font-display); font-weight: 800;
  font-size: 30px; color: var(--teal-700); letter-spacing: -0.02em; }
.value-foot { text-align: center; margin: 26px auto 0; max-width: 620px;
  font-size: 17px; line-height: 1.6; color: var(--fg2); }
.value-foot strong { color: var(--teal-700); }

/* ============================================================
   WHY OWNERS LOVE IT
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-xs); }
.why-icon { width: 52px; height: 52px; border-radius: 16px; display: grid;
  place-items: center; background: var(--teal-100); margin-bottom: 18px; }
.why-icon svg { width: 24px; height: 24px; color: var(--teal-700); }
.why-card h4 { margin: 0 0 8px; font-family: var(--font-display); font-weight: 700;
  font-size: 21px; }
.why-card p { margin: 0; font-size: 14.5px; color: var(--fg2); line-height: 1.6; }
.goodtoknow { display: flex; gap: 16px; align-items: flex-start; margin-top: 28px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px 26px; }
.gtk-icon { width: 40px; height: 40px; flex: none; border-radius: 12px;
  background: linear-gradient(140deg, var(--accent), var(--lime)); display: grid;
  place-items: center; }
.gtk-icon svg { width: 19px; height: 19px; color: var(--teal-900); }
.goodtoknow .gtk-label { font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal-600); margin-bottom: 5px; }
.goodtoknow p { margin: 0; font-size: 14.5px; color: var(--fg2); line-height: 1.6; }

/* ============================================================
   SERVICES (tiers) — legacy, unused
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  align-items: stretch; }
.tier {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px 28px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur); position: relative;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier.popular { border: 1.5px solid var(--accent); box-shadow: var(--shadow-md); }
.tier-flag { position: absolute; top: -13px; left: 28px; white-space: nowrap;
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: var(--r-pill); letter-spacing: 0.02em; }
.tier-name { font-family: var(--font-display); font-weight: 800; font-size: 24px; }
.tier-fee { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 4px; }
.tier-fee .pct { font-family: var(--font-display); font-weight: 800;
  font-size: 52px; line-height: 1; letter-spacing: -0.03em; }
.tier-fee .of { font-size: 14px; font-weight: 600; color: var(--fg3); }
.tier-tag { font-weight: 700; color: var(--teal-700); font-size: 15px; margin-bottom: 16px; }
.tier-desc { font-size: 14.5px; color: var(--fg2); line-height: 1.55; margin: 0 0 18px; }
.tier-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex;
  flex-direction: column; gap: 11px; }
.tier-list li { display: flex; gap: 11px; font-size: 14.5px; color: var(--fg1);
  line-height: 1.45; }
.tier-list .tick { width: 20px; height: 20px; flex: none; border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--lime));
  display: grid; place-items: center; margin-top: 1px; }
.tier-list .tick svg { width: 11px; height: 11px; color: var(--teal-900); }
.tier .btn { margin-top: auto; }

/* ============================================================
   INDIVIDUAL SERVICES
   ============================================================ */
.indiv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.indiv-row {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 20px 22px; display: flex; gap: 18px;
  align-items: flex-start; transition: border-color var(--dur), box-shadow var(--dur); }
.indiv-row:hover { box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.indiv-bubble { width: 40px; height: 40px; flex: none; border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--lime));
  display: grid; place-items: center; box-shadow: var(--shadow-xs); }
.indiv-bubble svg { width: 20px; height: 20px; color: var(--teal-900); }
.indiv-row h4 { margin: 0 0 5px; font-size: 17px; font-weight: 700;
  font-family: var(--font-display); }
.indiv-row p { margin: 0; font-size: 13.5px; color: var(--fg2); line-height: 1.5; }
.indiv-price { margin-left: auto; text-align: right; flex: none; }
.indiv-price .amt { font-family: var(--font-display); font-weight: 800;
  font-size: 17px; color: var(--teal-700); white-space: nowrap; }
.indiv-price .unit { font-size: 12px; color: var(--fg3); }
.indiv-note { margin-top: 22px; font-size: 13px; color: var(--fg3);
  display: flex; gap: 10px; align-items: flex-start; }

/* ============================================================
   WIZARD
   ============================================================ */
.wizard-shell {
  background: var(--paper); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  display: grid; grid-template-columns: 300px 1fr; min-height: 540px;
}
.wizard-aside { background: var(--ink-surface); color: var(--fg-on-dark);
  padding: 34px 30px; display: flex; flex-direction: column; }
.wizard-aside .eyebrow { color: var(--lime); }
.wizard-aside .eyebrow::before { background: var(--lime); }
.wizard-aside h3 { color: #fff; margin: 14px 0 28px; font-size: 24px; }
.steps { list-style: none; margin: 0; padding: 0; display: flex;
  flex-direction: column; gap: 4px; }
.step-item { display: flex; gap: 14px; align-items: center; padding: 12px 0;
  color: var(--fg-on-dark); opacity: 0.5; transition: opacity var(--dur); }
.step-item.active { opacity: 1; }
.step-item.done { opacity: 0.85; }
.step-num { width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 700; font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.3); }
.step-item.active .step-num { background: var(--accent); border-color: var(--accent);
  color: var(--teal-900); }
.step-item.done .step-num { background: rgba(255,255,255,0.15); border-color: transparent; }
.step-label { font-size: 14.5px; font-weight: 600; }
.wizard-aside .aside-foot { margin-top: auto; font-size: 13px; opacity: 0.7;
  line-height: 1.5; }
.wizard-main { padding: 38px 40px; display: flex; flex-direction: column; }
.wizard-progress { height: 5px; background: var(--bg-3); border-radius: 999px;
  overflow: hidden; margin-bottom: 26px; }
.wizard-progress span { display: block; height: 100%; background: var(--accent);
  border-radius: 999px; transition: width var(--dur-slow) var(--ease-out); }
.step-head h3 { font-family: var(--font-display); font-weight: 800; font-size: 27px;
  margin: 0 0 6px; }
.step-head p { margin: 0 0 24px; color: var(--fg2); font-size: 15px; }
.wizard-body { flex: 1; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.choice {
  border: 1.5px solid var(--line-2); border-radius: var(--r-md);
  padding: 16px 18px; cursor: pointer; display: flex; gap: 13px;
  align-items: flex-start; transition: all var(--dur); background: var(--paper);
  text-align: left; font: inherit; }
.choice:hover { border-color: var(--accent); }
.choice.sel { border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 9%, white);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent); }
.choice-check { width: 22px; height: 22px; border-radius: 7px; flex: none;
  border: 1.5px solid var(--line-2); display: grid; place-items: center;
  margin-top: 1px; transition: all var(--dur); }
.choice.sel .choice-check { background: var(--accent); border-color: var(--accent); }
.choice-check svg { width: 13px; height: 13px; color: #fff;
  opacity: 0; transform: scale(0.6); transition: all var(--dur); }
.choice.sel .choice-check svg { opacity: 1; transform: scale(1); }
.choice > span:last-child { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.choice .c-title { font-weight: 700; font-size: 15px; display: block; line-height: 1.25; }
.choice .c-sub { font-size: 13px; color: var(--fg3); display: block; line-height: 1.3; }
.choice.radio .choice-check { border-radius: 50%; }

.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg button { font: inherit; cursor: pointer; padding: 11px 18px;
  border-radius: var(--r-pill); border: 1.5px solid var(--line-2);
  background: var(--paper); font-weight: 600; font-size: 14px; transition: all var(--dur); }
.seg button:hover { border-color: var(--accent); }
.seg button.on { background: var(--accent); border-color: var(--accent); color: #fff; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-grid .full { grid-column: 1 / -1; }

.wizard-foot { display: flex; align-items: center; gap: 12px; margin-top: 28px;
  padding-top: 22px; border-top: 1px solid var(--line); }
.wizard-foot .spacer { flex: 1; }

/* summary / success */
.summary-list { display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.summary-row { display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 18px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.summary-row:last-child { border-bottom: 0; }
.summary-row .k { color: var(--fg3); font-weight: 600; }
.summary-row .v { font-weight: 600; text-align: right; }
.rec-card { background: linear-gradient(135deg, var(--teal-100), #fff);
  border: 1.5px solid var(--accent); border-radius: var(--r-md);
  padding: 22px 24px; margin-bottom: 22px; }
.rec-card .rl { font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal-600); }
.rec-card .rn { font-family: var(--font-display); font-weight: 800; font-size: 26px;
  margin: 4px 0; }
.rec-card .rprice { font-family: var(--font-display); font-weight: 800;
  font-size: 22px; color: var(--teal-700); letter-spacing: -0.02em; }
.rec-card .rprice span { font-size: 14px; font-weight: 600; color: var(--fg3); letter-spacing: 0; }
.rec-card .rfound { margin-top: 14px; padding-top: 14px; font-size: 13.5px;
  color: var(--fg2); line-height: 1.55; border-top: 1px dashed var(--line-2);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.rec-card .rfound .fchip { font-size: 10.5px; font-weight: 800; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--teal-900); background: var(--lime);
  padding: 4px 10px; border-radius: var(--r-pill); }
.wizard-success { text-align: center; padding: 30px 10px; }
.wizard-success .lead { margin-top: var(--sp-2); }
.wizard-success .btn  { margin-top: var(--sp-5); }
/* Booking form uses the same success card but with more breathing room. */
.book-form .wizard-success { padding-block: var(--sp-10); }
.success-ring { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(140deg, var(--accent), var(--lime)); display: grid;
  place-items: center; box-shadow: var(--shadow-brand); }
.success-ring svg { width: 38px; height: 38px; color: var(--teal-900); }

/* Form fine-print under the submit button. */
.form-disclaimer { font-size: var(--t-caption); margin-top: var(--sp-3);
  text-align: center; color: var(--fg3); }

/* ============================================================
   BEFORE / AFTER (square pairs)
   ============================================================ */
.ba-list { display: flex; flex-direction: column; gap: 22px;
  max-width: 940px; margin: 0 auto; }
.ba-pair { margin: 0; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 1.35fr 1fr; align-items: stretch;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur); }
.ba-pair:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ba-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--bg-3); }
.ba-shot { position: relative; }
.ba-shot img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.ba-tag { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase; padding: 5px 11px;
  border-radius: var(--r-pill); color: #fff; }
.ba-tag.before { background: rgba(0,49,45,0.72); backdrop-filter: blur(4px); }
.ba-tag.after { background: var(--accent); color: var(--teal-900);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--accent) 40%, transparent); }
.ba-cap { padding: clamp(22px, 3vw, 34px); display: flex; flex-direction: column;
  justify-content: center; }
.ba-cap .ba-label { font-family: var(--font-display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.01em; margin-bottom: 10px; }
.ba-cap p { margin: 0; font-size: 15px; color: var(--fg2); line-height: 1.6; }
.ba-cap p { text-wrap: pretty; }

/* ============================================================
   REVIEWS + FACEBOOK
   ============================================================ */
.reviews-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px;
  align-items: start; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review-card { background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column; gap: 12px; }
.review-stars { color: #F5A623; letter-spacing: 2px; font-size: 16px; }
.review-text { font-size: 15px; line-height: 1.6; color: var(--fg1); margin: 0; }
.review-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
/* Avatar circle. Background color is data-driven via --av-bg. */
.review-av { width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 16px;
  font-family: var(--font-display); background: var(--av-bg, var(--teal-500)); }
.review-who .nm { font-weight: 700; font-size: 14.5px; display: block; }
.review-who .mt { font-size: 12.5px; color: var(--fg3); }

.fb-card { background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.fb-head { display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  border-bottom: 1px solid var(--line); }
.fb-logo { width: 40px; height: 40px; border-radius: 10px; background: #1877F2;
  display: grid; place-items: center; flex: none; }
.fb-logo svg { width: 22px; height: 22px; color: #fff; }
.fb-head .fn { font-weight: 700; font-size: 14.5px; line-height: 1.2; }
.fb-head .fm { font-size: 12.5px; color: var(--fg3); }
.fb-head .followbtn { margin-left: auto; }
.fb-post { padding: 16px 18px; border-bottom: 1px solid var(--line); }
.fb-post:last-child { border-bottom: 0; }
.fb-embed { position: relative; min-height: 340px; background: var(--bg-2); }
.fb-embed-fallback { position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center;
  padding: 24px; color: var(--fg2); }
.fb-embed-fallback p { margin: 0; font-size: 14px; max-width: 24ch; line-height: 1.5; }
.fb-embed-frame { position: relative; z-index: 1; display: block; width: 100%;
  border: 0; min-height: 620px; }
.fb-foot-link { display: block; text-align: center; font-weight: 700;
  color: var(--teal-600); text-decoration: none; padding: 14px 18px;
  border-top: 1px solid var(--line); }
.fb-card.follow-only { align-self: start; }
.fb-card.follow-only.reveal-up { transition-delay: 80ms; }
.fb-card.follow-only .fb-head { border-bottom: 1px solid var(--line); }
.follow-body { padding: 22px 18px; }
.follow-body p { margin: 0 0 16px; font-size: 14px; color: var(--fg2); line-height: 1.55; }
.fb-foot-link:hover { color: var(--teal-700); background: var(--teal-100); }
.fb-post .meta { font-size: 12px; color: var(--fg3); margin-bottom: 8px; }
.fb-post p { margin: 0 0 12px; font-size: 14px; line-height: 1.55; }
.fb-post img { border-radius: var(--r-sm); aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.fb-react { display: flex; align-items: center; gap: 8px; margin-top: 12px;
  font-size: 12.5px; color: var(--fg3); }
.fb-react .hearts { color: #E0245E; }

/* ============================================================
   BOOKING + CONTACT
   ============================================================ */
.book-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--paper); }
.book-info { background: var(--ink-surface); color: var(--fg-on-dark);
  padding: clamp(34px, 4vw, 52px); position: relative; overflow: hidden; }
.book-info .eyebrow { color: var(--lime); }
.book-info .eyebrow::before { background: var(--lime); }
.book-info h2 { color: #fff; margin: 14px 0 16px; }
.book-info p { color: var(--fg-on-dark); opacity: 0.85; line-height: 1.6; }
.contact-lines { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.contact-line { display: flex; gap: 14px; align-items: center; text-decoration: none;
  color: #fff; }
.contact-line .ci { width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: rgba(255,255,255,0.1); display: grid; place-items: center; }
.contact-line .ci svg { width: 20px; height: 20px; color: var(--lime); }
.contact-line .cl { font-size: 12px; opacity: 0.7; text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 700; }
.contact-line .cv { font-weight: 700; font-size: 16px; }
.book-info .bubble-motif { position: absolute; pointer-events: none; opacity: 0.5; }
.book-form { padding: clamp(34px, 4vw, 52px); }
.book-form .field { margin-bottom: 16px; }
.book-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--teal-900); color: var(--fg-on-dark);
  padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .mark { width: 46px; height: 46px; }
.footer-brand .fn { font-family: var(--font-display); font-weight: 800; font-size: 20px;
  color: #fff; }
.footer-about { font-size: 14px; line-height: 1.6; opacity: 0.8; max-width: 38ch; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal-300); margin: 0 0 16px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; text-decoration: none; color: var(--fg-on-dark);
  opacity: 0.82; font-size: 14.5px; margin-bottom: 11px; line-height: 1.4; }
.footer-col a:hover { opacity: 1; color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px;
  padding-top: 24px; font-size: 13px; opacity: 0.6; flex-wrap: wrap; }

/* ============================================================
   reveal entrance
   ============================================================ */
.reveal-up { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal-up.in { animation: riseIn 0.55s var(--ease-out); }
}
@keyframes riseIn {
  from { transform: translateY(18px); }
  to { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-up.in { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   SERVICES OVERVIEW (four pillars)
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.svc-card { display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px;
  text-decoration: none; color: inherit; box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur), border-color var(--dur); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.svc-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--accent), var(--lime)); }
.svc-icon svg { width: 22px; height: 22px; color: var(--teal-900); }
.svc-tag { font-size: 11.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--teal-700); background: var(--teal-100); padding: 5px 11px; border-radius: var(--r-pill); }
.svc-card h3 { margin: 0 0 8px; font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.svc-card > p { margin: 0 0 20px; font-size: 14px; color: var(--fg2); line-height: 1.55; flex: 1; text-wrap: pretty; }
.svc-foot { display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--line); }
.svc-price { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--fg1); }
.svc-go { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: 13.5px;
  color: var(--teal-600); }
.svc-card:hover .svc-go svg { transform: translateX(3px); }
.svc-go svg { transition: transform var(--dur) var(--ease-out); }

/* service section label */
.svc-label { display: inline-flex; flex-direction: column; gap: 9px; align-items: center; }
.section:not(:has(.svc-grid)) .svc-label { align-items: inherit; }
.svc-label-n { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-600); }
.svc-label-n .of { color: var(--fg3); }
.svc-label-name { display: inline-block; font-family: var(--font-display); font-weight: 800;
  font-size: 13px; letter-spacing: 0.02em; color: var(--teal-900); background: var(--lime);
  padding: 5px 13px; border-radius: var(--r-pill); }

/* ============================================================
   TUNING
   ============================================================ */
.tune-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 44px; }
.tune-step { display: flex; gap: 18px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px 26px; box-shadow: var(--shadow-xs); }
.tune-n { width: 44px; height: 44px; flex: none; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--teal-900);
  background: linear-gradient(140deg, var(--accent), var(--lime)); }
.tune-step h4 { margin: 4px 0 7px; font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.tune-step p { margin: 0; font-size: 14.5px; color: var(--fg2); line-height: 1.6; text-wrap: pretty; }
.tune-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 40px; }
.tune-path { background: var(--ink-surface); color: var(--fg-on-dark); border-radius: var(--r-lg);
  padding: 32px 30px; position: relative; overflow: hidden; }
.tune-path-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); margin-bottom: 18px; }
.tune-path-icon svg { width: 24px; height: 24px; color: var(--lime); }
.tune-path h4 { margin: 0 0 10px; font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; }
.tune-path p { margin: 0; font-size: 15px; color: var(--fg-on-dark); opacity: 0.85; line-height: 1.6; text-wrap: pretty; }
.tune-foot { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; align-items: stretch; }
.tune-viz { background: var(--bg-2); border: 1px dashed var(--line-2); border-radius: var(--r-lg);
  padding: 28px 30px; }
.tune-viz-flag { display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--teal-700); background: var(--teal-100);
  padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 14px; }
.tune-viz h4 { margin: 0 0 8px; font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.tune-viz p { margin: 0; font-size: 14px; color: var(--fg2); line-height: 1.6; text-wrap: pretty; }
.tune-cta-card { background: linear-gradient(135deg, var(--teal-100), #fff); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 26px; text-align: center; display: flex; flex-direction: column;
  justify-content: center; box-shadow: var(--shadow-sm); }
.tune-cta-price { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1;
  letter-spacing: -0.03em; color: var(--teal-700); }
.tune-cta-card > p { margin: 8px 0 18px; font-size: 14px; color: var(--fg2); line-height: 1.5; }
.tune-cta-call { display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 12px; font-weight: 700; font-size: 14px; color: var(--teal-700); text-decoration: none; }

/* ============================================================
   BOOKING & MARKETING (tiers)
   ============================================================ */
.mkt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.mkt-card { position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column; transition: transform var(--dur) var(--ease-out), box-shadow var(--dur); }
.mkt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mkt-card.popular { border-color: transparent; box-shadow: 0 0 0 2px var(--accent), var(--shadow-md); }
.mkt-flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal-900); background: var(--lime); padding: 6px 14px; border-radius: var(--r-pill); white-space: nowrap; }
.mkt-name { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.mkt-price { display: flex; align-items: baseline; gap: 8px; margin: 8px 0 4px; }
.mkt-price .amt { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1;
  letter-spacing: -0.03em; color: var(--teal-700); }
.mkt-price .per { font-size: 16px; font-weight: 700; color: var(--fg3); }
.mkt-pitch { font-size: 14.5px; color: var(--fg2); font-weight: 600; margin-bottom: 18px; }
.mkt-features { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column;
  gap: 11px; flex: 1; }
.mkt-features li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--fg1); line-height: 1.4; }
.mkt-tick { width: 20px; height: 20px; flex: none; border-radius: 50%; margin-top: 1px;
  background: linear-gradient(140deg, var(--accent), var(--lime)); display: grid; place-items: center; }
.mkt-tick svg { width: 12px; height: 12px; color: var(--teal-900); }
.whyflat { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; margin-top: 32px;
  background: var(--ink-surface); color: var(--fg-on-dark); border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 44px); }
.whyflat-main { display: flex; gap: 18px; align-items: flex-start; }
.whyflat-icon { width: 50px; height: 50px; flex: none; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--accent), var(--lime)); }
.whyflat-icon svg { width: 24px; height: 24px; color: var(--teal-900); }
.whyflat-main h3 { margin: 0 0 10px; font-family: var(--font-display); font-weight: 800; font-size: 24px; color: #fff; }
.whyflat-main p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--fg-on-dark); opacity: 0.86; text-wrap: pretty; }
.whyflat-pairs { border-left: 1px solid rgba(255,255,255,0.14); padding-left: 26px; }
.whyflat-pairs p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--fg-on-dark); opacity: 0.82; text-wrap: pretty; }
.whyflat-pairs .mini-eyebrow { color: var(--lime); display: block; margin-bottom: var(--sp-2); }

/* ============================================================
   À LA CARTE
   ============================================================ */
.alc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.alc-group { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 26px; box-shadow: var(--shadow-xs); }
.alc-group-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.alc-group-icon { width: 38px; height: 38px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: var(--teal-100); }
.alc-group-icon svg { width: 19px; height: 19px; color: var(--teal-700); }
.alc-group-head h4 { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.alc-items { display: flex; flex-direction: column; gap: 16px; }
.alc-item-top { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.alc-name { font-weight: 700; font-size: 15px; color: var(--fg1); }
.alc-price { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--teal-700);
  white-space: nowrap; flex: none; }
.alc-desc { margin: 4px 0 0; font-size: 13.5px; color: var(--fg2); line-height: 1.5; text-wrap: pretty; }
.alc-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 26px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px 28px; flex-wrap: wrap; }
.alc-notes-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 10px; }
.alc-notes-label svg { color: var(--teal-600); }
.alc-notes ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.alc-notes li { font-size: 13.5px; color: var(--fg2); line-height: 1.5; }
.alc-cta { flex: none; }

/* ============================================================
   WIZARD additions (icon choices + service recommendation)
   ============================================================ */
.choice.icon { align-items: center; }
.choice .c-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.choice-ic { width: 38px; height: 38px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: var(--teal-100); }
.choice-ic svg { width: 18px; height: 18px; color: var(--teal-700); }
.choice.icon .choice-check { margin-left: auto; }
.choice.icon.sel .choice-ic { background: linear-gradient(140deg, var(--accent), var(--lime)); }
.choice.icon.sel .choice-ic svg { color: var(--teal-900); }
.rec-services { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.rec-service { display: flex; align-items: center; gap: 16px; padding: 18px 20px; text-decoration: none;
  color: inherit; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: border-color var(--dur), background var(--dur); }
.rec-service:hover { border-color: var(--accent); background: var(--paper); }
.rec-service-ic { width: 44px; height: 44px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--accent), var(--lime)); }
.rec-service-ic svg { width: 20px; height: 20px; color: var(--teal-900); }
.rec-service-body { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.rec-service-name { font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.rec-service-blurb { font-size: 13px; color: var(--fg2); line-height: 1.45; }
.rec-service-price { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--teal-700);
  white-space: nowrap; flex: none; text-align: right; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   Below 1200px — collapse the primary nav into a hamburger
   drawer. The "Text us" CTA and logo stay inline. The drawer
   slides out from under the header when .is-open is on the
   site-header.
   ============================================================ */
@media (max-width: 1199px) {
  .menu-toggle { display: inline-flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: var(--sp-2) 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--dur) var(--ease-soft),
                transform var(--dur) var(--ease-soft),
                visibility var(--dur);
  }
  .nav a {
    width: 100%;
    padding: 14px var(--sp-6);
    border-radius: 0;
    font-size: 16px;
  }
  .site-header.is-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Hamburger morphs to an X when the drawer is open. */
  .site-header.is-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.is-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  /* Center the photo within the single column so the right side
     doesn't sit empty at medium widths. */
  .hero-media { order: -1; max-width: 520px; margin-inline: auto; }
  .engage-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tiers { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .incl-grid { grid-template-columns: repeat(2, 1fr); }
  .extra-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .tune-steps, .tune-paths, .tune-foot { grid-template-columns: 1fr; }
  .whyflat { grid-template-columns: 1fr; gap: 22px; }
  .whyflat-pairs { border-left: 0; border-top: 1px solid rgba(255,255,255,0.14); padding-left: 0; padding-top: 22px; }
  .alc-grid { grid-template-columns: 1fr; }
  .ba-pair { grid-template-columns: 1fr; }
  .reviews-layout { grid-template-columns: 1fr; }
  .wizard-shell { grid-template-columns: 1fr; }
  .wizard-aside { display: none; }
  .book-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .indiv-grid { grid-template-columns: 1fr; }
  .incl-grid { grid-template-columns: 1fr; }
  .extra-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .alc-foot { flex-direction: column; align-items: stretch; }
  .alc-cta { width: 100%; justify-content: center; }
  .review-grid { grid-template-columns: 1fr; }
  .field-grid, .choice-grid, .book-form .row2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-badge-card { left: 8px; }
  /* value table -> stacked cards */
  .vt-head { display: none; }
  .vt-row, .vt-total, .vt-pay { grid-template-columns: 1fr auto; gap: 6px 14px;
    padding: 16px 20px; }
  .vt-row span[data-k], .vt-total span, .vt-pay span { }
  .vt-row span[data-k="Pay as you go"]::before,
  .vt-row span[data-k="With your plan"]::before,
  .vt-row span[data-k="Monthly value"]::before {
    content: attr(data-k) ": "; font-size: 12px; color: var(--fg3);
    font-weight: 600; text-transform: none; letter-spacing: 0; }
  .vt-row .vt-svc { grid-column: 1 / -1; font-size: 16px; margin-bottom: 4px; }
  .vt-row span[data-k="Pay as you go"] { grid-column: 1 / -1; }
  .vt-row span[data-k="With your plan"] { grid-column: 1; }
  .vt-row .num { grid-column: 2; }
  .vt-spacer { display: none; }
  .vt-total .vt-svc, .vt-pay .vt-svc { grid-column: 1; }
  .vt-totlabel { display: none; }
}
