/* ============================================
   ROOT VARIABLES
   ============================================ */

:root {
  --charcoal: #000000;
  --muted: #6E6159;
  --gold: #BFA16A;
  --max-width: 1200px;
}

/* ============================================
   RESET
   ============================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background: transparent;
  color: var(--charcoal);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   FULL-PAGE BACKGROUND VIDEO
   ============================================ */

.site-bg-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -3;
  pointer-events: none;
}

.site-bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: -2;
}

/* ============================================
   NAVIGATION (BASE)
   ============================================ */

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo img {
  height: 50px;
}

/* ============================================
   NAV LINKS (DESKTOP DEFAULT)
   ============================================ */

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

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

/* ============================================
   HAMBURGER BUTTON (BIG + BLACK)
   ============================================ */

.nav-toggle {
  display: none;
  width: 42px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #000;
  border-radius: 3px;
  transition: .25s ease;
}

/* line positions */
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

/* active → X */
.nav-toggle.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: rotate(-45deg);
}

/* ============================================
   MOBILE NAV
   ============================================ */

@media (max-width: 719px) {

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 14px;
    padding: 22px 0;

    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    border-radius: 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;

    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: .25s ease;
  }

  .nav-links.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-inner {
  max-width: 820px;
  padding: 22px;
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 14px rgba(0,0,0,.55);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.9rem);
  margin-bottom: 30px;
}

/* ============================================
   HERO BUTTONS
   ============================================ */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 16px 34px;
  border-radius: 14px;
  font-weight: 600;
  transition: .2s ease;
}

.cta-button.primary {
  background: #000;
  color: #fff;
}

.cta-button.primary:hover {
  background: var(--gold);
  color: #000;
}

.cta-button.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.cta-button.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
