:root {
  --bg: #07070a;
  --bg-soft: #0d0d12;
  --panel: #111116;
  --panel-2: #16161d;
  --text: #f6f5f7;
  --muted: #a3a0aa;
  --muted-2: #72707a;
  --line: rgba(255,255,255,.11);
  --line-strong: rgba(255,255,255,.18);
  --purple: #9f40ff;
  --purple-strong: #b65cff;
  --purple-soft: rgba(159,64,255,.14);
  --warm: #ff9c2b;
  --warm-soft: rgba(255,156,43,.13);
  --max: 1380px;
  --header-h: 78px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 30px 90px rgba(0,0,0,.28);
  --condensed: "Barlow Condensed", Impact, sans-serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { background: var(--purple); color: white; }

.page-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 400;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--warm));
}

.site-header {
  position: fixed;
  z-index: 300;
  inset: 0 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(22px, 4vw, 68px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(7,7,10,.74), rgba(7,7,10,.32), transparent);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(7,7,10,.82);
  border-bottom-color: rgba(255,255,255,.08);
  backdrop-filter: blur(18px) saturate(130%);
}
.brand {
  display: flex;
  align-items: center;
  width: clamp(180px, 17vw, 250px);
  min-width: 0;
}
.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 30px);
  font-size: .78rem;
  font-weight: 800;
}
.site-nav a {
  color: #c9c7ce;
  transition: color .2s ease, opacity .2s ease;
}
.site-nav a:hover { color: white; }
.site-nav .nav-instagram { color: #9e9aa6; }
.site-nav .nav-cta {
  padding: 10px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: white;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 6px auto;
  background: white;
  transition: transform .22s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-photo,
.hero-photo img,
.hero-shade,
.hero-noise {
  position: absolute;
  inset: 0;
}
.hero-photo { z-index: -5; }
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 52%;
  filter: saturate(.86) contrast(1.03) brightness(.78);
  transform: scale(1.01);
}
.hero-shade {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(5,5,8,.94) 0%, rgba(5,5,8,.82) 31%, rgba(5,5,8,.37) 60%, rgba(5,5,8,.12) 100%),
    linear-gradient(180deg, rgba(5,5,8,.42) 0%, transparent 26%, transparent 68%, rgba(5,5,8,.88) 100%),
    radial-gradient(circle at 72% 28%, rgba(159,64,255,.11), transparent 34%);
}
.hero-noise {
  z-index: -3;
  opacity: .15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .42fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: end;
  padding-top: calc(var(--header-h) + 84px);
  padding-bottom: 120px;
}
.hero-copy { max-width: 830px; }
.eyebrow,
.kicker {
  margin: 0 0 22px;
  font-size: .69rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: #c5c2cb;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--purple-strong);
  box-shadow: 0 0 16px rgba(182,92,255,.75);
  vertical-align: 1px;
}
.hero h1,
.section h2,
.feature-copy h2,
.editorial-copy h2,
.gallery-head h2,
.join-copy h2 {
  margin: 0;
  font-family: var(--condensed);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.045em;
}
.hero h1 {
  font-size: clamp(5.4rem, 10.2vw, 11.1rem);
  line-height: .74;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: #d7c7e7;
  text-shadow: 0 0 38px rgba(159,64,255,.16);
}
.hero-lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: #d0ccd3;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
}
.hero-actions,
.feature-actions,
.join-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: #f4f2f6;
  color: #09090c;
}
.button-primary:hover { background: white; }
.button-glass {
  background: rgba(11,11,15,.36);
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  color: white;
}
.button-outline {
  border-color: var(--line-strong);
  background: transparent;
  color: white;
}
.button-outline:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.035); }
.button-outline-warm { border-color: rgba(255,156,43,.3); }
.button-light { background: white; color: #0a0a0d; }

.hero-side {
  justify-self: end;
  align-self: end;
  width: min(100%, 360px);
  padding-bottom: 18px;
}
.hero-emblem {
  width: min(100%, 300px);
  height: auto;
  margin-left: auto;
  object-fit: contain;
  opacity: .94;
  filter: drop-shadow(0 20px 44px rgba(0,0,0,.42));
}
.hero-side-copy {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 20px;
  color: rgba(255,255,255,.56);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  left: clamp(24px, 4vw, 68px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.56);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.scroll-cue i {
  display: block;
  width: 44px;
  height: 1px;
  background: rgba(255,255,255,.46);
  position: relative;
}
.scroll-cue i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.5);
  transform: rotate(-45deg);
}

