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

:root {
  --black:   #0A0A08;
  --black-2: #111110;
  --black-3: #1A1A18;
  --black-4: #242422;
  --gold:    #C9A84C;
  --gold-lt: #E2C97E;
  --gold-dk: #8B6E2A;
  --cream:   #F5F0E8;
  --cream-2: #D8D0C0;
  --muted:   #888880;
  --border:  rgba(201,168,76,0.18);
  --border-2:rgba(201,168,76,0.32);
  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', sans-serif;
  --max-w:   1200px;
  --section-pad: 120px 5%;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream-2);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ─── NOISE OVERLAY ─────────────────────────────────── */
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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ─── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.1rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

p { max-width: 60ch; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-lt); }

strong { font-weight: 500; color: var(--cream); }

/* ─── GOLD RULE ─────────────────────────────────────── */
.rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}
.rule-left { margin: 0 0 2rem; }

/* ─── GOLD LABEL ────────────────────────────────────── */
.label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

/* ─── NAV ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}

nav.scrolled {
  background: rgba(10,10,8,0.95);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream) !important;
  letter-spacing: 0.04em;
}

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

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

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-2);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 12px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border-2);
  padding: 10px 24px;
  color: var(--gold) !important;
  transition: background 0.2s, border-color 0.2s !important;
}

.nav-cta:hover {
  background: rgba(201,168,76,0.08) !important;
  border-color: var(--gold) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-2);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  color: var(--gold-lt);
}

/* ─── SECTIONS ──────────────────────────────────────── */
section { position: relative; padding: var(--section-pad); }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ─── DIVIDER ───────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── CARDS ─────────────────────────────────────────── */
.card {
  background: var(--black-2);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: border-color 0.3s;
}

.card:hover { border-color: var(--border-2); }

/* ─── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 64px 5% 40px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  display: block;
}

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

.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  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 a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

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

@keyframes drawLine {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 72px 6%; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
