/* ===== FONTS ===== */
/* ===== TOKENS ===== */
:root {
  --midnight: #080b14;
  --midnight-soft: #0d1120;
  --midnight-panel: #0f1525;
  --ivory: #f4f0e8;
  --ivory-muted: #b8b0a0;
  --gold: #c9a96e;
  --gold-light: #e8c87b;
  --gold-dim: rgba(201,169,110,0.15);
  --gold-glow: rgba(201,169,110,0.08);
  --amber: #e8b84b;
  --blush: #f5e6d3;
  --blush-dark: #1e1a14;
  --border: rgba(201,169,110,0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--midnight);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--midnight); }
::-webkit-scrollbar-thumb { background: var(--gold); opacity: 0.4; border-radius: 3px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(8,11,20,0.95) 0%, transparent 100%);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--ivory-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.12) 0%, rgba(232,200,123,0.04) 40%, transparent 70%);
  pointer-events: none;
}
.hero-chandelier {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-divider-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-divider-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.hero-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.7;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.hero-left {}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 32px;
}
.hero-headline-accent {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--ivory-muted);
  max-width: 440px;
  line-height: 1.7;
}

/* Dashboard Widget */
.hero-dashboard {
  background: rgba(15,21,37,0.85);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 40px rgba(201,169,110,0.05);
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dash-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.dash-live {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
}
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.dash-metric {
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
}
.dash-metric-val {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.dash-metric-lab {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  opacity: 0.7;
}
.dash-map-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 12px;
}
.dash-map {
  background: #0a1525;
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  padding: 8px;
}
.dash-map-svg { width: 100%; height: auto; }
.dash-footer {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dash-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}
.dash-tag-amber { background: rgba(232,184,75,0.15); color: var(--amber); }
.dash-tag-gold { background: rgba(201,169,110,0.15); color: var(--gold); }
.dash-tag-green { background: rgba(74,222,128,0.15); color: #4ade80; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.hero-scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-soft) 50%, var(--midnight) 100%);
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 40px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--ivory);
  margin-bottom: 40px;
  quotes: none;
  border: none;
}
.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}
.manifesto-body p {
  font-size: 16px;
  font-weight: 300;
  color: var(--ivory-muted);
  line-height: 1.7;
}
.manifesto-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--gold-glow);
}
.manifesto-stat { text-align: center; }
.manifesto-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.manifesto-stat-desc {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--ivory-muted);
  max-width: 160px;
  line-height: 1.4;
}
.manifesto-stat-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ===== LOCATIONS ===== */
.locations {
  background: var(--midnight);
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.locations-header {
  max-width: 600px;
  margin: 0 auto 80px;
  text-align: center;
}
.locations-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 20px;
}
.locations-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto 40px;
}
.location-card {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
}
.location-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.location-gradient-overlay {
  position: absolute;
  inset: 0;
}
/* Card 1: Altamonte Springs — Deep teal */
.location-card-1 .location-gradient-overlay {
  background: linear-gradient(160deg, #0d2e2e 0%, #1a4a3a 40%, #2d6b4f 70%, #1a3d2e 100%);
}
/* Card 2: Fort Lauderdale — Ocean blue */
.location-card-2 .location-gradient-overlay {
  background: linear-gradient(160deg, #0a1628 0%, #0f2a4a 40%, #1a3f6e 70%, #0d2040 100%);
}
/* Card 3: Lake Mary — Warm amber */
.location-card-3 .location-gradient-overlay {
  background: linear-gradient(160deg, #1a1200 0%, #2e1f00 40%, #4a3010 70%, #2a1a00 100%);
}
/* Card 4: Rock Hill — Deep rose/mauve */
.location-card-4 .location-gradient-overlay {
  background: linear-gradient(160deg, #1a0d14 0%, #2e1520 40%, #4a2030 70%, #2a1018 100%);
}
/* Card 5: Clearwater — Tropical teal */
.location-card-5 .location-gradient-overlay {
  background: linear-gradient(160deg, #001a1a 0%, #002e2e 40%, #004a4a 70%, #002a2a 100%);
}
.location-content { position: relative; z-index: 1; }
.location-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 6px;
}
.location-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 4px;
}
.location-address {
  font-size: 12px;
  font-weight: 400;
  color: var(--ivory-muted);
  opacity: 0.7;
}
.locations-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ivory-muted);
  opacity: 0.6;
}
.locations-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

/* ===== CAPABILITIES ===== */
.capabilities {
  background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-soft) 100%);
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.cap-inner { max-width: 1200px; margin: 0 auto; }
.cap-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 20px;
  text-align: center;
}
.cap-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  text-align: center;
  margin-bottom: 80px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cap-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.3s, background 0.3s;
}
.cap-card:hover {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.04);
}
.cap-icon {
  margin-bottom: 24px;
  opacity: 0.9;
}
.cap-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 12px;
}
.cap-card-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--ivory-muted);
  line-height: 1.7;
}

