/* ============================================================
   Dino Trails Getaway — Premium Marketing Site
   Navy #1F3A5F | Gold #B8893A | Soft white #F5F5F2
   ============================================================ */

:root {
  --navy:        #1F3A5F;
  --navy-dark:   #142840;
  --navy-mid:    #2A4E7A;
  --gold:        #B8893A;
  --gold-light:  #D4A85A;
  --gold-pale:   #F5EDD8;
  --white:       #FFFFFF;
  --off-white:   #F9F8F5;
  --bg-gray:     #F5F5F2;
  --bg-navy:     #E8EEF5;
  --text:        #1A1A1A;
  --text-mid:    #4A4A4A;
  --text-light:  #717171;
  --border:      #E2DDD7;
  --border-soft: #EDEBE7;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow:      0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --max:         1200px;
  --narrow:      760px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow { max-width: var(--narrow); }

/* ── SECTION HEADERS ── */
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2.5rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.section-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--gold);
  margin-top: 14px;
  border-radius: 2px;
}
.section-title-lg {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.section-title-lg::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-top: 16px;
  border-radius: 2px;
}
.subsection-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 3rem 0 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(184,137,58,0.4); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.65); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  transition: box-shadow 0.25s;
}
#navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links .nav-cta { background: var(--gold); color: var(--white) !important; padding: 8px 16px; }
.nav-links .nav-cta:hover { background: var(--gold-light); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; padding: 4px 8px; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; font-size: 0.9rem; }
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(14,26,46,0.82) 0%, rgba(20,40,64,0.68) 50%, rgba(14,26,46,0.85) 100%),
    url('../images/hero.jpg') center 30% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 28px 90px;
  position: relative;
  overflow: hidden;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
}
.hero-content { position: relative; z-index: 1; max-width: 840px; }
.hero-eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.95;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.hero-price {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  margin-bottom: 44px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── GLANCE ── */
#glance { background: var(--white); padding: 80px 0 72px; }
.glance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (min-width: 640px)  { .glance-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .glance-grid { grid-template-columns: repeat(6, 1fr); } }

.glance-tile {
  background: var(--white);
  padding: 30px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: background 0.15s;
}
.glance-tile:hover { background: var(--off-white); }
.glance-value {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1;
}
.glance-label {
  font-size: 0.72rem;
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── OPPORTUNITY ── */
#opportunity {
  background: var(--navy-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
#opportunity::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,137,58,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.opportunity-lead {
  margin-bottom: 64px;
}
.opportunity-lead p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.opportunity-lead p strong { color: var(--white); }
.opportunity-lead p:last-child { margin-bottom: 0; }

.streams-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px)  { .streams-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .streams-grid { grid-template-columns: repeat(3, 1fr); } }

.stream-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 4px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.stream-card:hover { background: rgba(255,255,255,0.07); }
.stream-active {
  border-left-color: var(--gold) !important;
  background: rgba(184,137,58,0.06) !important;
}
.stream-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.stream-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.stream-badge-idle {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
}
.stream-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.stream-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}
.stream-upside {
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.8) !important;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
  margin-top: 4px;
  margin-bottom: 0 !important;
}
.stream-upside strong { color: var(--gold-light) !important; }

/* ── PROPERTY ── */
#property { background: var(--white); padding: 96px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 36px;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; } }

.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.gallery-img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); z-index: 1; position: relative; }

.airbnb-section { margin-bottom: 48px; }
.airbnb-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.airbnb-links { display: flex; flex-wrap: wrap; gap: 10px; }
.airbnb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.15s;
}
.airbnb-badge:hover { border-color: var(--gold); color: var(--navy); background: var(--gold-pale); box-shadow: var(--shadow-sm); }
.stars { color: #FF5A5F; }

.buildings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 640px) { .buildings-grid { grid-template-columns: repeat(2, 1fr); } }

.building-card {
  background: var(--bg-navy);
  border: 1px solid rgba(31,58,95,0.1);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s;
}
.building-card:hover { box-shadow: var(--shadow); }
.building-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.building-specs {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(31,58,95,0.1);
  padding-bottom: 10px;
  margin-bottom: 12px !important;
}
.building-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.building-card p strong { color: var(--navy); }

.amenities-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  color: var(--white);
}
.amenities-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.amenities-list span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.amenities-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin: 0;
}

