:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --charcoal: #151515;
  --graphite: #262626;
  --steel: #b4b7b5;
  --steel-dark: #555957;
  --silver: #e4e5df;
  --white: #f7f6f1;
  --muted: #9a9a94;
  --red: #6e1117;
  --line: rgba(247, 246, 241, 0.18);
  --line-strong: rgba(247, 246, 241, 0.38);
  --header-h: 64px;
  --header-square: 44px;
  --signal-h: 46px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.03), transparent 26%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 96px),
    var(--black);
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.09;
  background-image:
    linear-gradient(0deg, transparent 0 48%, rgba(255, 255, 255, 0.45) 49%, transparent 50%),
    repeating-linear-gradient(90deg, transparent 0 9px, rgba(255, 255, 255, 0.15) 10px 11px);
  background-size: 100% 7px, 23px 100%;
  mix-blend-mode: overlay;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 19;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(112deg, transparent 0 21%, rgba(255, 255, 255, 0.06) 22%, transparent 25%),
    linear-gradient(112deg, transparent 0 67%, rgba(255, 255, 255, 0.035) 68%, transparent 71%);
  transform: translate3d(calc(var(--mx, 0) * 16px), calc(var(--my, 0) * 10px), 0);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

::selection {
  background: var(--white);
  color: var(--black);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(12px);
  animation: page-enter 1600ms 2850ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.intro-sequence {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.76), transparent 20%),
    radial-gradient(circle at 50% 48%, rgba(209, 211, 205, 0.34), transparent 38%),
    linear-gradient(115deg, #050505 0%, #171717 22%, #e5e4dc 49%, #3c3f3d 68%, #060606 100%);
  animation: intro-veil 4100ms cubic-bezier(0.7, 0, 0.2, 1) forwards;
}

.intro-sequence::before,
.intro-sequence::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.intro-sequence::before {
  inset: -30%;
  background:
    repeating-linear-gradient(104deg, transparent 0 42px, rgba(255, 255, 255, 0.11) 43px, transparent 44px 102px),
    conic-gradient(from 90deg at 50% 50%, transparent, rgba(255, 255, 255, 0.28), transparent, rgba(0, 0, 0, 0.5), transparent);
  mix-blend-mode: overlay;
  animation: intro-steel-sweep 3400ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.intro-sequence::after {
  left: -18%;
  right: -18%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.72);
  transform: rotate(-11deg) translateX(-120%);
  animation: intro-flash 1900ms 950ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.intro-logo {
  width: min(52vw, 500px);
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transform: scale(0.66);
  animation: intro-logo 3100ms 360ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.intro-wordmark {
  position: absolute;
  bottom: 12%;
  display: grid;
  gap: 8px;
  color: rgba(247, 246, 241, 0.78);
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  animation: intro-wordmark 2100ms 860ms ease forwards;
}

.intro-wordmark span {
  font-size: 0.86rem;
  font-weight: 900;
}

.intro-wordmark strong {
  color: rgba(247, 246, 241, 0.5);
  font-size: 0.7rem;
}

.is-intro-complete .intro-sequence {
  display: none;
}

.is-intro-complete .page-shell {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: var(--header-h);
  padding: 10px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.34));
  backdrop-filter: blur(18px);
}

.site-header::before,
.site-header::after {
  display: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-emblem {
  width: var(--header-square);
  height: var(--header-square);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.98) 0 34%, rgba(229, 229, 224, 0.92) 58%, rgba(155, 158, 154, 0.86) 100%);
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.28),
    0 12px 34px rgba(255, 255, 255, 0.09),
    0 16px 38px rgba(0, 0, 0, 0.4);
}

.brand-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transform: none;
}

