:root {
  --color-black: #0a0a0b;
  --color-ink: #171717;
  --color-white: #ffffff;
  --color-cream: #f7f2e9;
  --color-muted: #d9d1c5;
  --color-red: #d71920;
  --color-red-dark: #9e1117;
  --color-steel: #262626;
  --shadow-strong: 0 24px 70px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 20px 55px rgba(10, 10, 11, 0.12);
  --radius-large: 32px;
  --radius-medium: 22px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  color: var(--color-ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at 15% 10%, rgba(215, 25, 32, 0.2), transparent 28rem),
    linear-gradient(135deg, #fffaf0 0%, #f3eadc 45%, #ffffff 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(45deg, rgba(10, 10, 11, 0.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(10, 10, 11, 0.05) 25%, transparent 25%);
  background-size: 18px 18px;
}

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

img,
svg {
  max-width: 100%;
}

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: 1rem;
  overflow-x: hidden;
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 0.85rem;
  color: var(--color-white);
  background: rgba(10, 10, 11, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

@media (min-width: 981px) {
  body {
    padding-top: 6.5rem;
  }

  .site-header-shell {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 70;
    display: block;
    padding-top: 1rem;
  }

  .site-header {
    position: relative;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand span:last-child {
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 50%;
  place-items: center;
  font-family: "Bahnschrift Condensed", "Arial Narrow", "Impact", sans-serif;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  font-weight: 700;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
}

.header-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
}

.header-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--color-white);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.header-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.header-toggle span:nth-child(2) {
  transform: translateY(0);
}

.header-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-menu-open .header-toggle span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.site-header.is-menu-open .header-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .header-toggle span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.nav-links a,
.site-footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--color-red);
}

.header-cta {
  padding: 0.8rem 1.1rem;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll[data-reveal="left"] {
  transform: translate3d(-34px, 0, 0);
}

.reveal-on-scroll[data-reveal="right"] {
  transform: translate3d(34px, 0, 0);
}

.reveal-on-scroll[data-reveal="zoom"] {
  transform: translate3d(0, 26px, 0) scale(0.975);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 6rem 0;
}

main,
section {
  max-width: 100%;
}

main {
  overflow-x: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 470px);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100vh - 92px);
  padding-top: 4.5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--color-red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bahnschrift Condensed", "Arial Narrow", "Impact", sans-serif;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 10vw, 8.5rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(2rem, 3vw, 2.65rem);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  max-width: 680px;
  margin: 1.35rem 0 0;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 900;
}

.hero-copy {
  max-width: 100%;
  overflow-x: hidden;
}

.hero-line {
  display: inline;
}

.hero > *,
.split-section > *,
.trailer-section > *,
.contact-section > *,
.section-heading > *,
.form-row > *,
.legal-contact > * {
  min-width: 0;
}

.hero-text,
.section-heading p,
.trailer-content > p,
.contact-copy > p {
  max-width: 660px;
  color: #3f3a35;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--color-white);
  background: var(--color-red);
  box-shadow: 0 16px 36px rgba(215, 25, 32, 0.32);
}

.button-primary:hover {
  background: var(--color-red-dark);
}

.button-secondary {
  color: var(--color-black);
  background: var(--color-white);
  border: 2px solid rgba(10, 10, 11, 0.12);
}

