/* ============================================================
   THE EDEN RESIDENCE — interactive prototype
   Two design directions driven by [data-theme] on <html>:
     • editorial  (default) — Cormorant Garamond + Jost, warm/boutique
     • modern               — Schibsted Grotesk, sand + architectural
   Primary & accent are independent (color-mix derived) tweaks.
   ============================================================ */

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

/* ---- THEME: EDITORIAL (default) ---------------------------- */
:root {
  --bg:           #faf8f4;
  --surface:      #ffffff;
  --surface-2:    #f2ede6;
  --ink:          #1a2422;
  --ink-mid:      #49605c;
  --ink-soft:     #80948f;

  --primary:      #15645a;        /* swappable via tweak */
  --accent:       #b0892f;        /* swappable via tweak */

  --display:      'Cormorant Garamond', Georgia, serif;
  --sans:         'Jost', system-ui, sans-serif;
  --mono:         'Jost', ui-monospace, monospace;

  --radius:       7px;
  --radius-lg:    16px;

  --h1-weight:    400;
  --h1-spacing:   -0.005em;
  --h1-line:      1.08;
  --h2-weight:    400;
  --h2-spacing:   0em;
  --display-em:   italic;         /* how <em> in display renders */

  --maxw:         1240px;
  --ease:         cubic-bezier(.2,.7,.2,1);
}

/* ---- THEME: MODERN ----------------------------------------- */
html[data-theme="modern"] {
  --bg:           #f4f1ea;
  --surface:      #fffdf8;
  --surface-2:    #eae3d6;
  --ink:          #17140e;
  --ink-mid:      #564f42;
  --ink-soft:     #8b8273;

  --display:      'Schibsted Grotesk', system-ui, sans-serif;
  --sans:         'Schibsted Grotesk', system-ui, sans-serif;

  --radius:       3px;
  --radius-lg:    4px;

  --h1-weight:    640;
  --h1-spacing:   -0.025em;
  --h1-line:      1.0;
  --h2-weight:    600;
  --h2-spacing:   -0.02em;
  --display-em:   normal;
}

