@font-face {
  font-family: "Inter Tight";
  src: url("assets/fonts/inter-tight-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper: #f4ecd9;
  --paper-light: #fffdf7;
  --paper-deep: #e8dec6;
  --ink: #123a7a;
  --ink-dark: #0b2e67;
  --rust: #b44a32;
  --black: #11130f;
  --line: rgba(18, 58, 122, 0.34);
  --line-light: rgba(244, 236, 217, 0.38);
  --shell: min(1440px, calc(100vw - 64px));
  --header-height: 74px;
  --section-space: clamp(88px, 10vw, 168px);
  --display: "Inter Tight", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 253, 247, 0.75), transparent 27rem),
    radial-gradient(circle at 84% 23%, rgba(232, 222, 198, 0.36), transparent 34rem),
    var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--paper-light);
  background: var(--rust);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 760;
  line-height: 0.95;
  letter-spacing: normal;
}

h2 {
  font-size: clamp(44px, 6vw, 92px);
}

h3 {
  font-size: clamp(24px, 2.4vw, 36px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--paper-light);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--rust);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: normal;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--paper);
}

.serif-lead {
  color: var(--rust);
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 15px 18px;
  border: 1px solid var(--ink);
  color: var(--paper-light);
  background: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--ink);
  background: transparent;
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
.floating-cta:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  gap: 18px;
  padding: 11px 14px;
  font-size: 13px;
}

.button-paper {
  border-color: var(--paper-light);
  color: var(--ink-dark);
  background: var(--paper-light);
}

.button-paper:hover {
  color: var(--paper-light);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
}

.text-link:hover {
  color: var(--rust);
}

.text-link-light:hover {
  color: var(--paper-light);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 236, 217, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1520px, calc(100vw - 36px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.nav-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.nav-wordmark {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: normal;
  line-height: 1;
}

.nav-edition {
  font-family: var(--serif);
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 40px);
}

.site-nav a {
  position: relative;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(450px, 0.88fr) minmax(560px, 1.12fr);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 6vw, 94px) clamp(34px, 5vw, 86px);
  border-right: 1px solid var(--line);
}

.hero-lockup {
  display: grid;
  width: fit-content;
  margin-bottom: clamp(36px, 5vw, 72px);
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 22px;
  align-items: end;
}

.hero-wordmark {
  grid-row: 1 / 3;
  font-family: var(--display);
  font-size: clamp(92px, 11vw, 170px);
  font-weight: 900;
  letter-spacing: normal;
  line-height: 0.7;
}

.hero-edition {
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 0.82;
  white-space: nowrap;
}

.hero-subtitle {
  color: var(--rust);
  font-family: var(--serif);
  font-size: clamp(16px, 1.7vw, 24px);
  line-height: 1;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(48px, 5.7vw, 88px);
}