.brand-mark strong,
.brand-mark em {
  display: block;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark strong {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.brand-mark em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  font-style: normal;
  text-transform: uppercase;
}

.nav-links {
  position: absolute;
  top: calc(100% + 1px);
  left: 16px;
  right: 16px;
  z-index: 46;
  display: grid;
  gap: 0;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(5, 5, 5, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
  color: rgba(247, 246, 241, 0.74);
  font-size: 0.78rem;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 240ms ease,
    visibility 240ms ease,
    transform 320ms cubic-bezier(0.19, 1, 0.22, 1);
}

.is-nav-open .nav-links {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  z-index: 47;
  width: var(--header-square);
  height: var(--header-square);
  margin-left: auto;
  padding: 0;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, #ffffff 0%, #bbbeb9 46%, #f2f2ed 100%);
  color: #050505;
  cursor: pointer;
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.28),
    0 12px 28px rgba(0, 0, 0, 0.36);
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: none;
  transform-origin: center;
  transition:
    transform 260ms ease,
    opacity 200ms ease;
}

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

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

.is-nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

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

.is-nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-links a {
  position: relative;
  padding: 15px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links a:last-child {
  border-bottom: 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  content: "";
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - var(--signal-h));
  padding: calc(var(--header-h) + 34px) 22px clamp(24px, 4svh, 46px);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 33%, rgba(0, 0, 0, 0.05) 67%, rgba(0, 0, 0, 0.32) 100%),
    url("assets/reception-hero-new.png") center 48% / cover;
  filter: saturate(0.9) contrast(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04) 0%, rgba(5, 5, 5, 0.58) 100%),
    linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.16) 39%, transparent 40% 100%);
  opacity: 0.88;
}

.hero-steel {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-steel {
  background:
    linear-gradient(112deg, transparent 0 56%, rgba(255, 255, 255, 0.12) 57%, rgba(255, 255, 255, 0.02) 59%, transparent 60%),
    repeating-linear-gradient(96deg, transparent 0 64px, rgba(255, 255, 255, 0.04) 65px, transparent 66px 148px);
}

.hero-steel::before,
.hero-steel::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-steel::before {
  top: 12%;
  right: -18%;
  width: 74%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.84), transparent);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.55);
  transform: rotate(-18deg) translateX(var(--light-shift, 0));
  animation: light-pass 8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.hero-steel::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88)),
    repeating-linear-gradient(108deg, transparent 0 38px, rgba(255, 255, 255, 0.045) 39px, transparent 40px 102px);
}

.hero-copy {
  align-self: end;
  justify-self: start;
  width: min(100%, 720px);
  max-width: 720px;
  min-width: 0;
  padding-top: 0;
  text-align: left;
  transform: translateY(8px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: rgba(247, 246, 241, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--steel);
}

.hero-title-lockup {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 14px 24px;
}

.chrome-title {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0;
  max-width: 11ch;
  color: var(--white);
  font-family: Impact, "Arial Black", Inter, sans-serif;
  font-size: 3.15rem;
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: 0;
  text-transform: uppercase;
}

@supports (-webkit-background-clip: text) {
  .chrome-title::after {
    position: absolute;
    inset: 0;
    content: attr(data-text);
    color: transparent;
    background:
      linear-gradient(96deg, #ffffff 0%, #a4a5a2 16%, #f7f6f1 31%, #5c5d5a 48%, #ffffff 61%, #b7b8b5 73%, #ffffff 100%);
    background-size: 220% 100%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0.9;
    text-shadow: 0 12px 54px rgba(255, 255, 255, 0.11);
    pointer-events: none;
    animation: metal-sheen 7s linear infinite;
  }
}

.hero-subtitle {
  position: relative;
  width: fit-content;
  margin: 0;
  padding: 0 0 10px;
  max-width: min(100%, 320px);
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--silver);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
}

.hero-subtitle::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 82px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0.05));
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
}

.hero-subcopy {
  display: grid;
  gap: 10px;
  max-width: min(100%, 360px);
}

.hero-note {
  max-width: 330px;
  margin: 0;
  color: rgba(247, 246, 241, 0.76);
  font-size: clamp(0.98rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
}

.hero-text {
  width: min(560px, 100%);
  max-width: calc(100vw - 44px);
  margin: 28px 0 0;
  color: rgba(247, 246, 241, 0.72);
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 26px;
}

.primary-link,
.ghost-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.primary-link {
  background:
    linear-gradient(115deg, #ffffff 0%, #a6aaa7 17%, #f4f5ef 32%, #6f7370 52%, #ffffff 72%, #b7bbb8 100%);
  color: #080808;
  box-shadow: 0 16px 46px rgba(255, 255, 255, 0.1);
}

.primary-link::before,
.ghost-link::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 0 33%, rgba(255, 255, 255, 0.65) 50%, transparent 66% 100%);
  transform: translateX(-120%);
  transition: transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.primary-link:hover::before,
.primary-link:focus-visible::before,
.ghost-link:hover::before,
.ghost-link:focus-visible::before {
  transform: translateX(120%);
}

.ghost-link {
  background: rgba(5, 5, 5, 0.5);
  color: var(--white);
}

.hero-index {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 7px;
  color: rgba(247, 246, 241, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.signal-strip {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: var(--signal-h);
  overflow-x: hidden;
  overflow-y: visible;
  border-block: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.1)),
    repeating-linear-gradient(96deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 32px),
    #090909;
  box-shadow:
    0 -18px 54px rgba(0, 0, 0, 0.5),
    0 28px 80px rgba(0, 0, 0, 0.72);
}

.signal-strip::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--signal-h) * -0.9);
  height: calc(var(--signal-h) * 0.9);
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0));
}