/* ── FINANCIALS ── */
#financials { background: var(--bg-navy); padding: 96px 0; }

.financials-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.financials-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
  min-width: 480px;
}
.financials-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.financials-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-mid);
  vertical-align: middle;
}
.financials-table td:first-child { font-weight: 500; color: var(--text); }
.financials-table td:not(:first-child) { font-weight: 600; color: var(--navy); text-align: right; }
.financials-table th:not(:first-child) { text-align: right; }
.financials-table tr:last-child td { border-bottom: none; }
.financials-table tr:hover td { background: var(--off-white); }
.financials-table .highlight { color: var(--gold) !important; font-size: 1.05em; }
.comp-subject td { background: rgba(184,137,58,0.06); }
.gold-text { color: var(--gold) !important; }

.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0;
}
@media (min-width: 768px) { .roadmap-grid { grid-template-columns: repeat(3, 1fr); } }

.roadmap-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.roadmap-card-gold {
  background: linear-gradient(135deg, var(--navy) 0%, #2A4E7A 100%);
  border-color: transparent;
  box-shadow: var(--shadow);
}
.roadmap-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.roadmap-noi {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1;
}
.roadmap-card-gold .roadmap-noi { color: var(--white); }
.roadmap-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.roadmap-card ul li {
  font-size: 0.84rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.roadmap-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.roadmap-card-gold ul li { color: rgba(255,255,255,0.72); }
.roadmap-card-gold ul li::before { color: var(--gold-light); }

/* P&L Details expand */
.pl-details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.pl-details summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pl-details summary::before { content: '▶'; font-size: 0.65rem; color: var(--gold); transition: transform 0.2s; }
.pl-details[open] summary::before { transform: rotate(90deg); }
.pl-table-wrap { border-top: 1px solid var(--border-soft); overflow-x: auto; }
.pl-table { min-width: 360px; }
.pl-section td {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px !important;
}
.pl-total td { background: var(--bg-gray) !important; font-weight: 700 !important; color: var(--navy) !important; }
.pl-noi td { background: var(--navy) !important; color: var(--white) !important; font-weight: 800 !important; font-size: 1rem !important; }

.financials-note {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding: 12px 18px;
  background: rgba(184,137,58,0.05);
  border-radius: 0 6px 6px 0;
  margin-top: 24px;
}
.financials-note strong { color: var(--text); }

/* ── MARKET ── */
#market { background: var(--white); padding: 96px 0; }

.market-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 0;
}
@media (min-width: 900px) { .market-layout { grid-template-columns: 1fr 1fr; align-items: start; } }

.market-callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}
.market-callout-text {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.market-callout-text::before {
  content: '"';
  display: block;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -8px;
  font-style: italic;
}
.market-callout-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.market-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ── LOCATION ── */
#location { background: var(--off-white); padding: 96px 0; }
.location-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .location-layout { grid-template-columns: 3fr 2fr; align-items: start; } }
.location-map iframe { border-radius: var(--radius-lg); display: block; min-height: 380px; box-shadow: var(--shadow); }
.location-address {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.5;
}
.location-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.location-list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.location-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.loc-sub { font-size: 0.78rem; color: var(--text-light); display: block; margin-top: 2px; }

/* ── MARKETING ── */
#marketing { background: var(--gold-pale); padding: 80px 0; }
.marketing-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .marketing-channels { grid-template-columns: repeat(2, 1fr); } }
.channel-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  border-left: 3px solid var(--gold);
}
.channel-item strong { color: var(--navy); }

/* ── CONTACT ── */
#contact { background: var(--bg-gray); padding: 96px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) { .contact-layout { grid-template-columns: 3fr 2fr; } }
.contact-intro {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--text); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(31,58,95,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  appearance: none; cursor: pointer;
  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='%234A4A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.form-success {
  display: none;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #2E7D32;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Contact team sidebar */
.contact-team {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.team-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.team-lead {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 20px;
}
.team-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-lead p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }
.team-lead a { color: var(--gold); font-weight: 600; }
.team-lead a:hover { color: var(--gold-light); }
.team-supporting-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.team-member {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.team-member:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.team-member strong { color: var(--text); display: block; }
.team-member a { color: var(--gold); }
.team-member a:hover { color: var(--gold-light); }

/* ── FOOTER ── */
#footer { background: var(--navy-dark); padding: 64px 0 40px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 36px;
  margin-bottom: 28px;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 5fr 3fr 5fr; } }