.hero h1 em {
  color: var(--rust);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-intro {
  max-width: 690px;
  margin-top: 30px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.hero-meta {
  display: grid;
  margin-top: clamp(46px, 7vw, 94px);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hero-meta dt,
.interest-details dt {
  margin-bottom: 6px;
  color: var(--rust);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-meta dd,
.interest-details dd {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.25;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--paper);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.hero-note {
  position: absolute;
  top: 42px;
  right: 42px;
  width: min(270px, calc(100% - 84px));
  padding: 18px;
  border: 1px solid var(--rust);
  color: var(--rust);
  background: rgba(255, 253, 247, 0.94);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 13px;
  text-transform: uppercase;
}

.hero-note span {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.1;
}

.ticker {
  overflow: hidden;
  color: var(--paper-light);
  background: var(--rust);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding-block: 13px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 760;
  animation: ticker 34s linear infinite;
}

.ticker-track i {
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.platform-grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: clamp(64px, 10vw, 160px);
  align-items: start;
}

.section-intro {
  position: sticky;
  top: calc(var(--header-height) + 70px);
}

.section-intro h2 {
  margin-bottom: 32px;
}

.platform-list {
  border-top: 1px solid var(--line);
}

.platform-row {
  display: grid;
  min-height: 88px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(130px, 0.8fr) 42px minmax(180px, 1.2fr);
  align-items: center;
  gap: 18px;
  transition: padding 180ms ease, background 180ms ease;
}

.platform-row:hover {
  padding-right: 14px;
  padding-left: 14px;
  background: rgba(255, 253, 247, 0.6);
}

.platform-row strong {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  text-transform: uppercase;
}

.platform-row span {
  color: var(--rust);
  font-size: 28px;
}

.platform-row p {
  font-size: clamp(15px, 1.4vw, 19px);
}

.story-section {
  min-height: 820px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  border-block: 1px solid var(--line);
}

.story-image {
  min-height: 760px;
  overflow: hidden;
  background: var(--paper-light);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 120px);
  border-left: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.35);
}

.story-copy h2 {
  font-size: clamp(48px, 5.4vw, 84px);
}

.story-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 32px;
  color: var(--rust);
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.12;
}

.curated-from {
  display: grid;
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid var(--rust);
}

.curated-from span {
  margin-bottom: 14px;
  color: var(--rust);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.curated-from strong {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.05;
  text-transform: uppercase;
}

.exhibitor-section {
  padding-block: var(--section-space);
  color: var(--paper-light);
  background: var(--ink-dark);
}

.exhibitor-heading {
  display: grid;
  margin-bottom: 72px;
  grid-template-columns: 0.32fr 1.05fr 0.63fr;
  gap: 46px;
  align-items: end;
}

.exhibitor-heading .eyebrow {
  align-self: start;
}

.exhibitor-heading h2 {
  font-size: clamp(52px, 7vw, 108px);
}

.exhibitor-heading > p:last-child {
  padding-bottom: 8px;
  color: var(--paper-deep);
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.1;
}

.exhibitor-visual {
  position: relative;
  height: min(68vw, 820px);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line-light);
}

.exhibitor-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 430px;
  padding: 22px 28px;
  color: var(--ink-dark);
  background: var(--paper-light);
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 760;
}

.value-list {
  display: grid;
  margin-top: 62px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(4, 1fr);
}

.value-list > div {
  min-height: 300px;
  padding: 24px 28px 32px 0;
  border-right: 1px solid var(--line-light);
}

.value-list > div:not(:first-child) {
  padding-left: 28px;
}

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

.value-list span {
  display: block;
  margin-bottom: 46px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 32px;
}

.value-list h3 {
  margin-bottom: 18px;
  font-size: clamp(25px, 2.2vw, 34px);
}

.value-list p {
  max-width: 270px;
  color: var(--paper-deep);
  font-size: 15px;
}

.section-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.section-action p {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 34px);
}

.block-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.84fr) minmax(540px, 1.16fr);
  gap: clamp(50px, 8vw, 126px);
  align-items: start;
}

.block-copy {
  position: sticky;
  top: calc(var(--header-height) + 58px);
}

.block-copy h2 {
  position: relative;
  margin-bottom: 28px;
}

.block-copy h2::first-letter {
  color: var(--rust);
}

.block-copy .serif-lead {
  margin-bottom: 48px;
}

.location-points {
  border-top: 1px solid var(--line);
}

.location-points > div {
  display: grid;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(130px, 0.5fr) 1fr;
  gap: 24px;
}

.location-points h3 {
  font-size: 22px;
  line-height: 1.1;
}

.location-points p {
  font-size: 14px;
}

.source-line {
  margin-top: 28px;
  color: rgba(18, 58, 122, 0.72);
  font-size: 11px;
  line-height: 1.5;
}

.block-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.block-photo {
  display: flex;
  flex-direction: column;
}

.block-photo-wide {
  grid-column: 1 / -1;
}

.block-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.03);
}

.block-photo:not(.block-photo-wide) img {
  height: 320px;
}

.block-photo figcaption {
  padding-top: 10px;
  color: var(--rust);
  font-family: var(--serif);
  font-size: 20px;
}

