@import "tailwindcss";

@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-serif-display-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/montserrat-400.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/montserrat-500.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/montserrat-600.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/montserrat-700.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/montserrat-800.woff2") format("woff2");
}

:root {
  --black: #060302;
  --black-soft: #100706;
  --red: #8b1e1e;
  --red-deep: #350706;
  --gold: #d4af37;
  --gold-dark: #9b6813;
  --gold-light: #f4d36b;
  --gold-pale: #fae9b3;
  --ivory: #fff8e8;
  --muted: #cfc2a8;
  --line: rgba(212, 175, 55, 0.3);
  --font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-script: "Brush Script MT", "Segoe Script", cursive;
  --font-body: "Montserrat", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
}

body.modal-open {
  overflow: hidden;
}

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

img {
  display: block;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

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

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1320px, calc(100% - 48px));
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
}

.brand-mark {
  display: grid;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: rgba(255, 248, 232, 0.84);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-ticket),
.footer-contact a,
.text-link {
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-ticket):hover,
.site-nav > a:not(.nav-ticket):focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-light);
}

.nav-ticket {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(244, 211, 107, 0.72);
  padding: 0 18px;
  background: rgba(14, 5, 3, 0.48);
  color: var(--gold-light);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-ticket:hover,
.nav-ticket:focus-visible {
  background: var(--gold-light);
  color: #250d03;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.hero-media,
.hero-media picture,
.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-media picture {
  display: block;
}

.hero-background {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.012);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 1, 1, 0.7) 0%, rgba(4, 1, 1, 0.1) 26%, rgba(4, 1, 1, 0.08) 66%, rgba(2, 1, 1, 0.92) 100%),
    radial-gradient(ellipse at center, rgba(13, 5, 2, 0.12) 0%, rgba(5, 2, 1, 0.4) 70%, rgba(2, 1, 1, 0.7) 100%);
}

.hero-content {
  display: grid;
  min-height: max(780px, 100svh);
  place-items: center;
  padding-block: 128px 118px;
}

.hero-copy {
  display: flex;
  width: min(930px, 76vw);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(0.66rem, 0.75vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1.5;
  text-transform: uppercase;
}

.title-lockup {
  width: min(100%, 850px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.62));
}

.hero-tagline {
  margin: -5px 0 24px;
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-style: italic;
  line-height: 1.45;
  text-shadow: 0 2px 12px #000;
}

.hero-event-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--ivory);
  font-family: var(--font-display);
  text-transform: uppercase;
  text-shadow: 0 2px 12px #000;
}

.hero-event-line time {
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.hero-event-line > span {
  width: 1px;
  height: 34px;
  background: var(--gold-light);
  box-shadow: 0 0 14px rgba(244, 211, 107, 0.65);
}

.hero-event-line strong {
  color: var(--gold-light);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.hero-venue {
  margin: 19px 0 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(0.83rem, 1.1vw, 1rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  text-shadow: 0 2px 12px #000;
}

.hero-venue span {
  display: block;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: none;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  padding: 0 26px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  touch-action: manipulation;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  border-color: var(--gold-light);
  background: linear-gradient(135deg, #f7dc7d 0%, #c99224 57%, #9e6710 100%);
  color: #250d03;
  box-shadow: 0 14px 38px rgba(212, 175, 55, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 45px rgba(244, 211, 107, 0.32);
}

.button-secondary {
  border-color: rgba(255, 248, 232, 0.38);
  background: rgba(0, 0, 0, 0.3);
  color: var(--ivory);
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
}

.button-large {
  min-width: 220px;
  min-height: 60px;
}

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 248, 232, 0.72);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 248, 232, 0.35);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  content: "";
  transform: translateX(-100%);
  animation: scroll-line 2.4s ease-in-out infinite;
}

.marquee-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid rgba(250, 233, 179, 0.38);
  background: linear-gradient(90deg, #9f6a14, #d09c2d, #9f6a14);
  color: #160805;
}

.marquee-strip div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding: 15px 24px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

.marquee-strip b {
  font-size: 0.54rem;
}

.section {
  position: relative;
  padding-block: clamp(100px, 11vw, 155px);
}

.event-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 48%, rgba(139, 30, 30, 0.2), transparent 32%),
    linear-gradient(180deg, #080403, #0e0605);
}

.event-section::before {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(244, 211, 107, 0.025);
  content: "2026";
  font-family: var(--font-display);
  font-size: clamp(15rem, 28vw, 32rem);
  line-height: 0.7;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  gap: clamp(60px, 8vw, 118px);
  align-items: center;
}

.section-intro h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.3vw, 5.15rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-intro .event-date-line {
  display: block;
  color: var(--ivory);
  font-size: 0.86em;
  letter-spacing: 0;
  white-space: nowrap;
}

.section-intro .event-year {
  display: block;
  color: var(--gold-light);
  font-size: 1.18em;
}

.section-lead {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1rem;
}

.event-card {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 48%),
    rgba(24, 10, 7, 0.9);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
}

.event-card::before,
.event-card::after {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold-light);
  content: "";
  pointer-events: none;
}

.event-card::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.event-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.event-detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.event-detail dt {
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.65;
  text-transform: uppercase;
}

.event-detail dd {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  line-height: 1.45;
}

.event-card-action {
  padding: 25px 30px 28px;
}

.event-card-action a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold-pale);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.event-card-action span {
  font-size: 1.2rem;
}

.experience-section {
  min-height: 820px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-block: 1px solid rgba(212, 175, 55, 0.18);
  background: #130403;
}

.experience-background,
.experience-background picture,
.experience-background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.experience-background {
  z-index: 0;
}

.experience-background picture {
  display: block;
}

