@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:wght@400;700&display=swap");

:root {
  --ink: #070707;
  --panel: #111111;
  --panel-2: #1a1a1a;
  --line: #2c2c2c;
  --paper: #f2f2ef;
  --muted: #adada6;
  --smoke: #74746d;
  --accent: #f2f2ef;
  --shadow: none;
  --display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --body: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-family: var(--body);
  color: var(--paper);
  background: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
}

body::selection {
  background: var(--accent);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  padding: 16px 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  left: 50%;
  min-width: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.48rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1;
  padding: 4px 0 5px;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--paper);
  background: transparent;
}

.nav-links .book-link {
  border-color: rgba(255, 255, 255, 0.74);
  color: var(--paper);
  background: transparent;
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.72) 44%, rgba(7, 7, 7, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0) 42%);
}

.video-hero {
  min-height: 88vh;
  background:
    radial-gradient(circle at 78% 32%, rgba(123, 85, 255, 0.3), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(246, 195, 66, 0.17), transparent 26%),
    #050505;
}

.video-hero::before {
  background-image: none;
}

.video-hero::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0) 34%);
}

.hero-collage {
  display: grid;
  gap: 10px;
  grid-template-columns: 1.2fr 0.75fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  height: min(640px, calc(100% - 104px));
  opacity: 0.76;
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 92px;
  width: min(760px, 60vw);
  z-index: 0;
}

.hero-collage img {
  border: 1px solid rgba(255, 255, 255, 0.14);
  filter: saturate(1.1) contrast(1.08);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-collage .collage-main {
  grid-row: span 3;
}

.hero-reel {
  display: none;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 86vh;
  margin: 0 auto;
  padding: 96px 0 78px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 0;
  border-radius: 0;
  color: var(--smoke);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 20px;
  padding: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--display);
  font-weight: 400;
  max-width: 900px;
  font-size: clamp(4.2rem, 13vw, 11rem);
  line-height: 0.88;
  letter-spacing: 0;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h2 {
  font-family: var(--display);
  font-size: clamp(2.75rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
}

h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.5vw, 1.14rem);
  line-height: 1.52;
  margin-bottom: 28px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1;
  padding: 14px 18px;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button.primary {
  border-color: var(--accent);
  color: var(--ink);
  background: var(--accent);
}

.button.heat {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--paper);
  background: transparent;
}

.button.dark {
  background: transparent;
}

.soundtrack-player {
  align-items: center;
  background: transparent;
  border: 0;
  bottom: 16px;
  display: flex;
  gap: 0;
  justify-content: space-between;
  min-width: 0;
  padding: 0;
  position: fixed;
  right: max(16px, calc((100vw - 1180px) / 2));
  z-index: 40;
}

.soundtrack-player::before {
  content: none;
}

.soundtrack-player.is-playing,
.soundtrack-player.is-autoplaying {
  border-color: transparent;
  box-shadow: none;
}

.soundtrack-copy {
  display: none;
  gap: 4px;
  min-width: 0;
}

.soundtrack-copy span {
  color: var(--smoke);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.soundtrack-copy strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.36rem;
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.soundtrack-toggle {
  align-items: center;
  background: rgba(5, 7, 15, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--paper);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: 0;
  gap: 0;
  justify-content: center;
  line-height: 1;
  min-height: 46px;
  padding: 0;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  width: 46px;
}

.soundtrack-toggle:hover,
.soundtrack-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
  transform: translateY(-1px);
}

.soundtrack-toggle:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

.soundtrack-icon {
  background: currentColor;
  clip-path: polygon(18% 10%, 18% 90%, 88% 50%);
  display: inline-block;
  height: 16px;
  width: 16px;
}

.soundtrack-player.is-playing .soundtrack-icon,
.soundtrack-player.is-autoplaying .soundtrack-icon {
  background: linear-gradient(90deg, currentColor 0 35%, transparent 35% 64%, currentColor 64% 100%);
  clip-path: none;
  width: 14px;
}

.soundtrack-embed {
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.soundtrack-embed iframe {
  border: 0;
  height: 1px;
  width: 1px;
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: #090909;
}

.section.paper {
  background: var(--paper);
  color: var(--ink);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.menu-hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(25, 184, 255, 0.25), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(255, 77, 147, 0.2), transparent 24%),
    linear-gradient(135deg, #05070f 0%, #081729 48%, #090909 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: relative;
}

.menu-hero-inner {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 0.72fr;
  min-height: 560px;
  padding: 88px 0 72px;
  position: relative;
}

.menu-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.menu-proof span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 9px 10px;
  text-transform: uppercase;
}

