@font-face {
  font-family: "Porter Bold";
  src: url("../fonts/porter-bold.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --ink: #17242a;
  --muted: #5e6c70;
  --paper: #eef4f4;
  --white: #fbfdfb;
  --sky: #bde6f1;
  --cyan: #29aebe;
  --violet: #8b3fa7;
  --red: #df3750;
  --gold: #b77a33;
  --concrete: #686d6f;
  --concrete-dark: #373b3d;
  --concrete-deep: #282c2e;
  --line: rgba(23, 36, 42, 0.16);
  --page: min(86rem, calc(100vw - 3rem));
  --text: min(47rem, calc(100vw - 3rem));
  --header-height: 5rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: transparent;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  isolation: isolate;
  line-height: 1.65;
}

body.dialog-open { overflow: hidden; }

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 27, 32, .14), rgba(10, 27, 32, .48)),
    url("../images/hero-1920.webp?v=2") center / cover no-repeat,
    #77bfd3;
  content: "";
  pointer-events: none;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

h1, h2, h3, p, blockquote, figure { margin-top: 0; }
h1, h2, h3 {
  font-family: "Porter Bold", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: .015em;
  line-height: 1.18;
}
h2 { margin-bottom: 1.5rem; font-size: clamp(2.15rem, 4.4vw, 4.5rem); }
h3 { font-size: clamp(1.55rem, 2.5vw, 2.35rem); }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.6rem 0.8rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  --header-opacity: 0;
  --header-blur: 0px;
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  min-height: var(--header-height);
  color: var(--white);
  background:
    linear-gradient(rgba(43,47,49,var(--header-opacity)), rgba(43,47,49,var(--header-opacity))),
    linear-gradient(105deg, rgba(255,255,255,.045), transparent 38%),
    linear-gradient(to bottom, rgba(43,47,49,.94), rgba(43,47,49,.38), transparent);
  -webkit-backdrop-filter: blur(var(--header-blur));
  backdrop-filter: blur(var(--header-blur));
}

.header-inner {
  display: grid;
  width: var(--page);
  min-height: var(--header-height);
  margin: 0 auto;
  align-items: center;
  grid-template-columns: 11rem minmax(0, 1fr) auto;
  gap: 2rem;
}

.brand { display: block; width: 10.5rem; }
.brand img { width: 100%; filter: drop-shadow(0 1px 6px rgba(0,0,0,.22)); }

.primary-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 1.9vw, 2rem);
}

.primary-navigation a,
.header-buy {
  position: relative;
  padding: .4rem 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-navigation a,
.header-buy { text-shadow: 0 1px 8px rgba(0,0,0,.36); }
.primary-navigation a::after,
.header-buy::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.header-buy:hover::after,
.header-buy:focus-visible::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  justify-self: end;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  width: var(--page);
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) 0;
  color: var(--white);
  background: transparent;
  align-content: center;
  text-align: center;
}

.hero-shade {
  display: none;
}

.hero-title {
  width: min(42rem, 58vw);
  margin: 0 auto 2.25rem;
}

.hero-title img {
  width: 100%;
  filter: drop-shadow(0 .5rem 1.1rem rgba(18, 25, 27, .32));
}

.hero-intro {
  max-width: 45rem;
  margin: 0 auto 2.25rem;
  color: #edf1ef;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.6;
  text-shadow: 0 2px 16px rgba(0,0,0,.85);
}

.hero-actions {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
}

.hero-button {
  display: inline-flex;
  width: 12.75rem;
  min-width: 0;
  min-height: 3.25rem;
  padding: .7rem 1.2rem;
  border: 1px solid rgba(255,255,255,.8);
  color: var(--white);
  background: rgba(15,31,36,.38);
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-shadow: 0 1px 5px rgba(0,0,0,.35);
  text-transform: uppercase;
  backdrop-filter: blur(.25rem);
}

.hero-button:hover,
.hero-button:focus-visible,
.hero-button-solid {
  color: var(--ink);
  background: rgba(255,255,255,.94);
  text-shadow: none;
}