.market-section {
  padding-block: var(--section-space);
  color: var(--paper-light);
  background: var(--rust);
}

.market-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px 90px;
}

.market-heading h2 {
  max-width: 900px;
}

.market-heading > p:last-child {
  max-width: 690px;
  margin-top: 32px;
  color: var(--paper-deep);
  font-family: var(--serif);
  font-size: clamp(23px, 2.6vw, 36px);
  line-height: 1.12;
}

.market-stats {
  display: grid;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(2, 1fr);
}

.market-stats article {
  min-height: 270px;
  padding: 22px 28px 24px 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.market-stats article:nth-child(even) {
  padding-left: 28px;
  border-right: 0;
}

.market-stats strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 74px);
  letter-spacing: normal;
  line-height: 0.9;
}

.market-stats p {
  max-width: 270px;
  margin-bottom: 24px;
  color: var(--paper-deep);
  font-size: 14px;
}

.market-stats a {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 760;
}

.spending-note {
  align-self: end;
  padding: 28px 0;
  border-block: 1px solid var(--line-light);
}

.spending-note p {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.7vw, 38px);
  line-height: 1.1;
}

.market-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.market-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.market-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  color: var(--rust);
  background: var(--paper-light);
  font-family: var(--serif);
  font-size: 22px;
}

.schedule-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 48px;
}

.schedule-head h2 {
  max-width: 1060px;
}

.schedule-code {
  margin-top: 34px;
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 56px);
  font-weight: 760;
}

.schedule-lead {
  max-width: 840px;
  margin-top: 28px;
  color: var(--rust);
  font-family: var(--serif);
  font-size: clamp(23px, 2.6vw, 36px);
}

.days {
  display: grid;
  margin-top: 68px;
  border-top: 2px solid var(--ink);
  grid-template-columns: 1.34fr 1fr 1fr;
}

.day {
  padding: 26px 30px 20px;
  border-right: 1px solid var(--line);
}

.day:first-child {
  padding-left: 0;
}

.day:last-child {
  padding-right: 0;
  border-right: 0;
}

.day header {
  display: flex;
  margin-bottom: 36px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.day header span {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 760;
  text-transform: uppercase;
}

.day header strong {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 0.85;
}

.day-friday {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 26px;
}

.day-friday header {
  grid-column: 1 / -1;
}

.trade-time {
  padding-right: 26px;
  border-right: 1px solid var(--line);
}

.time-block b,
.time-block em {
  display: block;
}

.time-block b {
  margin-bottom: 12px;
  color: var(--rust);
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 38px);
  letter-spacing: normal;
  line-height: 1;
}

.time-block em {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 14px;
  color: var(--paper-light);
  background: var(--ink);
  font-family: var(--display);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
  text-transform: uppercase;
}

.public-time em,
.day:not(.day-friday) em {
  background: var(--rust);
}

.time-block p {
  font-size: 14px;
}

.venue-note {
  margin-top: 56px;
  color: var(--rust);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.experience-section {
  padding-block: var(--section-space);
  color: var(--paper-light);
  background: var(--ink-dark);
}

.experience-head {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: 0.36fr 1fr 0.62fr;
  gap: 50px;
  align-items: end;
}

.experience-head .eyebrow {
  align-self: start;
}

.experience-head h2 {
  font-size: clamp(48px, 6.2vw, 98px);
}

.experience-head > p:last-child {
  color: var(--paper-deep);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding-inline: 18px;
}

.experience-card {
  position: relative;
  height: 430px;
  grid-column: span 4;
  overflow: hidden;
  background: var(--black);
}

.experience-card-tall {
  height: 878px;
  grid-column: span 5;
  grid-row: span 2;
}

.experience-card-wide {
  grid-column: span 7;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.experience-card:hover img {
  transform: scale(1.025);
}

.experience-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 44px 18px 16px;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(transparent, rgba(11, 46, 103, 0.92));
}

.experience-card figcaption b {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
}

.experience-card figcaption span {
  max-width: 260px;
  text-align: right;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.05;
}

.illustration-triptych {
  display: grid;
  margin-top: 100px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.illustration-triptych img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: saturate(0.8);
}

.fit-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px 100px;
  align-items: start;
}

