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

:root {
  --bg:     #110d08;
  --bg2:    #18110a;
  --bg3:    #1e1510;
  --border: rgba(160,120,70,0.15);
  --gold:   #b8864e;
  --gold2:  rgba(184,134,78,0.5);
  --cream:  #ede5d5;
  --muted:  #7a6a55;
  --text:   #cfc0a8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* GRAIN OVERLAY — applied to entire site */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 3.5rem;
  transition: background 0.5s, padding 0.4s;
}
nav.scrolled {
  background: rgba(17,13,8,0.97);
  padding: 1rem 3.5rem;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text); text-decoration: none; opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); border: 1px solid rgba(237,229,213,0.35);
  padding: 0.55rem 1.5rem; text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.nav-cta:hover { border-color: var(--gold); color: var(--gold); }

/* HAMBURGER */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--cream); transition: 0.3s; }
.nav-mobile { display: none; }

/* PAGE HERO */
.page-hero {
  position: relative; height: 55vh; min-height: 420px;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 3.5rem 4rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.45);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,13,8,1) 0%, rgba(17,13,8,0.3) 60%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.page-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.page-hero-eyebrow::before { content:''; width:30px; height:1px; background:var(--gold); display:block; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 0.95; color: var(--cream);
  letter-spacing: 0.02em;
}
.page-hero h1 em { font-style: italic; color: var(--gold); display: block; }

/* VIDEO HERO */
.video-hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 3.5rem 5rem;
  overflow: hidden;
}
.video-hero-fallback {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.video-hero-wrap {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
}
.video-hero-wrap iframe {
  position: absolute; top: 50%; left: 50%;
  width: 177.78vh; height: 100vh;
  min-width: 100vw; min-height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.video-hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(17,13,8,0.95) 0%, rgba(17,13,8,0.4) 50%, rgba(17,13,8,0.2) 100%);
}
.video-hero-content { position: relative; z-index: 3; max-width: 760px; }

/* SHARED SECTION STYLES */
section { padding: 6rem 3.5rem; }
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-eyebrow::before { content:''; width:28px; height:1px; background:var(--gold); display:block; flex-shrink:0; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 300; line-height: 1.05; color: var(--cream); margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
}
.section-title em { font-style: italic; color: var(--gold); }
.inner { max-width: 1320px; margin: 0 auto; }

/* BUTTONS */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 1rem 2.4rem; text-decoration: none;
  transition: background 0.2s, transform 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--cream); transform: translateY(-2px); }
.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text); border: 1px solid var(--border);
  padding: 1rem 2.4rem; text-decoration: none;
  transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* COMING SOON BADGE */
.coming-soon-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 0.4rem 1rem; margin-bottom: 1.5rem;
}

/* FOOTER */
footer {
  background: rgba(8,6,3,0.99);
  padding: 3rem 3.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.8rem;
}
.footer-tagline {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem; color: var(--muted); line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; }
.footer-col a.footer-contact-link {
  display: block; font-size: 0.85rem; color: var(--muted);
  text-decoration: none; transition: color 0.2s; line-height: 2;
}
.footer-col a.footer-contact-link:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.18em;
  color: var(--muted); text-transform: uppercase;
}

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

/* MOBILE */
@media (max-width: 900px) {
  nav, nav.scrolled { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17,13,8,0.98); z-index: 99;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; color: var(--cream);
    text-decoration: none; letter-spacing: 0.1em;
    transition: color 0.2s;
  }
  .nav-mobile a:hover { color: var(--gold); }
  .nav-mobile-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    font-size: 1.5rem; color: var(--muted); cursor: pointer; background: none; border: none;
  }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 0 1.5rem 3rem; }
  .video-hero { padding: 0 1.5rem 4rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
