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

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

:root {
  --ink: #0a0a0f;
  --paper: #f5f2eb;
  --gold: #b8952a;
  --gold-light: #d4aa3a;
  --muted: #6b6457;
  --border: rgba(10,10,15,0.1);
  --light-bg: #ede9df;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ─────────────────────────────────────────────────────────────────── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(245,242,235,0.94);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-cta {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper) !important;
  background: var(--ink);
  padding: 0.5rem 1.3rem;
  text-decoration: none;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold) !important; color: var(--paper) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { width: 22px; height: 1.5px; background: var(--ink); display: block; transition: all 0.3s; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 0.9rem 2.2rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--gold); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 0.9rem 2.2rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.25s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 0.85rem 2rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* ── SECTION LABEL ───────────────────────────────────────────────────────── */
.section-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-label::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }

/* ── TICKER ──────────────────────────────────────────────────────────────── */
.ticker {
  background: var(--gold);
  padding: 0.55rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner { display: inline-flex; animation: ticker 30s linear infinite; }

.ticker-item {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 2.5rem;
}

.ticker-item::before { content: '◆'; margin-right: 2.5rem; opacity: 0.45; }

@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,242,235,0.1);
}

.footer-brand .logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand .logo span { color: var(--gold); }

.footer-brand p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245,242,235,0.5);
  line-height: 1.7;
  font-style: italic;
  max-width: 26ch;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245,242,235,0.55);
  text-decoration: none;
  font-family: var(--serif);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(245,242,235,0.3);
  text-transform: uppercase;
}

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); padding: 2rem; border-bottom: 1px solid var(--border); gap: 1.5rem; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
