@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400&family=Fraunces:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --ink:      #0C0C0C;
  --ink2:     #1C1C1C;
  --ink3:     #2C2C2C;
  --mid:      #6A6A6A;
  --faint:    #9A9A9A;
  --border:   #E2DDD6;
  --border2:  #CBC5BC;
  --bg:       #F6F3EE;
  --bg2:      #EDEAE3;
  --bg3:      #E4E0D8;
  --white:    #FDFCFA;
  --gold:     #B8860B;
  --gold-bg:  #FDF6E3;
  --gold-bd:  #E8D5A0;
  --red:      #B83A2A;
  --red-bg:   #FDF0EE;
  --red-bd:   #E8B8B0;
  --navy:     #1B3A6B;
  --navy-bg:  #EAF0F8;
  --green:    #166534;
  --green-bg: #F0FDF4;
  --f-head:   'Fraunces', Georgia, serif;
  --f-body:   'DM Sans', sans-serif;
  --f-mono:   'DM Mono', monospace;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.35s;
}
.nav.solid {
  background: rgba(246,243,238,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 60px;
}
.nav-logo {
  font-family: var(--f-head);
  font-size: 24px; font-weight: 600;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 7px;
}
.nav-logo-dot {
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  padding: 9px 22px;
  background: var(--ink); color: var(--white) !important;
  border-radius: 3px;
  font-family: var(--f-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--f-body); font-size: 14px; font-weight: 500;
  text-decoration: none; border: none; border-radius: 3px;
  cursor: pointer; transition: all 0.25s;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border2); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #9A6F09; transform: translateY(-1px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #9A2F22; transform: translateY(-1px); }
.btn-arrow { transition: transform 0.2s; display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 60px; }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }

/* ── TYPOGRAPHY ── */
.label {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.label::before { content: ''; display: block; width: 20px; height: 1px; background: currentColor; }
.label-gold { color: var(--gold); }
.label-red  { color: var(--red); }
.label-mid  { color: var(--mid); }

.display {
  font-family: var(--f-head);
  line-height: 1.05; font-weight: 300;
}
.display-xl { font-size: clamp(48px, 6vw, 80px); }
.display-lg { font-size: clamp(36px, 4.5vw, 58px); }
.display-md { font-size: clamp(28px, 3vw, 42px); }
.display-sm { font-size: clamp(22px, 2.5vw, 32px); }

em { font-style: italic; }
.txt-gold  { color: var(--gold); }
.txt-red   { color: var(--red); }
.txt-navy  { color: var(--navy); }
.txt-mid   { color: var(--mid); }

.body-lg { font-size: 18px; font-weight: 300; line-height: 1.75; color: var(--mid); }
.body    { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--mid); }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 32px;
  transition: all 0.3s;
}
.card:hover { border-color: var(--border2); transform: translateY(-2px); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

/* ── RULE ── */
hr { border: none; border-top: 1px solid var(--border); }
.rule-gold { border-color: var(--gold-bd); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── FOOTER ── */
.footer {
  background: var(--ink2); color: var(--white);
  padding: 60px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  font-family: var(--f-head); font-size: 26px;
  font-weight: 600; color: var(--white);
  text-decoration: none; display: flex;
  align-items: center; gap: 7px; margin-bottom: 12px;
}
.footer-logo-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.footer-tagline { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-col-title {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1160px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,0.25); line-height: 1.7;
  max-width: 680px;
}
.footer-copy {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); white-space: nowrap;
}

/* ── LEGAL PAGES ── */
.legal-hero { padding: 120px 0 60px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.legal-body { padding: 60px 0 100px; }
.legal-content { max-width: 760px; }
.legal-content h2 { font-family: var(--f-head); font-size: 24px; font-weight: 400; color: var(--ink); margin: 40px 0 12px; }
.legal-content h3 { font-family: var(--f-body); font-size: 16px; font-weight: 500; color: var(--ink); margin: 28px 0 8px; }
.legal-content p { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.8; margin-bottom: 6px; }
.legal-content a { color: var(--navy); }
.legal-updated { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.legal-warning {
  background: var(--gold-bg); border: 1px solid var(--gold-bd);
  border-left: 4px solid var(--gold); border-radius: 4px;
  padding: 16px 20px; margin: 24px 0;
}
.legal-warning p { color: var(--ink) !important; font-size: 14px !important; margin: 0 !important; }

/* ── FORM ── */
.waitlist-form { display: flex; gap: 0; max-width: 420px; }
.waitlist-input {
  flex: 1; padding: 14px 18px;
  background: var(--white); border: 1px solid var(--border2);
  border-right: none; color: var(--ink);
  font-family: var(--f-body); font-size: 14px; font-weight: 300;
  outline: none; border-radius: 3px 0 0 3px;
  transition: border-color 0.2s;
}
.waitlist-input:focus { border-color: var(--gold); }
.waitlist-input::placeholder { color: var(--faint); }
.waitlist-submit {
  padding: 14px 24px; background: var(--ink); color: var(--white);
  border: none; font-family: var(--f-mono); font-size: 11px;
  font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border-radius: 0 3px 3px 0; transition: background 0.2s;
}
.waitlist-submit:hover { background: var(--gold); }
.waitlist-note { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-top: 10px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav.solid { padding: 10px 20px; }
  .nav-links { display: none; }
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .footer { padding: 40px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .legal-hero { padding: 100px 0 40px; }
}

/* ── NAV SHARED JS ── */
