/* =========================================================================
   RED FLAG SHOW COMPANY
   ========================================================================= */

/* --- Fonts (self-hosted) ------------------------------------------------ */

/* anton latin-ext */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* anton latin */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* inter latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* inter latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Tokens ------------------------------------------------------------- */

:root {
  --black: #080608;
  --bg: #0a080a;
  --bg-2: #120e10;
  --surface: #181214;
  --surface-2: #21181b;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.22);

  --fg: #f3f3f6;
  --fg-dim: #a6a6b2;
  --fg-faint: #6e6e7b;

  /* Drawn from the owner-supplied logos: deep crimson flag + brighter rim light. */
  --red: #b81e22;
  --red-hi: #e23a3a;
  --red-deep: #4a0c0c;
  --red-glow: rgba(184, 30, 34, 0.5);

  --font-display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --shell: 1280px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --header-h: 68px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 4px;
}

@media (min-width: 900px) {
  :root { --header-h: 88px; }
}

/* --- Reset -------------------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img,
picture,
video,
svg { display: block; max-width: 100%; }

img { height: auto; }

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

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

button { cursor: pointer; background: none; border: 0; }

:focus-visible {
  outline: 2px solid var(--red-hi);
  outline-offset: 3px;
}

::selection {
  background: var(--red);
  color: #fff;
}

/* --- Language switching ------------------------------------------------- */
/* Both languages ship in the HTML; the inactive one is hidden by CSS. */

html[data-lang='hu'] [data-l='en'],
html[data-lang='en'] [data-l='hu'] { display: none !important; }

/* --- Typography --------------------------------------------------------- */

/* Anton sets accented capitals (Á, É, Ő, Ű) far above the cap height, so the
   line height has to stay above 1 or the accents collide with the line above. */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.h-xl { font-size: clamp(2.75rem, 1.4rem + 6.8vw, 8rem); }
.h-lg { font-size: clamp(2.25rem, 1.35rem + 4.4vw, 5rem); }
.h-md { font-size: clamp(1.75rem, 1.25rem + 2.4vw, 3rem); }
.h-sm { font-size: clamp(1.25rem, 1.05rem + 1vw, 1.75rem); }

p { text-wrap: pretty; }

.lead {
  font-size: clamp(1.0625rem, 1rem + 0.5vw, 1.375rem);
  line-height: 1.6;
  color: #dcdce2;
}

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

.text-red { color: var(--red-hi); }

.prose > * + * { margin-top: 1.15em; }
.prose { color: var(--fg-dim); max-width: 68ch; }
.prose strong { color: var(--fg); font-weight: 600; }

/* Running copy only. No hyphenation: browser Hungarian hyphenation is poor.
   Justify on desktop; phones stay left-aligned so long words don't open gaps. */
.prose,
.lead,
.hero__tagline,
.statement p:not(.eyebrow),
.section-head p:not(.eyebrow) {
  hyphens: none;
  -webkit-hyphens: none;
}

@media (min-width: 900px) {
  .prose,
  .lead,
  .hero__tagline,
  .statement p:not(.eyebrow),
  .section-head p:not(.eyebrow) {
    text-align: justify;
    text-justify: inter-word;
  }
}

/* Small red label above a heading */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-hi);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '';
  width: clamp(1.5rem, 4vw, 2.75rem);
  height: 2px;
  background: var(--red);
  flex: none;
}

.eyebrow--center { justify-content: center; }

/* --- Layout ------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--wide { max-width: 1600px; }

.section { padding-block: clamp(4.5rem, 9vw, 9rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--dark { background: var(--black); }
.section--panel { background: var(--bg-2); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p:not(.eyebrow) { margin-top: 1.25rem; }
.section-head--center p { margin-inline: auto; }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -100px;
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus { top: 0.5rem; }

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

/* --- Buttons ------------------------------------------------------------ */

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  --btn-bd: var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.2s var(--ease);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
  z-index: -1;
}