.signal-track {
  display: flex;
  min-width: max-content;
  animation: marquee 29s linear infinite;
}

.signal-track span {
  display: inline-flex;
  align-items: center;
  min-height: calc(var(--signal-h) - 2px);
  padding: 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(247, 246, 241, 0.72);
  font-family: Impact, "Arial Black", Inter, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-pad {
  padding: 76px 22px;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.club-news {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(110, 17, 23, 0.2), transparent 34%),
    linear-gradient(180deg, #0a0a0a 0%, #101010 100%);
}

.club-news.is-empty {
  display: none;
}

.club-news::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0 36%, rgba(255, 255, 255, 0.08) 37%, transparent 39%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 88px);
}

.club-news-heading,
.club-news-list {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.club-news-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.club-news-list {
  display: grid;
  gap: 14px;
}

.club-news-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.018)),
    rgba(7, 7, 7, 0.86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.club-news-card span,
.club-news-card small {
  color: var(--steel);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.club-news-card h3 {
  margin: 0;
  color: var(--white);
  font-family: Impact, "Arial Black", Inter, sans-serif;
  font-size: clamp(1.8rem, 7vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.club-news-card p {
  max-width: 780px;
  margin: 0;
  color: rgba(247, 246, 241, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.manifesto {
  position: relative;
  background:
    linear-gradient(180deg, #080808 0%, #0f0f0f 100%),
    linear-gradient(115deg, transparent 0 52%, rgba(255, 255, 255, 0.08) 53%, transparent 56%),
    repeating-linear-gradient(0deg, transparent 0 68px, rgba(255, 255, 255, 0.04) 69px);
}

.manifesto::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 24%, rgba(255, 255, 255, 0.08) 25%, transparent 26%),
    linear-gradient(90deg, transparent, rgba(110, 17, 23, 0.12), transparent);
}

.manifesto-grid {
  position: relative;
  display: grid;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
}

.manifesto h2,
.club-news h2,
.crest-section h2,
.atmosphere h2,
.cinema h2,
.equipment-proof h2,
.membership h2,
.schedule h2,
.gallery-preview h2 {
  margin: 0;
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.crest-section {
  position: relative;
  display: grid;
  gap: 36px;
  align-items: center;
  padding: 82px 22px;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(0, 0, 0, 0.035), transparent 28% 72%, rgba(0, 0, 0, 0.06)),
    repeating-linear-gradient(104deg, transparent 0 52px, rgba(0, 0, 0, 0.035) 53px, transparent 54px 126px),
    #f6f5ef;
  color: var(--black);
  border-block: 1px solid rgba(0, 0, 0, 0.14);
}

.crest-section::before,
.crest-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.crest-section::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent 46%, rgba(255, 255, 255, 0.24)),
    radial-gradient(circle at 31% 50%, rgba(255, 255, 255, 0.95), transparent 31%);
}

.crest-section::after {
  top: 0;
  bottom: 0;
  left: 52%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24), transparent);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.8);
  transform: rotate(16deg);
}

.crest-mark,
.crest-copy {
  position: relative;
  z-index: 1;
}

.crest-mark {
  width: min(76vw, 460px);
  justify-self: center;
  aspect-ratio: 1;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.crest-mark::before {
  display: none;
}

.crest-mark img {
  position: relative;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

.crest-copy {
  display: grid;
  gap: 24px;
}

.crest-copy h2 {
  color: var(--black);
  max-width: 840px;
}

.crest-copy > p:not(.section-kicker) {
  max-width: 610px;
  margin: 0;
  color: rgba(5, 5, 5, 0.66);
  font-size: 1.05rem;
  line-height: 1.7;
}

.steel-specs {
  display: grid;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.steel-specs span {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  color: rgba(5, 5, 5, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-grid {
  display: grid;
  gap: 12px;
}

.experience-grid article {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.2);
  transition:
    border-color 260ms ease,
    transform 420ms cubic-bezier(0.19, 1, 0.22, 1),
    background 260ms ease;
}

.experience-grid article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(110, 17, 23, 0.76));
}

.experience-grid article:hover,
.experience-grid article:focus-within {
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.022)),
    rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.experience-grid span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-grid p {
  margin: 0;
  color: rgba(247, 246, 241, 0.68);
  font-size: 0.94rem;
  line-height: 1.55;
}

.atmosphere {
  background: var(--white);
  color: var(--black);
}

.atmosphere-head {
  padding-bottom: 24px;
}

.atmosphere .section-kicker {
  color: #51514d;
}

.atmosphere h2 {
  color: var(--black);
  max-width: 780px;
}

.atmosphere-statement {
  position: relative;
  min-height: 560px;
  margin: 0 22px 28px;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}

.atmosphere-statement::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.54)),
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.82));
}

