:root {
  --gold: #c9a463;
  --gold-soft: #e0c48f;
  --gold-glow: rgba(201, 164, 99, 0.45);
  --off-white: #f4ede0;
  --off-white-soft: rgba(244, 237, 224, 0.8);
}

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

html, body {
  height: 100%;
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  background: #000;
  color: var(--off-white);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Entrance overlay */
.enter-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.8s ease;
}

.enter-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.enter-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.enter-mark {
  font-family: 'Marcellus', serif;
  font-size: 1.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--off-white);
}

.enter-button {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  padding: 14px 44px;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.enter-button:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 18px var(--gold-glow);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 40px;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0) 100%);
}

.logo {
  grid-column: 1;
  justify-self: start;
  font-family: 'Marcellus', serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--off-white);
  text-decoration: none;
  text-transform: uppercase;
}

nav {
  grid-column: 2;
  justify-self: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 48px;
}

nav a {
  position: relative;
  display: inline-block;
  font-family: 'Marcellus', serif;
  color: var(--off-white-soft);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding-bottom: 8px;
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.85;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

nav a:hover {
  color: var(--gold-soft);
  text-shadow: 0 0 10px var(--gold-glow);
}

nav a:hover::after {
  width: 100%;
}

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

nav a.active::after {
  width: 100%;
}

.nav-toggle {
  grid-column: 3;
  justify-self: end;
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--off-white);
}

/* Main content area grows to push footer down */
main {
  flex: 1;
  position: relative;
}

/* Home page video */
.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Page content (About / Contact) */
.page-content {
  padding: 168px 32px 100px;
  max-width: 760px;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
}

.eyebrow {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.page-content h1 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: var(--off-white);
  margin-bottom: 32px;
}

.page-content .lead {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--off-white-soft);
  max-width: 620px;
  margin-bottom: 64px;
}

.page-section {
  max-width: 640px;
  margin-bottom: 60px;
}

.page-section:last-child {
  margin-bottom: 0;
}

.page-section h2 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 20px;
}

.page-section p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--off-white-soft);
  margin-bottom: 18px;
}

.page-section p:last-child {
  margin-bottom: 0;
}

.contact-detail {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--gold);
}

/* Footer */
footer {
  background: #0b0b0b;
  text-align: center;
  padding: 20px;
  font-family: 'Marcellus', serif;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: rgba(244, 237, 224, 0.5);
}

/* Mobile nav */
@media (max-width: 700px) {
  header {
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: 68px;
    right: 0;
    background: rgba(0, 0, 0, 0.92);
    flex-direction: column;
    width: 220px;
    padding: 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  nav ul.open {
    transform: translateX(0);
  }
}