.btn:hover { color: #fff; border-color: var(--red); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: translateY(1px); }

.btn--primary {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  --btn-bd: var(--red);
  box-shadow: 0 10px 40px -12px var(--red-glow);
}

.btn--primary::after { background: #fff; }
.btn--primary:hover { color: var(--black); border-color: #fff; }

.btn--light {
  --btn-bg: var(--fg);
  --btn-fg: var(--black);
  --btn-bd: var(--fg);
}

.btn--sm { padding: 0.7rem 1.25rem; font-size: 0.72rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-row--center { justify-content: center; }

/* Text link with an arrow that slides on hover */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.3s, border-color 0.3s;
}

.arrow-link svg { transition: transform 0.35s var(--ease); flex: none; }
.arrow-link:hover { color: var(--red-hi); border-color: var(--red); }
.arrow-link:hover svg { transform: translateX(5px); }

/* --- Header ------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.is-stuck {
  background: rgba(6, 6, 10, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.site-header__inner {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo lockup: flag mark + REDFLAG wordmark from the owner-supplied assets. */
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.brand__mark {
  width: auto;
  height: 38px;
  flex: none;
  filter: drop-shadow(0 0 10px rgba(184, 30, 34, 0.35));
  transition: transform 0.4s var(--ease), filter 0.4s;
}

.brand:hover .brand__mark {
  transform: rotate(-5deg) scale(1.05);
  filter: drop-shadow(0 0 14px rgba(226, 58, 58, 0.55));
}

.brand__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1;
  min-width: 0;
}

.brand__wordmark {
  width: auto;
  height: 26px;
  display: block;
}

.brand__sub {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding-left: 0.1rem;
}

/* Header brand: flag mark only. The wordmark sits in the hero and the footer. */
.site-header .brand__text { display: none; }

@media (max-width: 899px) {
  .site-header .brand__mark { height: 36px; }
}

@media (min-width: 900px) {
  .brand { gap: 0.9rem; }
  .brand__mark { height: 52px; }
  .brand__wordmark { height: 36px; }
  .brand__sub { font-size: 0.5625rem; letter-spacing: 0.38em; }
}

/* Desktop navigation */
.nav { display: none; }

@media (min-width: 900px) {
  .nav {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2.25rem);
  }
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.25s;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover { color: var(--fg); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

/* "page" marks the current subpage, "location" the section currently scrolled
   into view on the one-pager; both read as the active item. */
.nav__link[aria-current] { color: var(--fg); }
.nav__link[aria-current]::after { transform: scaleX(1); transform-origin: left; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language switch */
.lang {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.lang__btn {
  padding: 0.4rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
  transition: color 0.25s, background-color 0.25s;
}

.lang__btn:hover { color: var(--fg); }
.lang__btn[aria-pressed='true'] { background: var(--red); color: #fff; }

.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

/* Burger */
.burger {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 6px;
  margin-right: -0.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) { .burger { display: none; } }

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: transform 0.35s var(--ease), opacity 0.2s;
}

.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--black);
  padding: calc(var(--header-h) + 2.5rem) var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.55s var(--ease);
}

.mobile-nav[data-open='true'] { clip-path: inset(0 0 0 0); }

@media (min-width: 900px) { .mobile-nav { display: none; } }

.mobile-nav__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav__list li {
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
}

.mobile-nav[data-open='true'] .mobile-nav__list li {
  animation: navIn 0.5s var(--ease) forwards;
}

.mobile-nav__list li:nth-child(1) { animation-delay: 0.12s; }
.mobile-nav__list li:nth-child(2) { animation-delay: 0.18s; }
.mobile-nav__list li:nth-child(3) { animation-delay: 0.24s; }
.mobile-nav__list li:nth-child(4) { animation-delay: 0.3s; }
.mobile-nav__list li:nth-child(5) { animation-delay: 0.36s; }

@keyframes navIn {
  to { opacity: 1; transform: none; }
}

.mobile-nav__link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 1.05rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 11vw, 3.25rem);
  text-transform: uppercase;
  line-height: 1.15;
}

.mobile-nav__label { transition: color 0.25s; }
.mobile-nav__link:hover .mobile-nav__label,
.mobile-nav__link[aria-current] .mobile-nav__label { color: var(--red-hi); }

.mobile-nav__num {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  flex: none;
}

.mobile-nav__foot { margin-top: auto; padding-top: 2.5rem; }

/* --- Hero --------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--black);
}

@supports not (height: 100svh) {
  .hero { min-height: 100vh; }
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__media video.is-ready { opacity: 1; }

/* Dark + red grade so the footage sits inside the brand palette */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 15%, rgba(184, 30, 34, 0.28) 0%, transparent 62%),
    linear-gradient(to bottom, rgba(8, 6, 8, 0.72) 0%, rgba(8, 6, 8, 0.42) 34%, rgba(8, 6, 8, 0.82) 78%, var(--bg) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding: calc(var(--header-h) + 3rem) var(--gutter) clamp(3.5rem, 9vh, 6rem);
}

.hero__title {
  font-size: 1rem;
  line-height: 1.1;
  padding-top: 0;
}

