/* ============================================================
   12X VERTIPORT — Global Stylesheet
   Luxury dark / gold editorial system for the family compound site.
   ============================================================ */

/* Fonts are loaded via <link rel="preconnect"> + <link rel="stylesheet"> in each page <head> for faster, non-blocking delivery. */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --deep: #0D1117;
  --deep2: #141B24;
  --deep3: #1C2631;
  --surface: #1E2A35;
  --surface2: #243140;
  --text: #E8EDF2;
  --text-muted: #8A9BB0;
  --text-dim: #526070;
  --accent-teal: #4ECDC4;
  --accent-coral: #E8856A;
  --accent-sky: #5BA3CC;
  --border: rgba(201,168,76,0.2);
  --border-subtle: rgba(255,255,255,0.06);
  --nav-h: 68px;
  --maxw: 1100px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--deep);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.mono {
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gold-rule { width: 80px; height: 1px; background: var(--gold); margin: 32px auto; opacity: 0.6; }
.serif { font-family: 'Playfair Display', serif; }

/* ── NAV ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 48px);
  z-index: 100;
  background: rgba(13,17,23,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.nav.scrolled {
  background: rgba(10,14,19,0.92);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand .mark {
  color: var(--gold);
  font-size: 13px;
  font-family: 'DM Mono', monospace;
  border: 1px solid var(--border);
  padding: 3px 8px;
  letter-spacing: 0.12em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold-light) !important;
  padding: 8px 16px !important;
  border-radius: 2px;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--deep) !important; }
.nav-cta::after { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--gold-light); transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s ease;
  border: 1px solid var(--gold);
}
.btn-primary { background: var(--gold); color: var(--deep); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--gold-light); }
.btn-ghost:hover { background: rgba(201,168,76,0.12); transform: translateY(-2px); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #0A0F15 0%, #0D1A26 40%, #0F1F2E 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 70%, rgba(78,205,196,0.05) 0%, transparent 60%);
}
.hero > * { position: relative; z-index: 1; }
.cover-badge {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 18px;
  margin-bottom: 40px;
  display: inline-block;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 7.2vw, 78px);
  font-weight: 900;
  line-height: 1.05;
  max-width: 820px;
  margin-bottom: 24px;
  overflow-wrap: break-word;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }

.cover-stats { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.cover-stat { text-align: center; }
.cover-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; color: var(--gold);
  display: block; line-height: 1;
}
.cover-stat .label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); margin-top: 8px; display: block;
}
.cover-divider { width: 1px; height: 56px; background: var(--border); align-self: center; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-dim);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bob 2.4s ease-in-out infinite; z-index: 1;
}
.scroll-cue .line { width: 1px; height: 30px; background: var(--border); }
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── SECTION SCAFFOLD ──────────────────────────────── */
section { position: relative; }
.section { max-width: var(--maxw); margin: 0 auto; padding: 96px clamp(20px, 5vw, 48px); }
.section-head { margin-bottom: 48px; max-width: 680px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block;
}
.section-head h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.1; margin-bottom: 16px;
}
.section-head p { font-size: 16px; color: var(--text-muted); font-weight: 300; }

.alt-bg { background: var(--deep2); }
.alt-bg::before, .alt-bg::after { content: ''; display: block; }