.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0a0e;
}
.ticker-track {
  --ticker-shift: 1200px;
  --ticker-duration: 18s;
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker var(--ticker-duration) linear infinite;
}
.ticker-group {
  flex: none;
  display: flex;
  align-items: center;
  gap: clamp(28px, 2.8vw, 52px);
  min-width: max-content;
  padding: 14px clamp(16px, 2vw, 34px);
  font-family: var(--condensed);
  font-weight: 700;
  font-size: clamp(.98rem, 1.18vw, 1.18rem);
  letter-spacing: .07em;
  white-space: nowrap;
}
.ticker-group span { color: #ddd9e1; }
.ticker-group b {
  color: rgba(159,64,255,.8);
  font-size: .78em;
  font-weight: 700;
}
@keyframes ticker {
  to { transform: translateX(calc(-1 * var(--ticker-shift))); }
}

.section { padding: clamp(92px, 10vw, 150px) 0; }
.section-club { background: linear-gradient(180deg, #09090d 0%, #07070a 100%); }
.club-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .78fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}
.club-copy h2,
.feature-copy h2,
.editorial-copy h2,
.gallery-head h2 {
  font-size: clamp(4.2rem, 7.6vw, 8rem);
  line-height: .84;
}
.club-copy h2 span,
.feature-copy h2 span,
.editorial-copy h2 span,
.gallery-head h2 span { color: #8a8691; }
.copy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 42px;
}
.copy-columns p { margin: 0; color: var(--muted); }
.copy-columns .lead-copy { color: #dfdce2; font-weight: 600; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  font-size: .77rem;
  font-weight: 800;
}
.club-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: #111;
  box-shadow: var(--shadow);
}
.club-image::after,
.feature-media::after,
.editorial-media::after,
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(4,4,6,.66));
}
.club-image img,
.feature-media img,
.editorial-media img,
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.club-image img { filter: saturate(.8) contrast(1.02); }
.club-image figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.8);
  font-size: .69rem;
  font-weight: 700;
}
.club-image figcaption span {
  color: white;
  font-family: var(--condensed);
  font-size: 1.2rem;
  letter-spacing: .06em;
}
.activity-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.activity-strip article {
  min-height: 175px;
  padding: 28px 28px 30px 0;
  border-right: 1px solid var(--line);
}
.activity-strip article:not(:first-child) { padding-left: 28px; }
.activity-strip article:last-child { border-right: 0; }
.activity-strip article > span {
  display: block;
  margin-bottom: 26px;
  color: #5f5c66;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
}
.activity-strip h3 {
  margin: 0;
  font: 800 1.9rem/1 var(--condensed);
  text-transform: uppercase;
}
.activity-strip p {
  margin: 12px 0 0;
  max-width: 250px;
  color: #88858e;
  font-size: .81rem;
  line-height: 1.55;
}

.feature-section { padding: clamp(76px, 8vw, 120px) 0; }
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .82fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}
.feature-media {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  border-radius: var(--radius-lg);
  background: #111;
}
.feature-media img { object-position: 50% 54%; filter: saturate(.86) contrast(1.04); }
.media-label {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(7,7,10,.46);
  backdrop-filter: blur(10px);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.feature-copy { max-width: 650px; }
.feature-copy > p:not(.kicker),
.editorial-copy > p:not(.kicker) {
  margin: 24px 0 0;
  color: var(--muted);
}
.feature-copy > p + p { margin-top: 14px; }
.availability-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #77747d;
  font-size: .7rem;
  font-weight: 700;
}
.availability-note::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6c6872;
}

