/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: #8C6F2F;
  --ink: #0D0D0D;
  --ink-mid: #1A1A1A;
  --ink-soft: #2C2C2C;
  --cream: #F5F0E8;
  --cream-mid: #EDE6D6;
  --white: #FEFEFE;
  --muted: #888070;
  --border: rgba(201,168,76,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(13,13,13,0.95), transparent);
  backdrop-filter: blur(2px);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(13,13,13,0.97); }
nav.solid     { background: rgba(13,13,13,0.97); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--gold); text-decoration: none;
}
.nav-logo span { color: var(--cream); }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--gold-light); }

.nav-cta {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 10px 28px;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-left:10px;
  text-decoration: none; transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.nav-cta.active-cta { background: var(--gold); color: var(--ink); font-weight: 600; }

/* ── SHARED BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--ink);
  padding: 16px 40px; font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  border: none; transition: all 0.25s; display: inline-block; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  color: var(--cream); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px; opacity: 0.7;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 1; }
.btn-ghost::after { content: '→'; font-size: 1rem; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-dark {
  background: var(--ink); color: var(--gold); padding: 18px 50px;
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  transition: all 0.25s; display: inline-block; border: 1px solid var(--ink);
}
.btn-dark:hover { background: transparent; color: var(--ink); border-color: var(--ink); }

/* ── SECTION HELPERS ── */
section { padding: 120px 60px; }

.section-tag {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-tag.dark    { color: var(--gold-dim); }
.section-tag.dark::before { background: var(--gold-dim); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 300; line-height: 1.15;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-title.ink  { color: var(--ink); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 60px 100px;
  background: linear-gradient(135deg, var(--ink) 60%, rgba(201,168,76,0.05));
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::after {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif; font-size: 18rem; font-weight: 700;
  color: rgba(201,168,76,0.03); letter-spacing: -0.04em; line-height: 1;
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 6rem); font-weight: 300; line-height: 1.05;
  color: var(--white);
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  margin-top: 28px; max-width: 560px;
  font-size: 1.05rem; line-height: 1.8; color: var(--muted); font-weight: 300;
}

/* ── TICKER ── */
.ticker {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 16px 0; overflow: hidden; background: rgba(201,168,76,0.03);
}
.ticker-inner {
  display: flex; gap: 60px; white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 18px;
}
.ticker-dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

/* ── FOOTER ── */
footer { background: #050505; padding: 60px 60px 40px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(201,168,76,0.1);
}
.footer-brand .nav-logo { font-size: 1.8rem; display: inline-block; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.88rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 32px; display: flex; justify-content: space-between;
  font-size: 0.78rem; color: #444;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 20px 30px; }
  section { padding: 80px 30px; }
  .page-hero { padding: 120px 30px 70px; }
  footer { padding: 40px 30px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
}