/* ---- DERIVED TOKENS (recompute from --primary / --accent) -- */
:root, html[data-theme="modern"] {
  --primary-deep: color-mix(in oklab, var(--primary) 78%, #000);
  --primary-mid:  color-mix(in oklab, var(--primary) 80%, #fff 0%);
  --primary-soft: color-mix(in srgb, var(--primary) 11%, #fff);
  --primary-pale: color-mix(in srgb, var(--primary) 6%, #fff);
  --on-primary:   #ffffff;

  --accent-deep:  color-mix(in oklab, var(--accent) 82%, #000);
  --accent-soft:  color-mix(in srgb, var(--accent) 14%, #fff);

  --border:       color-mix(in srgb, var(--ink) 13%, transparent);
  --border-strong:color-mix(in srgb, var(--ink) 26%, transparent);

  --shadow-sm:    0 2px 10px color-mix(in srgb, var(--ink) 7%, transparent);
  --shadow-md:    0 14px 40px color-mix(in srgb, var(--primary) 12%, transparent);
  --shadow-lg:    0 30px 80px color-mix(in srgb, var(--primary) 16%, transparent);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle architectural grid texture for modern theme */
html[data-theme="modern"] body {
  background-image:
    linear-gradient(color-mix(in srgb, var(--ink) 4%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--ink) 4%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
}

::selection { background: var(--primary); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px){ .wrap { padding: 0 22px; } }

/* ---- TYPE PRIMITIVES --------------------------------------- */
.display {
  font-family: var(--display);
  font-weight: var(--h1-weight);
  letter-spacing: var(--h1-spacing);
  line-height: var(--h1-line);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ''; width: 30px; height: 1.5px; background: var(--accent);
  display: block;
}
.eyebrow.center { justify-content: center; }

h2.section-title {
  font-family: var(--display);
  font-size: clamp(31px, 3.6vw, 47px);
  font-weight: var(--h2-weight);
  letter-spacing: var(--h2-spacing);
  line-height: 1.12; margin: 16px 0 14px;
  text-wrap: balance;
}
.section-title em { color: var(--primary); font-style: var(--display-em); }
.section-body {
  font-size: 16.5px; color: var(--ink-mid); line-height: 1.75;
  max-width: 580px; text-wrap: pretty;
}

section { padding: clamp(64px, 8vw, 104px) 0; }
.section-head { margin-bottom: 44px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-body { margin-left: auto; margin-right: auto; }

/* ---- BUTTONS ----------------------------------------------- */
.btn {
  font-family: var(--sans);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none; border-radius: var(--radius);
  padding: 15px 30px; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
  transition: all .22s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--primary); background: var(--primary-pale); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn .arr { transition: transform .22s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
nav.site {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s, background .3s;
}
nav.site.scrolled { box-shadow: 0 1px 0 var(--border), var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav-links { display: flex; gap: 34px; align-items: center; list-style: none; }
.nav-links a {
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink-mid); text-decoration: none; transition: color .2s;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--primary); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; flex-direction: column; justify-content: center;
  gap: 5px; align-items: center;
}
.nav-burger span { width: 22px; height: 2px; background: var(--ink); transition: all .3s var(--ease); }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- LOGO -------------------------------------------------- */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.logo-img { height: 50px; width: auto; display: block; }
.logo-mark {
  width: 38px; height: 38px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1.5px solid var(--primary); border-radius: 50%;
  color: var(--primary);
}
html[data-theme="modern"] .logo-mark { border-radius: 3px; }
.logo-mark svg { width: 19px; height: 19px; }
.logo-word { line-height: 1; }
.logo-word .top {
  font-size: 9px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; display: block; margin-bottom: 3px;
}
.logo-word .name {
  font-family: var(--display); font-size: 21px; font-weight: 500;
  letter-spacing: var(--h2-spacing); display: block;
}
html[data-theme="modern"] .logo-word .name { font-weight: 640; }

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 74px 0 0 0; z-index: 88;
  background: var(--bg); padding: 32px 22px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease);
  display: flex; flex-direction: column; gap: 4px;
}
body.menu-open .mobile-drawer { opacity: 1; transform: none; pointer-events: auto; }
.mobile-drawer a {
  font-family: var(--display); font-size: 26px; color: var(--ink);
  text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--border);
}
.mobile-drawer .btn { margin-top: 22px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(48px, 6vw, 80px); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(43px, 5.3vw, 70px);
  font-weight: var(--h1-weight); letter-spacing: var(--h1-spacing);
  line-height: 1.13; margin: 22px 0 28px;
}
.hero h1 em { color: var(--primary); font-style: var(--display-em); }
.hero-sub { font-size: 17px; color: var(--ink-mid); line-height: 1.78; max-width: 470px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg);
  margin-left: -10px; background: var(--primary-soft); color: var(--primary-deep);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust small { font-size: 13px; color: var(--ink-mid); }
.hero-trust small b { color: var(--ink); }

/* visual side */
.hero-visual { position: relative; }
.hero-photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-float {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 16px 18px;
}
.hero-float.tl { top: 26px; left: -28px; }
.hero-float.br { bottom: 30px; right: -26px; }
.hero-float .num { font-family: var(--display); font-size: 30px; color: var(--primary); line-height: 1; font-weight: 500; }
.hero-float .lbl { font-size: 11px; color: var(--ink-mid); margin-top: 4px; letter-spacing: 0.02em; }
.hero-float.rating { display: flex; align-items: center; gap: 11px; }
.hero-float .stars { color: var(--accent); letter-spacing: 1px; font-size: 13px; }

/* centered hero variant */
html[data-hero="centered"] .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
html[data-hero="centered"] .hero-sub,
html[data-hero="centered"] .hero-content .eyebrow { margin-left: auto; margin-right: auto; }
html[data-hero="centered"] .hero-actions,
html[data-hero="centered"] .hero-trust { justify-content: center; }
html[data-hero="centered"] .hero-photo { aspect-ratio: 16/7; max-width: 980px; margin: 0 auto; }
html[data-hero="centered"] .hero-float.tl { left: max(2%, calc(50% - 540px)); }
html[data-hero="centered"] .hero-float.br { right: max(2%, calc(50% - 540px)); }

/* ---- IMAGE PLACEHOLDER ------------------------------------- */
.ph {
  width: 100%; height: 100%; position: relative;
  background:
    repeating-linear-gradient(135deg,
      var(--primary-pale) 0 11px,
      color-mix(in srgb, var(--primary) 10%, var(--surface)) 11px 22px);
  display: grid; place-items: center;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: color-mix(in srgb, var(--primary) 70%, var(--ink));
  background: var(--surface); padding: 6px 12px; border-radius: 100px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--primary); padding: 15px 0; overflow: hidden; white-space: nowrap;
  border-block: 1px solid var(--primary-deep);
}
.marquee-track { display: inline-flex; animation: marquee 34s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: color-mix(in srgb, var(--on-primary) 82%, transparent); padding: 0 26px;
  display: inline-flex; align-items: center; gap: 26px;
}
.marquee-track span::after { content: '✦'; color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc { background: var(--surface-2); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); }
.calc-inputs { padding: clamp(28px, 3.4vw, 44px); border-right: 1px solid var(--border); }
.calc-result { padding: clamp(28px, 3.4vw, 44px); background: var(--primary); color: var(--on-primary);
  display: flex; flex-direction: column; position: relative; overflow: hidden; }
.calc-result::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 90% 0%, color-mix(in srgb,#fff 14%, transparent), transparent 60%);
  pointer-events: none;
}
.calc-field { margin-bottom: 26px; }
.calc-field > label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 11px; color: var(--ink);
}
.calc-field .val { font-family: var(--display); font-size: 19px; color: var(--primary); font-weight: 600; }

/* segmented control */
.seg { display: grid; grid-auto-flow: column; gap: 6px; background: var(--surface-2);
  padding: 5px; border-radius: var(--radius); }
.seg button {
  font-family: var(--sans); font-size: 13.5px; font-weight: 600; color: var(--ink-mid);
  background: transparent; border: none; padding: 11px 6px; border-radius: calc(var(--radius) - 1px);
  cursor: pointer; transition: all .18s var(--ease);
}
.seg button:hover { color: var(--ink); }
.seg button.active { background: var(--surface); color: var(--primary); box-shadow: var(--shadow-sm); }

/* select */
.calc-select {
  width: 100%; padding: 13px 16px; font-family: var(--sans); font-size: 14.5px; color: var(--ink);
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  appearance: none; cursor: pointer; outline: none; transition: border-color .2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2380948f' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.calc-select:focus { border-color: var(--primary); }

/* range slider */
.range-wrap { position: relative; padding-top: 4px; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 5px;
  border-radius: 100px; background: var(--surface-2); outline: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--surface); box-shadow: var(--shadow-sm); cursor: grab;
  transition: transform .15s; }
input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.12); cursor: grabbing; }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--primary);
  border: 3px solid var(--surface); box-shadow: var(--shadow-sm); cursor: grab; }
