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

:root {
  --bg:       #080808;
  --bg2:      #0f0f0f;
  --bg3:      #141414;
  --bg4:      #1a1a1a;
  --gold:     #c8a96d;
  --gold2:    #e2cfab;
  --gold-dim: rgba(200,169,109,0.10);
  --gold-mid: rgba(200,169,109,0.25);
  --cream:    #f4f0ea;
  --muted:    #7a7672;
  --muted2:   #5a5652;
  --border:   rgba(200,169,109,0.13);
  --border2:  rgba(200,169,109,0.22);
  --red:      #c0392b;
  --green:    #27ae60;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--sans); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--muted2); border-radius: 2px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5rem;
  transition: background 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.nav-logo span { color: var(--cream); font-weight: 300; }
.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  padding: 0.55rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold); background: transparent;
  font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--cream); transition: all 0.3s; }

/* ── BUTTONS ── */
.btn { display: inline-block; transition: all 0.3s var(--ease); }
.btn-gold {
  padding: 0.9rem 2.8rem;
  background: var(--gold); color: var(--bg);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-outline {
  padding: 0.9rem 2.8rem;
  background: transparent; color: var(--cream);
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(244,240,234,0.25);
}
.btn-outline:hover { border-color: var(--cream); }
.btn-ghost {
  padding: 0.7rem 1.8rem;
  background: transparent; color: var(--gold);
  font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-dim); }

/* ── SECTION SHARED ── */
.section { padding: 8rem 5rem; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.15; color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.85; margin-top: 1.2rem; max-width: 600px; }

/* ── DIVIDER ── */
.divider {
  width: 40px; height: 1px;
  background: var(--gold); opacity: 0.5;
  margin: 1.5rem 0;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── GRID UTILS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 5rem;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-family: var(--serif); font-size: 1.2rem; color: var(--gold); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.78rem; color: var(--muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: var(--muted2); }

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1000;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav { padding: 1rem 2rem; }
  .section { padding: 5rem 2rem; }
  .footer { padding: 2.5rem 2rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(8,8,8,0.97);
    padding: 2rem; gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
}
