@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #060706;
  --bg-2: #0d0d0b;
  --panel: rgba(14, 15, 13, 0.86);
  --line: rgba(244, 214, 134, 0.24);
  --line-soft: rgba(244, 214, 134, 0.12);
  --text: #f7f2e8;
  --muted: #c9c0ad;
  --dim: #8e8677;
  --gold: #d8a72e;
  --gold-2: #f2c553;
  --gold-dark: #8b6417;
  --ink: #080806;
  --display: "Barlow Condensed", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  --body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --max: 1290px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 18%, rgba(216, 167, 46, 0.07), transparent 24rem),
    radial-gradient(circle at 88% 50%, rgba(74, 99, 105, 0.08), transparent 30rem),
    linear-gradient(180deg, #020303 0%, var(--bg) 42%, #080909 100%);
  font-family: var(--body);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

img,
svg {
  display: block;
}

.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;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

a {
  color: inherit;
}

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

.section-dark {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 715px;
  border-bottom: 1px solid var(--line-soft);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 47%;
  opacity: 0.82;
  filter: saturate(0.72) contrast(1.12) brightness(0.72);
  transform: scale(1.02);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 34%, rgba(216, 167, 46, 0.18), transparent 19rem),
    radial-gradient(circle at 25% 18%, rgba(216, 167, 46, 0.09), transparent 18rem),
    linear-gradient(90deg, #010202 0%, rgba(1, 2, 2, 0.98) 35%, rgba(1, 2, 2, 0.72) 58%, rgba(1, 2, 2, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 32px 0 40px;
  animation: rise-in 900ms cubic-bezier(0.32, 0.72, 0, 1) both;
}

.badge,
.kicker {
  margin: 0 0 20px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  padding: 9px 13px 8px;
  border: 1px solid rgba(240, 183, 47, 0.7);
  background: rgba(0, 0, 0, 0.34);
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1 {
  max-width: 890px;
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(4.9rem, 7.05vw, 7.35rem);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}

h1 span {
  position: relative;
  color: var(--gold);
}

h1 span::after {
  position: absolute;
  right: 4%;
  bottom: 0.02em;
  left: 4%;
  height: 0.08em;
  content: "";
  background: currentColor;
}

.hero__lead {
  max-width: 570px;
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.78rem, 2.55vw, 2.24rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.025em;
}

.hero__sub,
.hero__body {
  max-width: 520px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.58;
}

.hero__sub {
  margin: 0 0 14px;
  font-weight: 650;
}

strong {
  color: var(--gold-2);
}

.hero__body {
  margin-bottom: 28px;
  color: var(--muted);
}

.event-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 770px;
  margin-bottom: 24px;
}

.event-item {
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 184px;
  padding: 0 20px 0 0;
  margin: 0 20px 14px 0;
  border-right: 1px solid var(--line-soft);
}

.event-item:last-child {
  border-right: 0;
}

.event-item svg,
.fit__grid svg,
.problem svg,
.icon-list svg {
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
  vector-effect: non-scaling-stroke;
}

.event-item svg {
  width: 27px;
  height: 27px;
}

.event-item p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.event-item span {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

.hero__action {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 38px;
  border: 1px solid #ffe08a;
  border-radius: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f5d470, #d8a72e 72%, #a8731d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 16px 38px rgba(216, 167, 46, 0.12);
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 360ms cubic-bezier(0.32, 0.72, 0, 1), filter 360ms cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, 0.4) 48%, transparent 60% 100%);
  transform: translateX(-120%);
  transition: transform 700ms cubic-bezier(0.32, 0.72, 0, 1);
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.button:hover::before {
  transform: translateX(120%);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

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

.button--small {
  min-height: 42px;
  padding-inline: 22px;
  font-size: 0.72rem;
}

.hero__action p {
  position: relative;
  max-width: 330px;
  padding-left: 26px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero__action p::before {
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0;
  width: 1px;
  content: "";
  background: var(--line-soft);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 770px;
  margin-top: 30px;
  border-block: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(216, 167, 46, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(2, 3, 3, 0.18);
}

.proof-row p {
  min-height: 76px;
  padding: 17px 20px;
  margin: 0;
  border-right: 1px solid var(--line-soft);
}

.proof-row p:last-child {
  border-right: 0;
}

.proof-row b,
.seat-bar b {
  display: block;
  color: var(--text);
  font-size: 0.82rem;
  font-family: var(--body);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-row span,
.seat-bar span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.seat-bar {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 5;
  display: flex;
  gap: 18px;
  align-items: center;
  width: min(calc(100% - 36px), 680px);
  padding: 10px 10px 10px 18px;
  border: 1px solid rgba(240, 183, 47, 0.38);
  background: linear-gradient(180deg, rgba(13, 14, 12, 0.99), rgba(5, 6, 6, 0.99));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 50px rgba(0, 0, 0, 0.45);
  display: none;
}

.seat-bar p {
  flex: 1;
  margin: 0;
}

.hero__action span {
  margin-right: 10px;
  color: var(--gold);
  font-size: 1.3rem;
}

.fit {
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(0, 1.32fr);
  gap: 0;
  align-items: stretch;
  padding: 34px 0 26px;
  border-block: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 7% 30%, rgba(216, 167, 46, 0.08), transparent 18rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.004) 62%);
}

.fit__copy {
  display: grid;
  align-content: center;
  min-height: 286px;
  padding: 30px 36px 30px 0;
  border-right: 1px solid var(--line-soft);
}

.fit__copy h2,
.way h2,
.month h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.15vw, 2.72rem);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.fit__copy h2 {
  font-size: clamp(2rem, 3.05vw, 2.95rem);
}

.fit__note {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.problem h3,
.advice h3,
.faq h3,
.footer__cta h2,
.reserve h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.025em;
}

.panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 16, 16, 0.84), rgba(5, 6, 6, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fit__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 286px;
  counter-reset: fit-card;
}

.fit__grid div {
  position: relative;
  counter-increment: fit-card;
  display: grid;
  align-content: end;
  justify-items: start;
  min-height: 143px;
  padding: 22px 26px 24px;
  text-align: left;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: background 360ms cubic-bezier(0.32, 0.72, 0, 1), transform 360ms cubic-bezier(0.32, 0.72, 0, 1);
}

.fit__grid div:hover {
  background:
    radial-gradient(circle at 22% 20%, rgba(216, 167, 46, 0.09), transparent 10rem),
    rgba(240, 183, 47, 0.04);
  transform: translateY(-2px);
}

.fit__grid div:nth-child(2n) {
  border-right: 0;
}

.fit__grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.fit__grid div::before {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(216, 167, 46, 0.42);
  content: "0" counter(fit-card);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.fit__grid svg {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  padding: 5px;
  border: 1px solid rgba(216, 167, 46, 0.32);
  background: rgba(216, 167, 46, 0.035);
}

.fit__grid p {
  max-width: 190px;
  margin: 0;
  color: rgba(247, 242, 232, 0.88);
  font-size: 1.05rem;
  line-height: 1.18;
}

.audience {
  position: relative;
  padding: 22px 0 30px;
  text-align: center;
}

.audience__marquee {
  position: relative;
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 16px 0;
  border-block: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(216, 167, 46, 0.055), rgba(255, 255, 255, 0.018) 44%, rgba(216, 167, 46, 0.04)),
    rgba(6, 8, 8, 0.52);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.audience__lane {
  overflow: hidden;
}

.audience__track {
  display: flex;
  width: max-content;
  animation: audience-scroll 34s linear infinite;
  will-change: transform;
}

.audience__lane--reverse .audience__track {
  animation-name: audience-scroll-reverse;
  animation-duration: 38s;
}

.audience__marquee:hover .audience__track {
  animation-play-state: paused;
}

.audience__set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.audience__set span,
.audience__set i,
.audience__closing {
  margin: 0;
  font-family: var(--display);
  font-style: normal;
  text-transform: uppercase;
  white-space: nowrap;
}

.audience__set span {
  color: rgba(247, 242, 232, 0.9);
  font-size: clamp(1.32rem, 2.1vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.105em;
  line-height: 1;
}

.audience__lane--reverse .audience__set span {
  color: rgba(201, 192, 173, 0.82);
  font-size: clamp(1.12rem, 1.8vw, 1.62rem);
  letter-spacing: 0.12em;
}

.audience__set i {
  color: var(--gold);
  font-size: 0.95rem;
  line-height: 1;
}

.audience__closing {
  display: block;
  margin-top: 18px;
  color: rgba(248, 246, 238, 0.94);
  font-size: clamp(1.25rem, 2.3vw, 1.88rem);
  font-weight: 700;
  letter-spacing: 0.095em;
  line-height: 1.05;
}

.problem {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(circle at 12% 16%, rgba(216, 167, 46, 0.08), transparent 18rem),
    linear-gradient(180deg, rgba(14, 16, 16, 0.88), rgba(5, 6, 6, 0.94));
}

.problem > .kicker {
  margin-bottom: 22px;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.14);
}

.problem article {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 20px;
  align-items: start;
  min-height: 292px;
  padding: 26px 26px 28px;
  border-right: 1px solid var(--line-soft);
  transition: background 360ms cubic-bezier(0.32, 0.72, 0, 1), transform 360ms cubic-bezier(0.32, 0.72, 0, 1);
}

.problem article:hover {
  background:
    radial-gradient(circle at 22% 18%, rgba(216, 167, 46, 0.08), transparent 11rem),
    rgba(255, 255, 255, 0.018);
  transform: translateY(-2px);
}

.problem article:last-child {
  border-right: 0;
}

.problem svg {
  width: 42px;
  height: 42px;
  grid-row: span 3;
  padding: 5px;
  border: 1px solid rgba(216, 167, 46, 0.26);
  background: rgba(216, 167, 46, 0.03);
}

.problem span {
  color: rgba(216, 167, 46, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.problem h3 {
  margin: 7px 0 16px;
  color: var(--text);
  font-size: clamp(1.46rem, 2.05vw, 1.86rem);
  line-height: 1;
}

.problem p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.advice {
  position: relative;
  width: min(100%, 1040px);
  margin: 22px auto 2px;
  padding: 22px 30px 22px 34px;
  border: 1px solid var(--line);
  border-left-color: rgba(242, 197, 83, 0.72);
  text-align: left;
  background:
    linear-gradient(90deg, rgba(216, 167, 46, 0.09), rgba(0, 0, 0, 0.16) 38%),
    rgba(0, 0, 0, 0.24);
}

.advice::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 16px;
  width: 2px;
  content: "";
  background: var(--gold);
}

.advice h3 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2.2vw, 1.62rem);
  line-height: 1.04;
}

.advice p {
  max-width: 820px;
  margin: 0 0 12px;
}

.split,
.story {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 0;
  margin-top: 14px;
  animation: rise-in 900ms cubic-bezier(0.32, 0.72, 0, 1) both;
  animation-timeline: view();
  animation-range: entry 0% cover 28%;
}

.story {
  grid-template-columns: 1fr 1.08fr;
  margin-bottom: 12px;
}

.image-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.image-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(3, 4, 4, 0.95), rgba(3, 4, 4, 0.68) 45%, rgba(3, 4, 4, 0.1));
}

