:root {
  --midnight: #0d1b2a;
  --midnight-light: #152233;
  --ivory: #faf8f5;
  --ivory-dim: #c8c4bc;
  --gold: #c9a96e;
  --gold-dim: #a8885a;
  --stone: #8a857c;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--midnight);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  background: linear-gradient(to bottom, rgba(13,27,42,0.95) 0%, transparent 100%);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ivory);
  text-transform: uppercase;
}
.nav-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,169,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,169,110,0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--midnight) 0%, var(--midnight-light) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: center;
}
.hero-overline {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  color: var(--stone);
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.stat-div {
  width: 1px;
  height: 36px;
  background: rgba(200,196,188,0.2);
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--midnight-light);
  padding: 120px 48px;
  position: relative;
}
.philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.2), transparent);
}
.philosophy-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.philosophy-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.philosophy-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 64px;
  max-width: 680px;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.philosophy-card {
  padding: 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
}
.phil-icon {
  color: var(--gold);
  margin-bottom: 20px;
}
.philosophy-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 12px;
}
.philosophy-card p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
}

/* ── VERIFICATION ── */
.verification {
  padding: 120px 48px;
  background: var(--midnight);
}
.verification-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}
.verification-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.verification-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 20px;
}
.verification-body {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 48px;
}
.verification-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.v-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}
.v-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.06em;
  padding-top: 2px;
}
.v-content h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 6px;
}
.v-content p {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
}
.verification-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-outer {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-mid {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-inner {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(201,169,110,0.05) 100%);
  border: 1px solid rgba(201,169,110,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.circle-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.3;
  letter-spacing: 0.06em;
}

/* ── DISCRETION ── */
.discretion {
  background: var(--midnight-light);
  padding: 120px 48px;
  position: relative;
}
.discretion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.2), transparent);
}
.discretion-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.discretion-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.discretion-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 64px;
}
.discretion-grid {
  max-width: 760px;
}
.disc-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.disc-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.disc-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.disc-marker { color: var(--gold); padding-top: 2px; }
.disc-item h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 8px;
}
.disc-item p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing {
  background: var(--midnight);
  padding: 160px 48px;
  text-align: center;
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}
.closing-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto 48px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 32px;
}
.closing-body {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ── FOOTER ── */
.footer {
  background: var(--midnight);
  padding: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}
.footer-note {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--gold-dim);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 100px 24px 80px; }
  .philosophy { padding: 80px 24px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 20px; }
  .verification { padding: 80px 24px; }
  .verification-inner { grid-template-columns: 1fr; }
  .verification-visual { display: none; }
  .discretion { padding: 80px 24px; }
  .closing { padding: 100px 24px; }
  .footer { padding: 40px 24px; }
  .stat { padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 48px; }
  .stat { padding: 0 16px; }
  .stat-num { font-size: 18px; }
}