.atmosphere-statement img {
  position: absolute;
  inset: 0;
  filter: saturate(0.82) contrast(1.08);
  object-position: center;
  transform: scale(1.02);
}

.atmosphere-statement-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 14px;
  max-width: 680px;
  padding: 26px;
  color: var(--white);
}

.atmosphere-statement-copy span {
  color: rgba(247, 246, 241, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.atmosphere-statement-copy h3 {
  margin: 0;
  font-family: Impact, "Arial Black", Inter, sans-serif;
  font-size: 2.5rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.atmosphere-statement-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(247, 246, 241, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.scene-runway {
  display: grid;
  gap: 14px;
  overflow: visible;
  padding: 0 22px 74px;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.scene-runway::-webkit-scrollbar {
  display: none;
}

.scene {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #111;
  scroll-snap-align: unset;
}

.scene-low {
  min-height: 390px;
  align-self: auto;
}

.scene::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.66)),
    linear-gradient(110deg, transparent 0 43%, rgba(255, 255, 255, 0.18) 44%, transparent 45% 100%);
}

.scene img {
  position: absolute;
  inset: 0;
  filter: saturate(0.88) contrast(1.04);
  transition: filter 520ms ease, transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.scene:hover img,
.scene:focus-within img {
  filter: saturate(1.04) contrast(1.06);
  transform: scale(1.035);
}

.scene-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 9px;
  padding: 22px;
  color: var(--white);
}

.scene-caption span {
  color: rgba(247, 246, 241, 0.64);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scene-caption strong {
  max-width: 12ch;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.cinema {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  background: var(--black);
}

.cinema-early::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 22%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.76) 34%, rgba(5, 5, 5, 0));
}

.cinema img {
  position: absolute;
  inset: 0;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.04) translateY(calc(var(--scroll-y, 0) * -0.03px));
}

.cinema-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.74));
}

.cinema-shade::after {
  position: absolute;
  top: 24%;
  left: -18%;
  width: 74%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.4);
  transform: rotate(-14deg);
  animation: light-pass 9s 1.2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.cinema-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 20px;
  max-width: 600px;
  padding: 90px 22px;
}

.cinema-copy span {
  color: var(--steel);
  font-weight: 900;
}

.cinema-copy p {
  margin: 0;
  color: rgba(247, 246, 241, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.equipment-proof {
  display: grid;
  gap: 38px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 92px),
    #080808;
}

.proof-copy {
  display: grid;
  gap: 22px;
  max-width: 780px;
}

.proof-copy p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(247, 246, 241, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.proof-grid {
  display: grid;
  gap: 16px;
}

.proof-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-card-large {
  min-height: 520px;
}

.proof-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62)),
    linear-gradient(112deg, transparent 0 44%, rgba(255, 255, 255, 0.16) 45%, transparent 47%);
}

.proof-card img {
  position: absolute;
  inset: 0;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.proof-card:hover img,
.proof-card:focus-within img {
  transform: scale(1.035);
}

.proof-card figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
  font-family: Impact, "Arial Black", Inter, sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
}

.membership {
  display: grid;
  gap: 34px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding-inline: clamp(0px, 3vw, 56px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.065), transparent 34%),
    linear-gradient(180deg, rgba(110, 17, 23, 0.14), transparent 54%),
    var(--black);
}

.membership-copy {
  display: grid;
  gap: 22px;
}