/* ── PILLARS (home) ───────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.pillar {
  background: var(--deep2); border: 1px solid var(--border-subtle);
  padding: 32px 28px; border-radius: 4px; transition: border-color .25s ease, transform .25s ease;
}
.pillar:hover { border-color: var(--border); transform: translateY(-4px); }
.pillar .icon { font-size: 26px; margin-bottom: 16px; }
.pillar h3 { font-family: 'Playfair Display', serif; font-size: 21px; margin-bottom: 10px; }
.pillar p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── PROPERTY CARDS ───────────────────────────────── */
.prop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.prop-card {
  background: linear-gradient(160deg, var(--deep2) 0%, var(--deep3) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.prop-card:hover { border-color: var(--border); transform: translateY(-6px); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6); }
.prop-card-top {
  padding: 26px 26px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.prop-card .rank-badge {
  width: 52px; height: 52px; border: 2px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0;
}
.prop-card .rank-num { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1; }
.prop-card .rank-label { font-family: 'DM Mono', monospace; font-size: 7px; letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase; }
.prop-card .price-land { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--gold-light); text-align: right; }
.prop-card .price-allin { font-size: 11px; color: var(--text-muted); text-align: right; margin-top: 2px; }
.prop-card-body { padding: 18px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.prop-card h3 { font-family: 'Playfair Display', serif; font-size: 23px; line-height: 1.15; margin-bottom: 8px; }
.prop-card .prop-location { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.prop-card .card-listing { margin-bottom: 18px; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 12px 0; }
.prop-card .cl-row { display: flex; gap: 12px; padding: 3px 0; align-items: baseline; }
.prop-card .cl-k { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); flex: 0 0 56px; }
.prop-card .cl-v { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.prop-card .chip-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.prop-card .card-link {
  margin-top: auto; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-light); display: inline-flex; align-items: center; gap: 8px;
}
.prop-card .card-link .arrow { transition: transform .25s ease; }
.prop-card:hover .card-link .arrow { transform: translateX(5px); }

/* score chips */
.score-chip {
  padding: 4px 11px; font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px; white-space: nowrap;
}
.chip-beach { background: rgba(78,205,196,0.15); color: var(--accent-teal); border: 1px solid rgba(78,205,196,0.3); }
.chip-evtol { background: rgba(91,163,204,0.15); color: var(--accent-sky); border: 1px solid rgba(91,163,204,0.3); }
.chip-income { background: rgba(201,168,76,0.12); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.25); }
.chip-build { background: rgba(232,133,106,0.12); color: var(--accent-coral); border: 1px solid rgba(232,133,106,0.3); }
.chip-green { background: rgba(100,200,120,0.12); color: #7DD890; border: 1px solid rgba(100,200,120,0.25); }

/* ── COMPARISON MATRIX ────────────────────────────── */
.matrix-wrap { overflow-x: auto; border: 1px solid var(--border-subtle); border-radius: 6px; }
.matrix-table { width: 100%; border-collapse: collapse; min-width: 860px; }
.matrix-table th {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim); text-align: left; padding: 14px 14px; border-bottom: 1px solid var(--border); background: var(--deep2);
}
.matrix-table td { padding: 16px 14px; font-size: 12.5px; color: var(--text-muted); border-bottom: 1px solid var(--border-subtle); vertical-align: middle; }
.matrix-table tbody tr { cursor: pointer; transition: background .2s ease; }
.matrix-table tbody tr:hover td { background: rgba(255,255,255,0.025); }
.matrix-table tbody tr:last-child td { border-bottom: none; }
.matrix-table .rank-col { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--gold); text-align: center; width: 40px; }
.matrix-table .name-col { font-weight: 500; color: var(--text); font-size: 13px; }
.matrix-table .val-col { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--gold-light); white-space: nowrap; }
.stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.matrix-note { font-size: 11px; color: var(--text-dim); margin-top: 18px; font-family: 'DM Mono', monospace; line-height: 1.6; }

/* ── PROPERTY DETAIL PAGE ─────────────────────────── */
.detail-hero {
  padding: calc(var(--nav-h) + 60px) clamp(20px, 5vw, 48px) 48px;
  max-width: var(--maxw); margin: 0 auto;
}
.detail-back { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 32px; display: inline-flex; gap: 8px; transition: color .2s; }
.detail-back:hover { color: var(--gold-light); }
.prop-header {
  display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 24px;
  margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
.prop-header .rank-badge { width: 64px; height: 64px; border: 2px solid var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.prop-header .rank-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--gold); line-height: 1; }
.prop-header .rank-label { font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase; }
.prop-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 38px); font-weight: 700; line-height: 1.1; margin-bottom: 6px; }
.prop-header .prop-location { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.prop-header .prop-price-block { text-align: right; }
.prop-header .price-land { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--gold-light); display: block; }
.prop-header .price-allin { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.score-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }

.detail-body { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px) 80px; }

