/* ============================================================
   [BRAND] — Airbnb-inspired visual system
   White canvas · single Rausch (#ff385c) accent · Inter
   8px buttons · pill search · photo-first cards · one shadow tier
   Content/IA/trust frame still governed by the Design Bible.
   Dark mode retained per Bible accessibility requirement.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand / accent — Pitch green */
  --primary: #1a8a4a;
  --primary-active: #126b39;
  --primary-disabled: #c2e6cf;

  /* Surfaces */
  --bg:        #ffffff;
  --bg-raised: #ffffff;
  --bg-sunken: #f7f7f7;
  --bg-strong: #f2f2f2;
  --bg-inverse:#222222;
  --bg-dark:   #222222;
  --border:        #dddddd;
  --border-soft:   #ebebeb;
  --border-strong: #c1c1c1;
  --hairline: #dddddd;

  /* Text */
  --text:      #222222;   /* ink */
  --text-soft: #3f3f3f;   /* body */
  --text-mut:  #6a6a6a;   /* muted */
  --text-faint:#929292;   /* muted soft */
  --text-inv:  #ffffff;
  --text-inv-soft: rgba(255,255,255,0.82);

  /* Roles (mapped onto existing names) */
  --crema:     #ffffff;
  --obsidian:  #222222;
  --forest:    #1a8a4a;   /* primary CTA/brand voltage — pitch green */
  --sand:      #dddddd;
  --slate:     #6a6a6a;
  --mint:      #1a8a4a;
  --brand:     #1a8a4a;
  --brand-ink: #ffffff;
  --accent:    #126b39;
  --verified:  #0b6bd6;   /* distinct blue for verified/secure checks (green is now the brand) */
  --verified-bg: #f7f7f7;
  --alert-amber: #b26a00;
  --error:     #c13515;
  --success:   #008a05;

  /* Radius — soft, no hard corners */
  --r-sm: 8px;     /* buttons, inputs */
  --r-md: 14px;    /* cards */
  --r-lg: 18px;
  --r-pill: 999px;

  /* Spacing (4/8 base) */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 80px; --s8: 112px;

  /* Single shadow tier */
  --shadow-1: rgba(0,0,0,0.02) 0 0 0 1px, rgba(0,0,0,0.04) 0 2px 6px 0, rgba(0,0,0,0.10) 0 4px 8px 0;
  --shadow-2: rgba(0,0,0,0.02) 0 0 0 1px, rgba(0,0,0,0.04) 0 2px 6px 0, rgba(0,0,0,0.10) 0 4px 8px 0;
  --shadow-pop: rgba(0,0,0,0.04) 0 1px 2px, rgba(0,0,0,0.12) 0 6px 16px;

  --serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;

  --nav-h: 80px;
  --maxw: 1280px;
}

[data-theme="dark"] {
  --bg:        #1b1b1b;
  --bg-raised: #242424;
  --bg-sunken: #202020;
  --bg-strong: #2a2a2a;
  --bg-inverse:#000000;
  --bg-dark:   #000000;
  --border:        #3a3a3a;
  --border-soft:   #2f2f2f;
  --border-strong: #4a4a4a;
  --hairline: #3a3a3a;
  --text:      #f7f7f7;
  --text-soft: #d6d6d6;
  --text-mut:  #a0a0a0;
  --text-faint:#7d7d7d;
  --verified-bg: #2a2a2a;
  --shadow-1: rgba(0,0,0,0.5) 0 2px 8px 0;
  --shadow-pop: rgba(0,0,0,0.6) 0 6px 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .2s ease, color .2s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--primary); color: #fff; }