/* ===== DASHBOARD PREVIEW ===== */
.dashboard-preview {
  background: var(--midnight-soft);
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.dp-inner { max-width: 1200px; margin: 0 auto; }
.dp-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 20px;
  text-align: center;
}
.dp-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  text-align: center;
  margin-bottom: 80px;
}
.dp-mockup {
  background: #080c18;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 16px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dp-panel-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dp-metric-block {
  background: rgba(15,21,37,0.8);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 10px;
  padding: 20px;
}
.dp-metric-val {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.dp-metric-label {
  display: block;
  font-size: 11px;
  color: var(--ivory-muted);
  opacity: 0.6;
  margin-bottom: 12px;
}
.dp-metric-bar {
  height: 4px;
  background: rgba(201,169,110,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.dp-metric-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
}
.dp-metric-fill-green { background: #4ade80; }
.dp-metric-fill-amber { background: var(--amber); }
.dp-metric-fill-gold { background: var(--gold); }
.dp-panel-kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.dp-kanban-head {
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 4px;
  padding: 0 8px;
}
.dp-kanban-col { display: flex; flex-direction: column; gap: 8px; }
.dp-col-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dp-col-new { background: rgba(232,184,75,0.1); color: var(--amber); }
.dp-col-qualified { background: rgba(201,169,110,0.1); color: var(--gold); }
.dp-col-tour { background: rgba(201,169,110,0.08); color: var(--ivory-muted); }
.dp-col-booked { background: rgba(74,222,128,0.1); color: #4ade80; }
.dp-col-count {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 9px;
}
.dp-card {
  height: 52px;
  border-radius: 8px;
  background: rgba(15,21,37,0.8);
  border: 1px solid rgba(201,169,110,0.08);
}
.dp-card-1 { border-top: 2px solid var(--amber); }
.dp-card-2 { border-top: 2px solid var(--amber); opacity: 0.7; }
.dp-card-3 { border-top: 2px solid var(--gold); }
.dp-card-4 { border-top: 2px solid var(--gold); opacity: 0.75; }
.dp-card-5 { border-top: 2px solid var(--gold); opacity: 0.6; }
.dp-card-6 { border-top: 2px solid rgba(201,169,110,0.5); }
.dp-card-7 { border-top: 2px solid rgba(201,169,110,0.5); opacity: 0.7; }
.dp-card-8 { border-top: 2px solid #4ade80; }
.dp-card-9 { border-top: 2px solid #4ade80; opacity: 0.7; }
.dp-panel-venues {
  border-top: 1px solid rgba(201,169,110,0.1);
  padding-top: 16px;
}
.dp-venue-head {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 16px;
}
.dp-venue-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.dp-venue-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--ivory);
  min-width: 100px;
  opacity: 0.8;
}
.dp-venue-bar {
  flex: 1;
  height: 6px;
  background: rgba(201,169,110,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.dp-venue-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 3px;
}
.dp-venue-pct {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  min-width: 36px;
  text-align: right;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--midnight);
  padding: 160px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-ornament {
  margin: 0 auto 48px;
  opacity: 0.7;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--ivory-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.closing-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
}
.closing-divider {
  color: var(--ivory-muted);
  opacity: 0.3;
}
.closing-tag {
  font-size: 12px;
  font-weight: 400;
  color: var(--ivory-muted);
  letter-spacing: 0.1em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--midnight-soft);
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
}
.footer-sep {
  color: var(--ivory-muted);
  opacity: 0.3;
}
.footer-desc {
  font-size: 13px;
  color: var(--ivory-muted);
  opacity: 0.5;
}
.footer-right {}
.footer-note {
  font-size: 11px;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: 0.1em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-dashboard { max-width: 480px; margin: 0 auto; width: 100%; }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .dp-panel-top { grid-template-columns: repeat(2, 1fr); }
  .dp-panel-kanban { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 100px 24px 60px; }
  .manifesto, .capabilities, .dashboard-preview, .closing { padding: 80px 24px; }
  .locations { padding: 80px 24px; }
  .footer { padding: 24px; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: 1fr; }
  .manifesto-stats { flex-direction: column; gap: 32px; }
  .manifesto-stat-sep { width: 60px; height: 1px; }
  .dp-panel-top { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .dp-panel-top { grid-template-columns: 1fr; }
  .dp-panel-kanban { grid-template-columns: 1fr 1fr; }
}