:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #141414;
  --gold: #c9a84c;
  --gold-light: #e4cc7a;
  --gold-dim: #8a7234;
  --text-primary: #f5f0e8;
  --text-secondary: #a39e93;
  --text-muted: #6b6660;
  --border: #2a2725;
  --border-light: #3a3530;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-crown {
  color: var(--gold);
  font-size: 1.1rem;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}
.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    var(--bg-primary);
}
.hero-inner {
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 2rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* CITIES */
.cities {
  padding: 7rem 2rem;
  background: var(--bg-secondary);
}
.cities-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 3.5rem;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.city-item {
  background: var(--bg-secondary);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.city-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
}
.city-venue {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* SERVICES */
.services {
  padding: 7rem 2rem;
  background: var(--bg-primary);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg-primary);
  padding: 3rem 2.5rem;
}
.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--gold-dim);
  margin-bottom: 1.2rem;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* MODEL */
.model {
  padding: 7rem 2rem;
  background: var(--bg-secondary);
}
.model-inner {
  max-width: 900px;
  margin: 0 auto;
}
.model-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.model-side {
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.model-side-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.model-side-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.model-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0;
}
.bridge-icon {
  color: var(--gold);
  font-size: 0.8rem;
}
.bridge-line {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
}
.bridge-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: 
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(201, 168, 76, 0.05) 0%, transparent 70%),
    var(--bg-primary);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.closing-line {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0 auto 1.5rem;
}
.closing-contact {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* FOOTER */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold-dim);
  letter-spacing: 0.05em;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 2.2rem; }
  .cities, .services, .model, .closing { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2rem 1.5rem; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .model-side { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .nav { padding: 1rem 1.25rem; }
}

@media (max-width: 480px) {
  .cities-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 40px; height: 1px; }
}