:root {
  --bg: #1a120e;
  --bg-deep: #0e0a08;
  --oxblood: #5c1a1a;
  --tungsten: #c9a06a;
  --gold: #d4af6a;
  --gold-soft: rgba(212, 175, 106, 0.35);
  --cream: #f3e6d4;
  --cream-muted: #c4b09a;
  --nav-h: 64px;
  --max: 720px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: #050403;
  color: var(--cream);
}

body {
  font-family: var(--font-sans);
  line-height: 1.65;
  background: #050403;
  overflow-x: hidden;
}

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

/* Overlay nav — hamburger first (phones are primary) */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
}

.nav__brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
  z-index: 2;
}

.nav__burger {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 5rem 1.75rem 2rem;
  background: rgba(5, 4, 3, 0.96);
  backdrop-filter: blur(14px);
}

.nav__drawer[hidden] { display: none !important; }
.nav__drawer.is-open { display: flex !important; }

.nav__drawer a {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 7vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream-muted);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(212, 175, 106, 0.12);
  text-shadow: none;
}

.nav__drawer a:hover,
.nav__drawer a.is-active {
  color: var(--gold);
}

body.nav-open { overflow: hidden; }

.section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.5rem;
}
.section--film {
  min-height: 100vh;
  min-height: 100dvh;
}

.section--film {
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #000;
}

.film {
  position: absolute;
  inset: 0;
  background: #000;
}

.film__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.film__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 28%),
    linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 22%),
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}





.film__placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: #050403;
  color: var(--cream-muted);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film__placeholder[hidden] { display: none; }

.film__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.film__scroll a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 230, 212, 0.75);
  text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}

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



.section--store {
  min-height: auto;
  padding: 3.5rem 1.5rem;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(212, 175, 106, 0.12) 0%, transparent 55%),
    #120e0a;
}

.section--contact {
  flex-direction: column;
  justify-content: center;
  background: var(--bg-deep);
  padding-bottom: 2rem;
}

.panel {
  max-width: var(--max);
  width: 100%;
}

.panel--center { text-align: center; margin: 0 auto; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

h1, h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

h1 { font-size: clamp(2.4rem, 6vw, 3.4rem); }
h2 { font-size: clamp(2rem, 5vw, 2.8rem); }

.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--cream-muted);
  max-width: 38em;
}

.lede--narrow {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.section--about .lede { margin-bottom: 0; }

.btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bg-deep);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: 0 8px 24px rgba(212, 175, 106, 0.2);
}

.btn:hover {
  transform: translateY(-2px);
  background: #e0c080;
  box-shadow: 0 12px 32px rgba(212, 175, 106, 0.3);
}

.btn--store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(280px, 86vw);
  padding: 1.15rem 2.4rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold) 0%, var(--tungsten) 100%);
  color: var(--bg-deep);
  border: 1px solid rgba(243, 230, 212, 0.25);
  box-shadow:
    0 0 0 1px rgba(212, 175, 106, 0.2),
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 48px var(--gold-soft);
}

.btn--store:hover {
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(212, 175, 106, 0.35),
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 64px var(--gold-soft);
}


.btn--ghost {
  background: transparent;
  color: var(--gold);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(212, 175, 106, 0.1);
}

.footer {
  margin-top: 4rem;
  font-size: 0.75rem;
  color: var(--cream-muted);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(14, 10, 8, 0.97);
    border-bottom: 1px solid rgba(212, 175, 106, 0.12);
    padding: 0.5rem 0;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 106, 0.06);
  }
  .chair { display: none; }
  .crt { width: min(78vw, 360px); top: 42%; }
  .section { padding: 3.5rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