.image-panel > div {
  position: relative;
  z-index: 1;
  max-width: 420px;
  padding: 28px;
}

.way {
  display: grid;
  align-items: center;
  min-height: 430px;
  background-image: url("./assets/workshop-flipchart.jpeg");
  background-position: 65% center;
}

.way::before {
  background:
    radial-gradient(circle at 76% 42%, rgba(216, 167, 46, 0.14), transparent 15rem),
    linear-gradient(90deg, rgba(3, 4, 4, 0.98), rgba(3, 4, 4, 0.82) 45%, rgba(3, 4, 4, 0.42) 70%, rgba(3, 4, 4, 0.22));
}

.way::after {
  position: absolute;
  inset: 22px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(244, 214, 134, 0.14);
  background: linear-gradient(90deg, rgba(216, 167, 46, 0.08), transparent 34%);
  opacity: 0.72;
}

.way > div {
  max-width: 520px;
  padding: 42px;
}

.way h2 {
  max-width: 500px;
  font-size: clamp(2.35rem, 4.15vw, 3.55rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.way p:not(.kicker) {
  max-width: 450px;
  color: rgba(247, 242, 232, 0.78);
  font-size: 1.03rem;
  line-height: 1.62;
}

.month {
  display: grid;
  align-items: center;
  min-height: 430px;
  background-image: url("./assets/workshop-handshake.jpeg");
  background-position: 44% center;
}

.month::before {
  background:
    radial-gradient(circle at 23% 44%, rgba(216, 167, 46, 0.12), transparent 16rem),
    linear-gradient(90deg, rgba(3, 4, 4, 0.92), rgba(3, 4, 4, 0.62) 50%, rgba(3, 4, 4, 0.36) 78%, rgba(3, 4, 4, 0.18));
}

.month::after {
  position: absolute;
  inset: 22px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(244, 214, 134, 0.15);
  background: linear-gradient(180deg, transparent 0 58%, rgba(216, 167, 46, 0.08));
}

.month > div {
  max-width: 560px;
  padding: 42px;
}

.month p:not(.kicker) {
  max-width: 500px;
  color: rgba(247, 242, 232, 0.78);
  font-size: 1.04rem;
  line-height: 1.64;
}

.image-panel p,
.leave p,
.why p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.image-panel h2 {
  margin: 10px 0 26px;
}

.month h2 {
  color: var(--gold-2);
  max-width: 560px;
  margin-top: 26px;
  font-size: clamp(1.75rem, 3.05vw, 2.36rem);
  line-height: 1.02;
  letter-spacing: 0.025em;
}

.leave,
.why {
  padding: 28px 32px;
}

.leave {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 0%, rgba(216, 167, 46, 0.085), transparent 18rem),
    linear-gradient(145deg, rgba(15, 17, 17, 0.94), rgba(5, 6, 6, 0.96));
}

.leave > .kicker {
  margin-bottom: 22px;
}

.icon-list {
  display: grid;
  gap: 10px;
  counter-reset: deliverable;
  padding: 0;
  margin: 0;
  list-style: none;
}

.icon-list li {
  position: relative;
  counter-increment: deliverable;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 16px 46px 16px 16px;
  border: 1px solid rgba(242, 197, 83, 0.14);
  border-left-color: rgba(242, 197, 83, 0.48);
  background:
    linear-gradient(90deg, rgba(216, 167, 46, 0.055), transparent 42%),
    rgba(255, 255, 255, 0.018);
  transition:
    border-color 360ms cubic-bezier(0.32, 0.72, 0, 1),
    background 360ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 360ms cubic-bezier(0.32, 0.72, 0, 1);
}

.icon-list li::after {
  position: absolute;
  top: 16px;
  right: 16px;
  content: "0" counter(deliverable);
  color: rgba(242, 197, 83, 0.62);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.icon-list li:hover {
  border-color: rgba(242, 197, 83, 0.28);
  background:
    linear-gradient(90deg, rgba(216, 167, 46, 0.085), transparent 50%),
    rgba(255, 255, 255, 0.028);
  transform: translateY(-2px);
}

.icon-list svg {
  width: 38px;
  height: 38px;
  padding: 6px;
  border: 1px solid rgba(216, 167, 46, 0.34);
  background: rgba(216, 167, 46, 0.04);
}

.icon-list h3 {
  margin: 0 0 8px;
  padding-right: 12px;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.icon-list p {
  margin: 0;
  color: rgba(201, 192, 173, 0.9);
  font-size: 0.95rem;
  line-height: 1.52;
}

.leader {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(242, 197, 83, 0.16);
  background:
    linear-gradient(90deg, rgba(216, 167, 46, 0.07), transparent 48%),
    rgba(255, 255, 255, 0.02);
}

.why {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(216, 167, 46, 0.08), transparent 17rem),
    linear-gradient(145deg, rgba(14, 16, 16, 0.92), rgba(5, 6, 6, 0.96));
}

.why::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-left: 2px solid rgba(242, 197, 83, 0.44);
}

.why > * {
  position: relative;
  z-index: 1;
}

.why__body {
  display: grid;
  gap: 18px;
}

.why__lead {
  max-width: 700px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.26rem, 2.25vw, 1.76rem);
  line-height: 1.25;
}