.editorial-section {
  padding: clamp(78px, 8.6vw, 132px) 0;
  border-top: 1px solid rgba(255,255,255,.06);
  background: #09090d;
}
.editorial-section-warm {
  background:
    radial-gradient(circle at 16% 42%, rgba(255,156,43,.055), transparent 30%),
    #07070a;
}
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}
.editorial-grid-reverse { grid-template-columns: minmax(0, 1.1fr) minmax(360px, .72fr); }
.editorial-copy { max-width: 650px; }
.editorial-copy .button { margin-top: 28px; }
.kicker-warm { color: #d4a269; }
.editorial-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 660px;
  border-radius: var(--radius-lg);
  background: #111;
}
.editorial-media img { filter: saturate(.82) contrast(1.04); }
.route-media img { object-position: 48% 50%; }
.lunch-media img { object-position: 50% 46%; }
.editorial-media figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.72);
  font-size: .66rem;
}
.editorial-media figcaption b {
  color: white;
  letter-spacing: .12em;
}

.gallery-preview { background: #08080b; }
.gallery-head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 430px);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: 44px;
}
.gallery-head-aside p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .91rem;
}
.gallery-bento {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: 310px 300px;
  gap: 12px;
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}
.gallery-tile img {
  transition: transform .5s cubic-bezier(.2,.7,.2,1), filter .35s ease;
  filter: saturate(.8) contrast(1.03);
}
.gallery-tile:hover img { transform: scale(1.035); filter: saturate(.95) contrast(1.03); }
.gallery-tile span {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 14px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.tile-a { grid-row: 1 / 3; }
.tile-d { grid-column: 2 / 4; }
.mobile-gallery-button { display: none; margin-top: 22px; }

.join-section { padding: 28px 0 110px; background: #08080b; }
.join-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .52fr);
  align-items: center;
  gap: 40px;
  padding: clamp(38px, 7vw, 88px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 36px;
  background:
    radial-gradient(circle at 77% 20%, rgba(159,64,255,.24), transparent 28%),
    linear-gradient(135deg, #14121a 0%, #0c0b10 56%, #0b0a0e 100%);
  box-shadow: var(--shadow);
}
.join-card::after {
  content: "VALENCIA";
  position: absolute;
  left: 3%;
  bottom: -10%;
  font: 800 clamp(8rem, 16vw, 15rem)/.7 var(--condensed);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.035);
  pointer-events: none;
}
.join-copy { position: relative; z-index: 2; max-width: 720px; }
.join-copy h2 {
  font-size: clamp(6rem, 12vw, 12rem);
  line-height: .72;
}
.join-copy > p:not(.kicker) {
  max-width: 620px;
  margin: 34px 0 0;
  color: #aaa6b0;
}
.text-link-light { color: white; }
.join-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.join-visual img {
  width: min(100%, 390px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.48));
  transform: rotate(3deg);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #07070a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding-block: 34px 46px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong {
  font: 800 1.25rem/1 var(--condensed);
  letter-spacing: .05em;
}
.footer-brand span { margin-top: 5px; color: #74717a; font-size: .68rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
  color: #97939e;
  font-size: .73rem;
  font-weight: 700;
}
.footer-links a:hover { color: white; }
.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  color: #5f5c64;
  font-size: .66rem;
}

