:root {
  --navy: #001a70;
  --navy-2: #003da6;
  --deep: #000f3d;
  --gold: #9c6b43;
  --gold-d: #7f5533;
  --gold-l: #d9b48f;
  --cream: #f4f4f1;
  --paper: #ffffff;
  --ink: #0b1640;
  --mute: #5a6180;
  --line: #e3e4de;
  --sky: #e6edf9;
  --wa: #1f9e55;
  --r: 8px;
  --font: "Cairo", system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
  --wrap: min(1200px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.8; color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.3; font-weight: 800; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
[hidden] { display: none !important; }
.wrap { width: var(--wrap); margin-inline: auto; }
.ic { width: 1.1em; height: 1.1em; flex-shrink: 0; vertical-align: -.18em; }

/* ---------- Buttons ---------- */
.b { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: .8em 1.4em; border-radius: var(--r); border: 2px solid transparent; font-weight: 700; font-size: 1rem; line-height: 1.2; white-space: nowrap; transition: background .2s, color .2s, border-color .2s; }
.b-gold { background: var(--gold); color: #fff; }
.b-gold:hover { background: var(--gold-d); }
.b-navy { background: var(--navy); color: #fff; }
.b-navy:hover { background: var(--navy-2); }
.b-wa { background: var(--wa); color: #fff; }
.b-wa:hover { background: #188547; }
.b-line { border-color: var(--line); color: var(--ink); background: transparent; }
.b-line:hover { border-color: var(--ink); }
.b-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.b-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.b-sm { padding: .55em 1em; font-size: .92rem; }
.b-full { width: 100%; }

/* ---------- Header ---------- */
.hdr { position: sticky; top: 0; z-index: 50; background: var(--paper); color: var(--navy); border-bottom: 1px solid var(--line); box-shadow: 0 6px 20px -16px rgba(0,26,112,.35); }
.hdr-in { display: flex; align-items: center; gap: 20px; min-height: 72px; position: relative; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; color: var(--navy); }
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo-txt { display: flex; flex-direction: column; align-items: stretch; line-height: 1; }
.logo-txt b { font-size: 1.35rem; font-weight: 800; letter-spacing: -.01em; padding-bottom: 5px; border-bottom: 1.5px solid var(--gold-l); }
.logo-txt small { direction: ltr; text-align: center; padding-top: 5px; font-family: Georgia, "Times New Roman", serif; font-size: .62rem; letter-spacing: .3em; margin-inline-end: -.3em; color: var(--gold); font-weight: 700; }
.logo-light .logo-txt b { color: #fff; border-color: rgba(217,180,143,.55); }
.logo-light .logo-txt small { color: var(--gold-l); }
.nav { display: flex; align-items: center; gap: 2px; margin-inline-start: auto; }
.nav > a:not(.b) { padding: 6px 11px; font-size: .93rem; font-weight: 700; color: #3c4670; border-radius: 6px; }
.nav > a:not(.b):hover { color: var(--navy-2); }
.nav > a.on { color: var(--navy); box-shadow: inset 0 -3px 0 var(--navy-2); border-radius: 0; }
.nav-cta { display: none; }
.hdr-act { display: flex; align-items: center; gap: 12px; }
.hdr-tel { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: .92rem; color: var(--navy); }
.hdr-tel .ic { color: var(--navy-2); }
.burger { display: none; width: 44px; height: 44px; border-radius: var(--r); border: 1px solid var(--line); background: transparent; color: var(--navy); align-items: center; justify-content: center; }
.burger .ic { width: 22px; height: 22px; }
.burger .i-close, .nav-open .burger .i-open { display: none; }
.nav-open .burger .i-close { display: block; }

/* ---------- Common sections ---------- */
.sec { padding: 96px 0; }
.sec-paper { background: var(--paper); }
.sec-navy { background: var(--navy); color: #c9d3e8; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .8rem; font-weight: 800; letter-spacing: .06em; color: var(--gold); margin-bottom: 10px; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.sec-navy .eyebrow, .hero .eyebrow, .phero .eyebrow { color: var(--gold-l); }
.head { margin-bottom: 48px; max-width: 700px; }
.head h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.head p { color: var(--mute); font-size: 1.05rem; margin: 0; }
.sec-navy .head h2 { color: #fff; }
.sec-navy .head p { color: #9fb0d1; }
.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; max-width: none; flex-wrap: wrap; }

/* ---------- Placeholder art ---------- */
.ph { position: relative; display: flex; flex-direction: column; justify-content: flex-end; width: 100%; height: 100%; padding: 28px; color: #fff; overflow: hidden; background: var(--navy-2); }
.ph::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18) 0 2px, transparent 3px) 0 0 / 26px 26px; opacity: .5; }
.ph::after { content: ""; position: absolute; inset-inline-end: -10%; bottom: -30%; width: 80%; aspect-ratio: 1; border-radius: 50%; border: 40px solid rgba(255,255,255,.08); }
.ph b { position: relative; z-index: 1; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.1; direction: ltr; text-align: right; }
.ph small { position: relative; z-index: 1; font-size: .9rem; opacity: .85; font-weight: 600; }
.ph-creek-view { background: linear-gradient(135deg, #0c3c62 0%, #1f7fa8 60%, #53c0d8 100%); }
.ph-icity { background: linear-gradient(135deg, #123f33 0%, #2c7a5c 60%, #86c49a 100%); }
.ph-aliva { background: linear-gradient(135deg, #7a2f16 0%, #c9622f 55%, #f3ad62 100%); }
.ph-mv-1-1 { background: linear-gradient(135deg, #1a2548 0%, #3c5190 60%, #8ea3d6 100%); }
.media { display: block; position: relative; overflow: hidden; border-radius: var(--r); background: var(--navy-2); }
.media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Home hero ---------- */
.hero { background: var(--deep); color: #fff; padding: 88px 0 104px; position: relative; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(270deg, rgba(0,15,61,.94) 0%, rgba(0,26,112,.78) 45%, rgba(0,26,112,.35) 100%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.7rem); line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold-l); }
.hero-l p { font-size: 1.12rem; color: #d5dcef; max-width: 560px; }
.hero-acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-mini { display: flex; gap: 28px; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-mini div { display: flex; flex-direction: column; }
.hero-mini b { font-size: 1.6rem; color: #fff; line-height: 1.2; }
.hero-mini span { font-size: .85rem; color: #b8c3e0; }

.picker { background: var(--paper); color: var(--ink); border-radius: 12px; padding: 10px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.45); }
.picker-h { padding: 14px 16px 8px; font-weight: 800; font-size: .95rem; color: var(--mute); }
.pick { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; align-items: center; padding: 12px; border-radius: var(--r); transition: background .2s; }
.pick:hover { background: var(--cream); }
.pick + .pick { border-top: 1px solid var(--line); }
.pick-dot { width: 76px; height: 56px; border-radius: var(--r); overflow: hidden; background: var(--sky); }
.pick-dot .ph { padding: 0; }
.pick-dot .ph b, .pick-dot .ph small { display: none; }
.pick-dot img { width: 100%; height: 100%; object-fit: cover; }
.pick strong { display: block; font-size: 1.05rem; line-height: 1.3; }
.pick span { font-size: .85rem; color: var(--mute); }
.pick em { font-style: normal; font-size: .78rem; font-weight: 700; color: var(--navy-2); background: var(--sky); padding: 3px 10px; border-radius: 4px; white-space: nowrap; }

/* ---------- Strip ---------- */
.strip { background: var(--navy-2); color: #fff; }
.strip .ic { color: var(--gold-l); }
.strip-in { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-in div { padding: 22px 20px; display: flex; align-items: center; gap: 12px; font-weight: 700; }
.strip-in div + div { border-inline-start: 1px solid rgba(255,255,255,.25); }
.strip .ic { width: 28px; height: 28px; }

/* ---------- Project rows ---------- */
.rows { display: grid; gap: 28px; }
.row { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.row:nth-child(even) .row-media { order: 2; }
.row-media { min-height: 380px; border-radius: 0; }
.row-body { padding: 44px; display: flex; flex-direction: column; }
.row-tag { align-self: flex-start; font-size: .78rem; font-weight: 700; background: var(--sky); color: var(--navy-2); padding: 4px 12px; border-radius: 4px; margin-bottom: 14px; }
.row-body h3 { font-size: 2rem; margin-bottom: 0; direction: ltr; text-align: right; }
.row-body h3 + small { display: block; color: var(--mute); font-weight: 600; margin-bottom: 14px; }
.row-body p { color: var(--mute); }
.row-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); margin: 6px 0 24px; }
.row-facts div { padding: 14px 0; }
.row-facts div + div { border-inline-start: 1px solid var(--line); padding-inline-start: 16px; }
.row-facts dt { font-size: .8rem; color: var(--mute); }
.row-facts dd { margin: 0; font-weight: 800; font-size: 1.05rem; }
.row-act { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }

/* ---------- Compare table ---------- */
.cmp-wrap { overflow-x: auto; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; }
.cmp { width: 100%; border-collapse: collapse; min-width: 720px; }
.cmp th, .cmp td { padding: 18px 20px; text-align: right; border-bottom: 1px solid rgba(255,255,255,.1); }
.cmp thead th { font-size: .82rem; color: #93a3c4; font-weight: 700; background: rgba(255,255,255,.03); }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp td b { color: #fff; font-size: 1.05rem; display: block; direction: ltr; text-align: right; }
.cmp td small { color: #93a3c4; }
.cmp .hl { color: var(--gold-l); font-weight: 800; }
.cmp-thumb { display: flex; align-items: center; gap: 14px; }
.cmp-thumb img { width: 56px; height: 42px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.cmp a.b { padding: .45em .9em; }

/* ---------- Perks & flow ---------- */
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--paper); }
.perk { padding: 34px; border-bottom: 1px solid var(--line); }
.perk:not(:nth-child(3n)) { border-inline-end: 1px solid var(--line); }
.perk:nth-last-child(-n+3) { border-bottom: 0; }
.perk .ic { width: 34px; height: 34px; color: var(--gold); margin-bottom: 14px; }
.perk h3 { font-size: 1.1rem; }
.perk p { margin: 0; color: var(--mute); font-size: .95rem; }
.perk a { color: var(--gold-d); text-decoration: underline; }

.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: f; }
.flow li { position: relative; padding-top: 64px; }
.flow li::before { counter-increment: f; content: "0" counter(f); position: absolute; top: 0; inset-inline-start: 0; font-size: 2.6rem; font-weight: 800; line-height: 1; color: var(--gold-l); }
.flow li::after { content: ""; position: absolute; top: 22px; inset-inline-start: 84px; inset-inline-end: 0; height: 1px; background: rgba(255,255,255,.18); }
.flow li:last-child::after { display: none; }
.flow h3 { color: #fff; font-size: 1.15rem; }
.flow p { margin: 0; color: #9fb0d1; }

/* ---------- FAQ ---------- */
.qa { max-width: 860px; }
.qa details { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; padding: 22px 0; font-weight: 700; font-size: 1.05rem; display: flex; justify-content: space-between; gap: 20px; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: ""; width: 12px; height: 12px; border-inline-end: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); margin-top: 6px; transition: transform .2s; flex-shrink: 0; }
.qa details[open] summary::after { transform: rotate(-135deg); margin-top: 12px; }
.qa details p { color: var(--mute); padding-bottom: 22px; margin: 0; }

/* ---------- Final CTA ---------- */
.final { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; border-radius: 12px; padding: 56px; position: relative; overflow: hidden; }
.final::after { content: ""; position: absolute; inset-inline-start: -60px; bottom: -120px; width: 280px; height: 280px; border-radius: 50%; border: 48px solid rgba(217,180,143,.18); }
.final h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.final p { color: #c7d1ee; margin: 0; }
.final-acts { display: grid; gap: 10px; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.ftr { background: var(--deep); color: #a9b4d6; padding: 72px 0 24px; font-size: .95rem; }
.ftr-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.ftr-brand p { margin-top: 18px; max-width: 340px; }
.logo-light b { color: #fff; }
.ftr h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.ftr li { margin-bottom: 10px; }
.ftr a:hover { color: #fff; }
.ftr-contact li, .ftr-contact a { display: flex; align-items: center; gap: 8px; }
.ftr-contact .ic { color: var(--gold-l); }
.ftr .logo, .ftr .logo-mark { color: #fff; }
.ftr-bot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem; }
.ftr-bot p { margin: 0; }
.ftr-bot a { text-decoration: underline; }
.ftr-bot nav { display: flex; gap: 18px; }
.ftr-bot nav a { text-decoration: none; }

.dock { display: none; }

/* ---------- Consent & lightbox ---------- */
.consent { position: fixed; z-index: 70; bottom: 16px; inset-inline-start: 16px; max-width: 460px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 20px 40px -12px rgba(14,26,51,.3); padding: 18px; font-size: .9rem; }
.consent p { margin: 0 0 12px; color: var(--mute); }
.consent a { color: var(--gold-d); text-decoration: underline; }
.consent div { display: flex; gap: 8px; }

.lb { position: fixed; inset: 0; z-index: 100; background: rgba(0,15,61,.96); display: flex; align-items: center; justify-content: center; padding: 60px 70px; }
.lb img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; }
.lb button { position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; }
.lb .ic { width: 24px; height: 24px; }
.lb-x { top: 16px; left: 16px; }
.lb-p { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-n { left: 16px; top: 50%; transform: translateY(-50%); }

/* ================= Project page ================= */
.phero { background: var(--deep); color: #fff; padding: 24px 0 140px; position: relative; overflow: hidden; isolation: isolate; min-height: 560px; }
.phero-bg { position: absolute; inset: 0; z-index: -2; }
.phero-bg img, .phero-bg .ph { width: 100%; height: 100%; object-fit: cover; }
.phero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(270deg, rgba(0,15,61,.93) 0%, rgba(0,26,112,.72) 50%, rgba(0,26,112,.2) 100%); }
.crumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: #c3cce6; margin-bottom: 48px; }
.crumb a:hover { color: #fff; }
.crumb span::before { content: "‹"; margin-inline-end: 8px; }
.phero-grid { display: grid; grid-template-columns: minmax(0, 620px); }
.phero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.1; direction: ltr; text-align: right; margin-bottom: 6px; }
.phero-sub { display: block; font-size: 1.1rem; color: #d5dcef; font-weight: 600; margin-bottom: 18px; }
.phero p { color: #d5dcef; font-size: 1.08rem; }
.phero .row-tag { background: var(--gold); color: #fff; }
.phero-loc { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-weight: 600; margin-bottom: 16px; }
.phero-loc .ic { color: var(--gold-l); }

.facts { margin-top: -64px; position: relative; z-index: 2; }
.facts-in { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--paper); border-radius: 12px; box-shadow: 0 24px 48px -24px rgba(14,26,51,.35); }
.facts-in div { padding: 26px 28px; }
.facts-in div + div { border-inline-start: 1px solid var(--line); }
.facts-in b { display: block; font-size: 1.9rem; line-height: 1.1; color: var(--navy); }
.facts-in span { font-size: .88rem; color: var(--mute); }

.subnav { position: sticky; top: 70px; z-index: 40; background: var(--cream); border-bottom: 1px solid var(--line); margin-top: 40px; }
.subnav-in { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.subnav-in::-webkit-scrollbar { display: none; }
.subnav a { padding: 14px 16px; font-weight: 700; font-size: .95rem; color: var(--mute); white-space: nowrap; border-bottom: 3px solid transparent; }
.subnav a:hover, .subnav a.on { color: var(--navy); border-color: var(--gold); }

.psec { padding: 80px 0; scroll-margin-top: 130px; }
.split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.split p { color: var(--mute); font-size: 1.05rem; }
.loc-list { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 26px; }
.loc-list h3 { font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.loc-list h3 .ic { color: var(--gold); }
.loc-list li { display: flex; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px dashed var(--line); font-weight: 600; font-size: .95rem; }
.loc-list li:last-child { border: 0; }
.loc-list .b { margin-top: 16px; }
.loc-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.phases { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; counter-reset: ph; }
.phase { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 28px; }
.phase::before { counter-increment: ph; content: "0" counter(ph); display: block; font-size: 1rem; font-weight: 800; color: var(--gold-l); margin-bottom: 18px; }
.phase h3 { color: #fff; font-size: 1.2rem; direction: ltr; text-align: right; }
.phase p { margin: 0; color: #9fb0d1; font-size: .95rem; }

.units { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.unit { background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--gold); border-radius: var(--r); padding: 26px; display: flex; flex-direction: column; }
.unit h3 { font-size: 1.15rem; }
.unit p { color: var(--mute); font-size: .95rem; flex: 1; }

.amen { display: flex; flex-wrap: wrap; gap: 10px; }
.amen li { display: inline-flex; align-items: center; gap: 8px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; font-weight: 600; font-size: .95rem; }
.amen .ic { color: var(--wa); }

.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gal button { border: 0; padding: 0; aspect-ratio: 4 / 3; cursor: zoom-in; }

.pay { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 44px; }
.pay-big { display: flex; gap: 32px; margin: 18px 0; }
.pay-big div b { display: block; font-size: 2.6rem; line-height: 1; color: var(--gold); }
.pay-big div span { color: var(--mute); font-size: .9rem; }
.pay-acts { display: grid; gap: 10px; }
.note { display: flex; gap: 8px; align-items: flex-start; font-size: .86rem; color: var(--mute); margin: 16px 0 0; }
.note .ic { margin-top: .3em; }
.note a { color: var(--gold-d); text-decoration: underline; }
.sec-navy .note { color: #93a3c4; }

.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mini { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.mini .media { aspect-ratio: 16 / 10; border-radius: 0; }
.mini .ph b { font-size: 1.5rem; }
.mini div.mini-b { padding: 20px 22px; }
.mini h3 { font-size: 1.1rem; margin: 0; direction: ltr; text-align: right; }
.mini span { font-size: .88rem; color: var(--mute); }

/* ================= Static & legal ================= */
.phead { background: linear-gradient(120deg, var(--deep) 0%, var(--navy) 55%, var(--navy-2) 100%); color: #fff; padding: 64px 0 56px; }
.phead h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.phead p { color: #b6c2dc; max-width: 700px; margin: 0; font-size: 1.05rem; }
.phead-date { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: .85rem; color: #93a3c4; }

.doc { display: grid; grid-template-columns: 250px 1fr; gap: 56px; padding: 56px 0 96px; align-items: start; }
.doc-toc { position: sticky; top: 94px; border-inline-start: 3px solid var(--gold); padding-inline-start: 18px; font-size: .92rem; }
.doc-toc b { display: block; margin-bottom: 10px; }
.doc-toc ol { list-style: decimal; padding-inline-start: 18px; color: var(--mute); }
.doc-toc li { margin-bottom: 6px; }
.doc-toc a:hover { color: var(--gold-d); }
.doc-body { max-width: 780px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 44px; }
.doc-body h2 { font-size: 1.3rem; margin-top: 36px; scroll-margin-top: 100px; }
.doc-body h3 { font-size: 1.05rem; margin-top: 22px; }
.doc-body p, .doc-body li { color: #3a4358; }
.doc-body ul { list-style: disc; padding-inline-start: 22px; margin-bottom: 1em; }
.doc-body li { margin-bottom: 6px; }
.doc-body a { color: var(--gold-d); text-decoration: underline; }
.callout { display: flex; gap: 14px; align-items: flex-start; background: var(--sky); border: 1px solid #c8d6f2; border-radius: var(--r); padding: 18px 20px; margin-bottom: 28px; }
.callout .ic { width: 28px; height: 28px; color: var(--navy-2); }
.callout p { margin: 0; color: var(--ink); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 30px; display: flex; flex-direction: column; gap: 6px; }
.card > .ic { width: 44px; height: 44px; color: var(--gold); margin-bottom: 10px; }
.card h3 { font-size: 1.15rem; margin: 0; }
.card p { color: var(--mute); margin: 0 0 14px; flex: 1; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-weight: 700; }
.chips a:hover { border-color: var(--wa); color: var(--wa); }

/* ================= Responsive ================= */
@media (max-width: 1200px) {
  .hdr-tel { display: none; }
  .nav > a:not(.b) { padding: 6px 8px; font-size: .88rem; }
}

@media (max-width: 1000px) {
  .sec { padding: 72px 0; }
  .burger { display: inline-flex; }
  .hdr-cta { display: none; }
  .hdr-tel { display: inline-flex; }
  .nav { position: absolute; top: 100%; inset-inline: -20px; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); padding: 8px 20px 24px; border-top: 1px solid var(--line); box-shadow: 0 20px 30px -20px rgba(0,26,112,.35); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s; max-height: calc(100vh - 70px); overflow-y: auto; }
  .nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav > a:not(.b) { padding: 13px 4px; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav > a.on { box-shadow: none; color: var(--navy-2); }
  .nav-cta { display: inline-flex; margin-top: 16px; }

  .hero-grid, .phero-grid, .split, .final, .pay { grid-template-columns: 1fr; gap: 40px; }
  .row, .row:nth-child(even) { grid-template-columns: 1fr; }
  .row:nth-child(even) .row-media { order: 0; }
  .row-media { min-height: 260px; }
  .row-body { padding: 30px; }
  .strip-in { grid-template-columns: 1fr 1fr; }
  .strip-in div:nth-child(3) { border-inline-start: 0; }
  .strip-in div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.25); }
  .perks, .cards, .cards3 { grid-template-columns: 1fr 1fr; }
  .perk { border-inline-end: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .perk:nth-child(odd) { border-inline-end: 1px solid var(--line) !important; }
  .perk:nth-last-child(-n+2) { border-bottom: 0 !important; }
  .flow { grid-template-columns: 1fr; gap: 32px; }
  .flow li::after { display: none; }
  .facts-in { grid-template-columns: 1fr 1fr; }
  .facts-in div:nth-child(3) { border-inline-start: 0; }
  .facts-in div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .ftr-top { grid-template-columns: 1fr 1fr; }
  .doc { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; }
  .doc-toc { position: static; }
  .gal { grid-template-columns: 1fr 1fr; }
  .final { padding: 40px 30px; }
}

@media (max-width: 640px) {
  :root { --wrap: calc(100% - 32px); }
  body { padding-bottom: 70px; }
  .hdr-in { min-height: 64px; }
  .hdr-tel { display: none; }
  .subnav { top: 64px; }
  .nav { inset-inline: -16px; }
  .hero { padding: 48px 0 64px; }
  .hero-acts .b { flex: 1; }
  .hero-mini { gap: 18px; }
  .hero-mini b { font-size: 1.3rem; }
  .pick { grid-template-columns: 64px 1fr; }
  .pick-dot { width: 64px; height: 48px; }
  .pick em { grid-column: 2; justify-self: start; }
  .strip-in div { padding: 16px 12px; font-size: .9rem; }
  .perks, .cards, .cards3, .gal { grid-template-columns: 1fr; }
  .perk:nth-child(odd) { border-inline-end: 0 !important; }
  .perk:not(:last-child) { border-bottom: 1px solid var(--line) !important; }
  .row-body h3 { font-size: 1.6rem; }
  .row-facts dd { font-size: .95rem; }
  .row-act .b { flex: 1; }
  .phero { padding-bottom: 100px; min-height: 0; }
  .phero::before, .hero::before { background: linear-gradient(0deg, rgba(0,15,61,.95) 0%, rgba(0,26,112,.78) 60%, rgba(0,26,112,.55) 100%); }
  .facts-in div { padding: 18px; }
  .facts-in b { font-size: 1.5rem; }
  .psec { padding: 56px 0; }
  .pay { padding: 28px; }
  .pay-big b { font-size: 2rem !important; }
  .doc-body { padding: 26px 20px; }
  .ftr-top { grid-template-columns: 1fr; }
  .ftr-bot { flex-direction: column; }
  .lb { padding: 60px 12px; }
  .lb-p, .lb-n { top: auto !important; bottom: 16px; transform: none !important; }
  .dock { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: fixed; z-index: 60; inset-inline: 0; bottom: 0; padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); background: var(--navy); }
  .dock a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: var(--r); font-weight: 800; color: #fff; }
  .dock-call { background: var(--gold); }
  .dock-wa { background: var(--wa); }
  .consent { inset-inline: 10px; bottom: 80px; max-width: none; }
  .consent .b { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
