:root {
  --bg: #0A0A0F;
  --bg-2: #111118;
  --fg: #F0EEE8;
  --fg-2: #9B9A96;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(240, 238, 232, 0.08);
  --card-bg: rgba(255,255,255,0.03);
}

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

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--fg);
}
.nav-logo-accent { color: var(--accent); }
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 50%, rgba(245,166,35,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 80% 100% at 50% 100%, rgba(245,166,35,0.05) 0%, transparent 60%),
    var(--bg);
}
.hero-glow {
  position: absolute;
  top: 20%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-2);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  letter-spacing: 0.03em;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ── GALLERY ── */
.gallery {
  padding: 6rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-header {
  margin-bottom: 3rem;
}
.gallery-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--fg);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.gallery-sub {
  color: var(--fg-2);
  font-size: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
}
.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg);
  cursor: default;
}
.gc-1 { grid-column: 1; grid-row: 1; }
.gc-2 { grid-column: 2; grid-row: 1 / 3; aspect-ratio: unset; min-height: 400px; }
.gc-3 { grid-column: 3; grid-row: 1; }
.gc-4 { grid-column: 4; grid-row: 1 / 3; aspect-ratio: unset; min-height: 400px; }
.gc-inner {
  position: absolute;
  inset: 0;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, rgba(245,166,35,0.08) 0%, rgba(10,10,15,0.95) 70%);
}
.gc-meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.gc-luxury {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.gc-scene {
  font-size: 0.85rem;
  color: var(--fg-2);
  line-height: 1.5;
}

/* ── HOW IT WORKS ── */
.howitworks {
  padding: 7rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.howitworks-inner { max-width: 1200px; margin: 0 auto; }
.hiw-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hiw-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: 0.02em;
  margin-bottom: 4rem;
  max-width: 600px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-bottom: 4rem;
}
.hiw-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hiw-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.6;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.hiw-step-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--fg);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.hiw-step-content p {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.65;
}
.hiw-revenue {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  padding: 2.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.15);
}
.rev-col {
  display: flex;
  gap: 3rem;
  flex: 1;
}
.rev-item {}
.rev-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: 0.03em;
}
.rev-desc {
  font-size: 0.8rem;
  color: var(--fg-2);
  margin-top: 0.25rem;
  line-height: 1.4;
  max-width: 140px;
}
.rev-total {}
.rev-total-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 0.25rem;
}
.rev-total-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.rev-total-value span {
  font-size: 1.5rem;
  color: var(--fg-2);
}

/* ── FOR PARTNERS ── */
.for-partners {
  padding: 7rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.fp-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.fp-badge {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.fp-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--fg);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.fp-body {
  font-size: 0.95rem;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.fp-points { display: flex; flex-direction: column; gap: 0.875rem; }
.fp-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg);
}
.fp-check {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.fp-quote {
  padding: 1.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.fq-text {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.75rem;
}
.fq-attr {
  font-size: 0.75rem;
  color: var(--fg-2);
  letter-spacing: 0.04em;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 900px; margin: 0 auto; }
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.closing-accent { color: var(--accent); }
.closing-sub {
  font-size: 1rem;
  color: var(--fg-2);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--fg);
}
.footer-logo-accent { color: var(--accent); }
.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-2);
  letter-spacing: 0.04em;
}
.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-2);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gc-1, .gc-2, .gc-3, .gc-4 {
    grid-column: unset;
    grid-row: unset;
    aspect-ratio: 3/4;
    min-height: unset;
  }
  .gc-2, .gc-4 { display: none; }
  .hiw-steps { grid-template-columns: 1fr; }
  .fp-inner { grid-template-columns: 1fr; gap: 3rem; }
  .rev-col { flex-direction: column; gap: 1.5rem; }
  .rev-desc { max-width: unset; }
  .hiw-revenue { flex-direction: column; gap: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: clamp(3rem, 15vw, 5rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gc-3 { display: none; }
  .site-nav { padding: 1rem; }
  .nav-tagline { display: none; }
}