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

:root {
  --gold:       #d4a843;
  --gold-light: #f0cc7a;
  --gold-dim:   #8a6820;
  --navy:       #0b0e2a;
  --navy-mid:   #111433;
  --black:      #060810;
  --white:      #f5f0e8;
  --muted:      #8a8fa8;
  --border:     rgba(212,168,67,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  background-image: linear-gradient(135deg, #060810 0%, #0b0e2a 60%, #060810 100%);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025; pointer-events: none; z-index: 0;
}

/* NAV */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 80px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,8,16,0.9);
  backdrop-filter: blur(16px);
}
.nav-logo img { height: 48px; }
.nav-back {
  color: var(--muted); text-decoration: none; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--gold); }
.nav-back::before { content: '←'; }

/* PAGE */
.page { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 60px 5vw 100px; }

/* HERO */
.td-hero { margin-bottom: 64px; }

.td-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.td-eyebrow::before, .td-eyebrow::after {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold-dim);
}

.td-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300; line-height: 1.1; margin-bottom: 20px;
}
.td-title strong { color: var(--gold); font-weight: 600; }
.td-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 640px; }

/* CARDS */
.td-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
  margin-bottom: 40px;
}

.td-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  margin-bottom: 28px;
}

.td-iframe-wrap {
  width: 100%; overflow: hidden; border-radius: 8px;
}

/* DISCLAIMER */
.td-disclaimer {
  background: rgba(212,168,67,0.04);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 12px; padding: 36px;
  margin-bottom: 40px;
}

.td-disclaimer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--gold); margin-bottom: 24px;
}

.td-disclaimer p {
  font-size: 13px; color: var(--muted);
  line-height: 1.8; margin-bottom: 16px;
}

.td-disclaimer ul {
  list-style: none; margin: 0 0 16px 0; padding: 0;
}
.td-disclaimer ul li {
  font-size: 13px; color: var(--muted);
  line-height: 1.8; padding-left: 16px; position: relative; margin-bottom: 4px;
}
.td-disclaimer ul li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold-dim);
}

/* FOOTER */
.td-footer {
  text-align: center; padding: 40px 5vw 20px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted); line-height: 1.8;
}
.td-footer a { color: var(--gold); text-decoration: none; }

@media (max-width: 600px) {
  .td-card { padding: 20px; }
}