.fit-heading h2 {
  font-size: clamp(48px, 5.6vw, 88px);
}

.fit-heading > p:last-child {
  max-width: 620px;
  margin-top: 30px;
  color: var(--rust);
  font-family: var(--serif);
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.12;
}

.fit-categories {
  border-top: 1px solid var(--line);
}

.fit-categories span {
  display: block;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(21px, 2.5vw, 36px);
  font-weight: 730;
  line-height: 1;
}

.fit-categories span::before {
  margin-right: 22px;
  color: var(--rust);
  content: "→";
}

.fit-image {
  height: 500px;
  grid-column: 1 / -1;
  overflow: hidden;
}

.fit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selection-note {
  display: grid;
  grid-column: 1 / -1;
  padding: 28px 0;
  border-block: 1px solid var(--line);
  grid-template-columns: 0.68fr 1.32fr;
  gap: 40px;
}

.selection-note strong {
  font-family: var(--display);
  font-size: 22px;
}

.selection-note p {
  max-width: 720px;
  color: var(--rust);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.34);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 10vw, 160px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 64px);
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 28px;
}

.faq-heading > p:last-child {
  font-family: var(--serif);
  font-size: 24px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 58px 26px 0;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 730;
  line-height: 1.15;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 0;
  color: var(--rust);
  content: "+";
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 60px 30px 0;
  color: var(--rust);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.2;
}

.interest-section {
  padding-block: var(--section-space);
  color: var(--paper-light);
  background: var(--ink-dark);
}

.interest-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(64px, 9vw, 140px);
  align-items: start;
}

.interest-copy {
  position: sticky;
  top: calc(var(--header-height) + 60px);
}

.interest-copy h2 {
  margin-bottom: 30px;
}

.interest-copy > p:not(.eyebrow, .interest-fallback) {
  max-width: 520px;
  color: var(--paper-deep);
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 35px);
  line-height: 1.12;
}

.interest-details {
  display: grid;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  gap: 20px;
}

.interest-details dt {
  color: var(--paper-deep);
}

.interest-fallback {
  margin-top: 34px;
  font-size: 13px;
}

.interest-sketch {
  height: 260px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--paper);
}

.interest-sketch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.interest-form {
  position: relative;
  padding: clamp(26px, 4vw, 56px);
  border: 1px solid var(--line-light);
  color: var(--ink-dark);
  background: var(--paper);
}

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

.form-status {
  display: none;
  margin-bottom: 28px;
  padding: 16px 18px;
  border: 1px solid var(--rust);
  color: var(--ink-dark);
  background: var(--paper-light);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 680;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: var(--ink-dark);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}

.form-grid label,
.consent-row {
  display: grid;
  gap: 9px;
}

.form-grid label > span {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.form-span-2 {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink-dark);
  background: transparent;
  font-family: var(--body);
  font-size: 16px;
  appearance: none;
}

select {
  padding-right: 34px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% + 1px),
    calc(100% - 10px) calc(50% + 1px);
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

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

input::placeholder,
textarea::placeholder {
  color: rgba(18, 58, 122, 0.46);
}

input:focus,
select:focus,
textarea:focus {
  border-bottom-color: var(--rust);
  outline: none;
}

.consent-row {
  margin-top: 28px;
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-size: 12px;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid var(--ink);
  background: var(--paper-light);
  appearance: auto;
}

.form-submit {
  width: 100%;
  margin-top: 34px;
  border-color: var(--ink-dark);
  color: var(--paper-light);
  background: var(--ink-dark);
}

.form-submit:hover {
  color: var(--ink-dark);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-note {
  margin-top: 14px;
  color: rgba(18, 58, 122, 0.7);
  font-size: 11px;
}

.sources-section {
  padding-block: 76px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.sources-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 80px;
}

.sources-layout h2 {
  max-width: 560px;
  font-size: clamp(38px, 4vw, 62px);
}

.sources-layout ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  border-top: 1px solid var(--line);
}