/* ---------------- Type — Inter, modest weights ---------------- */
.serif { font-family: var(--sans); }
h1, h2, h3, .display { font-family: var(--sans); font-weight: 600; color: var(--text); letter-spacing: -0.02em; }
.display-xl { font-weight: 700; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1; letter-spacing: -0.025em; }
.display-lg { font-weight: 600; font-size: clamp(26px, 3vw, 38px); line-height: 1.14; letter-spacing: -0.02em; }
.display-md { font-weight: 600; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; letter-spacing: -0.015em; }
.display-sm { font-weight: 600; font-size: clamp(19px, 1.8vw, 22px); line-height: 1.25; letter-spacing: -0.01em; }
.lede { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.5; color: var(--text-soft); font-weight: 400; }
.body { font-size: 16px; line-height: 1.55; color: var(--text-soft); }
.small { font-size: 14px; line-height: 1.5; }
.meta { font-size: 14px; color: var(--text-mut); }
.eyebrow { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-mut); }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------------- Layout ---------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 40px; }
.section { padding: var(--s6) 0; }
.section-sm { padding: var(--s5) 0; }
.sec-head { max-width: 680px; margin-bottom: var(--s4); }
.sec-head .eyebrow { display: block; margin-bottom: 12px; }
.sec-head h2 { margin-bottom: 12px; }
.sec-head p { color: var(--text-mut); font-size: 18px; }
.center { text-align: center; }
.center.sec-head { margin-left: auto; margin-right: auto; }
.page-head h1 { color: var(--text); }

/* ---------------- Status / Advisory ticker ---------------- */
.status-bar { background: var(--bg-sunken); color: var(--text); border-bottom: 1px solid var(--border); font-size: 14px; }
.status-bar .wrap { display: flex; align-items: center; gap: 14px; min-height: 42px; padding-top: 8px; padding-bottom: 8px; }
.status-bar .tag { flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; color: var(--alert-amber); font-weight: 700; }
.status-bar .tag svg { width: 15px; height: 15px; }
.status-bar .msg { color: var(--text-soft); flex: 1; min-width: 0; }
.status-bar .msg b { color: var(--text); font-weight: 600; }
.status-bar a.see { color: var(--primary); text-decoration: none; white-space: nowrap; font-weight: 600; }
.status-bar a.see:hover { text-decoration: underline; }
.status-bar .x { background: none; border: none; color: var(--text-mut); cursor: pointer; padding: 4px; flex-shrink: 0; display:inline-flex; }
.status-bar .x svg { width: 16px; height: 16px; }
.status-bar .x:hover { color: var(--text); }
@media (max-width: 720px) { .status-bar .msg { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } }

/* ---------------- Nav ---------------- */
.nav { position: sticky; top: 0; z-index: 90; background: var(--bg); border-bottom: 1px solid var(--border); }
.nav .wrap { display: flex; align-items: center; gap: 22px; height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand .logo { width: 34px; height: 34px; border-radius: 9px; background: transparent; color: #fff; display: grid; place-items: center; flex-shrink: 0; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.18); }
.brand .logo svg { width: 100%; height: 100%; display: block; }
.brand .name { font-family: var(--sans); font-weight: 700; font-size: 21px; letter-spacing: -0.03em; color: var(--primary); }
.brand .name .tld { color: var(--text); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin-left: 10px; }
.nav-links a { display: inline-block; padding: 10px 14px; border-radius: var(--r-pill); white-space: nowrap; font-size: 15px; font-weight: 600; color: var(--text); text-decoration: none; transition: background .15s ease; }
.nav-links a:hover { background: var(--bg-sunken); }
.nav-links a.active { color: var(--primary); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--text); text-decoration: none; white-space: nowrap; padding: 8px 10px; border-radius: var(--r-pill); }
.nav-phone:hover { background: var(--bg-sunken); }
.nav-phone svg { width: 16px; height: 16px; color: var(--primary); }
.theme-toggle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg); color: var(--text-soft); cursor: pointer; display: grid; place-items: center; }
.theme-toggle:hover { box-shadow: var(--shadow-1); }
.theme-toggle svg { width: 18px; height: 18px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: var(--r-pill); cursor: pointer; padding: 9px 11px; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; }
.nav-toggle span + span { margin-top: 4px; }

