:root {
  --scene-width: 1920;
  --scene-height: 2376;
  --ink: #f9ffe9;
  --muted: #d7eec6;
  --wood: #6a3d17;
  --wood-dark: #241305;
  --gold: #f0b33a;
}

* {
  box-sizing: border-box;
}

html {
  background: #4d941e;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.35;
}

a {
  color: inherit;
}

.scene {
  position: relative;
  width: min(100vw, 1920px);
  min-height: calc(min(100vw, 1920px) * var(--scene-height) / var(--scene-width));
  margin: 0 auto;
  overflow: hidden;
  background-image: url("background.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  isolation: isolate;
}

.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 58%, rgb(20 38 10 / 0.12), transparent 27%),
    linear-gradient(to bottom, transparent 42%, rgb(12 20 7 / 0.24) 100%);
  pointer-events: none;
}

.play-button {
  position: absolute;
  top: 43.01%;
  left: 49.27%;
  z-index: 2;
  width: clamp(72px, 7.8125vw, 150px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 8px 0 rgb(0 0 0 / 0.35)) drop-shadow(0 16px 22px rgb(0 0 0 / 0.28));
  transform: translate(-50%, -50%);
  transition: filter 160ms ease, transform 160ms ease;
}

.play-button:hover {
  filter: drop-shadow(0 7px 0 rgb(0 0 0 / 0.34)) drop-shadow(0 18px 24px rgb(0 0 0 / 0.32));
  transform: translate(-50%, -50%) scale(1.06);
}

.play-button:active {
  transform: translate(-50%, -50%) scale(0.98);
}

.play-button:focus-visible {
  border-radius: 999px;
  outline: 4px solid #fff7b8;
  outline-offset: 5px;
}

.play-button img {
  display: block;
  width: 100%;
  height: auto;
}

.text-zone {
  position: absolute;
  top: 46%;
  left: 26%;
  width: 47.8%;
  min-height: 41%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(18px, 3.3vw, 64px) clamp(16px, 3vw, 56px);
  text-shadow: 0 3px 0 rgb(0 0 0 / 0.55), 0 0 16px rgb(0 0 0 / 0.55);
}

.eyebrow {
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 2px solid #3a1e07;
  background: linear-gradient(180deg, #f6cb62, var(--gold));
  box-shadow: 0 4px 0 #2c1604, 0 10px 22px rgb(0 0 0 / 0.24);
  color: #2a1708;
  font-size: clamp(0.7rem, 1.2vw, 1rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: none;
  text-transform: uppercase;
}

h1,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: clamp(14px, 1.5vw, 24px);
  color: #ffffff;
  font-size: clamp(2rem, 5.2vw, 6.25rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
}

.lead {
  max-width: 780px;
  margin-bottom: clamp(22px, 3vw, 46px);
  color: var(--muted);
  font-size: clamp(1rem, 1.75vw, 1.75rem);
  font-weight: 700;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.15vw, 18px);
  width: min(100%, 800px);
  margin-bottom: clamp(22px, 3vw, 42px);
}

.details div,
.booking {
  border: 3px solid var(--wood-dark);
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.09), transparent 45%),
    linear-gradient(180deg, #77481d, var(--wood));
  box-shadow:
    0 5px 0 #160b03,
    0 16px 30px rgb(0 0 0 / 0.28),
    inset 0 2px 0 rgb(255 255 255 / 0.18);
}

.details div {
  min-height: clamp(82px, 8vw, 134px);
  padding: clamp(11px, 1.35vw, 22px);
}

.details span,
.booking p {
  display: block;
  margin-bottom: 7px;
  color: #f9d67b;
  font-size: clamp(0.72rem, 1vw, 0.95rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.details strong {
  display: block;
  color: #fffbea;
  font-size: clamp(0.95rem, 1.6vw, 1.6rem);
  line-height: 1.05;
}

.booking {
  width: min(100%, 590px);
  padding: clamp(15px, 1.6vw, 24px) clamp(17px, 1.9vw, 30px);
}

.booking p {
  margin-bottom: 8px;
}

.booking a {
  color: #fffbea;
  font-size: clamp(1rem, 1.9vw, 1.9rem);
  font-weight: 950;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(8 14 4 / 0.82);
  backdrop-filter: blur(5px);
}

.video-modal[hidden] {
  display: none;
}

.video-frame {
  position: relative;
  width: min(92vw, 1180px);
  border: 4px solid var(--wood-dark);
  background: #050503;
  box-shadow: 0 18px 0 rgb(0 0 0 / 0.34), 0 28px 70px rgb(0 0 0 / 0.55);
}

.video-frame video {
  display: block;
  width: 100%;
  max-height: 82svh;
  background: #000;
}

.video-close {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 10px);
  border: 3px solid var(--wood-dark);
  background: linear-gradient(180deg, #f6cb62, var(--gold));
  box-shadow: 0 4px 0 #160b03;
  color: #251303;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  padding: 8px 12px;
  text-transform: uppercase;
}

@media (min-width: 1921px) {
  body {
    background:
      linear-gradient(90deg, #325f15, transparent 20%, transparent 80%, #325f15),
      #4d941e;
  }
}

@media (max-width: 850px) {
  .scene {
    width: 100vw;
    min-height: max(100svh, calc(100vw * var(--scene-height) / var(--scene-width)));
  }

  .text-zone {
    top: 45%;
    left: 11%;
    width: 76%;
    min-height: auto;
    padding: 18px 10px 44px;
  }

  h1 {
    font-size: clamp(2.2rem, 9vw, 4.5rem);
  }

  .lead {
    font-size: clamp(1rem, 4vw, 1.35rem);
  }

  .details {
    grid-template-columns: 1fr;
    width: min(100%, 420px);
  }

  .details div {
    min-height: 72px;
  }

  .booking {
    width: min(100%, 420px);
  }
}

@media (max-width: 480px) {
  .scene {
    min-height: max(100svh, 1180px);
    background-size: auto 100%;
  }

  .text-zone {
    top: 45%;
    left: 7%;
    width: 86%;
    padding-top: 12px;
  }

  .eyebrow {
    font-size: 0.68rem;
  }
}
