@font-face {
  font-family: 'Cormorant Garamond';
  src:
    url('./fonts/Cormorant-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src:
    url('./fonts/CormorantGaramond-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src:
    url('./fonts/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: #d4a55d;
  --accent-soft: rgba(212, 165, 93, 0.35);
  --text: rgba(243, 239, 231, 0.82);
  --text-strong: #f5f1e8;
  --background: #05060b;
  --hero-fade: 0;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.fullscreen-hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--background);
}

.fullscreen-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 11, 0.9);
  opacity: var(--hero-fade);
  pointer-events: none;
  transition: opacity 160ms linear;
  z-index: 1;
}

.fullscreen-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(28vh, 240px);
  background: linear-gradient(
    180deg,
    rgba(5, 6, 11, 0) 0%,
    rgba(5, 6, 11, 0.75) 75%,
    rgba(5, 6, 11, 1) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: calc(1 - var(--hero-fade));
  transition: opacity 160ms linear;
  z-index: 0;
}

.content {
  position: relative;
  padding: clamp(80px, 12vw, 120px) clamp(24px, 10vw, 220px);
  display: grid;
  gap: clamp(48px, 12vw, 80px);
  justify-items: center;
  text-align: center;
  background: linear-gradient(
      180deg,
      rgba(5, 6, 11, 0.78) 100%,
      rgba(5, 6, 11, 0.88) 28%,
      rgba(9, 11, 18, 0.96) 100%
    ),
    var(--background);
}

.content::before {
  content: '';
  position: absolute;
  inset: -40px 0 40px;
  background: none;
  pointer-events: none;
  opacity: 0.5;
}

.content-card {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: clamp(32px, 6vw, 40px);
  padding: clamp(32px, 6vw, 48px) 0 clamp(40px, 7vw, 60px);
  width: min(100%, 720px);
}

.eyebrow {
  display: inline-block;
  padding: 0.35em 1.6em;
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  font-size: clamp(12px, 1.6vw, 14px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(243, 239, 231, 0.68);
  margin-bottom: clamp(28px, 4vw, 38px);
  background: rgba(8, 9, 20, 0.72);
  box-shadow: 0 10px 28px rgba(2, 4, 10, 0.38);
}

h1 {
  margin: 0 0 clamp(0px, 0vw, 0px);
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(34px, 4.8vw, 58px);
  letter-spacing: 0.05em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--accent);
}

.title-line {
  display: block;
  white-space: nowrap;
}

.title-break {
  display: block;
}

.divider {
  width: 86px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 165, 93, 0.9),
    transparent
  );
  margin: 0 auto clamp(1px, 1vw, 1px);
  position: relative;
}

.divider::after {
  content: none;
}

p {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(243, 239, 231, 0.78);
  margin-bottom: clamp(30px, 5vw, 44px);
}

.cta {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 2.8em;
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-strong);
  text-decoration: none;
  border: 1px solid rgba(212, 165, 93, 0.6);
  border-radius: 999px;
  background: none;
  box-shadow: none;
  transition: transform 200ms ease, box-shadow 200ms ease,
    border-color 200ms ease, background 200ms ease;
}

.cta[disabled],
.cta[aria-disabled='true'] {
  display: none;
}


.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 240, 210, 0.8);
  box-shadow: none;
  background: none;
}

footer {
  padding: clamp(32px, 6vw, 48px) 24px 48px;
  text-align: center;
  font-size: clamp(11px, 1.8vw, 12px);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(243, 239, 231, 0.32);
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .fullscreen-hero {
    background: url('poster.jpg') center / cover no-repeat,
      var(--background);
  }
}

@media (max-width: 600px) {
  .scroll-cue {
    font-size: 9px;
  }

  .content-card {
    padding: 24px 0 40px;
  }

  .title-line {
    white-space: normal;
  }

  p {
    text-align: center;
  }
}