.footer-inner p, .footer-inner a { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.6); }
.footer-inner a:hover { color: var(--gold); }
.footer-name { font-size: 1.05rem !important; font-weight: 800 !important; color: var(--white) !important; margin-bottom: 4px; }
.footer-remax { font-size: 0.75rem !important; color: rgba(255,255,255,0.35) !important; margin-top: 10px; }
.footer-disclaimer p { font-size: 0.75rem !important; color: rgba(255,255,255,0.35) !important; line-height: 1.65 !important; }

/* ── DEV BANNER ── */
#dev-banner {
  display: none;
  background: #7C3C0A;
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 101;
  height: 38px;
  line-height: 20px;
}
#dev-banner.visible { display: block; }
#dev-banner a { color: var(--gold-light); text-decoration: underline; margin-left: 8px; cursor: pointer; }
body.has-banner #navbar { top: 38px; }
body.has-banner #hero { padding-top: 168px; }

/* ── PRESENTED BY ── */
#presented-by { background: var(--white); padding: 0 0 24px; }
.presented-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 32px;
  position: relative;
  overflow: hidden;
  margin-top: -28px;
  box-shadow: var(--shadow);
}
.presented-stripe {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, #DC1C2E 0%, #DC1C2E 33%, #FFFFFF 33%, #FFFFFF 66%, #003DA5 66%, #003DA5 100%);
}
.presented-content { flex: 1; padding-left: 8px; }
.presented-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #DC1C2E;
  margin-bottom: 4px;
}
.presented-name {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.presented-sub {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}
.presented-balloon { width: 56px; flex-shrink: 0; }
.presented-balloon svg { width: 100%; height: auto; display: block; }
@media (max-width: 600px) {
  .presented-strip { padding: 20px 22px 20px 26px; gap: 16px; }
  .presented-balloon { width: 44px; }
}

/* ── PASSWORD GATE ── */
#password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(160deg, #0E1A2E 0%, #1F3A5F 60%, #0E1A2E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#password-gate.hidden { display: none; }
.gate-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.gate-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.gate-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.gate-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
  line-height: 1.6;
}
.gate-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  padding: 14px 16px;
  text-align: center;
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  margin-bottom: 14px;
}
.gate-input::placeholder { color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
.gate-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,137,58,0.2); }
.gate-input.error { border-color: #E05252; animation: shake 0.3s ease; }
.gate-btn {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  letter-spacing: 0.02em;
}
.gate-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.gate-error {
  font-size: 0.8rem;
  color: #E05252;
  margin-top: 10px;
  min-height: 20px;
}
.gate-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
  border-radius: 2px;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   SUB-PAGE COMPONENTS (area-guide.html, groups.html)
══════════════════════════════════════════════════════════════ */

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 130px 0 90px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184,137,58,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--white));
}
body.has-banner .page-hero { padding-top: 168px; }
.page-hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.page-hero-sub {
  font-size: clamp(0.92rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 1; }

/* ── PAGE SECTIONS ── */
.page-section     { padding: 80px 0; background: var(--white); }
.page-section-alt { padding: 80px 0; background: var(--off-white); }
.page-section-navy{ padding: 80px 0; background: var(--navy-dark); }

/* ── NAV ACTIVE STATE ── */
.nav-links .nav-active { color: var(--gold) !important; }

/* ── PROXIMITY TABLE MODIFIERS ── */
.proximity-primary td { background: rgba(184,137,58,0.05) !important; }
.proximity-primary td:first-child { color: var(--gold) !important; font-weight: 700 !important; }

/* ── ATTRACTION CARDS ── */
.attraction-category-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  margin-bottom: 20px;
}
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
  margin-bottom: 16px;
}
.attraction-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.attraction-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.attraction-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.attraction-name  { font-size: 0.97rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.attraction-distance {
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.attraction-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }

/* ── EVENT CARDS ── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(236px, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.event-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.event-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.event-card-header { background: var(--navy); padding: 18px 22px; }
.event-card-title  { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.event-card-date   { font-size: 0.78rem; color: var(--gold-light); }
.event-card-body   { padding: 18px 22px; background: var(--white); }
.event-card-body p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }
.event-card-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 9px;
  border-radius: 4px;
}

/* ── SEASON CARDS ── */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(218px, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.season-card { border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); }
.season-card.peak     { background: var(--navy); border-color: transparent; }
.season-card.shoulder { background: var(--bg-navy); }
.season-card.offpeak  { background: var(--off-white); }
.season-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.season-name { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.season-card.peak .season-name { color: var(--white); }
.season-card.shoulder .season-name,
.season-card.offpeak .season-name { color: var(--navy); }
.season-profile { font-size: 0.8rem; font-weight: 600; margin-bottom: 10px; }
.season-card.peak .season-profile { color: rgba(255,255,255,0.65); }
.season-card.shoulder .season-profile,
.season-card.offpeak .season-profile { color: var(--text-mid); }
.season-hooks { font-size: 0.82rem; line-height: 1.65; list-style: none; display: flex; flex-direction: column; gap: 5px; }
.season-hooks li { padding-left: 16px; position: relative; }
.season-hooks li::before { content: '→'; position: absolute; left: 0; font-weight: 700; }
.season-card.peak .season-hooks li       { color: rgba(255,255,255,0.65); }
.season-card.peak .season-hooks li::before { color: var(--gold-light); }
.season-card.shoulder .season-hooks li,
.season-card.offpeak  .season-hooks li   { color: var(--text-mid); }
.season-card.shoulder .season-hooks li::before,
.season-card.offpeak  .season-hooks li::before { color: var(--gold); }

/* ── SEGMENT CARDS (groups page) ── */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.segment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.segment-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.segment-icon  { font-size: 2rem; margin-bottom: 12px; display: block; line-height: 1; }
.segment-name  { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.segment-hook  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.segment-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 9px;
  border-radius: 4px;
}

/* ── GROUP STATS STRIP ── */
.group-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  margin: 56px 0;
  box-shadow: var(--shadow);
}
@media (min-width: 640px)  { .group-stats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .group-stats { grid-template-columns: repeat(6, 1fr); } }
.group-stat { text-align: center; background: var(--navy-dark); padding: 28px 14px; }
.group-stat-value {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.group-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--gold-pale);
  border: 1.5px solid rgba(184,137,58,0.4);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 60px 0 0;
}
.cta-strip h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-strip p {
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  line-height: 1.7;
}
.cta-strip .btn { background: var(--navy); color: var(--white); }
.cta-strip .btn:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(31,58,95,0.3); }