/* ---------------- Buttons — 8px radius ---------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 48px; padding: 0 24px; border-radius: var(--r-sm); font-family: var(--sans); font-size: 16px; font-weight: 600; line-height: 1.25; text-decoration: none; cursor: pointer; border: 1px solid transparent; transition: background .15s ease, border-color .15s ease, box-shadow .15s ease; white-space: nowrap; }
.btn:focus-visible { outline: 2px solid var(--text); outline-offset: 2px; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-active); border-color: var(--primary-active); }
.btn-secondary { background: var(--bg); color: var(--text); border-color: var(--text); }
.btn-secondary:hover { background: var(--bg-sunken); }
.btn-on-dark { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-on-dark:hover { background: var(--primary-active); border-color: var(--primary-active); }
.btn-ghost-dark { background: var(--bg); color: var(--text); border-color: var(--text); }
.btn-ghost-dark:hover { background: var(--bg-sunken); }
.btn-sm { height: 42px; padding: 0 16px; font-size: 14px; }
.btn-lg { height: 52px; padding: 0 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.link-arrow:hover { color: var(--primary); }

/* ---------------- Search pill (signature) ---------------- */
.search-pill { display: inline-flex; align-items: stretch; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-pill); box-shadow: var(--shadow-1); padding: 6px 6px 6px 8px; max-width: 100%; }
.sp-seg { display: flex; flex-direction: column; justify-content: center; padding: 8px 20px; border-radius: var(--r-pill); cursor: pointer; min-width: 0; }
.sp-seg:hover { background: var(--bg-sunken); }
.sp-seg + .sp-seg { border-left: 1px solid var(--border); }
.sp-seg .lab { font-size: 12px; font-weight: 600; color: var(--text); }
.sp-seg .ph { font-size: 14px; color: var(--text-mut); white-space: nowrap; }
.sp-orb { display: inline-flex; align-items: center; gap: 8px; align-self: center; margin-left: 8px; height: 48px; padding: 0 18px; border-radius: var(--r-pill); background: var(--primary); color: #fff; border: none; cursor: pointer; font-family: var(--sans); font-size: 15px; font-weight: 600; text-decoration: none; }
.sp-orb:hover { background: var(--primary-active); }
.sp-orb svg { width: 18px; height: 18px; }
@media (max-width: 720px) { .search-pill { width: 100%; flex-wrap: wrap; border-radius: var(--r-md); } .sp-seg + .sp-seg { border-left: none; } .sp-orb { width: 100%; justify-content: center; margin: 6px 0 0; } }

/* ---------------- Trust strip ---------------- */
.trust-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 28px; padding: 18px 24px; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--bg); }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text-soft); font-weight: 500; }
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.trust-item .stars { color: var(--text); letter-spacing: 1px; }
.trust-item b { color: var(--text); font-weight: 700; }
.trust-divider { width: 1px; height: 22px; background: var(--border); }
@media (max-width: 720px){ .trust-divider { display: none; } }

/* ---------------- Cards ---------------- */
.card { background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--s3); }
.card-pad { padding: var(--s4); }

/* badges / chips */
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600; background: var(--bg-sunken); color: var(--text-soft); border: 1px solid var(--border); }
.badge svg { width: 14px; height: 14px; }
.badge-verified { background: var(--verified-bg); color: var(--verified); border-color: transparent; }
.badge-amber { background: rgba(178,106,0,0.10); color: var(--alert-amber); border-color: transparent; }
.badge-indep { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---------------- Disclaimer ---------------- */
.disclaimer { font-size: 14px; line-height: 1.55; color: var(--text-mut); border-left: 2px solid var(--border); padding: 4px 0 4px 16px; }
.disclaimer strong { color: var(--text-soft); font-weight: 600; }
.disclaimer-bar { background: var(--bg-sunken); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.disclaimer-bar .wrap { display: flex; align-items: center; gap: 12px; padding: 14px 40px; font-size: 14px; color: var(--text-mut); }
.disclaimer-bar svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--primary); }
.disclaimer-bar b { color: var(--text-soft); font-weight: 600; }