.hero__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero__logo-mark {
  width: auto;
  height: clamp(4.25rem, 18vw, 6.5rem);
  filter: drop-shadow(0 0 18px rgba(184, 30, 34, 0.45));
}

.hero__logo-word {
  width: auto;
  height: clamp(2.35rem, 10vw, 3.75rem);
  max-width: min(86vw, 26rem);
}

.hero__logo-sub {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(0.62rem, 2.4vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

@media (min-width: 900px) {
  .hero__logo { gap: 1.15rem; }
  .hero__logo-mark { height: clamp(5.5rem, 9vw, 8rem); }
  .hero__logo-word {
    height: clamp(3.25rem, 5.2vw, 5rem);
    max-width: min(70vw, 36rem);
  }
  .hero__logo-sub { font-size: 0.875rem; letter-spacing: 0.46em; }
}

.hero__tagline {
  margin-top: 1.5rem;
  max-width: 46ch;
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.375rem);
  color: #d6d6de;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.hero__meta .dot { width: 4px; height: 4px; background: var(--red); border-radius: 50%; }

.hero__actions {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__actions .btn { min-width: 168px; }

@media (min-width: 640px) {
  .hero__actions .btn { min-width: 200px; padding-block: 1.1rem; }
}

.hero__toggle {
  position: absolute;
  right: var(--gutter);
  bottom: 1.5rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 6, 10, 0.45);
  color: var(--fg-dim);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.3s, background-color 0.3s, border-color 0.3s, color 0.3s;
}

.hero__toggle:hover,
.hero__toggle:focus-visible {
  opacity: 1;
  color: var(--fg);
  border-color: var(--line-strong);
  background: rgba(6, 6, 10, 0.75);
}

.hero__toggle svg { color: var(--red-hi); flex: none; }

/* Only the label and icon matching the current state are kept in the flow. */
.hero__toggle[data-playing='true'] .is-play,
.hero__toggle[data-playing='false'] .is-pause { display: none; }

/* Phone: show the full 16:9 frame as a band, copy underneath — not a portrait crop. */
@media (max-width: 899px) {
  .hero {
    min-height: 100svh;
    justify-content: flex-start;
  }

  .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex: none;
    background: var(--black);
  }

  .hero__media img,
  .hero__media video {
    object-fit: cover;
  }

  .hero__scrim {
    position: absolute;
    inset: auto;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    background:
      linear-gradient(to bottom, rgba(8, 6, 8, 0.5) 0%, rgba(8, 6, 8, 0.12) 42%, rgba(8, 6, 8, 0.4) 100%);
  }

  .hero__inner {
    padding-top: 1.75rem;
    padding-bottom: 2.75rem;
  }

  .hero__toggle {
    top: calc(var(--header-h) + 10px);
    bottom: auto;
    right: max(12px, var(--gutter));
  }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 3;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

@media (min-width: 900px) and (min-height: 720px) {
  .scroll-cue { display: flex; }
}

.scroll-cue__line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: cue 2.2s var(--ease) infinite;
}

@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Page header (inner pages) ------------------------------------------ */

.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3.5rem, 10vw, 7rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
  background: var(--black);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6, 6, 10, 0.85) 0%, rgba(6, 6, 10, 0.45) 65%, rgba(6, 6, 10, 0.3) 100%),
    linear-gradient(to bottom, rgba(6, 6, 10, 0.8), rgba(6, 6, 10, 0.4) 40%, var(--bg));
}

.page-hero .shell { position: relative; z-index: 1; }
.page-hero__title { max-width: 16ch; }
.page-hero p:not(.eyebrow) { margin-top: 1.5rem; max-width: 62ch; }

/* Breadcrumb */
.crumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.crumbs a:hover { color: var(--red-hi); }

/* --- Marquee ------------------------------------------------------------ */

.marquee {
  border-block: 1px solid var(--line);
  background: var(--black);
  padding-block: 1.15rem;
  overflow: hidden;
  display: flex;
  user-select: none;
}

.marquee__track {
  display: flex;
  flex: none;
  align-items: center;
  animation: marquee 38s linear infinite;
}

/* Both spans are identical, so translating the track by -50% loops seamlessly. */
.marquee__track > span {
  flex: none;
  padding-right: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--fg-dim);
}