.beach-callout {
  background: rgba(78,205,196,0.06); border: 1px solid rgba(78,205,196,0.2);
  padding: 22px 26px; margin-bottom: 40px; display: flex; gap: 18px; align-items: flex-start; border-radius: 4px;
}
.beach-icon { font-size: 24px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.beach-callout .bc-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.beach-callout strong { color: var(--accent-teal); }
.beach-callout .bc-title { color: var(--accent-teal); display: block; margin-bottom: 6px; }

/* listing & location block */
.listing-block { background: var(--deep2); border: 1px solid var(--border); border-radius: 4px; padding: 28px clamp(22px, 4vw, 32px); margin-bottom: 40px; }
.listing-block h3 { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.aerial { margin: 0 0 22px; }
.aerial img { width: 100%; height: auto; border-radius: 4px; border: 1px solid var(--border-subtle); display: block; }
.aerial figcaption { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.06em; color: var(--text-dim); margin-top: 8px; line-height: 1.6; }
.aerial figcaption a { color: var(--accent-sky); }
.listing-kv td:first-child { width: 30%; }
.listing-note { font-size: 12.5px; color: var(--text-dim); line-height: 1.6; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-subtle); }
.lr-label { display: block; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px; }
.parcels { margin-top: 20px; overflow-x: auto; }
.parcel-table { width: 100%; border-collapse: collapse; min-width: 660px; }
.parcel-table th { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--border); }
.parcel-table td { padding: 11px 10px; font-size: 13px; color: var(--text-muted); border-bottom: 1px solid var(--border-subtle); vertical-align: top; }
.parcel-table tr:last-child td { border-bottom: none; }
.parcel-table .pc-addr { color: var(--text); font-weight: 500; }
.parcel-table .pc-acre { white-space: nowrap; }
.parcel-table .pc-price { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--gold-light); white-space: nowrap; }
.parcel-table .pc-mls { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--accent-sky); white-space: nowrap; }
.parcel-table .pc-parcel { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--text-muted); white-space: nowrap; }
.parcel-table .pc-parcel a { color: var(--accent-sky); }
.appraiser-line { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--text-dim); margin-top: 12px; }
.appraiser-line a { color: var(--accent-sky); }
.prop-card .cl-more { color: var(--gold); font-size: 11px; }

.listing-rep { margin-top: 18px; }
.listing-rep ul { list-style: none; }
.listing-rep li { font-size: 13px; color: var(--text-muted); padding: 6px 0 6px 16px; position: relative; border-bottom: 1px solid var(--border-subtle); }
.listing-rep li:last-child { border-bottom: none; }
.listing-rep li::before { content: '›'; position: absolute; left: 0; color: var(--gold); }
.listing-sources { margin-top: 18px; }
.ls-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.ls-links a { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--accent-sky); transition: color .2s; }
.ls-links a:hover { color: var(--gold-light); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.detail-section h3, .block-title {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.detail-section p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.detail-section p strong { color: var(--text); font-weight: 500; }

.kv-table { width: 100%; border-collapse: collapse; }
.kv-table td { padding: 8px 0; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
.kv-table tr:last-child td { border-bottom: none; }
.kv-table td:first-child { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); width: 40%; vertical-align: top; padding-top: 10px; }
.kv-table td:last-child { color: var(--text); padding-left: 12px; }

.dev-path { background: var(--deep2); border: 1px solid var(--border); padding: 32px clamp(22px, 4vw, 36px); margin-bottom: 40px; border-radius: 4px; }
.dev-path h3 { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.phase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.phase { position: relative; padding-left: 16px; }
.phase::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; background: var(--border); }
.phase.p1::before { background: var(--gold); }
.phase.p2::before { background: var(--accent-teal); }
.phase.p3::before { background: var(--accent-sky); }
.phase.p4::before { background: var(--accent-coral); }
.phase-num { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
.phase-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.phase-time { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); margin-bottom: 10px; }
.phase-items { list-style: none; }
.phase-items li { font-size: 12px; color: var(--text-muted); padding: 5px 0; border-bottom: 1px solid var(--border-subtle); line-height: 1.45; }
.phase-items li:last-child { border-bottom: none; }

.income-section { background: var(--surface); border-left: 3px solid var(--gold); padding: 28px clamp(22px, 4vw, 32px); margin-bottom: 40px; border-radius: 0 4px 4px 0; }
.income-section h3 { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.income-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 20px; }
.income-item .inc-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; font-family: 'DM Mono', monospace; margin-bottom: 6px; }
.income-item .inc-value { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: var(--gold-light); }
.income-item .inc-note { font-size: 11px; color: var(--text-dim); margin-top: 4px; line-height: 1.4; }
.total-income { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.total-income .tot-label { font-family: 'DM Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-dim); }
.total-income .tot-value { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--accent-teal); margin-top: 6px; }
.total-income .tot-note { font-size: 12px; color: var(--text-dim); margin-top: 6px; line-height: 1.5; }

.verdict { background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(78,205,196,0.04) 100%); border: 1px solid var(--border); padding: 28px clamp(22px, 4vw, 32px); border-radius: 4px; }
.verdict h3 { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.verdict p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.verdict p strong { color: var(--text); }

/* detail nav between properties */
.detail-pager { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px,5vw,48px) 80px; display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--border-subtle); padding-top: 32px; }
.detail-pager a { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); transition: color .2s; }
.detail-pager a:hover { color: var(--gold-light); }
.detail-pager .disabled { opacity: 0.3; pointer-events: none; }