.menu-poster {
  align-content: end;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(160deg, rgba(25, 184, 255, 0.28), transparent 34%),
    linear-gradient(26deg, rgba(246, 195, 66, 0.9), rgba(255, 77, 147, 0.82) 42%, rgba(123, 85, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: grid;
  min-height: 380px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.menu-poster::before {
  background: url("assets/kayso-k-shellz-thumb.jpg") center / cover;
  content: "";
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0.58;
  position: absolute;
}

.menu-poster img,
.menu-poster strong,
.menu-poster span {
  position: relative;
  z-index: 1;
}

.menu-poster img {
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  height: 64px;
  object-fit: cover;
  width: 64px;
}

.menu-poster strong {
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 5.9rem);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.menu-poster span {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-section {
  background: #05070f;
  padding: 72px 0;
}

.menu-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.82fr 1.32fr 0.72fr;
}

.menu-heading {
  align-content: start;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  padding-top: 18px;
}

.menu-heading p {
  color: var(--muted);
  line-height: 1.55;
}

.selectable-menu {
  display: grid;
  gap: 12px;
}

.menu-item {
  align-items: stretch;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--menu-color) 34%, #05070f), rgba(5, 7, 15, 0.96) 42%),
    #080a12;
  border: 1px solid color-mix(in srgb, var(--menu-color) 44%, rgba(255, 255, 255, 0.16));
  color: var(--paper);
  cursor: pointer;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  min-height: 118px;
  padding: 18px;
  text-align: left;
  touch-action: manipulation;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.menu-item:hover,
.menu-item:focus-visible,
.menu-item.is-selected {
  border-color: var(--menu-color);
  transform: translateY(-2px);
}

.menu-item:focus-visible {
  outline: 2px solid var(--menu-color);
  outline-offset: 3px;
}

.menu-index {
  color: var(--menu-color);
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
}

.menu-copy {
  display: grid;
  gap: 7px;
}

.menu-label {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-desc,
.menu-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.menu-note {
  color: color-mix(in srgb, var(--menu-color) 76%, white);
  font-weight: 700;
  text-transform: uppercase;
}

.menu-item strong,
.menu-ticket strong {
  color: var(--menu-color);
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 0.9;
}

.menu-ticket {
  align-content: start;
  --menu-color: #19b8ff;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--menu-color) 22%, transparent), transparent 38%),
    linear-gradient(90deg, color-mix(in srgb, var(--menu-color) 10%, #080a12), #080a12 54%),
    #080a12;
  border: 1px solid color-mix(in srgb, var(--menu-color) 54%, rgba(255, 255, 255, 0.14));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--menu-color) 12%, transparent);
  display: grid;
  gap: 14px;
  padding: 20px;
  position: sticky;
  top: 96px;
}

.menu-ticket > span {
  color: var(--smoke);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-ticket h3 {
  margin-bottom: 0;
}

.menu-ticket p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.menu-ticket .button.primary {
  background: var(--menu-color);
  border-color: var(--menu-color);
  color: #05070f;
}

.menu-ticket .button.dark {
  border-color: color-mix(in srgb, var(--menu-color) 34%, rgba(255, 255, 255, 0.14));
}

.menu-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-gallery article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  padding-top: 14px;
}

.menu-gallery img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.menu-gallery span,
.compare-grid span {
  color: var(--smoke);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.compare-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compare-grid article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding-top: 16px;
}

.compare-grid strong {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.compare-grid p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
  margin-bottom: 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.paper .section-head p,
.paper .muted,
.paper .card p {
  color: #4d463b;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.statement {
  display: grid;
  align-content: end;
  min-height: 460px;
  background: transparent;
  border-left: 1px solid var(--line);
  border-radius: 0;
  padding: clamp(24px, 5vw, 46px);
}

.statement p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.feature-image {
  min-height: 460px;
  overflow: hidden;
  border-radius: 0;
  background: var(--panel);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  overflow: hidden;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 16px 0 0;
}

.card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.video-strip,
.project-video-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-board {
  display: grid;
  gap: 26px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featured-video {
  grid-column: span 2;
}

.video-card {
  border-top: 1px solid var(--line);
  outline: none;
  padding-top: 14px;
  scroll-margin-top: 108px;
}

.video-card:focus-visible {
  outline: 2px solid rgba(242, 242, 239, 0.72);
  outline-offset: 6px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  position: relative;
}

.video-frame iframe {
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.08);
  height: 100%;
  transition: filter 180ms ease, transform 180ms ease;
  width: 100%;
}

.video-card:hover .video-frame iframe,
.video-card:focus-within .video-frame iframe,
.video-card:focus-visible .video-frame iframe {
  filter: grayscale(0) contrast(1.08);
}

.video-hint {
  background: rgba(5, 5, 5, 0.74);
  bottom: 10px;
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 700;
  left: 10px;
  line-height: 1;
  padding: 8px 9px;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
}

.video-meta {
  padding-top: 13px;
}

.video-kicker {
  align-items: center;
  color: var(--smoke);
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.video-kicker a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--paper);
}

.video-meta p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.stills-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 26%),
    #050505;
}

.stills-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.still-card {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  min-width: 0;
  padding-top: 12px;
}

.still-card-lead,
.still-card-wide {
  grid-column: span 2;
}

.still-card img {
  aspect-ratio: 4 / 3;
  background: #050505;
  display: block;
  filter: saturate(0.92) contrast(1.08);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.still-card-lead img,
.still-card-wide img {
  aspect-ratio: 16 / 9;
}

.still-card:hover img {
  filter: saturate(1.05) contrast(1.1);
}

.still-caption {
  align-items: start;
  display: grid;
  gap: 8px;
}

.still-caption span {
  color: var(--smoke);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.still-caption h3 {
  font-size: 1.35rem;
  margin-bottom: 0;
}

.section-link,
.archive-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.archive-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-links a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 16px 0;
  text-transform: uppercase;
}

.archive-links strong {
  color: var(--smoke);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.tag {
  border: 0;
  border-radius: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1;
  padding: 0;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 16px;
}

.price strong {
  font-size: 1.25rem;
  text-transform: uppercase;
}

.price span {
  color: var(--smoke);
  font-size: 0.86rem;
}

.proof-line {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 16px;
  text-transform: uppercase;
}

.proof-line span {
  font-size: 0.78rem;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.step {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 18px 0 0;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: var(--smoke);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.step p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.booking-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: start;
}

.contact-block {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 22px 0 0;
}

.contact-block p {
  color: var(--muted);
  line-height: 1.55;
}

.quick-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--paper);
  padding: 14px 0;
}

.quick-links a:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 22px 0 0;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--paper);
  background: #090909;
  font-size: 1rem;
  padding: 13px 12px;
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242, 238, 230, 0.12);
}