.marquee__flag {
  display: inline-block;
  width: 1.15em;
  height: 0.8em;
  margin-inline: 1.4rem;
  vertical-align: -0.05em;
  background: url('../img/logo-mark-sm.png') center / contain no-repeat;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee:hover .marquee__track { animation-play-state: paused; }

/* --- Stats -------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 800px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  background: var(--bg);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  text-align: center;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 1.5rem + 3vw, 4rem);
  line-height: 1;
  color: var(--fg);
}

.stat__num sup { font-size: 0.45em; color: var(--red-hi); vertical-align: super; }

.stat__label {
  margin-top: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* --- Feature cards ------------------------------------------------------ */

.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.card::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 40px;
  height: 40px;
  color: var(--red-hi);
  margin-bottom: 1.25rem;
}

.card h3 { font-size: 1.375rem; margin-bottom: 0.85rem; }
.card p { color: var(--fg-dim); font-size: 0.9375rem; }

/* --- Split (image + text) ----------------------------------------------- */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
}

.split__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.split__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.split__media:hover img { transform: scale(1.04); }

/* Where the text column runs long, let the photo grow to the full row height
   instead of leaving dead space beside it. */
@media (min-width: 900px) {
  .split--fill { align-items: stretch; }
  .split--fill .split__media img { height: 100%; aspect-ratio: auto; }
}

.split__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 10, 0.5), transparent 55%);
  pointer-events: none;
}

/* --- Quote / statement -------------------------------------------------- */

.statement {
  position: relative;
  padding-left: clamp(1.25rem, 3vw, 2.25rem);
  border-left: 3px solid var(--red);
}

.statement__title { font-size: clamp(2rem, 1.4rem + 3vw, 3.75rem); max-width: 12ch; }
.statement p:not(.eyebrow) { margin-top: 1.25rem; color: var(--fg-dim); max-width: 46ch; }

/* --- Storyline (Show page) ---------------------------------------------- */

.story {
  counter-reset: scene;
  list-style: none;
  padding: 0;
  margin: 0;
}

.story__item {
  position: relative;
  padding-block: 0.85rem;
  border-top: 1px solid var(--line);
}

.story__item:first-child {
  border-top: 0;
  padding-top: 0;
}

@media (min-width: 900px) {
  .story__item { padding-block: clamp(1rem, 2.2vw, 1.75rem); }
}

.story__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.story__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 0.6s;
  filter: saturate(0.92);
}

.story__item:hover .story__media img { transform: scale(1.03); filter: saturate(1.05); }

.story__body { max-width: 46ch; }

.story__num {
  counter-increment: scene;
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 0.85rem;
}

.story__num::before { content: counter(scene, decimal-leading-zero); }

.story__text {
  font-size: clamp(1.125rem, 1rem + 0.8vw, 1.75rem);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--fg);
}

.story__body,
.gallery__cap,
.lightbox__foot { display: none; }

/* --- Gallery ------------------------------------------------------------ */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  grid-auto-flow: dense;
  gap: 0.75rem;
}

@media (min-width: 720px) { .gallery { gap: 1rem; } }

/* Fixed columns on the home page so the six teaser tiles always fill their rows */
.gallery--teaser { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 900px) {
  .gallery--teaser { grid-template-columns: repeat(3, 1fr); }
}

.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  aspect-ratio: 16 / 9;
}

/* A few tiles span two columns for a more editorial rhythm. They also span two
   rows so the row height stays uniform and no empty cells are left behind;
   two columns over two rows works out to roughly 16:9 again. */
@media (min-width: 900px) {
  .gallery__item--wide {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), opacity 0.5s;
  filter: saturate(0.9);
}

.gallery__item:hover img { transform: scale(1.06); filter: saturate(1.05); }

.gallery__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg);
}

@media (hover: none) {
  .gallery__item:hover img { transform: none; filter: saturate(0.9); }
  .gallery__item:hover .gallery__zoom { opacity: 0; transform: none; }
}

.gallery__zoom {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: rgba(6, 6, 10, 0.6);
  color: var(--fg);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}

.gallery__item:hover .gallery__zoom { opacity: 1; transform: none; }

/* --- Lightbox ----------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(4, 4, 7, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.lightbox[data-open='true'] { opacity: 1; visibility: visible; }

.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--gutter);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.lightbox__stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 clamp(0.5rem, 3vw, 4.5rem);
  min-height: 0;
}

.lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__foot {
  display: none;
  padding: 1rem var(--gutter) 1.75rem;
  text-align: center;
  color: var(--fg-dim);
  font-size: 0.9375rem;
  min-height: 3.5rem;
}

.lightbox__btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--fg);
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
  flex: none;
}

.lightbox__btn:hover { border-color: var(--red); background: var(--red); color: #fff; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.lightbox__nav--prev { left: 0; }
.lightbox__nav--next { right: 0; }

@media (max-width: 640px) {
  .lightbox__nav { top: auto; bottom: -0.5rem; transform: none; }
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
}

/* --- Team --------------------------------------------------------------- */

