/* Exit landing — artboard: 1024.5×3330.75 (PDF) · Lekton (Regular 400 / Bold 700) */
:root {
  --content-max: 1920px;
  --pad-x: clamp(1.5rem, 4vw, 4.5rem);
  --section-gap-y: clamp(4rem, 8vw, 7rem);
  --wht: #ffffff;
  --blk: #000000;
  --f-sm: 10.44pt;
  --f-body: 14.444999695pt;
  --f-body-2: 14.4pt;
  --f-cap: 15pt;
  --f-pill: 19.3410987854pt;
  --f-hero-cta: 19.3410987854pt;
  --f-mid: 24.9975013733pt;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ——— Initial page loader (critical rules also inlined in index.html) ——— */
.exit-page-loader__logo {
  display: block;
  width: min(14rem, 50vw);
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.exit-page-loader__spinner {
  display: block;
  width: 26px;
  height: 26px;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: exit-loader-spin 0.55s linear infinite;
  flex-shrink: 0;
}

@keyframes exit-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .exit-page-loader__spinner {
    animation: none;
    border-color: rgba(255, 255, 255, 0.28);
    border-top-color: rgba(255, 255, 255, 0.55);
  }
}

html {
  height: 100%;
  /* Single vertical scroll on the root; avoid overflow-x on body/.sizer (nested scrollports). */
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--blk);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ——— Scroll reveal (subtle fade + nudge; requires html.js) ——— */
html:not(.js) .reveal,
html:not(.js) .reveal.reveal--stagger .triptych__cell {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

html.js .reveal:not(.reveal--stagger):not(.reveal--visible) {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

html.js .reveal:not(.reveal--stagger) {
  transition:
    opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

html.js .reveal:not(.reveal--stagger).reveal--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Triptych: container keeps layout; panels stagger in */
html.js .reveal.reveal--stagger {
  opacity: 1;
  transform: none;
  transition: none;
}

html.js .reveal.reveal--stagger .triptych__cell {
  transition:
    opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

html.js .reveal.reveal--stagger:not(.reveal--visible) .triptych__cell {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

html.js .reveal.reveal--stagger.reveal--visible .triptych__cell {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.js .reveal.reveal--stagger.reveal--visible .triptych__track > .triptych__cell:nth-child(1) {
  transition-delay: 0s;
}
html.js .reveal.reveal--stagger.reveal--visible .triptych__track > .triptych__cell:nth-child(2) {
  transition-delay: 0.07s;
}
html.js .reveal.reveal--stagger.reveal--visible .triptych__track > .triptych__cell:nth-child(3) {
  transition-delay: 0.14s;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal:not(.reveal--stagger),
  html.js .reveal.reveal--stagger .triptych__cell {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--wht);
  -webkit-font-smoothing: antialiased;
  font-family: "Lekton", ui-monospace, monospace;
}

a {
  color: inherit;
}

a.form__link {
  text-decoration: none;
  border-bottom: 1px solid var(--wht);
}

a.form__link:hover,
a.pill:hover,
a.cap:hover {
  opacity: 0.9;
}

.pill--preventa:hover, .section--ig .pill:hover {
  background-color: white;
  color: black;
}

.vh {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sizer {
  position: relative;
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--blk);
}

/* Full-bleed banner: not limited to 1920 */
.hero-bleed {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--blk);
}

/* Content column: max 1920 + side padding */
.page-content {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--blk);
  margin-top: 100px;
}

.container-1920 {
  max-width: var(--content-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-transform: uppercase;
  line-height: 1.1;
  box-sizing: border-box;
}

.b,
.hero__side,
h1 {
  font-weight: 700 !important;
}
.n,
.sml,
.cap {
  font-weight: 400;
}

/* ——— Full-width hero: club photo only (Acceso lives in .container-1920) ——— */
.hero__visual {
  position: relative;
  width: 100%;
  /* One page scroll: min-height only — 100vh + mobile chrome causes a second scroll “lane” */
  min-height: clamp(420px, 52vw, 720px);
  min-height: max(100svh, clamp(420px, 52vw, 720px));
  overflow: hidden;
  background: var(--blk);
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__img--59 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 67%;
  max-width: none;
  opacity: 0.7;
}

.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.09;
  pointer-events: none;
}

.hero__bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(140px, 28vh, 360px);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.85) 85%,
    var(--blk) 100%
  );
  pointer-events: none;
  z-index: 1;
}

@keyframes hero-brand-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Logo + tagline: one block, dead center of hero */
.hero__brand {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: min(100%, 44rem);
  width: 100%;
  text-align: center;
  pointer-events: none;
  box-sizing: border-box;
}

.hero__logo {
  display: block;
  width: 28rem;
  max-width: 100%;
  height: auto;
  background: none;
  mix-blend-mode: normal;
  opacity: 0;
  animation: hero-brand-fade-in 1.65s ease-out 0.2s forwards;
}

.hero__tagline {
  margin: 0;
  padding: 0;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-align: center;
  line-height: 1.15;
  opacity: 0;
  animation: hero-brand-fade-in 1.65s ease-out 0.2s forwards;
}

@media (max-width: 768px) {
  .hero__logo {
    width: 12rem;
    max-width: 100%;
  }
  .hero__tagline {
    font-size: 0.75rem;
    letter-spacing: 0.055em;
  }
  .hero__brand {
    width: 90%;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__logo,
  .hero__tagline {
    opacity: 1;
    animation: none;
  }
}

.hero__side {
  position: absolute;
  z-index: 2;
  right: 5rem;
  bottom: 5rem;
  top: auto;
  width: min(45%, 15rem);
  margin: 0;
  text-align: justify;
  text-align-last: justify;
  font-size: 14.444999695pt;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* Absolute positioning overrides [hidden] clipping in some cases */
#hero-preventa-side-msg[hidden] {
  display: none !important;
}

.hero__date {
  position: absolute;
  z-index: 2;
  left: 5rem;
  bottom: 5rem;
  top: auto;
  margin: 0;
  width: max-content;
  max-width: 40%;
  text-align: left;
  font-size: 14.444999695pt;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.hero__cta-bottom {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 5rem;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero__pill {
  pointer-events: auto;
  min-width: 0;
  width: auto;
  height: auto;
  padding: clamp(0.55rem, 1vw, 0.85rem) clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--wht);
  border-radius: 999px;
  background: transparent;
  color: var(--wht);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.hero__pill:hover {
  background-color: var(--wht);
  color: var(--blk);
}

@media (max-width: 900px) {
  .hero__side {
    font-size: 10pt;
    right: 1.25rem;
    bottom: 1.5rem;
    width: min(34%, 8rem);
  }
  .hero__date {
    font-size: 10pt;
    left: 1.25rem;
    bottom: 1.5rem;
    max-width: 45%;
  }
  .hero__cta-bottom {
    bottom: calc(2.35rem + 8.25em);
  }
  .hero__pill {
    font-size: clamp(0.78rem, 2.5vw, 0.95rem);
    padding: 0.55rem 1.6rem 0.6rem;
  }
}

.section--preventa {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  background: var(--blk);
  min-height: min(88vh, 48rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  box-sizing: border-box;
}

.hero__cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  border: 1px solid var(--wht);
  text-decoration: none;
  font-size: var(--f-hero-cta);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  background: transparent;
  border-radius: 100%;
  padding: 25px 70px;
}

.pill--preventa {
  min-width: 0;
  width: min(75%, 24rem);
  max-width: 100%;
  box-sizing: border-box;
  padding: clamp(0.4rem, 0.9vw, 0.5rem) clamp(2rem, 7vw, 4.5rem) clamp(0.45rem, 1vw, 0.55rem);
  border: 1px solid var(--wht);
  border-radius: 53%;
  height: 5rem;
  transition: 1s;
}

.section--ig .pill {
  font-size: 24.9975013733pt;
  min-width: 200px;
  margin-top: 0;
  padding: 20px 88px;
  margin-top: 30px;
  transition: 1s;
}

.hero__cols {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  font-size: 14.444999695pt;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.hero__cols .col {
  min-width: 0;
}
.hero__cols .col--1 {
  font-weight: 400;
}
.hero__cols .col--1 p,
.hero__cols .col--2 p,
.hero__cols .col--3 p {
  margin: 0;
  font: inherit;
  text-align: left;
}
.hero__cols .col--1 {
  text-align: left;
  font-size: 14.444999695pt;
  font-weight: 400;
}
.hero__cols .col--2 {
  text-align: left;
  font-weight: 700;
  margin: 0;
  position: static;
}
.hero__cols .col--2 p {
  font-weight: 700;
  text-align: left;
}
.hero__cols .col--3 {
  text-align: left;
  font-weight: 400;
  font-size: 14.444999695pt;
}
.hero__cols .col--3 p {
  text-align: left;
}
.hero__cols p {
  margin: 0;
}

/* ——— Triptych: gaps + full image height (no crop — intrinsic aspect ratio) ——— */
.triptych-clip {
  width: 100%;
  max-width: 100%;
}

.triptych {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--blk);
}

.triptych__track {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: clamp(10px, 1.2vw, 20px);
  background: var(--blk);
  align-items: flex-start;
}

.triptych__cell {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  background: var(--blk);
  line-height: 0;
}

.triptych__cell--dup {
  display: none;
}

.triptych__cell img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.02);
}

@keyframes triptych-mobile-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 768px) {
  .triptych-clip {
    overflow: hidden;
    width: calc(100% + 2 * var(--pad-x));
    max-width: none;
    margin-left: calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
  }

  .triptych__track {
    width: max-content;
    max-width: none;
    flex-wrap: nowrap;
    gap: clamp(10px, 2.2vw, 14px);
    animation: triptych-mobile-marquee 20s linear infinite;
  }

  .triptych__cell--dup {
    display: block;
  }

  .triptych__cell {
    flex: 0 0 auto;
    width: min(90vw, 36rem);
    min-width: min(90vw, 36rem);
  }

  .triptych__cell img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .triptych__track {
    animation: none;
    transform: none;
  }
}

/* ——— Form: generous vertical padding (reference) ——— */
.section--form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(3.25rem, 6vw, 4.75rem) 0 clamp(4.5rem, 9vw, 8.5rem);
  margin: 0;
  background: var(--blk);
}

.section--form > .registro-form-block,
.section--form > .form__closed-msg {
  align-self: stretch;
  width: 100%;
}

/* Ensure preventa cerrada hides fields + intro (reveals/stacking can fight plain [hidden] on nested nodes). */
#registro-form-block[hidden],
.registro-form-block[hidden] {
  display: none !important;
}

.registro-form-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.form__closed-msg {
  margin: 0 auto clamp(2rem, 4vw, 3.25rem);
  max-width: min(800px, 100%);
  text-align: center;
  font-size: clamp(0.95rem, 1.2vw + 0.8rem, 1.25rem);
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.form__intro {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 100%;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  padding: 0;
  font-size: 14.444999695pt;
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 400;
  box-sizing: border-box;
}

.form__intro-col {
  min-width: 15%;
}

.form__intro-col p {
  margin: 0;
  text-align: left;
}

.form__intro-col--3 {
  font-weight: 400;
}

.form {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Form: single column, centered in section */
.form__grid {
  display: grid;
  width: 100%;
  max-width: min(800px, 100%);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  column-gap: 0;
  row-gap: 0.65rem;
  align-items: start;
  justify-items: stretch;
  box-sizing: border-box;
}

.form__title {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  font-size: 24.9975013733pt;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.registro-form-block > .form__title {
  display: block;
  align-self: center;
  width: max-content;
  max-width: 100%;
  margin: 0 0 clamp(2.5rem, 6vw, 4.5rem);
  padding: 0;
  font-size: clamp(1.85rem, 3vw + 0.85rem, 3.05rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.08;
  text-align: center;
  white-space: normal;
  box-sizing: border-box;
}

.form__input-cell {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  width: 100%;
  align-self: center;
  box-sizing: border-box;
  gap: 30px;
  display: flex;
  flex-direction: column;
}

.form__input-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.form__input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 2.65rem;
  height: 4.65rem;
  margin: 0;
  background: transparent;
  border: 1px solid var(--wht);
  color: var(--wht);
  font-family: inherit;
  font-size: 12.5pt;
  font-weight: 400;
  line-height: 1.2;
  padding: 0 1.65rem;
  text-transform: none;
  max-width: 800px;
}

.form__input:focus {
  outline: 1px solid #888;
  outline-offset: 1px;
}

.form__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form__status {
  width: 100%;
  max-width: 800px;
  margin: 0 0 0.5rem 0;
  font-size: 10pt;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form__status--error {
  color: #c44;
}

.form__button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.form__button {
  width: 100%;
  max-width: 800px;
  height: 65px;
  background: black;
  color: white;
  border: 1px solid white;
  font-size: 14pt;
  transition: 1s;
}

.form__button:hover {
  background: white;
  color: black;
  cursor: pointer;
}

/* ——— Registration success dialog ——— */
.reg-success {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
  font-family: inherit;
}

.reg-success:not([hidden]) {
  display: flex;
  opacity: 1;
  transition: opacity 0.42s ease;
}

.reg-success:not([hidden]).reg-success--closing {
  opacity: 0;
  pointer-events: none;
}

.reg-success__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.78);
  pointer-events: none;
}

.reg-success__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(24rem, 100%);
  padding: clamp(1.75rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 1.75rem);
  background: var(--blk);
  border: 1px solid var(--wht);
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55);
  animation: reg-success-panel-in 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.reg-success__icon {
  display: flex;
  justify-content: center;
  margin: 0 0 1.1rem;
  color: #6abf6a;
  filter: drop-shadow(0 0 12px rgba(106, 191, 106, 0.25));
  animation: reg-success-icon-in 0.55s cubic-bezier(0.34, 1.25, 0.64, 1) both;
}

.reg-success__svg {
  display: block;
  overflow: visible;
}

.reg-success__mark {
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 56;
  stroke-dashoffset: 56;
  animation: reg-success-stroke 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0.18s forwards;
}

.reg-success__msg {
  margin: 0;
  font-size: 14pt;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--wht);
}

@keyframes reg-success-panel-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes reg-success-icon-in {
  from {
    opacity: 0;
    transform: scale(0.65) rotate(-12deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes reg-success-stroke {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reg-success__panel,
  .reg-success__icon {
    animation: none !important;
  }
  .reg-success__mark {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }
  .reg-success:not([hidden]) {
    transition-duration: 0.2s;
  }
}

body.reg-success-open {
  overflow: hidden;
}

/* ——— About — reference: 3 cols, text top/bottom on sides, portrait center ——— */
.section--about {
  margin: clamp(3.5rem, 7vw, 6.5rem) 0 0 0;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--blk);
  display: none;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, min(448px, 30vw)) minmax(
      0,
      1fr
    );
  column-gap: clamp(2.25rem, 5vw, 5rem);
  align-items: stretch;
  justify-items: stretch;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  min-height: min(560px, 72vh);
}

.about__ll,
.about__c,
.about__rr {
  position: relative;
}

.about__ll,
.about__rr {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  height: 100%;
  min-width: 0;
  min-height: 0;
  width: 100%;
  padding: 0;
  letter-spacing: 0.015em;
  font-size: 14.444999695pt;
  line-height: 1.26;
}

.about__b2 {
  margin-top: 200px !important;
}

.about__ll .b,
.about__ll .n,
.about__rr .about__b1,
.about__rr .about__b2 {
  margin: 0;
  max-width: 44ch;
  font-size: 14.444999695pt;
  line-height: 1.26;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  text-align: left;
  font-weight: 400;
  hyphens: none;
  overflow-wrap: break-word;
}

.about__c {
  width: 100%;
  max-width: min(448px, 30vw);
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  margin: 0;
  justify-self: center;
  align-self: center;
  flex-shrink: 0;
  background: #0a0a0a;
}

.about__c img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  display: block;
}

/* ——— Media: reference layout — portrait tiles, thin gutter, staggered headline ——— */
.section--media {
  margin: var(--section-gap-y) 0 0 0;
  background: var(--blk);
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(3.5rem, 7vw, 6.5rem);
}

.media {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  max-width: 100%;
  gap: 0;
  position: relative;
  box-sizing: border-box;
}

.media__shots {
  display: flex;
}


@media (max-width: 900px) {
  .media__shots {
    flex-direction: column;
    align-self: stretch;
    gap: clamp(3rem, 10vw, 4.75rem);
    width: calc(100% + 2 * var(--pad-x));
    margin-left: calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
  }
}

.media__blurb {
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  align-self: flex-start;
  margin-right: clamp(1.75rem, 4.5vw, 5.25rem);
}

.media__lede {
  font-size: 13pt;
  line-height: 1.22;
  font-weight: 400;
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.85rem) 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.media__blurb .huge {
  margin-top: 0;
  width: 100%;
  max-width: min(24ch, 100%);
  margin-top: 100px;
}

.sml {
  font-size: 14.4pt;
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 0.3em 0;
}

.huge {
  font-size: clamp(1.25rem, 0.9vw + 1.05rem, 24.9975013733pt);
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.huge__line {
  display: block;
  margin: 0 0 0.07em 0;
}

.huge__split {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  width: 100%;
  column-gap: 0.4em;
  margin: 0 0 0.07em 0;
}

.huge__l {
  white-space: nowrap;
}

.huge__r {
  text-align: right;
  white-space: nowrap;
}

.media__yt,
.media__sc {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: min(440px, 28vw);
  min-width: min(260px, 32vw);
  max-width: 100%;
  position: relative;
  margin: 0;
}

.media__yt {
  margin-right: clamp(5px, 0.75vw, 12px);
}

.media__shot {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
}

.media__shot--portrait {
  aspect-ratio: 4 / 5;
  height: auto;
}

.media__shot--portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  display: block;
}

.media__yt .media__shot--portrait img {
  object-position: 48% 42%;
}

.media__sc .media__shot--portrait img {
  object-position: 44% 36%;
}

.cap {
  display: block;
  margin: 2rem 0 0 0;
  padding: 0;
  text-align: center;
  font-size: 14pt;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 400;
  width: 100%;
  align-self: center;
}

/* ——— Closing block: lineups + Instagram (reference section 7) ——— */
.section--closing {
  margin: var(--section-gap-y) 0 0 0;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--blk);
}