/* ── DNM STAT TILES (area guide) ── */
.dnm-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 36px 0;
}
.dnm-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.dnm-stat-value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.dnm-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 500; line-height: 1.4; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: rgba(184,137,58,0.07);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; margin: 0; }
.highlight-box p strong { color: var(--navy); }

/* ══════════════════════════════════════════════════════════════
   PHASE 2 — EXTENDED COMPONENTS
══════════════════════════════════════════════════════════════ */

/* ── TABLE LEFT-ALIGN ── */
.financials-table.table-left th,
.financials-table.table-left td { text-align: left !important; }
.financials-table.table-left td:not(:first-child) { color: var(--text-mid); font-weight: 500; }

/* ── DARK CARD VARIANT ── */
.card-dark {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-top: 3px solid var(--gold) !important;
  transition: background 0.2s;
}
.card-dark:hover { background: rgba(255,255,255,0.09) !important; box-shadow: none !important; }
.card-dark h3 { color: var(--white) !important; }
.card-dark .building-specs { color: var(--gold-light) !important; border-bottom-color: rgba(255,255,255,0.12) !important; }
.card-dark p { color: rgba(255,255,255,0.62) !important; }
.card-dark p strong { color: var(--white) !important; }

/* ── PAGE HERO VARIANTS ── */
.page-hero-seamless::after { display: none; }
.page-hero-to-dark::after { background: linear-gradient(to bottom, transparent, var(--navy-dark)) !important; }

/* ── NAV COMPACT (many items) ── */
@media (min-width: 861px) {
  .nav-links { gap: 0; }
  .nav-links a:not(.nav-cta) { font-size: 0.78rem; padding: 7px 8px; }
}

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(0,0,0,0.94);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
}
#lightbox.active { display: flex; }
#lb-img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: block;
}
#lb-caption { color: rgba(255,255,255,0.5); font-size: 0.84rem; margin-top: 14px; text-align: center; max-width: 640px; line-height: 1.5; }
#lb-counter  { color: rgba(255,255,255,0.3); font-size: 0.75rem; margin-top: 8px; }
#lb-close {
  position: fixed; top: 18px; right: 22px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  z-index: 1;
}
#lb-close:hover { background: rgba(255,255,255,0.2); color: var(--white); }
#lb-prev, #lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 1;
  line-height: 1;
}
#lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,0.2); }
#lb-prev { left: 16px; }
#lb-next { right: 16px; }

