/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0D1B2A;
  --navy-mid: #152336;
  --gold:      #F5A623;
  --gold-dim:  #C4831C;
  --crimson:   #C41E3A;
  --cream:     #FFF8F0;
  --cream-dim: #F0EBE3;
  --text-light: #A8B4C4;
  --text-muted: #5A6A7A;
  --font-display: 'Teko', sans-serif;
  --font-body:    'Figtree', sans-serif;
  --max-w: 1200px;
  --gap: clamp(2rem, 5vw, 4rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--navy); }

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--text-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

/* Cityscape silhouette */
.hero-cityscape {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 0 5%;
}

.city-bar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}
.city-1 { width: 35px; height: 65%; }
.city-2 { width: 55px; height: 88%; }
.city-3 { width: 25px; height: 50%; }
.city-4 { width: 70px; height: 100%; }
.city-5 { width: 40px; height: 72%; }

.city-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(196, 30, 58, 0.18) 0%,
    rgba(245, 166, 35, 0.12) 40%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.96) 0%,
    rgba(13, 27, 42, 0.7) 50%,
    rgba(13, 27, 42, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gap) clamp(4rem, 8vh, 7rem) var(--gap);
  padding-top: 120px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-headline br:nth-child(2) { display: none; }

.hero-lede {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ===== SECTION COMMONS ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* ===== CITIES ===== */
.cities { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--navy); }
.cities-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gap); }
.cities .section-label { color: var(--gold); }
.cities .section-heading { color: var(--cream); }

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.city-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.city-card:hover {
  background: rgba(245, 166, 35, 0.08);
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-3px);
}
.city-flag { font-size: 1.5rem; line-height: 1; }
.city-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.city-country { font-size: 0.75rem; color: var(--text-muted); }

/* ===== FEATURES ===== */
.features { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--cream); }
.features-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gap); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-top: 3rem;
}

.feature-card {
  background: var(--cream-dim);
  padding: 2.5rem;
  border: 1px solid rgba(13,27,42,0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.2s ease;
}
.feature-card:hover {
  background: #fff;
  border-color: rgba(245,166,35,0.2);
  box-shadow: 0 8px 32px rgba(13,27,42,0.08);
}

.feature-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 6px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
}
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ===== VENUE TYPES ===== */
.venue-types { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--navy-mid); }
.venue-types-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.venue-types .section-label { color: var(--gold); }
.venue-types .section-heading { color: var(--cream); font-size: clamp(2rem, 5vw, 3.5rem); }
.venue-desc { color: var(--text-light); margin-top: 1.5rem; font-size: 0.95rem; line-height: 1.75; }
.venue-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }
.venue-badge {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
}

/* Pricing card */
.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  padding: 2.5rem;
}
.pricing-header { margin-bottom: 2rem; }
.pricing-tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-top: 0.75rem;
}
.price-currency { font-family: var(--font-display); font-size: 1.8rem; color: var(--cream); margin-top: 6px; }
.price-amount { font-family: var(--font-display); font-size: 4rem; font-weight: 700; color: var(--cream); line-height: 1; }
.pricing-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; font-style: italic; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--cream);
}
.pricing-features svg { flex-shrink: 0; }

/* ===== CLOSING ===== */
.closing { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--navy); }
.closing-inner { max-width: 760px; margin: 0 auto; padding: 0 var(--gap); text-align: center; }
.closing-rule { width: 48px; height: 3px; background: var(--gold); margin: 0 auto 2.5rem; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.closing-sub { font-size: 1rem; color: var(--text-light); line-height: 1.75; }
.closing-cta { margin-top: 3rem; }
.cta-line {
  display: inline-block;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
}

/* ===== FOOTER ===== */
.footer { padding: 3rem 0; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gap); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--cream); letter-spacing: 0.02em; }
.footer-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; }
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-headline br:nth-child(2) { display: block; }
  .hero-meta { flex-wrap: wrap; gap: 1.5rem; }
  .hero-stat-divider { display: none; }
  .venue-types-inner { grid-template-columns: 1fr; gap: 3rem; }
  .city-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 3rem; }
  .stat-number { font-size: 1.8rem; }
  .feature-card { padding: 1.75rem; }
}