.hero-button-solid {
  border-color: #f36a75;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.38), transparent 18%, transparent 70%, rgba(49,0,7,.35)),
    linear-gradient(115deg, #7e1522, #e84455 42%, #9e1d2c 70%, #f05b68);
  box-shadow: inset 0 1px rgba(255,255,255,.5), 0 .45rem 1.2rem rgba(111,16,31,.2);
}

.hero-button:not(.hero-button-solid) {
  border-color: rgba(94,220,232,.9);
  background:
    linear-gradient(180deg, rgba(255,255,255,.15), transparent 24%, rgba(7,40,46,.32)),
    rgba(19,68,77,.32);
  box-shadow: inset 0 1px rgba(255,255,255,.38);
}

.hero-button-solid:hover,
.hero-button-solid:focus-visible {
  color: var(--white);
  background: rgba(15,31,36,.78);
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 10rem) 0;
  background: rgba(238, 244, 244, .88);
  box-shadow: 0 0 0 100vmax rgba(238, 244, 244, .88);
  clip-path: inset(0 -100vmax);
}

.section-heading { max-width: 55rem; }
.section-heading.centered { margin: 0 auto; text-align: center; }

.eyebrow {
  margin-bottom: 1rem;
  color: #267a87;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.key-art {
  margin: 0;
}

.key-art img {
  width: 100%;
  box-shadow: 0 2rem 5rem rgba(43,63,68,.16);
}

.story-lead { margin-bottom: 1.4rem; color: var(--ink); font-family: "Porter Bold", "Helvetica Neue", Arial, sans-serif; font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 400; letter-spacing: .025em; line-height: 1.45; }
.story-copy { max-width: 38rem; padding-top: .5rem; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.14rem); }
.story-copy blockquote { margin: 2.5rem 0 2rem; padding-left: 1.5rem; border-left: 2px solid var(--gold); color: var(--ink); font-family: "Porter Bold", "Helvetica Neue", Arial, sans-serif; font-size: 1.08rem; font-style: normal; letter-spacing: .025em; line-height: 1.55; }