.range-scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-soft); margin-top: 8px; }

/* rate stepper */
.rate-input { display: flex; align-items: center; gap: 0; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; background: var(--surface-2); }
.rate-input .pre { padding: 0 6px 0 16px; color: var(--ink-soft); font-size: 16px; }
.rate-input input { flex: 1; border: none; background: transparent; padding: 13px 8px;
  font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--ink); outline: none; width: 100%; }
.rate-input .stepper { display: flex; flex-direction: column; border-left: 1px solid var(--border); }
.rate-input .stepper button { background: var(--surface); border: none; width: 38px; flex: 1;
  cursor: pointer; color: var(--ink-mid); font-size: 13px; line-height: 1; transition: background .15s; }
.rate-input .stepper button:hover { background: var(--primary-soft); color: var(--primary); }
.rate-input .stepper button:first-child { border-bottom: 1px solid var(--border); }

/* result panel */
.calc-result .r-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: color-mix(in srgb, var(--on-primary) 65%, transparent); }
.calc-result .r-big { font-family: var(--display); font-size: clamp(52px, 7vw, 78px);
  font-weight: 500; line-height: 1; margin: 10px 0 4px; letter-spacing: -0.01em; }
.calc-result .r-sub { font-size: 14px; color: color-mix(in srgb, var(--on-primary) 72%, transparent); }
.calc-divider { height: 1px; background: color-mix(in srgb, var(--on-primary) 18%, transparent); margin: 26px 0; }
.calc-rows { display: flex; flex-direction: column; gap: 14px; }
.calc-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14.5px; }
.calc-row span:first-child { color: color-mix(in srgb, var(--on-primary) 78%, transparent); }
.calc-row span:last-child { font-weight: 600; font-variant-numeric: tabular-nums; }
.calc-row.net { font-size: 17px; padding-top: 14px; border-top: 1px solid color-mix(in srgb, var(--on-primary) 18%, transparent); }
.calc-row.net span:last-child { font-family: var(--display); font-size: 26px; font-weight: 600; }

/* comparison bars */
.compare { margin-top: 24px; }
.compare-row { margin-bottom: 14px; }
.compare-row .top { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 7px;
  color: color-mix(in srgb, var(--on-primary) 80%, transparent); }
.compare-row .top b { color: var(--on-primary); font-variant-numeric: tabular-nums; }
.bar { height: 10px; border-radius: 100px; background: color-mix(in srgb, var(--on-primary) 16%, transparent); overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: 100px; transition: width .6s var(--ease); }
.bar.str > i { background: var(--accent); }
.bar.ltr > i { background: color-mix(in srgb, var(--on-primary) 55%, transparent); }
.calc-note { font-size: 12px; color: var(--ink-soft); margin-top: 18px; text-align: center; }

/* ============================================================
   WHY / FEATURE GRID
   ============================================================ */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; }