.why__contrast {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border: 1px solid rgba(242, 197, 83, 0.16);
  background: rgba(255, 255, 255, 0.018);
}

.why__contrast div {
  padding: 16px 18px;
}

.why__contrast div + div {
  border-left: 1px solid rgba(242, 197, 83, 0.16);
  background: linear-gradient(90deg, rgba(216, 167, 46, 0.08), transparent);
}

.why__contrast span,
.leader__proof span {
  display: block;
  color: rgba(242, 197, 83, 0.78);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why__contrast strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.04;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.why__thesis {
  max-width: 760px;
  margin: 0;
  color: rgba(201, 192, 173, 0.9);
}

.leader__photo {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 92px;
  height: 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 211, 92, 0.34), transparent 23%),
    linear-gradient(145deg, #303536, #101212 54%, #050606);
  border: 1px solid var(--line-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.leader__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 12%;
  filter: saturate(0.78) contrast(1.08) brightness(0.88);
}

.leader__photo span {
  color: var(--text);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.leader__photo small {
  color: var(--gold-2);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.leader h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 0.94rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.leader__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.leader__proof span {
  display: inline-flex;
  padding: 6px 8px;
  border: 1px solid rgba(242, 197, 83, 0.16);
  background: rgba(216, 167, 46, 0.045);
}

.leader p {
  margin: 0;
}

.reserve {
  position: relative;
  display: grid;
  min-height: 380px;
  margin-top: 10px;
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  place-items: center;
}

.reserve img,
.reserve__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reserve img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.08) brightness(0.82);
}

.reserve__shade {
  background:
    linear-gradient(180deg, rgba(4, 5, 5, 0.3), rgba(4, 5, 5, 0.66)),
    radial-gradient(circle at 74% 46%, rgba(216, 167, 46, 0.18), transparent 18rem),
    linear-gradient(90deg, rgba(4, 5, 5, 0.84), rgba(4, 5, 5, 0.38) 48%, rgba(4, 5, 5, 0.72));
}

.reserve__content {
  position: relative;
  z-index: 1;
  padding: 34px 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.reserve__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(242, 197, 83, 0.2);
  background:
    linear-gradient(90deg, rgba(2, 3, 3, 0.68), rgba(2, 3, 3, 0.28)),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.reserve__event {
  min-width: 0;
}

.reserve .kicker {
  margin-bottom: 12px;
}

.reserve h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.45rem, 5.4vw, 4.75rem);
  line-height: 0.94;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.reserve__details {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 197, 83, 0.2);
}