/* ---------------- City / property card (photo-first) ---------------- */
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 16px; }
.city-card { display: block; text-decoration: none; color: inherit; border-radius: var(--r-md); }
.city-photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--bg-sunken); border-radius: var(--r-md); }
.city-photo image-slot { width: 100%; height: 100%; }
.city-photo .city-scrim { position: absolute; left: 0; right: 0; bottom: 0; height: 42%; z-index: 2; pointer-events: none; border-radius: 0 0 var(--r-md) var(--r-md); background: linear-gradient(to top, rgba(0,0,0,0.42), rgba(0,0,0,0)); }
.city-card:hover .city-photo { box-shadow: var(--shadow-1); }
.city-photo .gf-badge { position: absolute; top: 12px; left: 12px; z-index: 3; background: #fff; color: #222; font-size: 12px; font-weight: 600; padding: 6px 11px; border-radius: var(--r-pill); box-shadow: var(--shadow-1); }
.city-photo .heart { position: absolute; top: 10px; right: 10px; z-index: 3; width: 32px; height: 32px; border: none; background: transparent; cursor: pointer; display: grid; place-items: center; }
.city-photo .heart svg { width: 24px; height: 24px; fill: rgba(0,0,0,0.5); stroke: #fff; }
.city-photo .heart:hover svg { fill: rgba(0,0,0,0.35); transform: scale(1.05); }
.city-photo .heart.saved svg { fill: var(--primary); stroke: #fff; }
.city-body { padding: 12px 2px 0; }
.city-body .ctitle { display: flex; justify-content: space-between; gap: 10px; }
.city-body .nm { font-size: 16px; font-weight: 600; color: var(--text); }
.city-body .cmeta { font-size: 15px; color: var(--text-mut); margin-top: 2px; }
.city-body .cprice { font-size: 15px; color: var(--text); margin-top: 6px; }
.city-body .cprice strong { font-weight: 600; }

/* ---------------- Service / Package ---------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card { display: flex; flex-direction: column; }
.svc-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-sunken); color: var(--primary); display: grid; place-items: center; margin-bottom: 18px; }
.svc-icon svg { width: 23px; height: 23px; }
.svc-card h3 { font-size: 20px; margin-bottom: 10px; }
.svc-card .body { font-size: 15px; margin-bottom: 16px; flex: 1; }
.incl { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 8px; }
.incl li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: 14.5px; color: var(--text-soft); line-height: 1.4; }
.incl li svg { width: 16px; height: 16px; margin-top: 3px; }
.incl .yes svg { color: var(--verified); }
.incl .no { color: var(--text-mut); }
.incl .no svg { color: var(--text-mut); }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pkg { display: flex; flex-direction: column; position: relative; }
.pkg.featured { border-color: var(--text); box-shadow: var(--shadow-1); }
.pkg .tier { font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.pkg .pop { position: absolute; top: -12px; left: 24px; font-size: 12px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; background: var(--primary); color: #fff; padding: 5px 12px; border-radius: var(--r-pill); }
.pkg .from { font-size: 13px; color: var(--text-mut); margin-bottom: 2px; }
.pkg .price { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; }
.pkg .price .per { font-size: 14px; font-weight: 500; color: var(--text-mut); }
.pkg .feeline { font-size: 13px; color: var(--text-mut); margin: 6px 0 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.pkg .incl { margin-bottom: 22px; flex: 1; }
.pkg .btn { width: 100%; }
.pro-cta { background: var(--primary-active); color: #fff; border: 1px solid var(--primary-active); }
.pro-cta:hover { background: #0e5a2f; border-color: #0e5a2f; }

/* ---------------- Testimonials ---------------- */
.tmt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tmt { display: flex; flex-direction: column; }
.tmt .stars { color: var(--primary); letter-spacing: 2px; font-size: 15px; margin-bottom: 14px; }
.tmt .quote { font-size: 17px; line-height: 1.5; color: var(--text); margin-bottom: 18px; flex: 1; font-weight: 500; }
.tmt .who { display: flex; align-items: center; gap: 12px; }
.tmt .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-sunken); display: grid; place-items: center; font-weight: 700; color: var(--text-mut); font-size: 14px; flex-shrink: 0; }
.tmt .who .nm { font-size: 14.5px; font-weight: 600; }
.tmt .who .dt { font-size: 13px; color: var(--text-mut); }

/* ---------------- FAQ accordion ---------------- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 0; display: flex; gap: 18px; align-items: center; justify-content: space-between; font-family: var(--sans); font-size: 18px; font-weight: 600; color: var(--text); }
.faq-q .pm { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-q .pm::before, .faq-q .pm::after { content: ''; position: absolute; background: var(--text); border-radius: 2px; transition: transform .2s ease; }
.faq-q .pm::before { left: 0; top: 9px; width: 20px; height: 2px; }
.faq-q .pm::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item.open .faq-q .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .2s ease; }
.faq-a p { font-size: 16px; line-height: 1.6; color: var(--text-soft); padding-bottom: 22px; max-width: 70ch; }

/* ---------------- Steps / timeline ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { padding-top: 8px; }
.step .n { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 17px; margin-bottom: 16px; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--text-soft); }

.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 22px; }
.tl-item .dot { position: absolute; left: -30px; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--bg); border: 2px solid var(--primary); }
.tl-item .day { font-size: 13px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--text-mut); }
.tl-item h4 { font-size: 18px; font-weight: 600; margin: 4px 0 4px; }
.tl-item p { font-size: 14.5px; color: var(--text-soft); }
.tl-item .buffer { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 13px; color: var(--alert-amber); font-weight: 600; }
.tl-item .buffer svg { width: 14px; height: 14px; }

/* ---------------- Comparison table ---------------- */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-md); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 640px; }
.cmp th, .cmp td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 15px; }
.cmp thead th { background: var(--bg-sunken); font-weight: 600; font-size: 16px; }
.cmp tbody th { font-weight: 500; color: var(--text-soft); }
.cmp td { text-align: center; color: var(--text-soft); }
.cmp td.yes { color: var(--primary); }
.cmp td.yes svg { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
.cmp .reco { background: var(--bg-sunken); }

/* ---------------- CTA band (light surface) ---------------- */
.cta-band { background: var(--bg-sunken); color: var(--text); border-radius: var(--r-md); padding: var(--s6) var(--s5); border: 1px solid var(--border); }
.cta-band.full { border-radius: 0; }
.cta-band h2 { color: var(--text); margin-bottom: 14px; }
.cta-band p { color: var(--text-mut); font-size: 18px; max-width: 560px; margin: 0 auto 28px; }
.cta-inline { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; max-width: 540px; margin: 0 auto; }
.cta-inline input { flex: 1; min-width: 220px; height: 52px; padding: 0 18px; border-radius: var(--r-sm); border: 1px solid var(--border-strong); background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 16px; }
.cta-inline input::placeholder { color: var(--text-mut); }
.cta-inline input:focus { outline: none; border-color: var(--text); border-width: 2px; }
.reassure { margin-top: 16px; font-size: 13.5px; color: var(--text-mut); display: inline-flex; align-items: center; gap: 8px; }
.reassure svg { width: 15px; height: 15px; color: var(--verified); }

/* ---------------- Forms / wizard ---------------- */
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field .hint { font-size: 13px; color: var(--text-mut); font-weight: 400; margin-left: 6px; }
.field input, .field select, .field textarea { width: 100%; height: 52px; padding: 0 15px; border-radius: var(--r-sm); border: 1px solid var(--border-strong); background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 16px; }
.field textarea { height: auto; padding: 13px 15px; min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--text); border-width: 2px; }
.field .err { color: var(--error); font-size: 13px; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select { border-color: var(--error); }
.field.invalid .err { display: block; }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.choice { border: 1px solid var(--border-strong); border-radius: var(--r-sm); padding: 14px 16px; cursor: pointer; font-size: 15px; font-weight: 500; background: var(--bg); transition: border-color .15s ease; text-align: left; color: var(--text); }
.choice:hover { border-color: var(--text); }
.choice.sel { border-color: var(--text); border-width: 2px; background: var(--bg-sunken); font-weight: 600; }
.choice .ch-sub { display: block; font-size: 12.5px; font-weight: 400; color: var(--text-mut); margin-top: 3px; }

.stepper { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; }
.stepper .st { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-mut); font-weight: 600; }
.stepper .st .num { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-strong); display: grid; place-items: center; font-size: 13px; }
.stepper .st.active { color: var(--primary); }
.stepper .st.active .num { border-color: var(--primary); background: var(--primary); color: #fff; }
.stepper .st.done .num { border-color: var(--verified); background: var(--verified); color: #fff; }
.stepper .bar { flex: 1; height: 2px; background: var(--border); }

.summary-card { background: var(--bg-sunken); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--s3); }
.summary-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 14px; }
.summary-card .sr { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--border); font-size: 14.5px; }
.summary-card .sr:last-of-type { border-bottom: none; }
.summary-card .sr .k { color: var(--text-mut); }
.summary-card .sr .v { font-weight: 600; text-align: right; }

