:root {
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --text: #f4ede4;
  --text-muted: #9a9183;
  --accent: #c9a86a;
  --accent-soft: rgba(201, 168, 106, 0.18);
  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 106, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201, 168, 106, 0.04), transparent 60%);
  background-attachment: fixed;
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
}

main {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ───── Hero ───── */
.hero {
  text-align: center;
  padding: clamp(3rem, 9vw, 6.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  animation: rise 1.2s cubic-bezier(.2, .8, .2, 1) both;
}

.logo {
  max-width: min(260px, 56vw);
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 4px 30px rgba(201, 168, 106, 0.18));
}

.names {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  letter-spacing: 0.04em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45em;
  line-height: 1.05;
}

.names .amp {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95em;
  transform: translateY(0.02em);
}

.date {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  letter-spacing: 0.5em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding-left: 0.5em; /* visually balance trailing letter-spacing */
}

/* ───── Video ───── */
.video-section {
  padding: clamp(1rem, 3vw, 2.5rem) 0 clamp(2rem, 5vw, 4rem);
  animation: rise 1.4s 0.15s cubic-bezier(.2, .8, .2, 1) both;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.7),
    0 0 0 1px var(--accent-soft);
}

.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.fullscreen-cta {
  text-align: center;
  margin: clamp(1.25rem, 2.8vw, 1.75rem) 0 0;
}

.fullscreen-link {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  cursor: pointer;
  padding: 0.4em 0.2em;
  transition: color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.fullscreen-link:hover,
.fullscreen-link:focus-visible,
.fullscreen-link:active,
.fullscreen-link:visited {
  color: var(--accent);
  text-decoration: underline;
  outline: none;
}

.fullscreen-link.is-loading {
  opacity: 0.45;
  cursor: progress;
  pointer-events: none;
}

/* ───── Gallery ───── */
.gallery-section {
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  animation: rise 1.4s 0.3s cubic-bezier(.2, .8, .2, 1) both;
}

.gallery-placeholder {
  text-align: center;
  padding: clamp(3.5rem, 11vw, 7rem) clamp(1.25rem, 5vw, 3rem);
  border: 1px solid var(--accent-soft);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(201, 168, 106, 0.035));
  position: relative;
}

.gallery-placeholder::before,
.gallery-placeholder::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-50%);
}
.gallery-placeholder::before { top: 0; }
.gallery-placeholder::after  { bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-left: 0.5em;
}

.coming-soon {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 6.5vw, 3.6rem);
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}

.subtext {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  max-width: 48ch;
  margin: 0 auto;
}

.subtext-link,
.subtext-link:link,
.subtext-link:visited,
.subtext-link:hover,
.subtext-link:focus-visible,
.subtext-link:active {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  outline: none;
  word-break: break-word;
}

/* ───── Footer ───── */
footer {
  text-align: center;
  padding: 2.5rem 0 3rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.55;
}

footer p { padding-left: 0.4em; }

/* ───── Animations ───── */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero, .video-section, .gallery-section { animation: none; }
  html { scroll-behavior: auto; }
}

/* ───── Mobile tweaks ───── */
@media (max-width: 640px) {
  .video-wrapper { border-radius: 3px; }
  .gallery-placeholder { border-radius: 3px; }
  .names { gap: 0.3em; }
  .date { letter-spacing: 0.4em; }
  .eyebrow { letter-spacing: 0.4em; }
}