.hero-card {
  position: relative;
  display: grid;
  width: min(100%, 470px);
  aspect-ratio: 2 / 3;
  padding: 0.65rem;
  place-items: center;
  justify-self: center;
  align-self: center;
  overflow: hidden;
  color: var(--color-white);
  background: linear-gradient(180deg, #111214 0%, #050505 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
}

.hero-logo-image {
  position: absolute;
  inset: 0.65rem;
  z-index: 0;
  width: calc(100% - 1.3rem);
  height: calc(100% - 1.3rem);
  border-radius: 26px;
  background: #090909;
  object-fit: cover;
  object-position: center center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  filter: saturate(1.03) contrast(1.02);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto 2rem;
  overflow: hidden;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.intro-strip div {
  padding: 1.6rem;
  background: var(--color-black);
}

.intro-strip strong {
  display: block;
  font-family: "Bahnschrift Condensed", "Arial Narrow", "Impact", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.intro-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.split-section,
.trailer-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.content-card,
.offer-card,
.event-card,
.contact-form {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 10, 11, 0.1);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.content-card {
  padding: clamp(1.6rem, 4vw, 3rem);
  font-size: 1.08rem;
}

.content-card p:first-child {
  margin-top: 0;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.offer-card {
  position: relative;
  min-height: 330px;
  padding: 1.6rem;
  overflow: hidden;
}

.offer-card::after {
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  content: "";
  background: var(--color-red);
  border-radius: 50%;
  opacity: 0.12;
}

.offer-card.featured {
  color: var(--color-white);
  background: var(--color-black);
}

.offer-card.featured p,
.event-card-dark p {
  color: rgba(255, 255, 255, 0.94);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 4rem;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 50%;
  font-family: "Bahnschrift Condensed", "Arial Narrow", "Impact", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.offer-card p,
.event-card p {
  color: #514a43;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.event-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: 1.6rem;
}

.event-card-dark {
  color: var(--color-white);
  background:
    linear-gradient(145deg, rgba(215, 25, 32, 0.9), rgba(215, 25, 32, 0.15) 42%, transparent 42%),
    var(--color-black);
  transform: translateY(-1.25rem);
}

.event-kicker {
  margin: 0 0 1.2rem;
  color: var(--color-red);
  font-weight: 900;
  text-transform: uppercase;
}

.event-card-dark .event-kicker {
  color: var(--color-white);
}

.event-card.event-card-dark h3,
.event-card.event-card-dark a {
  color: #ffffff !important;
}

.event-card.event-card-dark .event-size,
.event-card.event-card-dark p {
  color: rgba(255, 255, 255, 0.94) !important;
  opacity: 1 !important;
}

.event-card.event-card-dark .event-size {
  font-weight: 900;
}

.event-card-dark-contrast,
.event-card-dark-contrast h3,
.event-card-dark-contrast .event-kicker,
.event-card-dark-contrast .event-size,
.event-card-dark-contrast .event-copy-light,
.event-card-dark-contrast a {
  color: #ffffff !important;
}

.event-size {
  margin: 1rem 0;
  font-weight: 900;
}

.event-card a {
  margin-top: auto;
  color: var(--color-red);
  font-weight: 900;
}

.event-card-dark a {
  color: var(--color-white);
}

.trailer-section {
  align-items: center;
}

.trailer-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
  border: 8px solid var(--color-white);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-strong);
}

.trailer-gallery::before {
  position: absolute;
  inset: 0.7rem;
  z-index: 2;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  pointer-events: none;
}

.trailer-gallery__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.trailer-gallery__slide.is-active {
  opacity: 1;
}

.trailer-gallery__slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  image-rendering: auto;
  backface-visibility: hidden;
  filter: saturate(1.04) contrast(1.04);
  transform: translateZ(0);
}

.trailer-gallery__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.trailer-gallery__overlay {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.trailer-gallery__eyebrow {
  margin: 0;
  padding: 0.6rem 0.9rem;
  color: var(--color-white);
  background: rgba(10, 10, 11, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.trailer-gallery__dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  background: rgba(10, 10, 11, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.trailer-gallery__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.trailer-gallery__dots button.is-active {
  background: var(--color-red);
  transform: scale(1.2);
}

.spec-list {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(10, 10, 11, 0.1);
  border-radius: 18px;
}

.spec-list dt {
  font-weight: 900;
}

.spec-list dd {
  margin: 0;
  color: #514a43;
}

.contact-section {
  align-items: stretch;
  padding-bottom: 4rem;
}

.contact-copy {
  padding: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-white);
  background: var(--color-black);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-strong);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.6rem;
}

.contact-meta a {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  padding-bottom: 0.15rem;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.contact-meta span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.contact-note {
  margin-top: 2rem;
  padding: 1rem;
  color: var(--color-black);
  background: var(--color-white);
  border-left: 6px solid var(--color-red);
  border-radius: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  color: var(--color-black);
  background: var(--color-white);
  border: 2px solid rgba(10, 10, 11, 0.14);
  border-radius: 16px;
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.14);
}

.form-hint {
  margin: 0;
  color: #625a51;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto 1rem;
  padding: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-black);
  border-radius: 22px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  overflow-wrap: anywhere;
}

.footer-button {
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  transition: color 180ms ease;
}

.footer-button:hover {
  color: var(--color-red);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  right: auto;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  width: min(calc(100vw - 2rem), 1040px);
  margin: 0;
  padding: 1.25rem;
  color: var(--color-white);
  background: rgba(10, 10, 11, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cookie-banner__content p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}

.cookie-banner__content a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cookie-banner__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.legal-body {
  min-height: 100vh;
}

.legal-header .nav-links {
  display: flex;
}

.legal-main {
  width: min(calc(100% - 2rem), 980px);
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
}

.legal-hero {
  margin-bottom: 1.5rem;
}

.legal-note,
.legal-card {
  margin-bottom: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 10, 11, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.legal-note {
  border-left: 6px solid var(--color-red);
}

.legal-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  text-transform: none;
  letter-spacing: -0.02em;
}

.legal-card h3 {
  margin: 2rem 0 0.7rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.08;
  text-transform: none;
  letter-spacing: -0.01em;
}

.legal-card h3:first-of-type {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #403933;
  line-height: 1.72;
}

.legal-card ul,
.legal-card ol {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-card li + li {
  margin-top: 0.45rem;
}

.legal-card a {
  color: var(--color-red-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.legal-contact {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.thanks-card {
  max-width: 760px;
  margin: 0 auto;
}

.thanks-card .button {
  margin-top: 1rem;
}

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body {
    padding-top: 6.35rem;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
  }

  main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .site-header-shell {
    position: fixed;
    top: max(0.35rem, env(safe-area-inset-top));
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    max-width: calc(100vw - 1.5rem);
    z-index: 80;
    display: block;
    padding-top: 0;
    overflow: visible;
  }

  .site-header {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-width: 0;
    flex-wrap: nowrap;
    align-items: center;
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand,
  .header-menu,
  .hero > *,
  .split-section > *,
  .trailer-section > *,
  .contact-section > * {
    min-width: 0;
  }

  .header-toggle {
    position: relative;
    display: inline-flex;
    margin-left: auto;
  }

  .header-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    margin-left: 0;
    padding: 0.8rem;
    background: rgba(10, 10, 11, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
  }

  .site-header.is-menu-open .header-menu {
    display: flex;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    font-size: 0.92rem;
  }

  .nav-links a {
    padding: 0.78rem 0.95rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
  }

  .header-cta {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .hero,
  .split-section,
  .section-heading,
  .trailer-section,
  .contact-section {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
    max-width: 100%;
  }

  .hero-card {
    width: min(100%, 430px);
  }

  .offer-grid,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: auto;
  }

  .event-card-dark {
    transform: none;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    max-width: calc(100vw - 1.5rem);
  }

  .cookie-banner__actions {
    justify-content: flex-start;
  }

  .legal-header .nav-links {
    display: flex;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.7rem;
    gap: 0.75rem;
    border-radius: 22px;
  }

  .brand {
    gap: 0.6rem;
    min-width: 0;
    max-width: calc(100% - 3.5rem);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .brand span:last-child {
    display: inline;
    max-width: 8.5rem;
    font-size: 0.86rem;
    line-height: 1.1;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .header-toggle {
    width: 42px;
    height: 42px;
  }

  .header-menu {
    top: calc(100% + 0.5rem);
    padding: 0.7rem;
    border-radius: 20px;
  }

  .nav-links {
    font-size: 0.88rem;
  }

  .nav-links a {
    padding: 0.72rem 0.85rem;
    border-radius: 14px;
  }

  .header-cta {
    min-height: 48px;
    padding: 0.8rem 0.95rem;
    font-size: 0.9rem;
  }

  .section {
    width: min(calc(100% - 1rem), var(--max-width));
    max-width: 100%;
    padding: 3.25rem 0;
    overflow-x: hidden;
  }

  .home-page .section,
  .home-page .intro-strip,
  .home-page .site-footer {
    width: min(calc(100% - 2rem), var(--max-width));
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 7.2vw, 2.02rem);
    line-height: 0.94;
    letter-spacing: -0.01em;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  h3 {
    font-size: clamp(1.45rem, 6.2vw, 1.9rem);
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .hero-actions,
  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    padding-right: 0;
    overflow-x: hidden;
  }

  .hero-line {
    display: block;
  }

  .hero-copy .eyebrow,
  .hero-copy .hero-subtitle,
  .hero-copy .hero-text {
    max-width: 100%;
  }

  .hero {
    overflow-x: hidden;
  }

  .home-page .hero {
    gap: 0.95rem;
  }

  .home-page .hero-card {
    display: grid;
    width: min(100%, 18.5rem);
    margin: 0 auto;
  }

  .intro-strip,
  .site-footer,
  .cookie-banner,
  main {
    overflow-x: hidden;
  }

  .intro-strip,
  .site-footer,
  .legal-main {
    width: min(calc(100% - 1rem), var(--max-width));
    max-width: 100%;
  }

  .site-header-shell,
  .site-header,
  .header-menu,
  .section,
  .intro-strip,
  .site-footer,
  .cookie-banner,
  .legal-main {
    max-width: calc(100vw - 1rem);
  }

  .home-page .intro-strip {
    margin-bottom: 1.4rem;
    border-radius: 24px;
  }

  .home-page .intro-strip div {
    padding: 1.2rem 1.25rem;
  }

  .home-page .intro-strip strong {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .home-page .intro-strip span {
    font-size: 0.88rem;
  }

  .hero-subtitle,
  .hero-text,
  .button,
  .section-heading p,
  .content-card p,
  .event-card p,
  .spec-list dd,
  .legal-card p,
  .legal-card li {
    overflow-wrap: anywhere;
  }

  .hero-card {
    width: min(100%, 100%);
    padding: 0.5rem;
    border-radius: 28px;
  }

  .hero-logo-image {
    inset: 0.5rem;
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    border-radius: 22px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
  }

  .form-row,
  .legal-contact {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding: 1.4rem;
    border-radius: 24px;
  }

  .contact-copy h2,
  .section-heading h2,
  .split-section h2,
  .trailer-content h2 {
    font-size: clamp(1.85rem, 9.4vw, 2.45rem);
    line-height: 0.99;
  }

  .hero-subtitle {
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .home-page .hero-text {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .home-page .hero-actions {
    gap: 0.7rem;
    margin-top: 1.3rem;
  }

  .home-page .button {
    min-height: 50px;
    padding: 0.85rem 1rem;
    font-size: 0.96rem;
  }

  .hero-text,
  .section-heading p,
  .trailer-content > p,
  .contact-copy > p,
  .content-card,
  .offer-card p,
  .spec-list dd,
  .form-hint {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .contact-form {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .contact-form label {
    font-size: 0.95rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.9rem;
    font-size: 1rem;
  }

  .event-section {
    padding-top: 3rem;
  }

  .event-grid {
    gap: 0.85rem;
  }

  .event-card {
    min-height: auto;
    padding: 1.2rem;
    border-radius: 20px;
  }

  .event-card h3 {
    line-height: 0.98;
  }

  .event-card p {
    margin: 0.75rem 0 0;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .event-kicker {
    margin-bottom: 0.7rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }

  .event-size {
    margin: 0.8rem 0 0;
    font-size: 0.95rem;
  }

  .event-card a {
    margin-top: 1.15rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(10, 10, 11, 0.08);
  }

  .event-card-dark {
    background: var(--color-black);
  }

  .event-card-dark a {
    border-top-color: rgba(255, 255, 255, 0.14);
  }

  .trailer-gallery {
    aspect-ratio: 4 / 3;
    border-width: 6px;
  }

  .trailer-gallery::before {
    inset: 0.5rem;
    border-radius: 20px;
  }

  .trailer-gallery__slide img {
    filter: none;
  }

  .trailer-gallery__overlay {
    right: 0.85rem;
    bottom: 0.85rem;
    left: 0.85rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .trailer-gallery__eyebrow {
    display: none;
  }

  .trailer-gallery__dots {
    padding: 0.45rem 0.6rem;
    background: rgba(10, 10, 11, 0.42);
  }

  .site-footer {
    width: min(calc(100% - 1rem), var(--max-width));
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .footer-links a,
  .footer-button {
    font-size: 0.95rem;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    max-width: none;
    max-height: min(60vh, 32rem);
    padding: 0.95rem;
    border-radius: 20px;
    overflow: auto;
    transform: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .cookie-banner__content h2 {
    margin-bottom: 0.45rem;
    font-size: 1.08rem;
    line-height: 1.05;
  }

  .cookie-banner__content p:last-child {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 0.35rem;
  }

  .cookie-banner__actions .button {
    width: 100%;
    min-height: 46px;
    padding: 0.85rem 1rem;
  }

  .legal-main {
    width: min(calc(100% - 1rem), 980px);
    padding: 3rem 0 4rem;
  }

  .legal-hero {
    margin-bottom: 1rem;
  }

  .legal-hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
    line-height: 0.98;
    text-transform: none;
    letter-spacing: -0.03em;
  }

  .legal-note,
  .legal-card {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .legal-card h2 {
    font-size: 1.85rem;
    line-height: 1.06;
  }

  .legal-card h3 {
    margin-top: 1.4rem;
    font-size: 1.35rem;
    line-height: 1.12;
  }

  .legal-card p,
  .legal-card li,
  .legal-note p {
    font-size: 0.97rem;
    line-height: 1.65;
  }

  .legal-card ul,
  .legal-card ol {
    padding-left: 1rem;
  }
}