/* ── FAQ ACCORDION ── */
.faq-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.faq-cat-btn {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.15s;
}
.faq-cat-btn:hover { border-color: var(--gold); color: var(--navy); }
.faq-cat-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.faq-section { display: none; }
.faq-section.active { display: block; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item:first-child { border-top: 1px solid var(--border-soft); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  padding: 20px 52px 20px 0;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--gold); }
.faq-question::after {
  content: '+';
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.7rem; font-weight: 300; color: var(--gold);
  transition: transform 0.25s; line-height: 1;
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 1000px; padding-bottom: 22px; }
.faq-answer p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--text); }
.faq-answer ul { list-style: none; margin: 10px 0; display: flex; flex-direction: column; gap: 6px; }
.faq-answer ul li { font-size: 0.9rem; color: var(--text-mid); padding-left: 18px; position: relative; line-height: 1.55; }
.faq-answer ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ── REVIEW CARDS ── */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-card::before {
  content: '\201C';
  position: absolute; top: 12px; right: 18px;
  font-size: 4.5rem; color: var(--gold-pale);
  line-height: 1; font-family: Georgia, serif; pointer-events: none;
}
.review-stars    { color: #FF8C00; font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text     { font-size: 0.9rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 20px; font-style: italic; }
.review-meta     { display: flex; align-items: center; gap: 12px; }
.review-avatar   { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: var(--white); font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name     { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.review-platform { font-size: 0.75rem; color: var(--text-light); margin-top: 1px; }

/* ── RATING TILES ── */
.rating-overview { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 56px; }
@media (min-width: 640px) { .rating-overview { grid-template-columns: repeat(3, 1fr); } }
.rating-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.rating-number      { font-size: 3.6rem; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
.rating-stars-row   { color: #FF8C00; font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 10px; }
.rating-badge-label { font-size: 0.78rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.rating-sub         { font-size: 0.82rem; color: var(--text-mid); margin-top: 10px; line-height: 1.5; }
.theme-grid  { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.theme-pill  { background: var(--bg-navy); border: 1px solid rgba(31,58,95,0.15); border-radius: 999px; padding: 8px 18px; font-size: 0.84rem; font-weight: 600; color: var(--navy); }

/* ── FINANCING CARDS ── */
.financing-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 40px; }
@media (min-width: 640px)  { .financing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .financing-grid { grid-template-columns: repeat(4, 1fr); } }
.financing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy-mid);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: box-shadow 0.2s;
}
.financing-card:hover { box-shadow: var(--shadow); }
.financing-card.featured { border-top-color: var(--gold); background: linear-gradient(135deg, var(--gold-pale) 0%, var(--white) 60%); }
.financing-name      { font-size: 0.9rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.financing-highlight { font-size: 1.15rem; font-weight: 800; color: var(--gold); margin-bottom: 12px; line-height: 1.3; }
.financing-desc      { font-size: 0.83rem; color: var(--text-mid); line-height: 1.68; }
.financing-desc strong { color: var(--navy); }

/* ── PROCESS STEPS ── */
.process-steps { display: flex; flex-direction: column; margin-top: 40px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute; left: 23px; top: 52px; bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(184,137,58,0.1));
  z-index: 0;
}
.process-step { display: flex; gap: 22px; padding-bottom: 32px; align-items: flex-start; }
.process-step:last-child { padding-bottom: 0; }
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: 2.5px solid var(--gold);
  color: var(--white);
  font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-content { padding-top: 10px; }
.step-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-desc  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.72; }

/* ── PAGE DISCOVERY CARDS ── */
.page-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px)  { .page-cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .page-cards-grid { grid-template-columns: repeat(6, 1fr); } }
.page-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.page-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--gold); }
.page-card-icon  { font-size: 1.6rem; line-height: 1; }
.page-card-title { font-size: 0.9rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.page-card-desc  { font-size: 0.78rem; color: var(--text-mid); line-height: 1.5; flex: 1; }
.page-card-link  { font-size: 0.75rem; font-weight: 700; color: var(--gold); }

/* ── SOCIAL PROOF STRIP ── */
.proof-strip { background: var(--navy-dark); }
.proof-inner { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.proof-item  { display: flex; align-items: center; gap: 12px; padding: 16px 24px; border-right: 1px solid rgba(255,255,255,0.07); }
.proof-item:last-child { border-right: none; }
@media (max-width: 640px) { .proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); width: 50%; } }
.proof-value { font-size: 1.2rem; font-weight: 800; color: var(--gold-light); line-height: 1; white-space: nowrap; }
.proof-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); line-height: 1.4; max-width: 90px; }