.reserve p {
  margin: 0;
  color: #f4efe5;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reserve__details p {
  line-height: 1.35;
  letter-spacing: 0.075em;
}

.reserve__details p:first-child {
  color: var(--text);
}

.reserve span,
.footer span {
  color: var(--gold);
}

.reserve strong {
  display: block;
  margin: 0 0 16px;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.reserve__purchase {
  display: grid;
  justify-items: stretch;
  padding-left: 28px;
  border-left: 1px solid rgba(242, 197, 83, 0.22);
  text-align: left;
}

.reserve__purchase .button {
  width: 100%;
}

.reserve small {
  display: block;
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 197, 83, 0.16);
  color: #e7e0d0;
  text-align: center;
}

.faq {
  position: relative;
  padding: 34px 0 30px;
}

.center {
  text-align: center;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  counter-reset: faq;
  margin-top: 24px;
  border: 1px solid rgba(242, 197, 83, 0.18);
  background:
    radial-gradient(circle at 96% 8%, rgba(216, 167, 46, 0.06), transparent 18rem),
    rgba(255, 255, 255, 0.012);
}

.faq article {
  position: relative;
  counter-increment: faq;
  min-height: 212px;
  padding: 34px 40px 32px 72px;
  border-right: 1px solid rgba(242, 197, 83, 0.14);
  border-bottom: 1px solid rgba(242, 197, 83, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.018), transparent 72%);
  transition:
    background 360ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 360ms cubic-bezier(0.32, 0.72, 0, 1);
}