.experience-background img {
  object-fit: cover;
  object-position: center;
}

.experience-shade {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 1, 1, 0.18), rgba(4, 1, 1, 0.04) 46%, rgba(4, 1, 1, 0.5) 100%),
    radial-gradient(ellipse at center, rgba(4, 1, 1, 0.16) 0 34%, transparent 68%, rgba(4, 1, 1, 0.3) 100%);
}

.experience-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(212, 175, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 76%, transparent);
}

.experience-section::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(5, 1, 1, 0.76));
  content: "";
  pointer-events: none;
}

.experience-light {
  position: absolute;
  z-index: 1;
  top: -22%;
  left: 50%;
  width: min(760px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(208, 113, 17, 0.1);
  filter: blur(120px);
  transform: translateX(-50%);
}

.experience-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.experience-inner h2 {
  max-width: 1020px;
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
}

.experience-inner h2 em {
  display: block;
  margin-top: 0.08em;
  color: var(--gold-light);
  font-family: var(--font-script);
  font-size: 0.68em;
  font-weight: 400;
  letter-spacing: 0;
}

.experience-line {
  display: flex;
  width: min(660px, 74vw);
  align-items: center;
  gap: 18px;
  margin-block: 48px 36px;
  color: var(--gold-light);
}

.experience-line span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.experience-line span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.experience-line i {
  font-style: normal;
}

.experience-notes {
  display: grid;
  width: min(820px, 100%);
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(8, 2, 1, 0.34);
  backdrop-filter: blur(7px);
}

.experience-notes div {
  padding: 18px 24px;
  border-right: 1px solid rgba(212, 175, 55, 0.3);
}

.experience-notes div:last-child {
  border-right: 0;
}

.experience-notes span {
  color: rgba(244, 211, 107, 0.64);
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
}

.experience-notes p {
  margin: 8px 0 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founders-section {
  isolation: isolate;
  overflow: hidden;
  background: #160403;
}

.founders-background,
.founders-background picture,
.founders-background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.founders-background {
  z-index: -3;
}

.founders-background picture {
  display: block;
}

.founders-background img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.founders-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 1, 1, 0.86) 0%, rgba(12, 2, 1, 0.58) 50%, rgba(8, 1, 1, 0.36) 100%),
    linear-gradient(180deg, rgba(3, 1, 1, 0.24), transparent 48%, rgba(3, 1, 1, 0.84));
}

.founders-frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  gap: clamp(42px, 5.5vw, 78px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(244, 211, 107, 0.5);
  padding: clamp(48px, 5vw, 72px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(12, 3, 2, 0.46);
  box-shadow:
    0 50px 110px rgba(0, 0, 0, 0.52),
    inset 0 0 100px rgba(125, 28, 8, 0.12);
  backdrop-filter: blur(4px);
}

.corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: var(--gold-light);
}

.corner-top-left {
  top: -2px;
  left: -2px;
  border-top: 3px solid;
  border-left: 3px solid;
}

.corner-top-right {
  top: -2px;
  right: -2px;
  border-top: 3px solid;
  border-right: 3px solid;
}

.corner-bottom-left {
  bottom: -2px;
  left: -2px;
  border-bottom: 3px solid;
  border-left: 3px solid;
}

.corner-bottom-right {
  right: -2px;
  bottom: -2px;
  border-right: 3px solid;
  border-bottom: 3px solid;
}

.founders-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.founders-kicker {
  width: fit-content;
  margin: 0 0 16px;
  border-block: 1px solid rgba(244, 211, 107, 0.48);
  padding: 10px 0;
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founders-copy h2 {
  margin: 0;
  background: linear-gradient(180deg, #fff1ad, #d89d23 70%, #a76910);
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 5.25rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
}

.founders-script {
  margin: 12px 0 0;
  color: var(--gold-light);
  font-family: var(--font-script);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1;
}

.founders-lead {
  margin: 28px 0 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: 0.04em;
}

.founders-story {
  max-width: 610px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.founders-benefits {
  display: grid;
  gap: 8px;
  margin: 21px 0 0;
  padding: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  line-height: 1.55;
  list-style: none;
}

.founders-benefits li::before {
  margin-right: 10px;
  color: var(--gold-light);
  content: "✦";
  font-size: 0.64rem;
}

.founders-actions {
  justify-content: flex-start;
  margin-top: 25px;
}

.founders-actions .button {
  min-width: 202px;
  padding-inline: 20px;
  cursor: pointer;
  font-family: var(--font-body);
}

.founders-visual {
  display: grid;
  gap: 18px;
  place-items: center;
  min-width: 0;
}

.founder-medallion {
  position: relative;
  display: grid;
  width: min(340px, 100%);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  text-align: center;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.66));
  animation: medallion-float 6s ease-in-out infinite;
}

.founder-medallion::after {
  position: absolute;
  top: 7%;
  right: 17%;
  width: 44px;
  aspect-ratio: 1;
  background: radial-gradient(circle, #fff 0 2%, #ffe187 7%, rgba(250, 187, 45, 0.5) 18%, transparent 52%);
  content: "";
  filter: blur(0.2px);
  transform: rotate(45deg);
  animation: medallion-glint 4.8s ease-in-out infinite;
  pointer-events: none;
}

.founder-medallion-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.founder-medallion-copy {
  position: relative;
  z-index: 1;
  display: grid;
  width: 57%;
  place-items: center;
  transform: translateY(5%);
}

.founder-medallion-copy span {
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-size: clamp(0.54rem, 0.82vw, 0.7rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.founder-medallion-copy strong {
  margin-block: 10px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.58rem, 2.48vw, 2.34rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.86);
}

.founder-medallion-copy i {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 1vw, 0.85rem);
}

.venue-section {
  padding-block: clamp(80px, 7vw, 110px);
  background:
    radial-gradient(circle at 12% 28%, rgba(154, 67, 14, 0.22), transparent 34%),
    linear-gradient(125deg, #090201 0%, #200604 48%, #0b0201 100%);
}

.venue-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(500px, 1.05fr);
  gap: clamp(46px, 5.5vw, 76px);
  align-items: center;
}

.venue-copy h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.2vw, 5.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.92;
}

.venue-copy h2 span {
  display: block;
  white-space: nowrap;
}

.venue-hall {
  margin: 14px 0 0;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  letter-spacing: 0.08em;
}

.venue-copy address {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: normal;
  letter-spacing: 0.04em;
}

.venue-copy address span {
  color: var(--gold-pale);
}

.venue-copy > p:not(.eyebrow, .venue-hall) {
  max-width: 490px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.8;
}

.venue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.venue-map-frame {
  position: relative;
  width: min(100%, 760px);
  min-height: 430px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(244, 211, 107, 0.52);
  background: #130604;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}

.venue-map-frame::before,
.venue-map-frame::after {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-color: var(--gold-light);
  content: "";
  pointer-events: none;
}

.venue-map-frame::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid;
  border-left: 3px solid;
}

.venue-map-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid;
  border-bottom: 3px solid;
}