.why-card { background: var(--surface); padding: 38px 30px; transition: background .28s var(--ease); }
.why-card:hover { background: var(--primary-pale); }
.why-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--primary-soft);
  display: grid; place-items: center; margin-bottom: 20px; }
html[data-theme="modern"] .why-icon { border-radius: 4px; }
.why-icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { font-family: var(--display); font-size: 21px; font-weight: 600; margin-bottom: 9px; }
html[data-theme="modern"] .why-card h3 { font-weight: 600; letter-spacing: -0.01em; }
.why-card p { font-size: 14.5px; color: var(--ink-mid); line-height: 1.7; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.svc { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px;
  position: relative; overflow: hidden; transition: all .26s var(--ease); background: var(--surface); }
.svc::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--primary);
  transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease); }
.svc:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc:hover::before { transform: scaleY(1); }
.svc-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent-deep);
  font-weight: 600; }
.svc h3 { font-family: var(--display); font-size: 21px; font-weight: 600; margin: 14px 0 9px; }
.svc p { font-size: 14.5px; color: var(--ink-mid); line-height: 1.7; }

/* ============================================================
   GUIDES / EBOOKS
   ============================================================ */
.guides { background: var(--surface-2); }
.guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.guide { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease); }
.guide:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.guide-cover { display: block; aspect-ratio: 3 / 4; background: var(--surface-2); overflow: hidden; }
.guide-cover image-slot { width: 100%; height: 100%; display: block; }
.guide-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.guide:hover .guide-cover img { transform: scale(1.04); }
.guide-cover:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }
.guide-body { display: flex; flex-direction: column; gap: 10px; padding: 22px 22px 24px; flex: 1; }
.guide-tag { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent-deep); font-weight: 600; }
.guide h3 { font-family: var(--display); font-size: 20px; font-weight: 600; line-height: 1.25; margin: 0; text-wrap: pretty; }
.guide p { font-size: 14px; color: var(--ink-mid); line-height: 1.65; margin: 0; text-wrap: pretty; }
.guide .btn { margin-top: auto; align-self: flex-start; padding: 11px 22px; font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: 0.01em; text-transform: none; }
.guide .gumroad-button .logo-full, .guide .gumroad-button .logo-g { display: none !important; }
.guides-note { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 30px; }
@media (max-width: 560px) { .guides-grid { grid-template-columns: 1fr; } .guide { flex-direction: row; } .guide-cover { width: 130px; flex-shrink: 0; aspect-ratio: auto; } .guide-body { padding: 18px; } }

/* ============================================================
   APPROACH (dark band)
   ============================================================ */
.approach { background: var(--primary); color: var(--on-primary); }
.approach-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.approach .eyebrow { color: color-mix(in srgb, var(--on-primary) 70%, transparent); }
.approach .eyebrow::before { background: color-mix(in srgb, var(--on-primary) 55%, transparent); }
.approach h2 { color: var(--on-primary); font-family: var(--display); font-size: clamp(32px,3.6vw,48px);
  font-weight: var(--h2-weight); letter-spacing: var(--h2-spacing); line-height: 1.1; margin-bottom: 18px; }
.approach .lede { color: color-mix(in srgb, var(--on-primary) 75%, transparent); max-width: 360px; font-size: 16px; }
.pillars { display: flex; flex-direction: column; }
.pillar { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 26px 0;
  border-top: 1px solid color-mix(in srgb, var(--on-primary) 16%, transparent); }
.pillar:last-child { border-bottom: 1px solid color-mix(in srgb, var(--on-primary) 16%, transparent); }
.pillar .pn { font-family: var(--display); font-size: 42px; font-weight: 500;
  color: color-mix(in srgb, var(--on-primary) 34%, transparent); line-height: 1; }
.pillar h3 { font-family: var(--display); font-size: 23px; font-weight: 600; margin-bottom: 6px; }
.pillar p { font-size: 14.5px; color: color-mix(in srgb, var(--on-primary) 72%, transparent); line-height: 1.7; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: step; }
.pstep { padding: 30px 22px 30px 0; position: relative; }
.pstep + .pstep { border-left: 1px solid var(--border); padding-left: 24px; }
.pbadge { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--primary);
  color: var(--primary); display: grid; place-items: center; font-family: var(--display);
  font-size: 19px; font-weight: 600; margin-bottom: 18px; transition: all .25s var(--ease); }