.form-note {
  grid-column: 1 / -1;
  color: var(--smoke);
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050505;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--smoke);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--paper);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 70px;
  background: var(--panel);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0.42;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.94), rgba(7, 7, 7, 0.48));
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
}

.muted {
  color: var(--muted);
}

.banner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090909;
  color: var(--paper);
  padding: 22px 0;
}

.banner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.banner strong {
  font-size: clamp(1.2rem, 3vw, 2rem);
  text-transform: uppercase;
}

.banner .button {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--paper);
}

@media (max-width: 900px) {
  .nav {
    align-items: start;
    flex-direction: column;
    min-height: 0;
    padding: 13px 0 12px;
  }

  .brand {
    left: auto;
    position: static;
    top: auto;
    transform: none;
  }

  .nav-links {
    justify-content: start;
    gap: 20px;
  }

  .nav-links .book-link {
    margin-left: 0;
  }

  .hero,
  .hero-inner {
    min-height: 78vh;
  }

  .video-hero,
  .video-hero .hero-inner {
    min-height: calc(100svh - 112px);
  }

  .video-hero .hero-inner {
    padding-bottom: 44px;
    padding-top: 54px;
  }

  .hero-collage {
    height: 52vh;
    opacity: 0.32;
    right: 16px;
    top: 142px;
    width: calc(100% - 32px);
  }

  .split,
  .booking-panel,
  .menu-hero-inner,
  .menu-shell {
    grid-template-columns: 1fr;
  }

  .menu-hero-inner {
    min-height: 0;
    padding: 64px 0;
  }

  .menu-poster {
    min-height: 320px;
  }

  .menu-ticket {
    position: static;
  }

  .menu-section,
  .menu-gallery-section,
  .process-section,
  .page-hero,
  .section {
    scroll-margin-top: 118px;
  }

  .grid,
  .grid.two,
  .package-grid,
  .video-strip,
  .project-video-grid,
  .stills-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-board {
    grid-template-columns: 1fr;
  }

  .featured-video {
    grid-column: auto;
  }

  .menu-gallery,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .still-card-lead,
  .still-card-wide {
    grid-column: span 2;
  }
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .hero-reel {
    display: block;
    opacity: 0.72;
  }

  .video-hero .hero-collage {
    display: none;
  }

  .video-hero.hero-video-disabled .hero-collage {
    display: grid;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  html {
    scroll-padding-top: 118px;
  }

  .nav {
    gap: 10px;
    width: min(100% - 28px, 1180px);
  }

  .brand-mark {
    height: 36px;
    width: 36px;
  }

  .brand-copy strong {
    font-size: 1.28rem;
  }

  .brand-copy span {
    font-size: 0.62rem;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 1.02rem;
    min-height: 34px;
    padding-bottom: 7px;
    padding-top: 7px;
  }

  .section {
    padding: 58px 0;
  }

  .wrap,
  .hero-inner,
  .footer-inner {
    width: min(1180px, calc(100% - 28px));
  }

  .hero-inner {
    padding-bottom: 38px;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 4.85rem);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  .lead {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .soundtrack-player {
    bottom: 12px;
    left: auto;
    min-width: 0;
    padding: 0;
    right: 14px;
  }

  .soundtrack-toggle {
    min-height: 44px;
    width: 44px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.58)),
      linear-gradient(0deg, rgba(7, 7, 7, 0.98), rgba(7, 7, 7, 0) 46%);
  }

  .section-head,
  .banner .wrap,
  .footer-inner {
    align-items: start;
    flex-direction: column;
  }

  .grid,
  .grid.two,
  .package-grid,
  .video-strip,
  .video-board,
  .project-video-grid,
  .stills-grid,
  .archive-links,
  .menu-gallery,
  .compare-grid,
  .steps,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .still-card-lead,
  .still-card-wide {
    grid-column: auto;
  }

  .hero-collage {
    gap: 6px;
    grid-template-columns: 1fr 1fr;
    height: 44vh;
    opacity: 0.22;
    right: 14px;
    top: 154px;
    width: calc(100% - 28px);
  }

  .hero-collage .collage-main {
    grid-column: span 2;
    grid-row: span 1;
  }

  .menu-section {
    padding: 46px 0;
  }

  .menu-hero-inner {
    gap: 24px;
    padding: 48px 0;
  }

  .menu-proof {
    gap: 8px;
  }

  .menu-proof span {
    font-size: 0.68rem;
    padding: 8px;
  }

  .menu-poster {
    aspect-ratio: 16 / 11;
    min-height: 0;
    padding: 18px;
  }

  .menu-poster img {
    height: 46px;
    width: 46px;
  }

  .menu-poster strong {
    font-size: clamp(3rem, 18vw, 4rem);
  }

  .menu-item {
    gap: 12px;
    grid-template-columns: auto 1fr;
    min-height: 0;
    padding: 16px;
  }

  .menu-item strong {
    grid-column: 1 / -1;
  }

  .menu-label {
    font-size: 1.72rem;
  }

  .menu-desc,
  .menu-note {
    font-size: 0.78rem;
  }

  .menu-ticket {
    padding: 16px;
  }

  .menu-ticket .button + .button {
    margin-top: -4px;
  }

  .video-hint {
    font-size: 0;
  }

  .video-hint::after {
    content: "Tap play";
    font-size: 0.68rem;
  }

  .page-hero {
    padding: 72px 0 54px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 16vw, 4rem);
  }

  .booking-form {
    gap: 16px;
  }

  .field.full,
  .form-note {
    grid-column: auto;
  }

  .statement,
  .feature-image,
  .feature-image img {
    min-height: 340px;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

.video-frame > video {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  background: #000;
}

.draft-preview-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  background: #f0cf45;
  color: #111;
  font: 700 0.82rem/1.2 Arial, sans-serif;
  text-align: center;
}

.draft-preview-banner a {
  color: #111;
  text-decoration: underline;
}