/* 12 performers: 2 / 3 / 4 columns so every breakpoint fills complete rows. */
.team {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .team { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1100px) {
  .team { grid-template-columns: repeat(4, 1fr); }
}

.team__card { position: relative; }

@media (hover: none) {
  .team__card { cursor: pointer; }
}

.team__figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  aspect-ratio: 3 / 4;
}

/* Clothed portrait swaps to the shirtless photo on hover / focus / tap. */
.team__figure > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.55s var(--ease), transform 0.9s var(--ease);
}

.team__figure img.is-alt { opacity: 0; }

.team__card.is-active .team__figure img.is-portrait { opacity: 0; }
.team__card.is-active .team__figure img.is-alt { opacity: 1; transform: scale(1.04); }

/* Hover only on real pointers. On touch, :hover sticks after the first tap
   and would block toggling back to the clothed portrait. */
@media (hover: hover) and (pointer: fine) {
  .team__card:hover .team__figure img.is-portrait,
  .team__card:focus-within .team__figure img.is-portrait { opacity: 0; }

  .team__card:hover .team__figure img.is-alt,
  .team__card:focus-within .team__figure img.is-alt { opacity: 1; transform: scale(1.04); }
}

.team__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 10, 0.78), transparent 42%);
}

.team__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.15rem 1.15rem 1.05rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 0.95rem + 0.7vw, 1.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

@media (max-width: 699px) {
  .team__name { font-size: 1.1rem; padding: 0.9rem; letter-spacing: 0.06em; }
}

/* --- Contact ------------------------------------------------------------ */

.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.contact-list dd { margin: 0; }

.contact-list dt,
.contact-item__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 0.4rem;
}

.contact-item__value {
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  font-weight: 500;
}

a.contact-item__value { transition: color 0.25s; }
a.contact-item__value:hover { color: var(--red-hi); }

.socials { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.social {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--fg-dim);
  transition: color 0.3s, border-color 0.3s, background-color 0.3s, transform 0.3s var(--ease);
}

.social:hover { color: #fff; border-color: var(--red); background: var(--red); transform: translateY(-3px); }

/* --- CTA band ----------------------------------------------------------- */

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--black);
  text-align: center;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }

.cta-band__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 120% at 50% 50%, rgba(184, 30, 34, 0.38), rgba(8, 6, 8, 0.92) 70%);
}

.cta-band .shell { position: relative; z-index: 1; }
/* The eyebrow is a <p> too, so it has to be kept out of the body-copy rule —
   otherwise it loses the bottom margin that keeps the accents of the heading
   below it from reaching into the eyebrow's own text. */
.cta-band p:not(.eyebrow) { margin: 1.5rem auto 0; max-width: 54ch; color: var(--fg-dim); }
.cta-band .btn-row { margin-top: 2.5rem; }

/* --- Footer ------------------------------------------------------------- */

.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}

.footer__title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 1.25rem;
}

.footer__list { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer__list a { color: var(--fg-dim); font-size: 0.9375rem; transition: color 0.25s, padding-left 0.25s; }
.footer__list a:hover { color: var(--red-hi); padding-left: 4px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--fg-faint);
}

.footer__bottom a:hover { color: var(--fg-dim); }

.to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.to-top:hover { color: var(--red-hi); }

/* --- Scroll reveal ------------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.reveal[data-delay='1'] { transition-delay: 0.08s; }
.reveal[data-delay='2'] { transition-delay: 0.16s; }
.reveal[data-delay='3'] { transition-delay: 0.24s; }

/* No JS: never leave content hidden */
.no-js .reveal { opacity: 1; transform: none; }

/* --- Motion / print ----------------------------------------------------- */

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

  /* Stop looping / continuous motion, but keep short one-shot reveals —
     the OS "reduce motion" setting was wiping every transition and made the
     site feel frozen (including the stats count-up and scroll reveals). */
  .marquee__track,
  .scroll-cue__line { animation: none !important; }

  .reveal {
    transform: none;
    transition: opacity 0.4s ease;
  }

  .team__figure > img { transition: opacity 0.25s ease; }
  .team__card.is-active .team__figure img.is-alt { transform: none; }
}

@media (prefers-reduced-motion: reduce) and (hover: hover) and (pointer: fine) {
  .team__card:hover .team__figure img.is-alt,
  .team__card:focus-within .team__figure img.is-alt { transform: none; }
}

@media print {
  .site-header, .mobile-nav, .hero__media, .scroll-cue, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}