.award::before,
.trailer-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: .28rem;
  content: "";
  box-shadow: inset 0 1px rgba(255,255,255,.55), 0 .25rem .9rem rgba(31,48,51,.12);
}
.award:nth-child(3n + 1)::before,
.trailer-card:nth-child(2)::before { background: linear-gradient(90deg, #105a67, #4cdae7 42%, #117783 74%, #83eaf0); }
.award:nth-child(3n + 2)::before,
.trailer-card:nth-child(1)::before { background: linear-gradient(90deg, #7d1623, #ee4a59 42%, #9b1c2b 74%, #f77b84); }
.award:nth-child(3n)::before { background: linear-gradient(90deg, #52225e, #b45bc0 42%, #71317f 74%, #d18bd6); }

.recognition { padding-bottom: clamp(6rem, 10vw, 10rem); }
.trailers > .section-heading,
.gallery-heading .section-heading { margin-right: auto; margin-left: auto; text-align: center; }
.awards-grid {
  display: grid;
  margin-top: clamp(3rem, 6vw, 6rem);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.award {
  position: relative;
  display: flex;
  min-height: 17rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: inherit;
  text-decoration: none;
}
.award img { width: 100%; max-width: 15rem; mix-blend-mode: multiply; }
.award p { display: grid; gap: .3rem; margin: .8rem 0 0; color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
.award p strong { color: var(--ink); font-size: .7rem; }

.trailers { border-top: 1px solid var(--line); }
.trailer-grid { display: grid; margin-top: clamp(3rem, 6vw, 5rem); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 4vw, 3.5rem); }
.trailer-card { border: 1px solid var(--line); background: rgba(255,255,255,.6); }
.trailer-card { position: relative; overflow: hidden; }
.trailer-card > div { padding: clamp(1.4rem, 3vw, 2.4rem); }
.trailer-card h3 { margin-bottom: .8rem; }
.trailer-card > div > p:last-child { margin-bottom: 0; color: var(--muted); }
.video-launch { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; cursor: pointer; background: #83cad8; }
.video-launch img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 350ms ease; }
.video-launch:hover img { transform: scale(1.018); }
.play { position: absolute; top: 50%; left: 50%; display: grid; width: 4.8rem; height: 4.8rem; padding-left: .25rem; color: var(--white); background: rgba(22,36,42,.84); border-radius: 50%; place-items: center; transform: translate(-50%, -50%); }
.video-frame { width: 100%; aspect-ratio: 16 / 9; border: 0; }

.gallery-section {
  position: relative;
  padding: clamp(6rem, 10vw, 10rem) 0 clamp(5rem, 8vw, 8rem);
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(255,255,255,.055), transparent 34%),
    repeating-linear-gradient(100deg, rgba(255,255,255,.018) 0 1px, transparent 1px 7px),
    var(--concrete-dark);
}
.gallery-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: .42rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.45), transparent 42%),
    linear-gradient(90deg, #c52d3f 0 31%, #37becd 38% 66%, #a34aad 73% 100%);
  box-shadow: 0 .35rem 1.2rem rgba(18,25,27,.25);
  content: "";
}
.gallery-heading { display: flex; padding-top: 0; padding-bottom: clamp(3rem, 5vw, 5rem); align-items: end; justify-content: space-between; gap: 2rem; }
.gallery-section .gallery-heading { background: transparent; box-shadow: none; clip-path: none; }
.gallery-heading .eyebrow { color: #7ed7e1; }
.gallery-heading > p { max-width: 24rem; margin-bottom: .7rem; color: #d9e5e7; }
.gallery-grid { display: grid; width: var(--page); margin: 0 auto; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .75rem; }
.gallery-grid a { position: relative; display: block; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: #91d5e1; cursor: zoom-in; }
.gallery-grid a:focus-visible { outline: 2px solid #7ed7e1; outline-offset: 3px; }
.gallery-grid img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 400ms ease, filter 400ms ease; }
.gallery-grid a:hover img { transform: scale(1.02); filter: contrast(1.03) saturate(1.06); }

.panorama { display: grid; grid-template-columns: minmax(17rem,.65fr) minmax(0,1.35fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.panorama-copy { max-width: 30rem; }
.panorama-copy > p:not(.eyebrow) { color: var(--muted); }
.panorama-frame { position: relative; overflow: hidden; min-height: 24rem; background: #9ed6e2; }
.panorama-frame img, .panorama-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }

.button {
  display: inline-flex;
  min-height: 3.25rem;
  margin-top: 1rem;
  padding: .7rem 1.3rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.button:hover { color: var(--white); background: var(--ink); }
.button-dark { border-color: var(--white); color: var(--white); }
.button-dark:hover { color: var(--ink); background: var(--white); }

.play-section { position: relative; display: grid; min-height: 35rem; color: var(--white); background: var(--concrete-dark); grid-template-columns: 1fr; }
.play-copy {
  display: flex;
  width: 100%;
  max-width: none;
  min-height: 35rem;
  padding: clamp(4rem, 8vw, 8rem) max(1.5rem, calc((100vw - 68rem) / 2));
  background:
    linear-gradient(120deg, rgba(255,255,255,.14), transparent 34%, rgba(29,5,35,.18)),
    linear-gradient(145deg, #55255f, #9a4ba7 48%, #692b76 74%, #b464bd);
  box-shadow: inset 0 1px rgba(255,255,255,.25), inset 1px 0 rgba(255,255,255,.12);
  flex-direction: column;
  justify-content: center;
}
.play-copy .eyebrow { color: #f0b4e9; }
.play-copy h2, .play-copy p:not(.eyebrow) { max-width: 46rem; }
.play-copy p:not(.eyebrow) { color: #eaddec; }
.store-badge {
  display: grid;
  width: min(15rem, 100%);
  min-height: 7rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(24,17,28,.18);
  place-items: center;
  transition: background 180ms ease, border-color 180ms ease;
}
.store-badge:hover,
.store-badge:focus-visible { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }

.contact-invite {
  display: grid;
  min-height: 25rem;
  padding: clamp(4rem, 8vw, 7rem) max(1.5rem, calc((100vw - 68rem) / 2));
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255,255,255,.16), transparent 28%, rgba(0,36,43,.22)),
    linear-gradient(145deg, #176a76, #31aeba 48%, #197481 74%, #48c4cb);
  box-shadow: inset 0 1px rgba(255,255,255,.3);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem 5rem;
}
.contact-invite > div { max-width: 47rem; }
.contact-invite .eyebrow { color: #c9f8fa; }
.contact-invite h2 { margin-bottom: .8rem; }
.contact-invite p:not(.eyebrow) { margin-bottom: 0; color: #e0f2f3; }
.contact-invite .button { margin: 0; white-space: nowrap; }

.site-footer {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem max(1.5rem, 7vw);
  border-top: 1px solid rgba(255,255,255,.12);
  color: #fff;
  background: rgba(10,27,32,.66);
  align-items: center;
  justify-content: space-between;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-logo { width: 8rem; }

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 3.5rem 1rem 1rem;
  color: var(--white);
  background: rgba(18,20,21,.94);
  backdrop-filter: blur(8px);
  place-items: center;
}
.lightbox[hidden] { display: none; }
.lightbox-panel { position: relative; width: min(92vw, 80rem); max-height: calc(100vh - 4.5rem); background: var(--concrete-deep); box-shadow: 0 2rem 6rem rgba(0,0,0,.55); }
.lightbox img { width: 100%; max-height: calc(100vh - 8rem); opacity: 0; object-fit: contain; transition: opacity 180ms ease; }
.lightbox img.is-loaded { opacity: 1; }
.lightbox-status { position: absolute; z-index: 1; top: 50%; right: 0; left: 0; margin: 0; color: #d7e1e2; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-align: center; text-transform: uppercase; transform: translateY(-50%); }
.lightbox-close { position: absolute; z-index: 2; top: -2.75rem; right: 0; width: 2.5rem; height: 2.5rem; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--white); background: var(--concrete-deep); cursor: pointer; font-size: 1.6rem; line-height: 1; }
.lightbox-download { display: block; padding: .8rem 1rem; color: var(--white); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-align: center; text-transform: uppercase; }

.support-hero {
  display: grid;
  min-height: 34rem;
  padding: clamp(7rem, 13vw, 12rem) max(1.5rem, calc((100vw - 68rem) / 2)) clamp(5rem, 9vw, 8rem);
  color: var(--white);
  background: linear-gradient(180deg, rgba(24,29,30,.36), rgba(24,29,30,.86));
  align-content: end;
}
.support-hero .eyebrow { color: #7ed7e1; }
.support-hero h1 { max-width: 58rem; margin: .35rem 0 1rem; font-size: clamp(3rem, 7vw, 6.7rem); }
.support-hero > p:last-child { max-width: 45rem; margin: 0; color: #dbe5e6; font-size: clamp(1rem, 1.8vw, 1.25rem); }
.support-main {
  padding: clamp(4rem, 8vw, 8rem) max(1.5rem, calc((100vw - 68rem) / 2));
  background:
    linear-gradient(120deg, rgba(255,255,255,.5), transparent 26%),
    rgba(213,216,214,.97);
}
.support-index { display: flex; margin: 0 0 3rem; padding: 1.1rem 0; border-top: 1px solid rgba(28,35,36,.3); border-bottom: 1px solid rgba(28,35,36,.3); flex-wrap: wrap; gap: .7rem 1.6rem; }
.support-index a { font-size: .67rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.support-index a:hover { color: #9e2636; }
.support-group { padding: clamp(3rem, 6vw, 5rem) 0; border-bottom: 1px solid rgba(28,35,36,.26); scroll-margin-top: calc(var(--header-height) + 1.5rem); }
.support-group:first-of-type { padding-top: 1.5rem; }
.support-group h2 { max-width: 52rem; margin-bottom: 0; font-size: clamp(2.1rem, 4.6vw, 4rem); }
.support-group:nth-of-type(2) .eyebrow { color: #a82e3d; }
.support-group:nth-of-type(3) .eyebrow { color: #197d8b; }
.support-group:nth-of-type(4) .eyebrow { color: #794283; }
.support-list { margin: 2rem 0 0; }
.support-list > div { display: grid; padding: 1.35rem 0; border-top: 1px solid rgba(28,35,36,.2); grid-template-columns: minmax(11rem, 15rem) minmax(0, 1fr); gap: 1.5rem 3rem; }
.support-list dt { font-size: .72rem; font-weight: 850; letter-spacing: .09em; line-height: 1.55; text-transform: uppercase; }
.support-list dd { margin: 0; color: #465052; line-height: 1.75; }
.support-contact {
  display: grid;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255,255,255,.22), transparent 26%, rgba(54,0,8,.18)),
    linear-gradient(145deg, #76212e, #bd3a4c 48%, #7e2633 74%, #d05260);
  box-shadow: inset 0 1px rgba(255,255,255,.3), 0 1.5rem 4rem rgba(35,29,29,.2);
  grid-template-columns: minmax(15rem, .7fr) minmax(22rem, 1.3fr);
  gap: clamp(3rem, 7vw, 6rem);
}
.support-contact .eyebrow { color: #ffd1d5; }
.support-contact h2 { margin-bottom: .75rem; font-size: clamp(2.2rem, 4vw, 3.8rem); }
.support-contact .contact-copy > p:not(.eyebrow) { max-width: 42rem; color: #f5e8e9; }
.support-actions { display: flex; margin-top: 1.5rem; flex-wrap: wrap; gap: .75rem; }
.support-actions .button { margin: 0; }
.contact-form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-form label:not(.consent):not(.form-trap) { display: grid; gap: .4rem; }
.contact-form label > span:first-child { font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 0;
  color: var(--white);
  background: rgba(29,4,8,.18);
}
.contact-form input, .contact-form select { min-height: 3rem; padding: 0 .75rem; }
.contact-form textarea { min-height: 10rem; padding: .75rem; resize: vertical; }
.contact-form select option { color: var(--white); background: #5f1924; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--white); outline: 2px solid rgba(255,255,255,.2); outline-offset: 1px; }
.consent { display: grid; color: #f1dfe1; cursor: pointer; font-size: .8rem; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; }
.consent input { width: 1rem; min-height: 1rem; margin-top: .25rem; accent-color: #191d1e; }
.consent a { color: var(--white); }
.form-trap { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }
.cf-turnstile { min-height: 65px; }
.form-actions { display: flex; min-height: 3rem; align-items: center; gap: 1.2rem; }
.form-actions .button { margin: 0; }
.form-actions button:disabled { cursor: wait; opacity: .6; }
.form-status { margin: 0; color: #f1dfe1; font-size: .82rem; }
.form-status.is-error { color: #fff0b8; }
.form-status.is-success { color: #d1ffd3; }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 10rem minmax(0, 1fr) auto; gap: 1rem; }
  .primary-navigation { gap: 1rem; }
  .primary-navigation a { font-size: .61rem; }
  .awards-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 850px) {
  :root { --header-height: 4.75rem; }
  body::before {
    background:
      linear-gradient(180deg, rgba(10, 27, 32, .14), rgba(10, 27, 32, .48)),
      url("../images/hero-1280.webp?v=2") center / cover no-repeat,
      #77bfd3;
  }
  .header-inner { min-height: var(--header-height); grid-template-columns: 9rem 1fr; }
  .brand { width: 8.7rem; }
  .menu-toggle { display: inline-flex; align-items: center; gap: .8rem; }
  .menu-toggle i, .menu-toggle i::before, .menu-toggle i::after { display: block; width: 1.3rem; height: 1px; background: currentColor; content: ""; }
  .menu-toggle i { position: relative; }
  .menu-toggle i::before { position: absolute; top: -.4rem; }
  .menu-toggle i::after { position: absolute; top: .4rem; }
  .primary-navigation {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    padding: 1.2rem max(1.5rem, calc((100vw - 86rem) / 2)) 1.8rem;
    color: var(--white);
    background: rgba(40,44,46,.99);
    border-top: 1px solid rgba(255,255,255,.13);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .primary-navigation.is-open { display: flex; }
  .primary-navigation a { width: 100%; padding: .7rem 0; font-size: .68rem; }
  .primary-navigation a::after { display: none; }
  .header-buy { display: none; }
  .hero { min-height: 74svh; }
  .story-layout, .panorama, .play-section, .contact-invite, .support-contact { grid-template-columns: 1fr; }
  .trailer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .panorama-frame { min-height: min(65vw, 30rem); }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
  .support-hero { min-height: 29rem; }
  .support-list > div { grid-template-columns: 1fr; gap: .4rem; }
}

@media (max-width: 850px) and (orientation: portrait) {
  body::before {
    background-position: center, center top;
    background-size: auto, auto 82vh;
  }
}

@media (max-width: 600px) {
  :root { --page: calc(100vw - 2rem); --text: calc(100vw - 2rem); }
  .hero { min-height: calc(92svh - var(--header-height)); }
  .hero-title { width: min(31rem, 88vw); }
  .hero-intro { max-width: 31rem; padding: 0 .25rem; }
  .hero-actions { width: 100%; align-items: center; flex-direction: column; }
  .hero-button { width: min(18rem, 100%); }
  .story-layout { gap: 2rem; }
  .awards-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .award { min-height: 13rem; padding: .7rem; }
  .gallery-heading { align-items: flex-start; flex-direction: column; }
  .gallery-grid { gap: .4rem; }
  .play-copy { padding: 4rem 1rem 5rem; }
  .site-footer { padding-right: 1rem; padding-left: 1rem; }
  .support-hero { padding-right: 1rem; padding-left: 1rem; }
  .support-main { padding-right: 1rem; padding-left: 1rem; }
  .support-contact { margin-right: -1rem; margin-left: -1rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