/* ---------------- Floating help ---------------- */
.help-fab { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: inline-flex; align-items: center; gap: 9px; height: 50px; padding: 0 20px 0 16px; border-radius: var(--r-pill); background: var(--text); color: var(--bg); border: none; cursor: pointer; font-family: var(--sans); font-size: 15px; font-weight: 600; box-shadow: var(--shadow-pop); text-decoration: none; }
.help-fab svg { width: 20px; height: 20px; }
.help-fab:hover { transform: translateY(-2px); }
@media (max-width: 720px){ .help-fab { bottom: 78px; } }
@media print { .help-fab, .mobile-cta { display: none !important; } }

/* sticky mobile CTA */
.mobile-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 85; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: var(--bg); border-top: 1px solid var(--border); box-shadow: 0 -2px 12px rgba(0,0,0,0.06); }
.mobile-cta .btn { width: 100%; }

/* ---------------- Footer (light — matches canvas) ---------------- */
.footer { background: var(--bg); color: var(--text-soft); padding: var(--s6) 0 0; border-top: 1px solid var(--border); }
.footer .brand .name { color: var(--primary); }
.footer .brand .name .tld { color: var(--text); }
.footer .brand .logo { background: transparent; color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px 28px; }
.footer-id .brand { margin-bottom: 16px; }
.footer-id .legal-name { font-size: 14px; color: var(--text); font-weight: 600; margin-bottom: 6px; }
.footer-id address { font-style: normal; font-size: 14px; line-height: 1.7; color: var(--text-mut); }
.footer-id address a { color: var(--text); text-decoration: none; }
.footer-id address a:hover { color: var(--primary); }
.footer-col h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-soft); text-decoration: none; font-size: 14.5px; }
.footer-col a:hover { color: var(--text); text-decoration: underline; }
.footer-pay { display: flex; align-items: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.footer-pay .chip { font-size: 11px; font-weight: 700; letter-spacing: .04em; color: var(--text-mut); border: 1px solid var(--border); border-radius: 5px; padding: 4px 8px; }
.footer-pay .lock { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--verified); }
.footer-pay .lock svg { width: 14px; height: 14px; }
.footer-disc { margin-top: 40px; padding: 24px 0; border-top: 1px solid var(--border); font-size: 13px; line-height: 1.6; color: var(--text-mut); max-width: 1000px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; padding: 18px 0 36px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-mut); }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; }
.lang-switch select { background: transparent; border: 1px solid var(--border); border-radius: 6px; color: var(--text); padding: 5px 8px; font-family: var(--sans); font-size: 13px; }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }

/* ---------------- Mobile panel ---------------- */
.m-panel { display: none; position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 88; background: var(--bg); border-bottom: 1px solid var(--border); padding: 14px 40px 22px; box-shadow: var(--shadow-1); }
.m-panel.open { display: block; }
.m-panel a { display: block; padding: 13px 6px; font-size: 16px; font-weight: 500; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); }
.m-panel .btn { width: 100%; margin-top: 16px; }

/* ---------------- Hero ---------------- */
.hero { padding: var(--s6) 0; }
.hero-grid { display: grid; grid-template-columns: 52% 48%; gap: 48px; align-items: center; }
.hero-media { aspect-ratio: 4 / 3; border-radius: var(--r-md); overflow: hidden; background: var(--bg-sunken); }
.hero-media image-slot { width: 100%; height: 100%; }

@media (max-width: 1040px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 980px) {
  .wrap, .wrap-narrow { padding: 0 24px; }
  .disclaimer-bar .wrap, .m-panel { padding-left: 24px; padding-right: 24px; }
  .svc-grid, .pkg-grid, .tmt-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-id { grid-column: 1 / -1; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .section { padding: var(--s5) 0; }
  .mobile-cta { display: block; }
  body.has-mobile-cta { padding-bottom: 76px; }
}
@media (max-width: 680px) {
  .city-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid, .pkg-grid, .tmt-grid, .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: var(--s5) var(--s3); }
}
@media (max-width: 440px) { .city-grid { grid-template-columns: 1fr; } }