.toast {
  position: fixed;
  z-index: 600;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  max-width: calc(100% - 32px);
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(18,17,22,.94);
  backdrop-filter: blur(16px);
  color: white;
  font-size: .78rem;
  box-shadow: 0 14px 44px rgba(0,0,0,.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity .22s ease, transform .22s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }

/* Gallery page */
.gallery-page { background: #07070a; }
.gallery-header { background: rgba(7,7,10,.78); }
.gallery-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #d6d2dc;
  font-size: .75rem;
  font-weight: 800;
}
.gallery-hero {
  position: relative;
  min-height: 76svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.gallery-hero-photo,
.gallery-hero-shade {
  position: absolute;
  inset: 0;
}
.gallery-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
  filter: saturate(.78) brightness(.62) contrast(1.05);
}
.gallery-hero-shade {
  background:
    linear-gradient(180deg, rgba(7,7,10,.36), transparent 35%, rgba(7,7,10,.85) 100%),
    linear-gradient(90deg, rgba(7,7,10,.76), transparent 58%);
}
.gallery-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 58px;
}
.gallery-hero h1 {
  margin: 0;
  font: 800 clamp(7rem, 17vw, 17rem)/.7 var(--condensed);
  letter-spacing: -.06em;
}
.gallery-hero h1 span { color: var(--purple-strong); }
.gallery-hero-content > div > p:last-child {
  max-width: 580px;
  margin: 28px 0 0;
  color: #bbb7c0;
}
.gallery-index {
  padding-bottom: 8px;
  color: #8a8790;
  text-align: right;
  font-size: .65rem;
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: .16em;
}
.gallery-page-section { padding-block: 42px 110px; }
.gallery-toolbar {
  position: sticky;
  top: calc(var(--header-h) + 10px);
  z-index: 30;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 30px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(12,12,16,.8);
  backdrop-filter: blur(15px);
}
.filter-button {
  min-height: 37px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #8f8b96;
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
}
.filter-button.is-active { background: white; color: #09090c; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 300px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #101014;
  cursor: zoom-in;
}
.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.84) contrast(1.03);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.gallery-item:hover img { transform: scale(1.028); filter: saturate(1) contrast(1.03); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(3,3,5,.65));
  pointer-events: none;
}
.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 15px;
  bottom: 13px;
  color: white;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.gallery-empty {
  margin: 24px 0 0;
  color: #5f5c65;
  font-size: .69rem;
}
.gallery-empty code { color: #85818a; }
.lightbox {
  position: fixed;
  z-index: 700;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 44px 92px;
  background: rgba(4,4,7,.94);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure {
  max-width: min(1300px, 88vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
}
.lightbox figure img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 100px rgba(0,0,0,.5);
}
.lightbox figcaption { color: #aaa6af; font-size: .75rem; }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: white;
  cursor: pointer;
}
.lightbox-close { top: 22px; right: 22px; font-size: 1.35rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 1rem; }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

@media (max-width: 1120px) {
  .site-nav { gap: 17px; font-size: .73rem; }
  .club-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-media,
  .editorial-media { min-height: 560px; }
  .editorial-grid,
  .editorial-grid-reverse { grid-template-columns: 1fr 1fr; }
  .activity-strip article { padding-inline-end: 18px; }
  .activity-strip article:not(:first-child) { padding-left: 18px; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .page-shell { width: min(var(--max), calc(100% - 36px)); }
  .site-header { padding-inline: 18px; }
  .brand { width: 190px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    padding: calc(var(--header-h) + 40px) 26px 44px;
    background: rgba(7,7,10,.97);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a {
    font: 800 clamp(2.4rem, 8vw, 4.7rem)/.9 var(--condensed);
    text-transform: uppercase;
    color: white;
  }
  .site-nav .nav-instagram { color: #817c87; }
  .site-nav .nav-cta { padding: 0; border: 0; color: var(--purple-strong); }
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 110px; }
  .hero-side {
    position: absolute;
    right: -66px;
    bottom: 28px;
    width: 260px;
    opacity: .31;
    pointer-events: none;
  }
  .hero-side-copy { display: none; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5,5,8,.92) 0%, rgba(5,5,8,.74) 58%, rgba(5,5,8,.36) 100%),
      linear-gradient(180deg, rgba(5,5,8,.48) 0%, transparent 30%, rgba(5,5,8,.86) 100%);
  }
  .scroll-cue { display: none; }
  .club-grid,
  .feature-grid,
  .editorial-grid,
  .editorial-grid-reverse { grid-template-columns: 1fr; }
  .club-image { aspect-ratio: 16 / 10; }
  .activity-strip { grid-template-columns: 1fr 1fr; }
  .activity-strip article:nth-child(2) { border-right: 0; }
  .activity-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-media { min-height: 520px; }
  .feature-copy,
  .editorial-copy { max-width: 760px; }
  .editorial-grid-reverse .editorial-media { order: 2; }
  .editorial-grid-reverse .editorial-copy { order: 1; }
  .editorial-media { min-height: 520px; }
  .gallery-head { grid-template-columns: 1fr; gap: 26px; }
  .gallery-head-aside { max-width: 630px; }
  .gallery-bento { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 260px 260px; }
  .tile-a { grid-row: 1 / 3; }
  .tile-b { grid-column: 2; }
  .tile-c { grid-column: 2; }
  .tile-d { grid-column: 1 / 3; }
  .join-card { grid-template-columns: 1fr .45fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-hero-content { padding-bottom: 44px; }
}

@media (max-width: 640px) {
  .page-shell { width: calc(100% - 28px); }
  .brand { width: 164px; }
  .hero { min-height: 780px; }
  .hero-photo img { object-position: 61% 50%; }
  .hero-inner { padding-top: 126px; padding-bottom: 100px; }
  .hero h1 { font-size: clamp(4.9rem, 23vw, 7.2rem); }
  .hero-lead { margin-top: 28px; font-size: .96rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-side { width: 220px; right: -80px; bottom: 12px; }
  .ticker-group { gap: 26px; padding-block: 12px; font-size: .92rem; }
  .section { padding: 82px 0; }
  .club-copy h2,
  .feature-copy h2,
  .editorial-copy h2,
  .gallery-head h2 { font-size: clamp(3.8rem, 17.5vw, 5.3rem); }
  .copy-columns { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .club-image { aspect-ratio: 4 / 5; border-radius: 22px; }
  .activity-strip { grid-template-columns: 1fr; margin-top: 48px; }
  .activity-strip article,
  .activity-strip article:not(:first-child) {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .activity-strip article:last-child { border-bottom: 0; }
  .activity-strip article > span { margin-bottom: 14px; }
  .feature-section,
  .editorial-section { padding: 74px 0; }
  .feature-media,
  .editorial-media { min-height: 420px; border-radius: 22px; }
  .feature-grid,
  .editorial-grid,
  .editorial-grid-reverse { gap: 40px; }
  .feature-actions { flex-direction: column; align-items: stretch; }
  .gallery-bento {
    grid-template-columns: 1fr;
    grid-template-rows: 270px 220px 220px 260px;
    gap: 10px;
  }
  .tile-a,
  .tile-b,
  .tile-c,
  .tile-d { grid-column: auto; grid-row: auto; }
  .gallery-head-aside .desktop-gallery-button { display: none; }
  .mobile-gallery-button { display: inline-flex; }
  .join-section { padding-bottom: 72px; }
  .join-card {
    min-height: 560px;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 34px 22px;
    border-radius: 24px;
  }
  .join-copy h2 { font-size: clamp(6.2rem, 29vw, 9rem); }
  .join-actions { flex-direction: column; align-items: stretch; }
  .join-actions .text-link { width: fit-content; align-self: flex-start; }
  .join-visual {
    position: absolute;
    right: -82px;
    bottom: -85px;
    opacity: .28;
  }
  .join-visual img { width: 310px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-copy { grid-column: auto; }

  .gallery-header .brand { width: 155px; }
  .gallery-back { width: 42px; min-height: 42px; padding: 0; justify-content: center; font-size: 0; }
  .gallery-back::after { content: "←"; font-size: 1rem; }
  .gallery-hero { min-height: 650px; }
  .gallery-hero-photo { object-position: 58% 54%; }
  .gallery-hero-content { padding-bottom: 36px; }
  .gallery-hero h1 { font-size: 31vw; }
  .gallery-hero-content > div > p:last-child { margin-top: 22px; font-size: .92rem; }
  .gallery-index { display: none; }
  .gallery-page-section { padding-top: 26px; }
  .gallery-toolbar { top: calc(var(--header-h) + 7px); max-width: 100%; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .gallery-toolbar::-webkit-scrollbar { display: none; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; gap: 10px; }
  .gallery-item-wide,
  .gallery-item-tall { grid-column: auto; grid-row: auto; }
  .lightbox { padding: 76px 14px 86px; }
  .lightbox figure { max-width: 100%; }
  .lightbox figure img { max-height: 68vh; }
  .lightbox-nav { top: auto; bottom: 20px; transform: none; }
  .lightbox-prev { left: calc(50% - 58px); }
  .lightbox-next { right: calc(50% - 58px); }
  .lightbox-close { top: 14px; right: 14px; }
}

@media (min-width: 1700px) {
  :root { --max: 1540px; }
  .hero-inner { gap: 130px; }
  .hero-copy { max-width: 920px; }
  .hero h1 { font-size: min(10vw, 12rem); }
  .feature-media,
  .editorial-media { min-height: 720px; }
  .gallery-bento { grid-template-rows: 350px 330px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .ticker-track { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
