:root {
  color-scheme: dark;
  --bg: #080b10;
  --text: #f8f3e7;
  --muted: rgba(248, 243, 231, 0.78);
  --gold: #c7aa72;
  --gold-light: #ead9ad;
  --button-text: #11151a;
  --button-border: rgba(236, 219, 175, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
  "Segoe UI", sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg);
}

.hero__video,
.hero__overlay,
.hero__vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: -4;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.hero__overlay {
  z-index: -3;
  background:
          linear-gradient(180deg, rgba(4, 7, 11, 0.36) 0%, rgba(4, 7, 11, 0.18) 44%, rgba(4, 7, 11, 0.48) 100%),
          rgba(3, 6, 10, 0.2);
}

.hero__vignette {
  z-index: -2;
  pointer-events: none;
  box-shadow:
          inset 0 0 130px 42px rgba(0, 0, 0, 0.58),
          inset 0 -150px 160px -80px rgba(0, 0, 0, 0.78);
}

.hero__content {
  width: min(920px, calc(100% - 40px));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-1.5vh);
}

.hero__eyebrow {
  margin: 0 0 clamp(6px, 1.2vh, 14px);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 2.45rem);
  font-weight: 400;
  letter-spacing: 0.065em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.hero__logo {
  display: block;
  width: min(720px, 84vw);
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.62));
  user-select: none;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: clamp(22px, 3.4vh, 40px);
}

.button {
  position: relative;
  display: inline-flex;
  min-width: 220px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid var(--button-border);
  border-radius: 2px;
  font-size: 0.93rem;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
          transform 180ms ease,
          border-color 180ms ease,
          background 180ms ease,
          color 180ms ease,
          box-shadow 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button--primary {
  color: var(--button-text);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
}

.button--secondary {
  color: var(--text);
  background: rgba(11, 15, 20, 0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary:hover {
  background: linear-gradient(135deg, #f0e1ba, #d2b67f);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.button--secondary:hover {
  border-color: rgba(248, 238, 211, 0.98);
  background: rgba(226, 205, 157, 0.12);
}

.button:focus-visible {
  outline: 2px solid #fff3c9;
  outline-offset: 4px;
}

@media (max-width: 600px) {
  .hero__content {
    width: min(100% - 28px, 560px);
  }

  .hero__eyebrow {
    margin-bottom: 10px;
    font-size: clamp(1.15rem, 6vw, 1.6rem);
  }

  .hero__logo {
    width: min(94vw, 560px);
  }

  .hero__actions {
    flex-direction: column;
    gap: 12px;
    width: min(100%, 330px);
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero__content {
    transform: none;
  }

  .hero__eyebrow {
    font-size: 1.15rem;
  }

  .hero__logo {
    width: min(520px, 58vw);
  }

  .hero__actions {
    margin-top: 18px;
  }

  .button {
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