.faq article:nth-child(2n) {
  border-right: 0;
}

.faq article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.faq article::before {
  position: absolute;
  top: 36px;
  left: 30px;
  content: "0" counter(faq);
  color: rgba(242, 197, 83, 0.68);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.faq article:first-child {
  background:
    linear-gradient(90deg, rgba(216, 167, 46, 0.08), transparent 56%),
    rgba(255, 255, 255, 0.016);
}

.faq article:hover {
  background:
    linear-gradient(90deg, rgba(216, 167, 46, 0.06), transparent 64%),
    rgba(255, 255, 255, 0.024);
  transform: translateY(-2px);
}

.faq h3 {
  max-width: 520px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(1.42rem, 2.2vw, 1.95rem);
  line-height: 1.02;
  letter-spacing: 0.025em;
}

.faq p,
.footer p,
.footer li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.8fr) minmax(280px, 0.95fr);
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 28% 12%, rgba(216, 167, 46, 0.08), transparent 18rem),
    linear-gradient(180deg, #090a0a, #050606);
}

.footer > div {
  min-height: 280px;
  padding: clamp(26px, 3.4vw, 44px);
  border-right: 1px solid var(--line-soft);
}

.footer > div:last-child {
  border-right: 0;
}

.footer__recognize {
  display: grid;
  align-content: center;
  gap: 18px;
}

