:root {
  --navy: #0D1B2A;
  --amber: #E9A84B;
  --cream: #F8F6F1;
  --dark-text: #1A2332;
  --muted: #6B7280;
  --light-border: rgba(255,255,255,0.08);
  --card-bg: #112033;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--light-border);
  position: sticky;
  top: 0;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.5px;
}

.nav-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  font-weight: 600;
}

/* HERO */
.hero {
  padding: 96px 48px 80px;
  border-bottom: 1px solid var(--light-border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-lede {
  font-size: 18px;
  color: rgba(248, 246, 241, 0.65);
  max-width: 520px;
  line-height: 1.7;
}

.hero-gloss-card {
  background: var(--card-bg);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gloss-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-border);
}
.gloss-stat:last-child { border-bottom: none; padding-bottom: 0; }

.gloss-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.gloss-label {
  font-size: 12px;
  color: rgba(248, 246, 241, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* WHY */
.why {
  padding: 96px 48px;
  border-bottom: 1px solid var(--light-border);
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 56px;
  letter-spacing: -0.5px;
  max-width: 680px;
}

.why-header { margin-bottom: 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--light-border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--light-border);
}

.why-card {
  background: var(--navy);
  padding: 40px;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(233, 168, 75, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: rgba(248, 246, 241, 0.5);
  line-height: 1.65;
}

/* SERVICES */
.services {
  padding: 96px 48px;
  border-bottom: 1px solid var(--light-border);
  background: linear-gradient(180deg, var(--navy) 0%, #0a1626 100%);
}

.services .section-headline { max-width: 480px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--light-border);
}

.service-card {
  background: var(--card-bg);
  padding: 40px 36px;
}

.service-card--accent {
  background: #142030;
  border: 1px solid rgba(233, 168, 75, 0.2);
}

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-card > p {
  font-size: 15px;
  color: rgba(248, 246, 241, 0.5);
  margin-bottom: 24px;
  line-height: 1.65;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-size: 14px;
  color: rgba(248, 246, 241, 0.6);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

/* PROCESS */
.process {
  padding: 96px 48px;
  border-bottom: 1px solid var(--light-border);
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--light-border);
  align-items: start;
}
.step:last-child { border-bottom: none; }

.step-marker {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  opacity: 0.4;
  padding-top: 4px;
}

.step-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 15px;
  color: rgba(248, 246, 241, 0.5);
  line-height: 1.65;
  max-width: 600px;
}

/* CLOSING */
.closing {
  padding: 96px 48px 80px;
  background: linear-gradient(135deg, #0D1B2A 0%, #0F2035 100%);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.closing-body {
  font-size: 17px;
  color: rgba(248, 246, 241, 0.55);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 60px;
}

.closing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--light-border);
}

.closing-stat {
  background: var(--card-bg);
  padding: 40px 36px;
}

.closing-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 10px;
}

.closing-label {
  font-size: 13px;
  color: rgba(248, 246, 241, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FOOTER */
.footer {
  padding: 48px 48px;
  border-top: 1px solid var(--light-border);
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(248, 246, 241, 0.35);
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(248, 246, 241, 0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .closing-stats { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .hero, .why, .services, .process, .closing { padding: 64px 24px; }
  .hero-headline { font-size: 32px; }
  .gloss-stat { padding-bottom: 16px; }
  .gloss-num { font-size: 32px; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
  .step-marker { font-size: 28px; }
  .footer { padding: 40px 24px; }
}