html[data-theme="modern"] .pbadge { border-radius: 4px; }
.pstep:hover .pbadge { background: var(--primary); color: var(--on-primary); }
.pstep h3 { font-family: var(--display); font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.pstep p { font-size: 13.5px; color: var(--ink-mid); line-height: 1.65; }
@media (max-width: 900px){ .process-steps { grid-template-columns: 1fr 1fr; }
  .pstep + .pstep { border-left: none; padding-left: 0; } }
@media (max-width: 520px){ .process-steps { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--surface-2); }
.pricing-card { max-width: 540px; margin: 0 auto; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.pricing-top { background: var(--primary); color: var(--on-primary); padding: 42px; text-align: center;
  position: relative; overflow: hidden; }
.pricing-top::after { content:''; position:absolute; inset:0;
  background: radial-gradient(110% 80% at 50% -10%, color-mix(in srgb,#fff 16%,transparent), transparent 60%); }
.pricing-pre { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: color-mix(in srgb, var(--on-primary) 65%, transparent); margin-bottom: 14px; position: relative; }
.pricing-rate { font-family: var(--display); font-size: 84px; font-weight: 500; line-height: 1; position: relative; }
.pricing-rate sup { font-size: 34px; vertical-align: super; }
.pricing-rate-sub { font-size: 14px; color: color-mix(in srgb, var(--on-primary) 70%, transparent); margin-top: 8px; position: relative; }
.pricing-body { padding: 38px 42px; }
.pricing-list { list-style: none; margin-bottom: 26px; }
.pricing-list li { display: flex; align-items: center; gap: 13px; font-size: 14.5px; color: var(--ink-mid);
  padding: 11px 0; border-bottom: 1px solid var(--border); }
.pricing-list li:last-child { border-bottom: none; }
.check { width: 21px; height: 21px; border-radius: 50%; background: var(--primary-soft); flex-shrink: 0;
  display: grid; place-items: center; }
html[data-theme="modern"] .check { border-radius: 3px; }
.check svg { width: 11px; stroke: var(--primary); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.no-lock { text-align: center; font-size: 13px; color: var(--accent-deep); margin-top: 16px; font-style: italic; }
html[data-theme="modern"] .no-lock { font-style: normal; font-weight: 600; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--primary-pale); }
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; display: flex; flex-direction: column; }
.review .stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.review blockquote { font-family: var(--display); font-size: 19px; line-height: 1.5; color: var(--ink);
  margin-bottom: 22px; font-style: var(--display-em); flex: 1; text-wrap: pretty; }
html[data-theme="modern"] .review blockquote { font-style: normal; font-weight: 500; letter-spacing: -0.01em; }
.reviewer { display: flex; align-items: center; gap: 13px; }
.reviewer .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-soft);
  display: grid; place-items: center; font-size: 13px; font-weight: 700; color: var(--primary-deep); flex-shrink: 0; }
.reviewer .rname { font-size: 13.5px; font-weight: 600; }
.reviewer .rloc { font-size: 12.5px; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0; font-family: var(--display); font-size: 21px; font-weight: 600; color: var(--ink);
  transition: color .2s; }
.faq-q:hover { color: var(--primary); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--primary);
  border-radius: 2px; transition: transform .3s var(--ease); }
.faq-icon::before { top: 13px; left: 5px; right: 5px; height: 2px; }
.faq-icon::after { left: 13px; top: 5px; bottom: 5px; width: 2px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.faq-a p { font-size: 15px; color: var(--ink-mid); line-height: 1.75; padding-bottom: 24px; max-width: 560px; }

/* ============================================================
   CTA / ENQUIRY
   ============================================================ */
.cta { background: var(--surface-2); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.cta-points { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.cta-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-mid); }
.cta-points .check { margin-top: 1px; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field select {
  width: 100%; padding: 13px 15px; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--sans); font-size: 14.5px; color: var(--ink);
  outline: none; transition: border-color .2s, box-shadow .2s; appearance: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2380948f' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; cursor: pointer; }
.field input:focus, .field select:focus { border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft); }
.field.invalid input, .field.invalid select { border-color: #c0492f; }
.field .err { font-size: 12px; color: #c0492f; margin-top: 5px; display: none; }
.field.invalid .err { display: block; }
.form-submit { width: 100%; justify-content: center; padding: 16px; margin-top: 6px; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; text-align: center; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--primary-soft);
  display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .tick svg { width: 30px; stroke: var(--primary); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-family: var(--display); font-size: 27px; font-weight: 600; margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--ink-mid); max-width: 340px; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site { background: #15564a; color: color-mix(in srgb, #fff 58%, transparent); padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 50px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo-img { height: 54px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand .logo-mark { border-color: color-mix(in srgb,#fff 55%, transparent); color: #fff; }
.footer-brand .logo-word .top { color: color-mix(in srgb,#fff 45%, transparent); }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: color-mix(in srgb,#fff 42%, transparent); max-width: 320px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in srgb,#fff 72%, transparent); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13.5px; color: color-mix(in srgb,#fff 44%, transparent);
  text-decoration: none; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid color-mix(in srgb,#fff 12%, transparent); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-tagline { font-family: var(--display); font-size: 16px; font-style: var(--display-em); color: var(--accent); }
html[data-theme="modern"] .footer-tagline { font-style: normal; font-weight: 600; }
.footer-bottom p { font-size: 12.5px; }

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider { display: flex; align-items: center; gap: 20px; padding: clamp(44px, 6vw, 76px) 0 0; }
.section-divider::before, .section-divider::after { content: ''; flex: 1; height: 1px;
  background: linear-gradient(to var(--dir, right), transparent, var(--border)); }
.section-divider::before { --dir: left; }
.section-divider i { width: 9px; height: 9px; transform: rotate(45deg); background: var(--accent); flex-shrink: 0; }
html[data-theme="modern"] .section-divider i { border-radius: 1px; }

/* ============================================================
   MANAGE BOOKING — guest portal
   ============================================================ */
.manage { background: var(--surface-2); }
.manage-inner { max-width: 760px; margin: 0 auto; }

/* lookup card */
.lookup-card { max-width: 480px; margin: 0 auto; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-md); }
.lookup-error { font-size: 13px; color: #c0492f; margin-top: 14px; text-align: center;
  background: color-mix(in srgb, #c0492f 8%, transparent); padding: 11px; border-radius: var(--radius); }
.lookup-hint { font-size: 12.5px; color: var(--ink-soft); margin-top: 18px; text-align: center;
  display: flex; gap: 8px; align-items: center; justify-content: center; flex-wrap: wrap; }
.hint-chip { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  background: var(--primary-soft); color: var(--primary-deep); border: none; cursor: pointer;
  padding: 5px 11px; border-radius: 100px; transition: all .18s var(--ease); }
.hint-chip:hover { background: var(--primary); color: var(--on-primary); }

/* summary card */
.summary-card { background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden;
  animation: summaryIn .5s var(--ease) both; }
@keyframes summaryIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.summary-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px;
  padding: clamp(24px, 3vw, 34px) clamp(24px, 3vw, 36px) 0; }
.summary-eyebrow { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-deep); font-weight: 600; margin-bottom: 9px; }
.summary-title { font-family: var(--display); font-size: clamp(26px, 3vw, 33px); font-weight: 600;
  line-height: 1.08; color: var(--ink); }
.summary-loc { font-size: 13.5px; color: var(--ink-mid); margin-top: 5px; display: flex; align-items: center; gap: 6px; }
.summary-loc::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.status-badge { flex-shrink: 0; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 7px 14px; border-radius: 100px; white-space: nowrap; }
.status-badge.confirmed { background: var(--primary-soft); color: var(--primary-deep); }
.status-badge.cancelled { background: color-mix(in srgb, #c0492f 12%, transparent); color: #a23a22; }

.summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin: clamp(22px, 3vw, 30px) 0 0; }
.summary-stat { background: var(--surface); padding: 18px clamp(18px, 2.4vw, 24px);
  display: flex; flex-direction: column; gap: 5px; }
.s-label { font-size: 10.5px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.s-val { font-family: var(--display); font-size: 20px; color: var(--ink); font-weight: 600; line-height: 1.1; }
.s-sub { font-size: 11.5px; color: var(--ink-soft); }

.summary-body { padding: clamp(24px, 3vw, 32px) clamp(24px, 3vw, 36px); }
.summary-section + .summary-section { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.summary-section > .s-label { display: block; margin-bottom: 14px; }

.addon-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.addon-list li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--ink-mid); }
.addon-list .dot { width: 18px; height: 18px; border-radius: 50%; background: var(--primary-soft);
  display: grid; place-items: center; flex-shrink: 0; }
.addon-list .dot svg { width: 10px; stroke: var(--primary); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.addon-list .price { margin-left: auto; font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 500; }
.addon-empty { font-size: 14px; color: var(--ink-soft); font-style: italic; }

.price-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14.5px;
  color: var(--ink-mid); padding: 7px 0; }
.price-row span:last-child { font-variant-numeric: tabular-nums; color: var(--ink); }
.price-row.total { margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 16px; color: var(--ink); }
.price-row.total span:last-child { font-family: var(--display); font-size: 26px; font-weight: 600; color: var(--primary); }

/* policy note */
.policy-note { display: flex; gap: 13px; align-items: flex-start; margin-top: 24px;
  padding: 16px 18px; border-radius: var(--radius); font-size: 13.5px; line-height: 1.6; }
.policy-note .pn-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.policy-note .pn-icon svg { width: 100%; height: 100%; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.policy-note b { font-weight: 700; }
.policy-note.ok    { background: var(--primary-soft); color: var(--primary-deep); }
.policy-note.ok .pn-icon svg { stroke: var(--primary); }
.policy-note.warn  { background: var(--accent-soft); color: var(--accent-deep); }
.policy-note.warn .pn-icon svg { stroke: var(--accent-deep); }
.policy-note.danger{ background: color-mix(in srgb, #c0492f 9%, transparent); color: #9c3820; }
.policy-note.danger .pn-icon svg { stroke: #c0492f; }

/* actions */
.summary-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.summary-actions .btn { flex: 1; min-width: 150px; justify-content: center; }
.btn-danger { background: transparent; color: #b3402a; border: 1.5px solid color-mix(in srgb, #b3402a 32%, transparent); }
.btn-danger:hover { background: color-mix(in srgb, #b3402a 7%, transparent); border-color: #b3402a; transform: translateY(-2px); }
.btn:disabled { opacity: 0.45; pointer-events: none; }

/* action panel (date change / extras / cancel) */
.action-panel { margin-top: 22px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface-2); padding: clamp(20px, 2.6vw, 26px);
  animation: panelIn .32s var(--ease) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.action-panel h4 { font-family: var(--display); font-size: 21px; font-weight: 600; margin-bottom: 6px; }
.action-panel .ap-sub { font-size: 13.5px; color: var(--ink-mid); margin-bottom: 18px; line-height: 1.6; }
.ap-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ap-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.ap-actions .btn { flex: 1; min-width: 130px; justify-content: center; }

/* extras chooser */
.extra-opt { display: flex; align-items: center; gap: 13px; padding: 13px 15px; background: var(--surface);
  border: 1.5px solid var(--border); border-radius: var(--radius); cursor: pointer; margin-bottom: 10px;
  transition: border-color .18s, background .18s; }
.extra-opt:hover { border-color: var(--border-strong); }
.extra-opt.sel { border-color: var(--primary); background: var(--primary-pale); }
.extra-opt input { position: absolute; opacity: 0; pointer-events: none; }
.extra-box { width: 20px; height: 20px; border-radius: 5px; border: 1.5px solid var(--border-strong);
  flex-shrink: 0; display: grid; place-items: center; transition: all .18s; }
.extra-opt.sel .extra-box { background: var(--primary); border-color: var(--primary); }
.extra-box svg { width: 11px; stroke: #fff; fill: none; stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; opacity: 0; }
.extra-opt.sel .extra-box svg { opacity: 1; }
.extra-opt .ex-name { font-size: 14.5px; color: var(--ink); }
.extra-opt .ex-price { margin-left: auto; font-variant-numeric: tabular-nums; color: var(--ink-mid); font-size: 14px; }

/* inline confirmation message */
.ap-confirm { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-mid);
  line-height: 1.6; }
.ap-confirm .tickmini { width: 30px; height: 30px; border-radius: 50%; background: var(--primary-soft);
  display: grid; place-items: center; flex-shrink: 0; }
.ap-confirm .tickmini svg { width: 15px; stroke: var(--primary); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.refund-line { font-family: var(--display); font-size: 17px; color: var(--ink); margin: 6px 0 0; }
.refund-line b { color: var(--primary); }

.summary-back { display: block; margin: 22px auto 0; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink-mid);
  letter-spacing: 0.02em; transition: color .2s; }
.summary-back:hover { color: var(--primary); }

/* ============================================================
   BOOK A STAY — property configurator
   ============================================================ */
.book { background: var(--bg); }
.book-properties { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 22px; }
.property-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer; padding: 0; text-align: left; font-family: inherit; color: inherit;
  position: relative; transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease); }
.property-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.property-card.sel { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.property-photo { aspect-ratio: 4 / 3; position: relative; background: var(--surface-2); }
.property-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.property-photo image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.property-photo .ph { position: absolute; inset: 0; }
.property-card:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.property-check { position: absolute; top: 12px; right: 12px; width: 27px; height: 27px; border-radius: 50%;
  background: var(--primary); display: grid; place-items: center; opacity: 0; transform: scale(.8);
  transition: all .2s var(--ease); }
html[data-theme="modern"] .property-check { border-radius: 4px; }
.property-card.sel .property-check { opacity: 1; transform: none; }
.property-check svg { width: 13px; stroke: #fff; fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.property-info { padding: 18px 20px 20px; }
.property-name { font-family: var(--display); font-size: 21px; font-weight: 600; line-height: 1.1; color: var(--ink); }
.property-loc { font-size: 12.5px; color: var(--ink-mid); margin-top: 5px; display: flex; align-items: center; gap: 6px; }
.property-loc::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.property-meta { display: flex; gap: 12px; margin-top: 13px; font-size: 12.5px; color: var(--ink-mid); flex-wrap: wrap; }
.property-meta span { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.property-meta svg { width: 15px; height: 15px; stroke: var(--ink-soft); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.property-price { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); display: flex; align-items: baseline; gap: 7px; }
.property-price b { font-family: var(--display); font-size: 24px; color: var(--primary); font-weight: 600; }
.property-price small { font-size: 12.5px; color: var(--ink-soft); }

.book-config { display: grid; grid-template-columns: 1fr 0.82fr; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.book-form { padding: clamp(24px, 3vw, 38px); border-right: 1px solid var(--border); }
.book-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.book-summary { padding: clamp(24px, 3vw, 38px); background: var(--surface-2); display: flex; flex-direction: column; }
.book-summary .bs-title { font-family: var(--display); font-size: 24px; font-weight: 600; line-height: 1.1; margin-top: 6px; }
.book-summary .bs-dates { font-size: 13px; color: var(--ink-mid); margin: 6px 0 20px; }
.bs-prices { margin-bottom: 22px; }
.book-fineprint { font-size: 12px; color: var(--ink-soft); margin-top: 14px; text-align: center; line-height: 1.5; }

/* PMS / booking-engine integration (see eden.app.js → GUESTY config) */
.pms-frame { width: 100%; min-height: 760px; border: 0; border-radius: var(--radius-lg);
  background: var(--surface); box-shadow: var(--shadow-md); display: block; }
.pms-widget { width: 100%; min-height: 220px; }
.pms-widget iframe { width: 100%; border: 0; border-radius: var(--radius-lg); }
.book-config--pms { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
.book-pms-panel { border-radius: var(--radius-lg); }
.book-pms-note { font-size: 14px; color: var(--ink-mid); line-height: 1.6; margin: 10px 0 22px; }
.book-error { font-size: 13px; color: #c0492f; margin-bottom: 12px; text-align: center;
  background: color-mix(in srgb, #c0492f 8%, transparent); padding: 10px; border-radius: var(--radius); }
.book-submit { width: 100%; justify-content: center; margin-top: auto; }

.guest-stepper { display: flex; align-items: center; justify-content: space-between;
  border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--bg); padding: 6px 6px 6px 16px; }
.guest-stepper .gs-val { font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--ink); }
.guest-stepper .gs-btns { display: flex; gap: 6px; }
.guest-stepper button { width: 38px; height: 38px; border-radius: calc(var(--radius) - 1px); border: 1px solid var(--border);
  background: var(--surface); cursor: pointer; font-size: 19px; line-height: 1; color: var(--ink-mid);
  display: grid; place-items: center; transition: all .15s var(--ease); }
.guest-stepper button:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
.guest-stepper button:disabled { opacity: .4; cursor: not-allowed; }

.book-confirm { grid-column: 1 / -1; text-align: center; padding: clamp(36px, 5vw, 56px) clamp(20px, 4vw, 48px); }
.book-confirm .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--primary-soft);
  display: grid; place-items: center; margin: 0 auto 22px; }
.book-confirm .tick svg { width: 30px; stroke: var(--primary); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.book-confirm h3 { font-family: var(--display); font-size: clamp(27px, 3.4vw, 34px); font-weight: 600; margin-bottom: 12px; }
.book-confirm > p { font-size: 15px; color: var(--ink-mid); max-width: 440px; margin: 0 auto; line-height: 1.7; }
.confirm-ref { display: inline-flex; flex-direction: column; gap: 6px; align-items: center; margin: 26px 0 8px;
  padding: 18px 40px; background: var(--primary-pale); border: 1px dashed var(--border-strong); border-radius: var(--radius-lg); }
.confirm-ref .cr-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.book-ref { font-family: var(--mono); font-size: 28px; letter-spacing: 0.16em; color: var(--primary); font-weight: 600; }
.confirm-note { font-size: 13.5px; color: var(--ink-mid); max-width: 380px; margin: 14px auto 0; line-height: 1.6; }
.confirm-actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-inputs { border-right: none; border-bottom: 1px solid var(--border); }
  .approach-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .book-config { grid-template-columns: 1fr; }
  .book-form { border-right: none; border-bottom: 1px solid var(--border); }
  .book-properties { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-right .btn { display: none; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-float.tl { left: 0; } .hero-float.br { right: 0; }
  .summary-grid { grid-template-columns: 1fr 1fr; }
  .summary-actions .btn { flex-basis: 100%; }
  .ap-dates { grid-template-columns: 1fr; }
  .book-properties { grid-template-columns: 1fr; }
  .book-row2 { grid-template-columns: 1fr; }
}