.footer__recognize .kicker {
  max-width: 780px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.55vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: 0.075em;
}

.footer__recognize p:not(.kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 242, 232, 0.78);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.footer__image {
  min-height: 280px;
  background:
    linear-gradient(90deg, rgba(2, 3, 3, 0.44), rgba(2, 3, 3, 0.08) 48%, rgba(2, 3, 3, 0.52)),
    radial-gradient(circle at 68% 28%, rgba(216, 167, 46, 0.24), transparent 12rem),
    url("./assets/austin-skyline.png") 50% center / cover;
}

.footer__cta {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(216, 167, 46, 0.07), transparent 38%),
    rgba(255, 255, 255, 0.012);
}

.footer__cta h2 {
  max-width: 310px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  line-height: 0.94;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__cta p {
  margin: 0 0 6px;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__cta .button {
  width: min(100%, 320px);
}

.footer__logistics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  min-height: 0;
  padding-block: 22px;
  background: rgba(255, 255, 255, 0.012);
}

.footer__logistics ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 24px;
  padding-left: 18px;
  margin: 0;
}

.footer__logistics li::marker {
  color: var(--gold);
}

.footer__logistics li {
  min-width: 0;
}

.footer__location {
  grid-column: span 2;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes audience-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes audience-scroll-reverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

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

  .audience__marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .audience__track {
    animation: none !important;
  }

  .audience__set--copy {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 705px;
  }

  .hero__content {
    padding: 28px 0 36px;
  }

  .hero__image {
    object-position: 61% center;
  }

  .hero__shade {
    background:
      radial-gradient(circle at 66% 24%, rgba(216, 167, 46, 0.13), transparent 15rem),
      radial-gradient(circle at 18% 26%, rgba(216, 167, 46, 0.1), transparent 15rem),
      linear-gradient(90deg, #010202 0%, rgba(1, 2, 2, 0.94) 48%, rgba(1, 2, 2, 0.56) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.74));
  }

  h1 {
    max-width: 610px;
    font-size: clamp(4rem, 10.2vw, 5.35rem);
    line-height: 0.9;
    letter-spacing: 0.032em;
    white-space: normal;
  }

  .hero__lead {
    max-width: 545px;
    font-size: clamp(1.68rem, 4.3vw, 2.12rem);
  }

  .hero__sub,
  .hero__body {
    max-width: 535px;
  }

  .event-strip,
  .proof-row {
    max-width: 100%;
  }

  .event-item {
    min-width: 182px;
    padding-right: 18px;
    margin-right: 18px;
  }

  .split,
  .story,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .footer > div:last-child {
    border-bottom: 0;
  }

  .footer > .footer__image {
    min-height: 270px;
    background-position: 62% center;
  }

  .footer__cta {
    min-height: 260px;
  }

  .footer__logistics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .fit {
    padding-top: 34px;
  }

  .fit__copy {
    padding-left: clamp(22px, 4vw, 36px);
    padding-right: clamp(22px, 4vw, 32px);
  }

  .fit__copy h2 {
    font-size: clamp(2.05rem, 4.6vw, 2.55rem);
    line-height: 1.04;
  }

  .fit__grid,
  .faq__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fit__grid div:nth-child(2),
  .faq article:nth-child(2) {
    border-right: 0;
  }

  .problem {
    padding: 24px;
  }

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

  .problem article {
    grid-template-columns: 50px minmax(180px, 0.52fr) minmax(0, 1fr);
    column-gap: 22px;
    min-height: 0;
    padding: 22px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .problem article:last-child {
    border-bottom: 0;
  }

  .problem svg {
    grid-row: span 2;
  }

  .problem article > p {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .problem h3 {
    margin-bottom: 0;
  }

  .advice {
    width: 100%;
  }

  .footer > div {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
}

@media (max-width: 820px) {
  .fit {
    grid-template-columns: 1fr;
  }

  .fit__copy {
    min-height: 0;
    padding: 28px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
}

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

  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    min-height: auto;
  }

  .hero__image {
    object-position: 64% center;
    opacity: 0.7;
    filter: saturate(0.62) contrast(1.12) brightness(0.62);
    transform: scale(1.08);
  }

  .hero__shade {
    background:
      radial-gradient(circle at 72% 20%, rgba(216, 167, 46, 0.1), transparent 12rem),
      linear-gradient(90deg, rgba(1, 2, 2, 0.98), rgba(1, 2, 2, 0.82)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.84));
  }

  .hero__content {
    padding: 22px 0 42px;
  }

  h1 {
    font-size: clamp(3.65rem, 17vw, 5.3rem);
    line-height: 0.92;
    letter-spacing: 0.025em;
    white-space: normal;
  }

  .hero__lead {
    max-width: 100%;
    font-size: 1.5rem;
  }

  .hero__sub,
  .hero__body {
    font-size: 0.96rem;
  }

  .event-strip {
    display: grid;
    gap: 14px;
  }

  .event-item {
    min-width: 0;
    padding: 0;
    margin: 0;
    border-right: 0;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
    text-align: center;
  }

  .hero__action {
    gap: 14px;
  }

  .hero__action p {
    padding-left: 0;
  }

  .hero__action p::before {
    display: none;
  }

  .proof-row {
    display: none;
  }

  .seat-bar {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    width: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px;
    background:
      linear-gradient(180deg, rgba(14, 16, 14, 0.98), rgba(4, 5, 5, 0.98)),
      rgba(4, 5, 5, 0.98);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 34px rgba(0, 0, 0, 0.52);
  }

  .seat-bar p {
    padding-left: 6px;
    min-width: 0;
  }

  .seat-bar b {
    font-size: 0.72rem;
  }

  .seat-bar span {
    overflow: hidden;
    font-size: 0.7rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .seat-bar .button {
    width: auto;
    min-width: 130px;
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.66rem;
  }

  .fit__grid,
  .problem__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .fit {
    padding-block: 22px 18px;
  }

  .fit__copy {
    padding: 24px 0 22px;
  }

  .fit__copy h2 {
    font-size: clamp(1.64rem, 7.2vw, 1.95rem);
    line-height: 1.04;
  }

  .fit__note {
    margin-top: 14px;
    font-size: 0.94rem;
  }

  .fit__grid {
    min-height: 0;
  }

  .fit__grid div {
    grid-template-columns: 42px 1fr;
    column-gap: 16px;
    align-items: center;
    align-content: center;
    min-height: 106px;
    padding: 16px 18px;
  }

  .fit__grid div::before {
    top: 14px;
    right: 16px;
    font-size: 0.66rem;
  }

  .fit__grid svg {
    width: 34px;
    height: 34px;
    margin-bottom: 0;
  }

  .fit__grid p {
    max-width: none;
    font-size: 1rem;
  }

  .fit__grid div,
  .problem article,
  .faq article {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .fit__grid div:not(:last-child) {
    border-bottom: 1px solid var(--line-soft);
  }

  .fit__grid div:last-child,
  .problem article:last-child,
  .faq article:last-child {
    border-bottom: 0;
  }

  .faq {
    padding-block: 26px 24px;
  }

  .faq__grid {
    margin-top: 18px;
  }

  .faq article {
    min-height: 0;
    padding: 24px 22px 24px 58px;
  }

  .faq article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .faq article:last-child {
    border-bottom: 0;
  }

  .faq article::before {
    top: 27px;
    left: 22px;
    font-size: 0.78rem;
  }

  .faq h3 {
    margin-bottom: 14px;
    font-size: clamp(1.34rem, 6.4vw, 1.7rem);
  }

  .faq p {
    font-size: 0.92rem;
  }

  .problem {
    padding: 18px;
  }

  .problem article {
    grid-template-columns: 38px 1fr;
    column-gap: 16px;
    padding: 18px 0 20px;
  }

  .problem article:first-child {
    padding-top: 0;
  }

  .problem svg {
    width: 36px;
    height: 36px;
    grid-row: span 3;
  }

  .problem article > p {
    grid-column: 2;
    grid-row: auto;
  }

  .problem h3 {
    margin: 5px 0 12px;
    font-size: 1.34rem;
  }

  .problem p {
    font-size: 0.9rem;
  }

  .advice {
    margin-top: 18px;
    padding: 20px 18px 20px 28px;
  }

  .advice::before {
    left: 14px;
  }

  .image-panel {
    min-height: 430px;
  }

  .way {
    min-height: 480px;
    background-position: 61% center;
  }

  .way::before {
    background:
      radial-gradient(circle at 76% 38%, rgba(216, 167, 46, 0.12), transparent 12rem),
      linear-gradient(90deg, rgba(3, 4, 4, 0.98), rgba(3, 4, 4, 0.9) 58%, rgba(3, 4, 4, 0.56));
  }

  .way::after {
    inset: 14px;
  }

  .way h2 {
    max-width: 340px;
    font-size: clamp(1.9rem, 9.2vw, 2.34rem);
  }

  .way p:not(.kicker) {
    max-width: 330px;
    font-size: 0.96rem;
  }

  .month {
    align-items: start;
    min-height: 410px;
    background-position: 34% center;
  }

  .month::before {
    background:
      radial-gradient(circle at 28% 46%, rgba(216, 167, 46, 0.12), transparent 12rem),
      linear-gradient(90deg, rgba(3, 4, 4, 0.94), rgba(3, 4, 4, 0.72) 58%, rgba(3, 4, 4, 0.42));
  }

  .month::after {
    inset: 14px;
  }

  .month p:not(.kicker) {
    max-width: 320px;
    font-size: 0.94rem;
  }

  .month h2 {
    max-width: 330px;
    margin-top: 18px;
    font-size: clamp(1.45rem, 7.6vw, 1.9rem);
  }

  .image-panel > div,
  .leave,
  .why {
    padding: 22px;
  }

  .month > div {
    padding-top: 30px;
  }

  .why__body {
    gap: 14px;
  }

  .why__lead {
    font-size: 1.22rem;
  }

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

  .why__contrast div {
    padding: 14px;
  }

  .why__contrast div + div {
    border-top: 1px solid rgba(242, 197, 83, 0.16);
    border-left: 0;
  }

  .icon-list li,
  .leader {
    grid-template-columns: 1fr;
  }

  .leader {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 16px;
  }

  .leader__photo {
    width: 72px;
    height: 72px;
  }

  .leader__photo span {
    font-size: 1.5rem;
  }

  .leader__photo small {
    font-size: 0.52rem;
  }

  .leader__proof {
    gap: 6px;
    margin-bottom: 10px;
  }

  .leader__proof span {
    padding: 5px 6px;
    font-size: 0.54rem;
  }

  .leave > .kicker {
    margin-bottom: 16px;
  }

  .icon-list {
    gap: 0;
  }

  .icon-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 14px 40px 14px 14px;
  }

  .icon-list li::after {
    top: 14px;
    right: 12px;
    font-size: 0.78rem;
  }

  .icon-list svg {
    width: 34px;
    height: 34px;
  }

  .icon-list h3 {
    margin-bottom: 7px;
    font-size: 1.05rem;
  }

  .icon-list p {
    font-size: 0.9rem;
  }

  .reserve {
    min-height: 430px;
  }

  .reserve img {
    object-position: center;
    filter: saturate(0.82) contrast(1.08) brightness(0.76);
  }

  .reserve__content {
    padding-block: 22px;
  }

  .reserve__shell {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }

  .reserve__purchase {
    padding: 18px 0 0;
    border-top: 1px solid rgba(242, 197, 83, 0.22);
    border-left: 0;
    text-align: center;
  }

  .reserve h2 {
    letter-spacing: 0.04em;
  }

  .reserve p {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .reserve strong {
    margin-bottom: 14px;
  }

  .audience {
    padding-block: 18px 26px;
  }

  .audience__marquee {
    gap: 9px;
    padding-block: 14px;
  }

  .audience__set {
    gap: 14px;
    padding-right: 14px;
  }

  .audience__set span {
    font-size: 1.12rem;
    letter-spacing: 0.09em;
  }

  .audience__lane--reverse .audience__set span {
    font-size: 0.98rem;
    letter-spacing: 0.1em;
  }

  .audience__closing {
    margin-top: 15px;
    font-size: 1.14rem;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .footer > div {
    padding: 24px 22px;
  }

  .footer__recognize .kicker {
    font-size: clamp(1.16rem, 6vw, 1.55rem);
    line-height: 1.12;
  }

  .footer__recognize p:not(.kicker) {
    font-size: 1rem;
  }

  .footer > .footer__image {
    min-height: 230px;
  }

  .footer__cta {
    min-height: 240px;
  }

  .footer__cta h2 {
    max-width: 330px;
  }

  .footer__logistics ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer__location {
    grid-column: auto;
  }
}