.membership-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(247, 246, 241, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.membership-copy .primary-link {
  justify-self: start;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon-link {
  gap: 10px;
}

.icon-link svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.icon-link path {
  fill: currentColor;
}

.icon-link rect,
.icon-link circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.schedule {
  position: relative;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 96px),
    #060606;
}

.schedule-heading {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto 38px;
}

.schedule-heading p:last-child {
  max-width: 660px;
  margin: 0;
  color: rgba(247, 246, 241, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.schedule-grid {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.hours-card,
.course-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.hours-card {
  padding: 24px;
}

.hours-card > span,
.course-panel > span {
  display: block;
  margin-bottom: 18px;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hours-card dl {
  display: grid;
  margin: 0;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hours-card div:last-child {
  border-bottom: 0;
}

.hours-card dt,
.hours-card dd {
  margin: 0;
  font-weight: 850;
  text-transform: uppercase;
}

.hours-card dt {
  color: rgba(247, 246, 241, 0.68);
}

.hours-card dd {
  color: var(--white);
}

.course-panel {
  min-width: 0;
  padding: 24px;
  overflow: hidden;
}

.course-panel > span {
  padding: 0;
}

.course-days {
  display: grid;
  gap: 12px;
}

.course-day {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.2);
}

.course-day h3 {
  margin: 0;
  color: var(--white);
  font-family: Impact, "Arial Black", Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.course-day ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-day li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.course-day time {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.course-day li span {
  color: rgba(247, 246, 241, 0.78);
  font-size: 0.92rem;
  line-height: 1.4;
}

.gallery-preview {
  background: var(--white);
  color: var(--black);
}

.gallery-heading {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin-bottom: 36px;
}

.gallery-preview .section-kicker,
.gallery-preview h2 {
  color: var(--black);
}

.gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 78vw);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 18px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(5, 5, 5, 0.28) transparent;
}

.gallery-item {
  position: relative;
  display: block;
  min-height: 320px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #111;
  color: inherit;
  cursor: zoom-in;
  scroll-snap-align: start;
  text-align: left;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.7));
}

.gallery-item img {
  position: absolute;
  inset: 0;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 820ms cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lightbox {
  width: min(94vw, 1100px);
  max-width: 1100px;
  height: min(88vh, 820px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #050505;
  color: var(--white);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox img {
  width: 100%;
  height: calc(100% - 58px);
  object-fit: contain;
  background: #050505;
}

.lightbox p {
  margin: 0;
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(247, 246, 241, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(180, 183, 179, 0.86));
  color: #050505;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 760ms ease,
    transform 920ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible,
.is-loaded .hero .reveal,
.is-intro-complete .hero .reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero .eyebrow {
  --delay: 120ms;
}

.hero .hero-title-lockup {
  --delay: 210ms;
}

.hero .hero-text {
  --delay: 360ms;
}

.hero .hero-actions {
  --delay: 500ms;
}

@keyframes metal-sheen {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}

@keyframes light-pass {
  0%,
  26% {
    transform: rotate(-18deg) translateX(-26%);
    opacity: 0;
  }
  48% {
    opacity: 1;
  }
  72%,
  100% {
    transform: rotate(-18deg) translateX(120%);
    opacity: 0;
  }
}

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

@keyframes page-enter {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes intro-veil {
  0%,
  76% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes intro-steel-sweep {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  100% {
    transform: rotate(36deg) scale(1.18);
    opacity: 0.54;
  }
}

@keyframes intro-logo {
  0% {
    opacity: 1;
    transform: scale(0.88);
  }
  24% {
    opacity: 1;
    transform: scale(1.04);
  }
  42% {
    transform: scale(0.96);
  }
  72% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes intro-wordmark {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  28%,
  72% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes intro-flash {
  0% {
    transform: rotate(-11deg) translateX(-120%);
    opacity: 0;
  }
  34% {
    opacity: 1;
  }
  100% {
    transform: rotate(-11deg) translateX(120%);
    opacity: 0;
  }
}

.brand-partners {
  display: grid;
  gap: 16px;
  max-width: 520px;
  padding-top: 8px;
}

.brand-partners > span {
  color: rgba(247, 246, 241, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-partners > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.brand-partners img {
  width: 100%;
  height: 74px;
  object-fit: contain;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    #080808;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 640px) {
  .site-header {
    padding-inline: 34px;
  }

  .hero {
    padding-inline: 34px;
  }

  .chrome-title {
    font-size: 5.2rem;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .manifesto h2,
  .club-news h2,
  .crest-section h2,
  .atmosphere h2,
  .cinema h2,
  .equipment-proof h2,
  .membership h2,
  .schedule h2,
  .gallery-preview h2 {
    font-size: 3rem;
  }

  .section-pad {
    padding: 96px 34px;
  }

  .crest-section {
    padding: 104px 34px;
  }

  .atmosphere-statement {
    min-height: 640px;
    margin: 0 34px 34px;
  }

  .atmosphere-statement-copy {
    padding: 34px;
  }

  .atmosphere-statement-copy h3 {
    font-size: 3.35rem;
  }

  .scene-runway {
    grid-auto-flow: column;
    grid-auto-columns: 48%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-inline: 34px;
    scroll-snap-type: inline mandatory;
  }

  .scene {
    min-height: 520px;
    scroll-snap-align: center;
  }

  .scene-low {
    min-height: 420px;
    align-self: end;
  }

  .cinema-copy {
    padding: 120px 34px;
  }

  .proof-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

  .proof-card-large {
    grid-row: span 2;
  }

  .gallery-rail {
    grid-auto-columns: minmax(320px, 46%);
  }
}

@media (min-width: 900px) {
  .site-header {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.34));
  }

  .site-header::before,
  .site-header::after {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    align-items: center;
    gap: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a {
    padding: 8px 0;
    border-bottom: 0;
  }

  .hero {
    padding-inline: 56px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0.28) 100%),
      url("assets/reception-hero-new.png") center 48% / cover;
  }

  .chrome-title {
    font-size: 7rem;
  }

  .hero-text {
    font-size: 1.06rem;
  }

  .section-pad {
    padding: 126px 56px;
  }

  .manifesto h2,
  .club-news h2,
  .crest-section h2,
  .atmosphere h2,
  .cinema h2,
  .equipment-proof h2,
  .membership h2,
  .schedule h2,
  .gallery-preview h2 {
    font-size: 3.45rem;
  }

  .atmosphere-statement {
    min-height: 720px;
    margin: 0 56px 44px;
  }

  .atmosphere-statement-copy {
    padding: 44px;
  }

  .atmosphere-statement-copy h3 {
    font-size: 3.8rem;
  }

  .crest-section {
    grid-template-columns: 0.8fr 1fr;
    min-height: 720px;
    padding: 126px 56px;
  }

  .crest-mark {
    justify-self: start;
  }

  .steel-specs {
    grid-template-columns: repeat(3, 1fr);
  }

  .steel-specs span {
    min-height: 104px;
    padding: 22px 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.16);
  }

  .cinema-copy {
    padding: 150px 56px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    max-width: 1120px;
  }

  .hours-card dl {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
  }

  .hours-card div {
    display: grid;
    gap: 8px;
    padding: 0 18px;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hours-card div:first-child {
    padding-left: 0;
  }

  .hours-card div:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .course-days {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .course-day {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }

  .course-day ul {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0 18px;
  }

  .proof-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .gallery-rail {
    grid-auto-columns: minmax(330px, 28%);
  }

  .membership {
    grid-template-columns: 1fr;
    padding-inline: 56px;
  }
}

@media (min-width: 1180px) {
  .site-header {
    padding-inline: 48px;
  }

  .chrome-title {
    font-size: 8.5rem;
  }

  .hero-subtitle {
    font-size: 1.18rem;
  }

  .manifesto h2,
  .club-news h2,
  .crest-section h2,
  .atmosphere h2,
  .cinema h2,
  .equipment-proof h2,
  .membership h2,
  .schedule h2,
  .gallery-preview h2 {
    font-size: 4rem;
  }

  .scene-runway {
    grid-auto-columns: minmax(250px, 23%);
  }

  .atmosphere-statement-copy h3 {
    font-size: 4.8rem;
  }

  .gallery-item {
    min-height: 360px;
  }
}

@media (min-width: 1280px) {
  .manifesto-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
    align-items: start;
  }

  .equipment-proof {
    grid-template-columns: 0.42fr 0.58fr;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .brand-mark span:last-child {
    display: none;
  }

  .nav-toggle {
    position: relative;
    top: auto;
    right: auto;
    z-index: 2001;
    display: inline-grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    background: linear-gradient(135deg, #ffffff 0%, #bbbeb9 46%, #f2f2ed 100%) !important;
    color: #050505 !important;
    appearance: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-text {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .primary-link,
  .ghost-link {
    width: 100%;
  }

  .hero-index {
    display: none;
  }

  .proof-card,
  .proof-card-large,
  .gallery-item {
    min-height: 360px;
  }

  .gallery-item-tall {
    min-height: 520px;
  }

  .intro-logo {
    width: 82vw;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  body::after,
  .cinema img {
    transform: none !important;
  }

  .page-shell {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  .intro-sequence {
    display: none !important;
  }
}