.sources-layout li {
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.sources-layout a {
  font-family: var(--display);
  font-weight: 730;
}

.site-footer {
  color: var(--paper-light);
  background: var(--ink-dark);
}

.footer-main {
  display: grid;
  min-height: 360px;
  padding-block: 62px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 70px;
  align-items: end;
}

.footer-lockup {
  display: grid;
  width: fit-content;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-items: end;
}

.footer-wordmark {
  grid-row: 1 / 3;
  font-family: var(--display);
  font-size: clamp(76px, 9vw, 140px);
  font-weight: 900;
  letter-spacing: normal;
  line-height: 0.72;
}

.footer-edition {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 55px);
  line-height: 0.85;
}

.footer-subtitle {
  color: var(--paper-deep);
  font-family: var(--serif);
  font-size: 16px;
}

.footer-contact,
.footer-event {
  display: grid;
  gap: 6px;
}

.footer-contact span,
.footer-event span:first-child {
  color: var(--paper-deep);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 730;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
}

.footer-event span:last-child {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 25px;
}

.footer-bottom {
  display: grid;
  padding-block: 18px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1fr auto auto auto;
  gap: 30px;
  color: var(--paper-deep);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 680;
  text-transform: uppercase;
}

.floating-cta {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  display: none;
  min-width: 118px;
  padding: 14px 16px;
  color: var(--paper-light);
  background: var(--rust);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 12px 38px rgba(11, 46, 103, 0.22);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.reveal.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 44px, 1120px);
  }

  .site-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-copy {
    padding-right: 38px;
    padding-left: 38px;
  }

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

  .hero-wordmark {
    grid-row: auto;
    font-size: 104px;
  }

  .hero-edition {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .exhibitor-heading,
  .experience-head {
    grid-template-columns: 0.3fr 1fr;
  }

  .exhibitor-heading > p:last-child,
  .experience-head > p:last-child {
    grid-column: 2;
  }

  .market-layout {
    gap: 60px;
  }

  .experience-card {
    grid-column: span 6;
  }

  .experience-card-tall {
    grid-column: span 6;
  }

  .experience-card-wide {
    grid-column: span 6;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 66px;
  }

  .nav-shell {
    width: calc(100vw - 28px);
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 730;
    text-transform: uppercase;
  }

  .menu-lines,
  .menu-lines::before {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

  .menu-lines::before {
    transform: translateY(-6px);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::before {
    transform: rotate(-90deg);
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 42px 22px;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
    font-size: 30px;
  }

  .site-nav a::after {
    display: none;
  }

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

  .hero-copy {
    min-height: auto;
    padding: 76px 30px 64px;
    border-right: 0;
  }

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

  .hero-wordmark {
    grid-row: 1 / 3;
    font-size: clamp(90px, 21vw, 150px);
  }

  .hero-edition {
    font-size: clamp(34px, 8vw, 60px);
  }

  .hero-visual {
    min-height: 68vw;
    border-top: 1px solid var(--line);
  }

  .platform-grid,
  .block-layout,
  .fit-layout,
  .faq-layout,
  .interest-layout,
  .sources-layout {
    grid-template-columns: 1fr;
  }

  .section-intro,
  .block-copy,
  .faq-heading,
  .interest-copy {
    position: static;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 620px;
  }

  .story-copy {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .value-list > div:nth-child(2) {
    border-right: 0;
  }

  .value-list > div:nth-child(n+3) {
    border-top: 1px solid var(--line-light);
  }

  .market-layout {
    grid-template-columns: 1fr;
  }

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

  .day {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .experience-head > p:last-child {
    grid-column: auto;
  }

  .experience-card,
  .experience-card-wide,
  .experience-card-tall {
    height: 520px;
    grid-column: span 6;
  }

  .illustration-triptych {
    grid-template-columns: 1fr 1fr;
  }

  .illustration-triptych img:last-child {
    grid-column: 1 / -1;
  }

  .fit-image,
  .selection-note {
    grid-column: auto;
  }

  .selection-note {
    grid-template-columns: 1fr;
  }

  .sources-layout {
    gap: 42px;
  }

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

  .footer-lockup {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 36px);
    --section-space: 82px;
  }

  h2 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .nav-edition {
    display: none;
  }

  .hero-copy {
    padding: 54px 18px 48px;
  }

  .hero-lockup {
    display: block;
    margin-bottom: 44px;
  }

  .hero-wordmark,
  .hero-edition,
  .hero-subtitle {
    display: block;
  }

  .hero-wordmark {
    font-size: 31vw;
    line-height: 0.78;
  }

  .hero-edition {
    margin-top: 12px;
    font-size: 15vw;
    line-height: 0.8;
  }

  .hero-subtitle {
    margin-top: 8px;
    font-size: 5vw;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

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

  .hero-actions .text-link {
    padding-left: 2px;
  }

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

  .hero-meta > div {
    display: grid;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 70px 1fr;
  }

  .hero-visual {
    min-height: 102vw;
  }

  .hero-visual > img {
    object-position: 52% center;
  }

  .hero-note {
    top: 18px;
    right: 18px;
  }

  .platform-row {
    min-height: 82px;
    grid-template-columns: 1fr 30px;
  }

  .platform-row p {
    grid-column: 1 / -1;
  }

  .story-image {
    min-height: 85vw;
  }

  .story-copy {
    padding: 62px 18px;
  }

  .exhibitor-heading {
    grid-template-columns: 1fr;
  }

  .exhibitor-heading > p:last-child {
    grid-column: auto;
  }

  .exhibitor-visual {
    min-height: 118vw;
  }

  .exhibitor-visual img {
    object-position: center;
  }

  .visual-caption {
    max-width: calc(100% - 18px);
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .value-list > div,
  .value-list > div:not(:first-child) {
    min-height: auto;
    padding: 26px 0 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .value-list > div:nth-child(n+3) {
    border-top: 0;
  }

  .value-list span {
    margin-bottom: 22px;
  }

  .section-action {
    align-items: stretch;
    flex-direction: column;
  }

  .location-points > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .block-gallery {
    grid-template-columns: 1fr;
  }

  .block-photo-wide {
    grid-column: auto;
  }

  .block-photo img,
  .block-photo:not(.block-photo-wide) img {
    height: 74vw;
  }

  .market-stats {
    grid-template-columns: 1fr;
  }

  .market-stats article,
  .market-stats article:nth-child(even) {
    min-height: 230px;
    padding: 22px 0;
    border-right: 0;
  }

  .market-image {
    min-height: 76vw;
  }

  .schedule-head {
    display: block;
  }

  .schedule-code {
    display: block;
  }

  .day-friday {
    grid-template-columns: 1fr;
  }

  .day-friday header {
    grid-column: auto;
  }

  .trade-time {
    margin-bottom: 26px;
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .experience-card,
  .experience-card-wide,
  .experience-card-tall {
    height: 112vw;
    max-height: 620px;
    grid-column: auto;
  }

  .experience-card figcaption {
    align-items: start;
    flex-direction: column;
  }

  .experience-card figcaption span {
    text-align: left;
  }

  .illustration-triptych {
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .illustration-triptych img,
  .illustration-triptych img:last-child {
    height: 72vw;
    grid-column: auto;
  }

  .fit-image {
    height: 78vw;
  }

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

  .form-span-2 {
    grid-column: auto;
  }

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

  .footer-lockup {
    display: block;
    grid-column: auto;
  }

  .footer-wordmark,
  .footer-edition,
  .footer-subtitle {
    display: block;
  }

  .footer-wordmark {
    font-size: 34vw;
  }

  .footer-edition {
    margin-top: 14px;
    font-size: 14vw;
  }

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

  .floating-cta {
    display: inline-flex;
    justify-content: space-between;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .ticker,
  .floating-cta,
  .interest-form {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  * {
    color: #000 !important;
    background: transparent !important;
  }
}
