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

:root {
  --gold: #C9963A;
  --gold-light: #E8C97A;
  --gold-pale: #f5ecd7;
  --deep: #0D2535;
  --teal: #1A4A5E;
  --teal-mid: #235e76;
  --cream: #FAF6EF;
  --cream-dark: #F2EBE0;
  --accent: #C0392B;
  --text: #2a2a2a;
  --text-muted: #667;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  background: var(--deep);
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  border-bottom: 1px solid rgba(201,150,58,0.2);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-brand .brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.5px;
  line-height: 1;
}

.nav-brand .brand-sub {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,246,239,0.65);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* ── TOP ACCENT BAR ── */
.accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.bottom-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

/* ── HERO TAG ── */
.hero-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 28px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  background: transparent;
  color: rgba(250,246,239,0.7);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid rgba(250,246,239,0.2);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

/* ── SECTION ── */
.section { padding: 80px 60px; }

.section-label {
  font-size: 9px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 48px;
  line-height: 1.15;
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(201,150,58,0.15);
}

footer .footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: rgba(250,246,239,0.5);
}

footer .footer-area {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-legal-link {
  font-size: 10px;
  color: rgba(250,246,239,0.3);
  text-decoration: none;
  letter-spacing: 1px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.footer-legal-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ── PAGE FADE IN ── */
body { animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
