:root {
  --ink: #0c141a;
  --paper: #f5f6f6;
  --white: #fff;
  --muted: #6f7a81;
  --gold: #e5bd77;
  --line: rgba(12,20,26,.12);
  --dark-line: rgba(255,255,255,.14);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8,14,19,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-line);
}

.nav {
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand,
.contact-link {
  color: #fff;
  text-decoration: none;
}

.brand {
  font-weight: 700;
  letter-spacing: -.01em;
}

.contact-link {
  color: #dbe1e4;
  font-size: .94rem;
}

.hero {
  min-height: 78vh;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #0a1116;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/resort-sunset.png") center / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5,10,14,.96), rgba(5,10,14,.35) 58%, rgba(5,10,14,.12)),
    linear-gradient(to right, rgba(5,10,14,.58), transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 150px 0 66px;
}

.pill {
  display: inline-block;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: #e8ecee;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.hero h1 {
  max-width: 920px;
  margin: 18px 0 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 30px;
  color: #d7dfe3;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 21px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #11171b;
  text-decoration: none;
  font-weight: 750;
}

.button.dark {
  background: #111920;
  color: #fff;
}

.section {
  padding: 96px 0;
}

.films {
  background: var(--paper);
}

.film + .film {
  margin-top: 86px;
}

.film-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 22px;
}

.label {
  display: block;
  margin-bottom: 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: #876a3c;
}

.label.light {
  color: var(--gold);
}

.film h2,
.licensing h2,
.contact h2 {
  margin: 0;
  letter-spacing: -.035em;
  line-height: 1.03;
}

.film h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.runtime {
  color: var(--muted);
  white-space: nowrap;
}

.video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background: #080d11;
  box-shadow: 0 24px 70px rgba(0,0,0,.16);
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.licensing {
  background: #0c141a;
  color: #fff;
}

.licensing h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.option {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--dark-line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,.025);
}

.option.featured {
  background: #fff;
  color: var(--ink);
}

.option span {
  font-size: .72rem;
  font-weight: 800;
  color: #9ca9af;
}

.option strong {
  font-size: 1.35rem;
}

.usage {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.usage span {
  padding: 8px 12px;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  color: #ccd5d9;
  font-size: .86rem;
}

.small-note {
  max-width: 820px;
  margin: 25px 0 0;
  color: #9eabb2;
  font-size: .84rem;
}

.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}

.contact h2 {
  max-width: 650px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.contact-box {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-box > strong {
  font-size: 1.3rem;
}

.contact-box > a:not(.button) {
  color: #59666e;
  text-decoration: none;
  margin-bottom: 18px;
}

footer {
  background: #080e13;
  color: #87939a;
  border-top: 1px solid var(--dark-line);
}

.footer-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: .82rem;
}

@media (max-width: 800px) {
  .section { padding: 72px 0; }

  .film-head {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .runtime { white-space: normal; }

  .options,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid { gap: 35px; }

  .footer-row {
    padding: 24px 0;
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    min-height: 84vh;
  }

  .hero-content {
    padding: 120px 0 48px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .film + .film {
    margin-top: 64px;
  }

  .video {
    border-radius: 14px;
  }
}