/* ── ABOUT ─────────────────────────────────────────── */
.about-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.lead { font-size: 19px; line-height: 1.7; color: var(--text); font-weight: 300; }
.lead em { font-style: italic; color: var(--gold-light); }
.feature-list { list-style: none; }
.feature-list li { padding: 16px 0; border-bottom: 1px solid var(--border-subtle); display: flex; gap: 16px; align-items: flex-start; }
.feature-list li:last-child { border-bottom: none; }
.feature-list .fl-num { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); flex-shrink: 0; width: 28px; }
.feature-list .fl-text strong { color: var(--text); display: block; margin-bottom: 2px; }
.feature-list .fl-text span { font-size: 13px; color: var(--text-muted); }

/* ── CONTACT ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
.field input, .field textarea, .field select {
  background: var(--deep2); border: 1px solid var(--border-subtle); border-radius: 3px;
  padding: 13px 15px; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 14px;
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--text-dim); }
.form-status { font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.08em; padding: 12px 0; }
.form-status.ok { color: var(--accent-teal); }

.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card { background: var(--deep2); border: 1px solid var(--border-subtle); border-radius: 4px; padding: 20px 22px; }
.contact-card .cc-rank { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; }
.contact-card .cc-name { font-family: 'Playfair Display', serif; font-size: 17px; margin: 4px 0; }
.contact-card .cc-agent { font-size: 13px; color: var(--text-muted); }

/* ── CTA BAND ──────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(78,205,196,0.05) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-band .section { text-align: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 40px); margin-bottom: 16px; }
.cta-band p { color: var(--text-muted); max-width: 520px; margin: 0 auto 32px; }

/* ── FOOTER ────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border-subtle); padding: 56px clamp(20px,5vw,48px); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand .nav-brand { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); max-width: 320px; }
.footer-col h4 { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-muted); padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { max-width: var(--maxw); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; color: var(--text-dim); }

/* ── REVEAL ANIMATION ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── ACCESSIBILITY ─────────────────────────────────── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-cue { animation: none !important; }
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 860px) {
  .two-col, .about-vision, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .phase-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: var(--nav-h); right: 0; height: calc(100vh - var(--nav-h));
    width: min(78vw, 320px); flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(10,14,19,0.98); backdrop-filter: blur(16px);
    padding: 24px 32px; border-left: 1px solid var(--border-subtle);
    transform: translateX(100%); transition: transform .35s ease;
  }
  .nav-links.open { transform: none; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 16px 0; width: 100%; font-size: 13px; border-bottom: 1px solid var(--border-subtle); }
  .nav-links .nav-cta { margin-top: 16px; text-align: center; }
  .nav-toggle { display: flex; }
  .prop-header { grid-template-columns: auto 1fr; }
  .prop-header .prop-price-block { grid-column: 1 / -1; text-align: left; }
  .cover-stats { gap: 28px; }
  .cover-divider { display: none; }
}
@media (max-width: 480px) {
  .phase-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cover-stats { gap: 20px 26px; }
  .cover-stat .num { font-size: 30px; }
  .cover-stat .label { font-size: 9px; letter-spacing: 0.14em; }
  .hero-sub { font-size: 15px; }
  .section { padding-left: 18px; padding-right: 18px; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .cover-badge { font-size: 9px; letter-spacing: 0.14em; padding: 6px 12px; white-space: normal; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