/* ── GALLERY TABS ── */
.gallery-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.gallery-tab {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.82rem; font-weight: 600; color: var(--text-mid);
  padding: 8px 20px; cursor: pointer; transition: all 0.15s;
}
.gallery-tab:hover  { border-color: var(--gold); color: var(--navy); }
.gallery-tab.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.gallery-item         { position: relative; overflow: hidden; border-radius: 6px; }
.gallery-item.hidden  { display: none; }
.gallery-item .gallery-img { border-radius: 0; }
.gallery-item .gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--white); font-size: 0.75rem;
  padding: 28px 12px 10px;
  opacity: 0; transition: opacity 0.25s; pointer-events: none;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ── INCOME STREAM DETAIL ── */
.stream-detail-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
@media (min-width: 768px)  { .stream-detail-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .stream-detail-grid { grid-template-columns: 1fr 1fr 1fr; } }
.stream-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  border-top: 4px solid var(--gold);
  transition: box-shadow 0.2s;
}
.stream-detail-card:hover { box-shadow: var(--shadow); }
.stream-detail-num    { font-size: 2.4rem; font-weight: 800; color: var(--gold-pale); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.stream-detail-title  { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.stream-detail-status { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: 4px; margin-bottom: 16px; }
.status-active   { background: rgba(34,139,34,0.1);  color: #1a6b1a; }
.status-untapped { background: var(--gold-pale);     color: #7a5a1a; }
.status-dormant  { background: rgba(100,100,100,0.1);color: #555; }
.stream-detail-body   { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.stream-detail-upside { font-size: 0.875rem; color: var(--navy); font-weight: 600; background: var(--bg-navy); border-radius: 6px; padding: 12px 16px; border-left: 3px solid var(--gold); line-height: 1.5; }

/* ── RISK CARDS ── */
.risk-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
@media (min-width: 768px) { .risk-grid { grid-template-columns: 1fr 1fr; } }
.risk-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.risk-card-header         { padding: 14px 20px; }
.risk-card-header.low     { background: rgba(34,139,34,0.07);  border-bottom: 1px solid rgba(34,139,34,0.15); }
.risk-card-header.medium  { background: rgba(184,137,58,0.08); border-bottom: 1px solid rgba(184,137,58,0.2); }
.risk-card-header.low    .risk-level { color: #2a7a2a; }
.risk-card-header.medium .risk-level { color: var(--gold); }
.risk-level    { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.risk-name     { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.risk-card-body{ padding: 16px 20px; background: var(--white); font-size: 0.875rem; color: var(--text-mid); line-height: 1.72; }
.risk-card-body strong { color: var(--navy); }

/* ── CALLOUT BLOCK ── */
.callout-block { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: var(--radius-lg); padding: 36px 44px; color: var(--white); margin: 40px 0; }
.callout-block h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -0.02em; }
.callout-block p  { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin: 0; }
.callout-block p strong { color: var(--white); }

/* ── FOOTER PAGE LINKS ── */
.footer-pages-label { font-size: 0.68rem !important; font-weight: 700 !important; letter-spacing: 0.14em !important; text-transform: uppercase; color: rgba(255,255,255,0.35) !important; margin-bottom: 10px !important; display: block; }
.footer-page-links  { display: flex; flex-direction: column; gap: 5px; }
.footer-page-links a { font-size: 0.82rem !important; color: rgba(255,255,255,0.5) !important; transition: color 0.15s; }
.footer-page-links a:hover { color: var(--gold) !important; }

/* ── STAT BAR ── */
.stat-bar { display: flex; flex-wrap: wrap; gap: 1px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--border); margin: 32px 0; }
.stat-bar-item  { background: var(--white); padding: 18px 22px; flex: 1; min-width: 130px; text-align: center; }
.stat-bar-value { font-size: 1.55rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.stat-bar-label { font-size: 0.68rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.35; }