.venue-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(0.45) saturate(0.82) contrast(1.06);
}

.venue-map-label {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(244, 211, 107, 0.48);
  padding: 14px 18px;
  background: rgba(8, 2, 1, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.venue-map-label span {
  color: var(--gold-light);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.venue-map-label strong {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
}

.founders-memberships {
  display: grid;
  grid-column: 1 / -1;
  gap: 18px;
  margin-top: 6px;
  border-top: 1px solid rgba(244, 211, 107, 0.28);
  padding-top: clamp(30px, 4vw, 46px);
  text-align: left;
}

.membership-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 6px;
}

.membership-summary .eyebrow {
  margin: 0;
  white-space: nowrap;
}

.membership-summary > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
  text-align: right;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.membership-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: clamp(24px, 3vw, 36px);
  background: rgba(7, 2, 1, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.membership-card-featured {
  border-color: rgba(244, 211, 107, 0.7);
  background:
    radial-gradient(circle at 88% 10%, rgba(244, 211, 107, 0.15), transparent 25%),
    linear-gradient(145deg, rgba(94, 17, 10, 0.38), rgba(8, 2, 1, 0.72));
}

.membership-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding-bottom: 18px;
  color: var(--gold-light);
}

.membership-card-topline span {
  font-family: var(--font-display);
  font-size: 0.74rem;
}

.membership-card-topline p {
  margin: 0;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.membership-card-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.membership-card-title h3,
.membership-card-title strong {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
}

.membership-card-title h3 {
  color: var(--ivory);
  font-size: clamp(2.2rem, 3.2vw, 3.35rem);
  letter-spacing: 0.04em;
}

.membership-card-title strong {
  color: var(--gold-light);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.membership-description {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.membership-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  color: rgba(255, 248, 232, 0.86);
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.5;
  list-style: none;
}

.membership-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
}

.membership-card li::before {
  color: var(--gold-light);
  content: "✦";
  font-size: 0.62rem;
  line-height: 2.2;
}

.custom-partnership {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: clamp(26px, 3vw, 38px) clamp(28px, 4vw, 48px);
  background: rgba(8, 2, 1, 0.52);
}

.custom-partnership .eyebrow {
  margin-bottom: 7px;
}

.custom-partnership h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  font-weight: 400;
}

.custom-partnership p:last-child {
  max-width: 670px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.ticket-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(212, 175, 55, 0.3);
  padding-block: clamp(72px, 8vw, 110px);
  background:
    linear-gradient(90deg, rgba(67, 8, 6, 0.96), rgba(17, 4, 3, 0.94)),
    var(--red-deep);
}

.ticket-section::after {
  position: absolute;
  top: 50%;
  right: -8vw;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(212, 134, 32, 0.18);
  content: "";
  filter: blur(100px);
  transform: translateY(-50%);
}

.ticket-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ticket-layout .eyebrow {
  margin-bottom: 12px;
}

.ticket-layout h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}

.form-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.24);
}

.form-section::before,
.form-section::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(244, 211, 107, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.form-section::before {
  top: -28vw;
  left: -18vw;
  width: 58vw;
  aspect-ratio: 1;
}

.form-section::after {
  right: -20vw;
  bottom: -32vw;
  width: 66vw;
  aspect-ratio: 1;
}

.founders-form-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(172, 80, 14, 0.24), transparent 30%),
    linear-gradient(125deg, #080201 0%, #240705 52%, #100302 100%);
}

.contact-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(155, 104, 19, 0.18), transparent 30%),
    linear-gradient(125deg, #160403 0%, #070201 58%, #120403 100%);
}

.contact-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.contact-heading .eyebrow {
  margin-bottom: 15px;
}

.contact-heading h2 {
  max-width: 790px;
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.2vw, 6.1rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.94;
}

.contact-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.production-contacts {
  display: grid;
  gap: 14px;
}

.production-contact-intro {
  margin-bottom: 7px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.24);
  padding-bottom: 24px;
}

.production-contact-intro .eyebrow {
  margin-bottom: 10px;
}