.section--ig {
  margin: 0;
  text-align: center;
  background: transparent;
  padding: 0;
}
.igline {
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem) 0;
  max-width: 100%;
  font-size: 14.444999695pt;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  padding: 0;
}

.container-1920 .huge__line,
.container-1920 .huge__split {
  line-height: 0.8;
}

@media (max-width: 900px) {
  .hero__cols {
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    gap: 1.5rem;
  }
  .hero__cols .col {
    max-width: 100%;
    text-align: left;
  }
  .hero__cols .col--2 p,
  .hero__cols .col--3 p {
    text-align: left;
  }
  .section--preventa {
    min-height: auto;
    justify-content: flex-start;
    gap: clamp(2.5rem, 8vw, 4rem);
    text-align: center;
    font-size: 15pt;
  }
  .hero__cols {
    margin-top: 0;
  }
}

/* About grid: stacked */
@media (max-width: 800px) {
  .about {
    grid-template-columns: 1fr;
    justify-items: stretch;
    min-height: 0;
    row-gap: clamp(2rem, 6vw, 3rem);
  }
  .about__ll,
  .about__rr {
    max-width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.25rem;
    height: auto;
  }
  .about__c {
    order: 2;
    max-width: 100%;
    width: min(100%, 22rem);
    aspect-ratio: 3 / 4;
    justify-self: center;
  }
  .form__intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: clamp(2rem, 5vw, 2.75rem);
  }
  .form__grid {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    column-gap: 0;
  }
  .form__title,
  .form__input-cell {
    grid-column: 1;
    grid-row: auto;
  }
  .form__title {
    white-space: normal;
    align-self: start;
  }
  .media {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .media__blurb {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
  }
  .media__blurb .huge {
    max-width: min(24ch, 100%);
  }
  .media__yt {
    margin-right: 0;
  }
  .media__yt,
  .media__sc {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  .section--ig .pill,
  .pill {
    min-width: auto;
  }
  .huge {
    font-size: 18pt;
    max-width: 100%;
  }
}
