:root {
  --bg: #0C0C0E;
  --bg-elevated: #151518;
  --bg-card: #1A1A1F;
  --fg: #E8E6E3;
  --fg-muted: #8A8A8E;
  --gold: #D4A843;
  --gold-light: #E8C76A;
  --gold-glow: rgba(212, 168, 67, 0.15);
  --accent: #D4A843;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero h1 .gold {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.2);
}

/* Section Label */
.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 40px;
}

/* Services */
.services {
  padding: 100px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: rgba(212, 168, 67, 0.25);
}

.service-card.featured {
  border-color: rgba(212, 168, 67, 0.3);
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.05) 0%, var(--bg-card) 100%);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.price-range {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

/* Numbers */
.numbers {
  padding: 80px 40px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat { text-align: center; flex: 1; }

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* Why */
.why {
  padding: 100px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.why-number {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.why-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.why-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.upsells {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
}

.upsells-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.upsells-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.upsells-list span {
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

/* Closing */
.closing {
  padding: 120px 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--fg);
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
}

.footer-location, .footer-email {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 40px; min-height: 75vh; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .numbers { padding: 50px 24px; }
  .numbers-inner { flex-direction: column; gap: 30px; }
  .stat-divider { width: 60px; height: 1px; }
  .why { padding: 60px 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 30px; }
  .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-tags { gap: 8px; }
  .tag { font-size: 12px; padding: 6px 14px; }
}

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 14, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-book {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.nav-book:hover {
  background: rgba(212, 168, 67, 0.2);
  border-color: rgba(212, 168, 67, 0.5);
}

/* ── Buttons ── */
.btn-gold {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0C0C0E;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.25);
}
.btn-gold:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.35);
}
.btn-ghost {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 28px;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.15);
}

/* Hero CTA row */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
}

/* Closing CTA */
.closing-cta {
  margin-top: 40px;
}

/* ── Gallery ── */
.gallery {
  padding: 100px 40px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gallery-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.gallery-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.gallery-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 52px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.gallery-pair {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.2s;
}
.gallery-card:hover { border-color: rgba(212,168,67,0.2); }
.gallery-state-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(0,0,0,0.5);
  color: var(--fg-muted);
  z-index: 1;
  backdrop-filter: blur(4px);
}
.gallery-state-badge.gold {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.25);
}
.gallery-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-visual-content {
  text-align: center;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.gallery-icon { font-size: 24px; }
.gallery-visual-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
}
.gallery-visual-desc {
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.5;
  text-align: center;
}
.gallery-caption {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  padding: 0 4px;
}
.gallery-cta-wrap {
  text-align: center;
}

/* ── Responsive additions ── */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .gallery { padding: 60px 24px; }
  .gallery-grid { max-width: 100%; }
}
@media (max-width: 480px) {
  .nav-link { display: none; }
  .hero-cta { gap: 10px; }
  .btn-gold, .btn-ghost { padding: 14px 22px; font-size: 14px; }
}