.production-contact-intro h3 {
  max-width: 500px;
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.production-contact-intro > p:last-child {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.production-contact-intro strong {
  color: var(--gold-pale);
}

.producer-card {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 25px 26px;
  background: rgba(8, 2, 1, 0.58);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.producer-card-accent {
  border-color: rgba(244, 211, 107, 0.48);
  background:
    radial-gradient(circle at 95% 0%, rgba(244, 211, 107, 0.12), transparent 30%),
    rgba(8, 2, 1, 0.66);
}

.producer-primary-role {
  color: var(--gold-light);
  font-weight: 700;
}

.producer-card h4 {
  margin: 0 0 11px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.producer-card > p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.producer-card > div {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  padding-top: 15px;
  color: var(--gold-pale);
  font-size: 0.72rem;
}

.producer-card a,
.production-email {
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.producer-contact-label {
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.producer-card a:hover,
.producer-card a:focus-visible,
.production-email:hover,
.production-email:focus-visible {
  color: var(--gold-light);
}

.production-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  padding: 14px 2px 17px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-section-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
  gap: clamp(54px, 7vw, 108px);
  align-items: start;
}

.form-section-layout-reverse {
  grid-template-columns: minmax(520px, 1.3fr) minmax(280px, 0.7fr);
}

.form-section-layout-reverse .form-section-copy {
  order: 2;
}

.form-section-copy {
  position: sticky;
  top: 48px;
  padding-top: 34px;
}

.form-section-copy .eyebrow {
  margin-bottom: 18px;
}

.form-section-copy h2 {
  max-width: 640px;
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.98;
}

.form-section-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

.form-source-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  max-width: 520px;
  margin: 30px 0;
  border-block: 1px solid rgba(212, 175, 55, 0.22);
  padding-block: 18px;
  color: rgba(255, 248, 232, 0.7);
}

.form-source-note > span {
  color: var(--gold-light);
  font-size: 0.72rem;
  line-height: 1.7;
}

.form-source-note p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.7;
}

.form-source-note strong {
  color: var(--gold-pale);
  font-weight: 600;
}

.inquiry-panel {
  position: relative;
  border: 1px solid rgba(244, 211, 107, 0.35);
  padding: clamp(28px, 4vw, 50px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 34%),
    rgba(8, 2, 1, 0.68);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.44),
    inset 0 0 90px rgba(139, 30, 30, 0.08);
  backdrop-filter: blur(16px);
}

.inquiry-panel::before,
.inquiry-panel::after {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--gold-light);
  content: "";
  pointer-events: none;
}

.inquiry-panel::before {
  top: -2px;
  left: -2px;
  border-top: 3px solid;
  border-left: 3px solid;
}

.inquiry-panel::after {
  right: -2px;
  bottom: -2px;
  border-right: 3px solid;
  border-bottom: 3px solid;
}

.inquiry-panel-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.24);
  padding-bottom: 28px;
}

.inquiry-panel-heading > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(244, 211, 107, 0.5);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.inquiry-panel-heading p {
  margin: 0 0 6px;
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.inquiry-panel-heading h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.1;
}

.inquiry-form {
  position: relative;
}

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

.form-field {
  display: grid;
  gap: 9px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--gold-pale);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.form-field label span {
  color: rgba(207, 194, 168, 0.66);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 232, 0.2);
  border-radius: 0;
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--ivory);
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-field input,
.form-field select {
  min-height: 50px;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field select {
  color-scheme: dark;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(244, 211, 107, 0.48);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-light);
  background: rgba(28, 7, 4, 0.7);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.13);
  outline: none;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 24px;
  color: rgba(255, 248, 232, 0.72);
  cursor: pointer;
  font-size: 0.72rem;
  line-height: 1.65;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--gold-light);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.form-submit-row .button {
  min-width: 210px;
  cursor: pointer;
  font-family: var(--font-body);
}

.form-submit-row .button:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.form-submit-row p {
  max-width: 210px;
  margin: 0;
  color: rgba(207, 194, 168, 0.58);
  font-size: 0.61rem;
  line-height: 1.55;
}

.form-status {
  margin: 22px 0 0;
  border-left: 2px solid currentColor;
  padding: 12px 14px;
  font-size: 0.76rem;
  line-height: 1.6;
}

.form-status-submitting {
  color: var(--gold-pale);
  background: rgba(212, 175, 55, 0.08);
}

.form-status-success {
  color: #f1d889;
  background: rgba(84, 119, 52, 0.14);
}

.form-status-error {
  color: #ffaaa0;
  background: rgba(139, 30, 30, 0.2);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.founders-dialog {
  width: min(860px, calc(100% - 40px));
  max-width: none;
  max-height: min(90dvh, 880px);
  margin: auto;
  overflow: hidden;
  border: 1px solid rgba(244, 211, 107, 0.58);
  border-radius: 0;
  padding: 0;
  background: #100302;
  color: var(--ivory);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.78);
}

.founders-dialog[open] {
  animation: dialog-enter 220ms ease-out both;
}

.founders-dialog::backdrop {
  background: rgba(3, 1, 1, 0.82);
  backdrop-filter: blur(8px);
  animation: dialog-backdrop-enter 200ms ease-out both;
}

.founders-dialog-content {
  position: relative;
  max-height: min(90dvh, 880px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 88% 8%, rgba(212, 175, 55, 0.13), transparent 27%),
    linear-gradient(145deg, rgba(83, 15, 10, 0.24), transparent 46%),
    #100302;
  -webkit-overflow-scrolling: touch;
}

.dialog-close {
  position: sticky;
  z-index: 3;
  top: 0;
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 0 -44px auto;
  place-items: center;
  border: 1px solid rgba(244, 211, 107, 0.5);
  border-radius: 50%;
  background: rgba(8, 2, 1, 0.9);
  color: var(--gold-light);
  cursor: pointer;
  font: inherit;
  font-size: 1.65rem;
  line-height: 1;
  touch-action: manipulation;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  background: var(--gold-light);
  color: #250d03;
  transform: rotate(6deg);
}

.founders-dialog-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  padding: 0 60px 28px 0;
}

.founders-dialog-heading .eyebrow {
  margin-bottom: 10px;
}

.founders-dialog-heading h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.4vw, 3.65rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.98;
}

.founders-dialog-heading > div:first-child > p:last-child {
  max-width: 570px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

@keyframes dialog-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dialog-backdrop-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background: #050201;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto auto;
  gap: clamp(38px, 6vw, 88px);
  align-items: end;
  padding-block: 66px 52px;
}

.footer-kicker {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-script {
  margin: -3px 0 0 8px;
  color: var(--ivory);
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
}

.footer-contact {
  display: grid;
  gap: 10px;
  justify-items: end;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: start;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-links p {
  margin: 0 0 4px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-partners {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 30px 34px;
}

.footer-partners > p {
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

.footer-partner-grid {
  display: grid;
  width: min(820px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  margin-inline: auto;
}

.footer-partner {
  display: grid;
  min-width: 0;
  min-height: 118px;
  align-content: center;
  justify-items: center;
  margin: 0;
  padding: 10px 24px;
  text-align: center;
}

.footer-partner + .footer-partner {
  border-left: 1px solid rgba(212, 175, 55, 0.16);
}

.footer-partner img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-partner-matizart img {
  width: clamp(92px, 12vw, 140px);
}

.footer-partner-cultural-center img {
  width: clamp(46px, 5vw, 60px);
}

.footer-partner-ferrer img {
  width: clamp(86px, 10vw, 120px);
}

.footer-partner figcaption {
  max-width: 190px;
  margin-top: 10px;
  color: rgba(207, 194, 168, 0.7);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.footer-links button,
.legal-footer button,
.legal-content button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-links a,
.footer-links button,
.footer-legal a,
.legal-footer a,
.legal-footer button,
.legal-content a,
.legal-content button {
  text-decoration-color: rgba(244, 211, 107, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links button:hover,
.footer-links button:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible,
.legal-footer a:hover,
.legal-footer a:focus-visible,
.legal-footer button:hover,
.legal-footer button:focus-visible,
.legal-content a:hover,
.legal-content a:focus-visible,
.legal-content button:hover,
.legal-content button:focus-visible {
  color: var(--gold-light);
}

.footer-contact p {
  margin: 0 0 4px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 20px 26px;
  color: rgba(207, 194, 168, 0.64);
  font-size: 0.67rem;
}

.footer-legal p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  width: min(980px, calc(100% - 44px));
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-inline: auto;
  border: 1px solid rgba(244, 211, 107, 0.58);
  padding: 22px 24px;
  background:
    radial-gradient(circle at 95% 0%, rgba(212, 175, 55, 0.14), transparent 30%),
    rgba(10, 3, 2, 0.97);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
}

.cookie-banner > div:first-child {
  max-width: 570px;
}

.cookie-banner-title {
  margin: 0 0 6px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.cookie-banner p:not(.cookie-banner-title) {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.6;
}

.cookie-banner a {
  display: inline-block;
  margin-top: 7px;
  color: var(--gold-light);
  font-size: 0.65rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-banner-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-banner-actions .button {
  min-height: 44px;
  padding-inline: 16px;
  cursor: pointer;
  font-size: 0.55rem;
}

.legal-header {
  display: flex;
  width: min(1120px, calc(100% - 48px));
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-back {
  color: var(--gold-pale);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-page {
  min-height: 70vh;
  padding: clamp(78px, 10vw, 140px) 24px;
  background:
    radial-gradient(circle at 82% 8%, rgba(156, 70, 13, 0.2), transparent 25%),
    linear-gradient(145deg, #070201, #1b0503 48%, #080201);
}

.legal-document {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(50px, 8vw, 120px);
  margin-inline: auto;
}

.legal-title {
  position: sticky;
  top: 40px;
  align-self: start;
}

.legal-title h1 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.legal-title > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.75;
}

.legal-title time {
  display: block;
  margin-top: 22px;
  color: var(--gold-light);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  gap: 20px;
  counter-reset: section;
}

.legal-content section {
  border: 1px solid rgba(212, 175, 55, 0.24);
  padding: clamp(24px, 3.2vw, 38px);
  background: rgba(7, 2, 1, 0.54);
}

.legal-content h2 {
  margin: 0 0 17px;
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.8;
}

.legal-content p {
  margin: 0;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding-left: 20px;
}

.legal-content a,
.legal-content button {
  color: var(--gold-pale);
  text-decoration: underline;
}

.legal-footer {
  display: grid;
  width: min(1120px, calc(100% - 48px));
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: end;
  margin-inline: auto;
  padding-block: 36px;
  color: rgba(207, 194, 168, 0.68);
  font-size: 0.67rem;
}

.legal-footer > div,
.legal-footer nav {
  display: grid;
  gap: 8px;
}

.legal-footer nav {
  justify-items: center;
}

.legal-footer > p {
  justify-self: end;
  margin: 0;
}

.legal-footer p {
  margin: 0;
}

/* Spanish search landing page */
.spanish-page {
  min-height: 100vh;
  background: #0a0201;
  color: var(--ivory);
}

.spanish-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  padding: 150px 0 100px;
}

.spanish-hero-media,
.spanish-hero-media img,
.spanish-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.spanish-hero-media {
  z-index: -3;
}

.spanish-hero-media img {
  object-fit: cover;
  object-position: center;
}

.spanish-hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 43%, rgba(135, 67, 13, 0.28), transparent 39%),
    linear-gradient(90deg, rgba(5, 1, 1, 0.82), rgba(7, 1, 1, 0.45) 48%, rgba(5, 1, 1, 0.8)),
    linear-gradient(180deg, rgba(2, 0, 0, 0.08), rgba(3, 0, 0, 0.85));
}

.spanish-hero-inner {
  display: grid;
  justify-items: center;
  width: min(920px, 92vw);
  text-align: center;
}

.spanish-title-lockup {
  width: min(780px, 88vw);
  height: auto;
  margin-top: 16px;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.64));
}

.spanish-hero h1 {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.7vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1;
}

.spanish-hero-inner > p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 248, 232, 0.8);
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
  line-height: 1.8;
}

.spanish-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.spanish-story {
  background:
    radial-gradient(circle at 18% 34%, rgba(161, 65, 13, 0.19), transparent 34%),
    linear-gradient(125deg, #090201, #1a0402 56%, #080101);
}

.spanish-story-grid,
.spanish-event-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: start;
}

.spanish-story h2,
.spanish-event h2,
.spanish-cta h2 {
  margin: 22px 0 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.98;
}

.spanish-story-copy {
  display: grid;
  gap: 20px;
  border-top: 1px solid rgba(244, 211, 107, 0.36);
  padding-top: 34px;
}

.spanish-story-copy p {
  margin: 0;
  color: rgba(255, 248, 232, 0.76);
  font-size: 0.94rem;
  line-height: 1.9;
}

.spanish-story-copy strong {
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 400;
}

.spanish-story-copy .text-link {
  width: fit-content;
  margin-top: 10px;
}

.spanish-event {
  background:
    linear-gradient(rgba(16, 3, 2, 0.9), rgba(16, 3, 2, 0.9)),
    url("../images/founders-stage-desktop-v2.webp") center / cover;
}

.spanish-event-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.spanish-event-card {
  margin: 0;
  border: 1px solid rgba(244, 211, 107, 0.46);
  background: rgba(6, 1, 1, 0.64);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.spanish-event-card div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  padding: 25px 28px;
  border-bottom: 1px solid rgba(244, 211, 107, 0.17);
}

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

.spanish-event-card dt {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spanish-event-card dd {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.35;
}

.spanish-cta {
  padding: clamp(90px, 9vw, 150px) 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(161, 82, 10, 0.27), transparent 37%),
    #090201;
  text-align: center;
}

.spanish-cta .shell {
  display: grid;
  justify-items: center;
}

.spanish-cta h2 {
  max-width: 950px;
  margin-bottom: 38px;
}

.spanish-footer {
  grid-template-columns: 1.15fr 1fr 1fr;
}

.spanish-footer nav {
  align-content: start;
}

.mobile-ticket-bar {
  display: none;
}

@keyframes hero-breathe {
  from { transform: scale(1.012); }
  to { transform: scale(1.035); }
}

@keyframes scroll-line {
  50%,
  100% { transform: translateX(100%); }
}

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

@keyframes medallion-float {
  50% { transform: translateY(-8px) rotate(0.35deg); }
}

@keyframes medallion-glint {
  0%,
  28%,
  100% { opacity: 0; transform: scale(0.45) rotate(45deg); }
  38%,
  52% { opacity: 1; transform: scale(1.12) rotate(45deg); }
  62% { opacity: 0; transform: scale(0.6) rotate(45deg); }
}

@supports (animation-timeline: view()) {
  .reveal {
    animation: reveal-up 1ms ease-out both;
    animation-range: entry 8% cover 30%;
    animation-timeline: view();
  }

  @keyframes reveal-up {
    from {
      opacity: 0.2;
      transform: translateY(42px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 980px) {
  .site-nav > a:nth-child(2),
  .site-nav > a:nth-child(4) {
    display: none;
  }

  .hero-copy {
    width: min(860px, 88vw);
  }

  .event-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section-intro {
    max-width: 680px;
  }

  .venue-layout,
  .contact-heading,
  .contact-layout,
  .legal-document {
    grid-template-columns: 1fr;
  }

  .venue-copy,
  .contact-heading > p {
    max-width: 720px;
  }

  .venue-map-frame {
    width: 100%;
    min-height: 440px;
    justify-self: stretch;
  }

  .membership-summary {
    display: grid;
    gap: 10px;
    align-items: start;
  }

  .membership-summary > p:last-child {
    max-width: 680px;
    text-align: left;
  }

  .legal-title {
    position: static;
    max-width: 720px;
  }

  .legal-footer {
    grid-template-columns: 1fr 1fr;
  }

  .legal-footer nav {
    justify-items: end;
  }

  .legal-footer > p {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .founders-frame {
    grid-template-columns: 1fr;
  }

  .founders-copy {
    max-width: 760px;
  }

  .founders-visual {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    width: 100%;
  }

  .form-section-layout,
  .form-section-layout-reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-section-layout-reverse .form-section-copy {
    order: 0;
  }

  .form-section-copy {
    position: static;
    max-width: 720px;
    padding-top: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-contact {
    justify-items: start;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 10px 24px;
  }

  .spanish-nav > a:nth-child(1),
  .spanish-nav > a:nth-child(2) {
    display: none;
  }

  .spanish-nav > a:nth-child(3),
  .spanish-nav > a:nth-child(4) {
    display: inline-flex;
  }

  .spanish-story-grid,
  .spanish-event-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .spanish-footer {
    grid-template-columns: 1fr 1fr;
  }

  .spanish-footer > p {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .cookie-banner {
    align-items: flex-end;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .shell,
  .site-header {
    width: min(100% - 28px, 1240px);
  }

  .site-header {
    min-height: 74px;
  }

  .brand-mark {
    font-size: 0.61rem;
    letter-spacing: 0.17em;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav > a:not(.nav-ticket) {
    display: none;
  }

  .nav-ticket {
    min-height: 36px;
    padding-inline: 13px;
    font-size: 0.6rem;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-background {
    object-position: center center;
    animation: none;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 1, 1, 0.82) 0%, rgba(3, 1, 1, 0.16) 20%, rgba(4, 1, 1, 0.13) 64%, rgba(2, 1, 1, 0.76) 100%),
      radial-gradient(ellipse at 50% 35%, rgba(8, 3, 1, 0.06), rgba(3, 1, 1, 0.46) 76%);
  }

  .hero-content {
    align-items: start;
    padding-block: 108px 88px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.59rem;
    letter-spacing: 0.24em;
  }

  .title-lockup {
    width: min(100%, 560px);
  }

  .hero-tagline {
    margin: -1px 0 17px;
    font-size: 1.06rem;
  }

  .hero-event-line {
    gap: 11px;
  }

  .hero-event-line time {
    font-size: clamp(1.02rem, 4.5vw, 1.2rem);
  }

  .hero-event-line > span {
    height: 28px;
  }

  .hero-event-line strong {
    max-width: 94px;
    font-size: 0.65rem;
    line-height: 1.4;
    text-align: left;
  }

  .hero-venue {
    max-width: 360px;
    margin-top: 14px;
    font-size: 0.76rem;
  }

  .hero-venue span {
    margin-top: 2px;
    font-size: 0.7rem;
  }

  .hero-actions {
    width: min(100%, 390px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
  }

  .button {
    min-height: 48px;
    padding-inline: 13px;
    font-size: 0.61rem;
    letter-spacing: 0.1em;
  }

  .scroll-cue {
    display: none;
  }

  .marquee-strip div {
    padding-block: 13px;
    font-size: 0.62rem;
  }

  .section {
    padding-block: 88px;
  }

  .section-intro h2 {
    font-size: clamp(2.8rem, 13.5vw, 4.25rem);
  }

  .section-intro .event-date-line {
    font-size: 0.74em;
  }

  .section-lead {
    font-size: 1rem;
  }

  .event-layout {
    gap: 46px;
  }

  .event-detail {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 21px;
  }

  .event-card-action {
    padding: 21px;
  }

  .event-card-action a {
    gap: 16px;
    font-size: 0.67rem;
  }

  .venue-layout {
    gap: 38px;
  }

  .venue-copy h2 {
    font-size: clamp(2.9rem, 13vw, 4rem);
  }

  .venue-hall {
    font-size: 1.6rem;
  }

  .venue-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .venue-map-frame {
    min-height: 350px;
  }

  .venue-map-label {
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }

  .experience-section {
    min-height: 720px;
    background: #130403;
  }

  .experience-section::after {
    height: 42%;
  }

  .experience-background img {
    object-position: center;
  }

  .experience-shade {
    background:
      linear-gradient(180deg, rgba(4, 1, 1, 0.22), rgba(4, 1, 1, 0.08) 43%, rgba(4, 1, 1, 0.62) 100%),
      radial-gradient(ellipse at center, rgba(3, 1, 1, 0.08) 0 30%, transparent 64%, rgba(3, 1, 1, 0.35) 100%);
  }

  .experience-inner h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .experience-inner h2 em {
    margin-top: 0.2em;
    font-size: 0.72em;
  }

  .experience-line {
    margin-block: 36px 22px;
  }

  .experience-notes {
    grid-template-columns: 1fr;
  }

  .experience-notes div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    padding: 13px;
  }

  .experience-notes div:last-child {
    border-bottom: 0;
  }

  .experience-notes p {
    margin: 0;
    font-size: 0.84rem;
  }

  .founders-background img {
    object-position: center bottom;
  }

  .founders-shade {
    background:
      linear-gradient(180deg, rgba(5, 1, 1, 0.62) 0%, rgba(8, 1, 1, 0.45) 46%, rgba(5, 1, 1, 0.16) 72%, rgba(3, 1, 1, 0.72) 100%),
      radial-gradient(circle at 50% 67%, transparent 0 18%, rgba(5, 1, 1, 0.24) 54%, rgba(5, 1, 1, 0.58) 100%);
  }

  .founders-frame {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 20px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 45%),
      rgba(8, 2, 1, 0.58);
    text-align: center;
  }

  .founders-kicker {
    margin-inline: auto;
    font-size: 0.65rem;
  }

  .founders-copy h2 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
    line-height: 0.98;
  }

  .founders-script {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .founders-story {
    margin-inline: auto;
    font-size: 0.78rem;
  }

  .founders-benefits {
    width: min(100%, 390px);
    margin-inline: auto;
    font-size: 0.88rem;
    text-align: center;
  }

  .founders-benefits li {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .founders-benefits li::before {
    flex: 0 0 auto;
    margin-right: 0;
  }

  .founders-actions {
    display: grid;
    width: 100%;
    justify-content: center;
    justify-items: center;
    margin-inline: auto;
  }

  .founders-actions .button {
    width: min(100%, 320px);
    min-width: 0;
    margin-inline: auto;
  }

  .founders-visual {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
  }

  .founder-medallion {
    width: min(248px, 72vw);
    margin-inline: auto;
  }

  .founder-medallion-copy {
    width: 58%;
  }

  .founder-medallion-copy span {
    font-size: 0.52rem;
  }

  .founder-medallion-copy strong {
    margin-block: 8px;
    font-size: clamp(1.3rem, 6.3vw, 1.65rem);
  }

  .founder-medallion-copy i {
    font-size: 0.68rem;
  }

  .founders-memberships {
    margin-top: 8px;
    padding-top: 30px;
    text-align: center;
  }

  .membership-summary {
    gap: 9px;
    justify-items: center;
  }

  .membership-summary .eyebrow {
    white-space: normal;
  }

  .membership-summary > p:last-child {
    text-align: center;
  }

  .membership-grid {
    grid-template-columns: 1fr;
  }

  .membership-card {
    padding: 27px 22px;
  }

  .membership-card-title {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .membership-card-title h3 {
    font-size: 2.4rem;
  }

  .membership-card-title strong {
    font-size: 2.5rem;
  }

  .membership-card-topline {
    justify-content: center;
    gap: 16px;
  }

  .membership-description {
    margin-inline: auto;
  }

  .membership-card ul {
    justify-items: center;
    text-align: center;
  }

  .membership-card li {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .membership-card li::before {
    flex: 0 0 auto;
    line-height: inherit;
  }

  .custom-partnership {
    display: grid;
    gap: 24px;
    justify-items: center;
    padding: 26px 22px;
    text-align: center;
  }

  .custom-partnership .button {
    width: 100%;
  }

  .ticket-layout {
    display: grid;
    justify-items: start;
  }

  .ticket-layout h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .form-section-copy h2 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .contact-heading {
    gap: 20px;
    margin-bottom: 38px;
  }

  .contact-heading h2 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .contact-heading > p {
    font-size: 0.8rem;
  }

  .contact-layout {
    gap: 40px;
  }

  .production-contact-intro h3 {
    font-size: 2rem;
  }

  .producer-card {
    padding: 22px 20px;
  }

  .form-section-copy > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 0.86rem;
  }

  .inquiry-panel {
    padding: 28px 20px;
  }

  .inquiry-panel-heading {
    gap: 13px;
    margin-bottom: 26px;
    padding-bottom: 22px;
  }

  .inquiry-panel-heading > span {
    width: 36px;
    height: 36px;
  }

  .inquiry-panel-heading h3 {
    font-size: 1.65rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-submit-row {
    display: grid;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .form-submit-row p {
    max-width: none;
    text-align: center;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }

  .founders-dialog {
    inset: auto 0 0;
    width: 100%;
    max-height: 94dvh;
    margin: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .founders-dialog-content {
    max-height: 94dvh;
    padding: 20px 18px calc(26px + env(safe-area-inset-bottom));
  }

  .dialog-close {
    top: 0;
  }

  .founders-dialog-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 26px;
    padding: 8px 52px 22px 0;
  }

  .founders-dialog-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  .founders-dialog-heading > div:first-child > p:last-child {
    font-size: 0.76rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact {
    justify-items: start;
  }

  .footer-links {
    justify-items: start;
  }

  .footer-partners {
    padding-block: 26px 30px;
  }

  .footer-partners > p {
    margin-bottom: 18px;
    font-size: 0.52rem;
  }

  .footer-partner {
    min-height: 108px;
    padding-inline: 4px;
  }

  .footer-partner figcaption {
    max-width: 100px;
    margin-top: 8px;
    font-size: 0.42rem;
    line-height: 1.35;
  }

  .footer-legal {
    display: grid;
    gap: 8px;
  }

  .cookie-banner {
    right: 14px;
    bottom: calc(70px + env(safe-area-inset-bottom));
    left: 14px;
    display: grid;
    width: calc(100% - 28px);
    gap: 17px;
    padding: 18px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
  }

  .legal-header {
    width: min(100% - 28px, 1120px);
    min-height: 76px;
  }

  .legal-back {
    font-size: 0.55rem;
    letter-spacing: 0.09em;
  }

  .legal-page {
    padding: 72px 14px;
  }

  .legal-document {
    gap: 38px;
  }

  .legal-title h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .legal-content section {
    padding: 24px 20px;
  }

  .legal-footer {
    width: min(100% - 28px, 1120px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-footer nav {
    justify-items: start;
  }

  .legal-footer > p {
    grid-column: auto;
  }

  .spanish-hero {
    min-height: 720px;
    padding: 112px 0 82px;
  }

  .spanish-hero-media img {
    object-position: center bottom;
  }

  .spanish-title-lockup {
    width: min(520px, 92vw);
  }

  .spanish-hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.55rem);
  }

  .spanish-hero-inner > p:not(.eyebrow) {
    font-size: 0.86rem;
    line-height: 1.7;
  }

  .spanish-hero-actions {
    display: grid;
    width: min(100%, 330px);
  }

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

  .spanish-story h2,
  .spanish-event h2,
  .spanish-cta h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
    text-align: center;
  }

  .spanish-story-grid,
  .spanish-event-grid {
    gap: 36px;
    text-align: center;
  }

  .spanish-story-copy {
    justify-items: center;
    padding-top: 28px;
  }

  .spanish-story-copy p {
    font-size: 0.84rem;
  }

  .spanish-event {
    background:
      linear-gradient(rgba(16, 3, 2, 0.91), rgba(16, 3, 2, 0.91)),
      url("../images/founders-stage-mobile-v2.webp") center / cover;
  }

  .spanish-event-card div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 20px;
  }

  .spanish-event-card dd {
    font-size: 1.08rem;
  }

  .spanish-cta .button {
    width: min(100%, 330px);
  }

  .spanish-footer {
    grid-template-columns: 1fr;
  }

  .mobile-ticket-bar {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: calc(58px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid var(--gold-light);
    background: linear-gradient(135deg, #f7dc7d, #c58d20 60%, #9e6710);
    color: #250d03;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    padding: 0 18px env(safe-area-inset-bottom);
    text-transform: uppercase;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.38);
  }
}

@media (max-width: 380px) {
  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-event-line {
    align-items: flex-start;
  }

  .hero-event-line time {
    font-size: 1rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .founders-frame {
    padding-inline: 18px;
  }

  .founder-medallion {
    width: min(224px, 70vw);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
