:root {
  --ivory: #fffefa;
  --white: #ffffff;
  --ink: #080808;
  --charcoal: #20201e;
  --muted: #6d6a63;
  --line: rgba(8, 8, 8, .12);
  --glass: rgba(255, 255, 255, .72);
  --gold: #b99142;
  --green: #0b6d3a;
  --shadow: 0 28px 90px rgba(8, 8, 8, .1);
  --serif: Didot, "Bodoni 72", "Bodoni 72 Smallcaps", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ivory);
  color: var(--ink);
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}

body.is-loaded {
  opacity: 1;
  transform: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(8, 8, 8, .08);
  backdrop-filter: blur(22px);
}

.brand {
  display: grid;
  gap: 1px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 700;
}

.brand span {
  font-family: var(--serif);
  letter-spacing: .08em;
  font-size: 1.18rem;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
}

.nav-toggle i::before { transform: translateY(-6px); }
.nav-toggle i::after { transform: translateY(5px); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .32s ease;
  content: "";
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle span {
  display: inline-block;
  margin-left: 4px;
  color: var(--gold);
  font-size: 1rem;
  transition: transform .25s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle span {
  transform: rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 230px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 24px 70px rgba(8, 8, 8, .14);
  opacity: 0;
  transform: translate(-50%, -8px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
}

.nav-dropdown-menu a:last-child {
  border-bottom: 0;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--ink);
  color: var(--white);
}

.nav-dropdown-menu a span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: .9rem;
}

.nav-cta {
  padding: 11px 16px !important;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--ink); color: var(--white); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--white);
  color: var(--ink);
}

.hero.page-hero {
  min-height: 72svh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-focus 1.2s cubic-bezier(.22, 1, .36, 1) both;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .74) 34%, rgba(255, 255, 255, .08) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, .82), transparent 46%);
  content: "";
}

.hero-content {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 144px 0 72px;
}

@keyframes hero-focus {
  from { opacity: .35; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

.home-hero {
  min-height: 100dvh;
  color: var(--white);
}

.home-hero::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08) 20%, rgba(0, 0, 0, .78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .25), transparent 55%);
}

.home-hero .hero-content {
  width: min(1440px, calc(100% - clamp(28px, 7vw, 112px)));
  padding-bottom: clamp(44px, 7vw, 92px);
}

.home-hero h1 {
  max-width: none;
  color: var(--white);
  font-size: clamp(4.7rem, 14.3vw, 14.8rem);
  line-height: .76;
  text-wrap: balance;
}

.home-hero .lead,
.home-hero .kicker {
  color: var(--white);
}

.home-hero .button.ghost {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(0, 0, 0, .16);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.hero-edition-stamp {
  position: absolute;
  top: 112px;
  right: clamp(20px, 4vw, 60px);
  width: 124px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kicker::before {
  width: 40px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1, h2, h3, .display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: .92;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(5.4rem, 14vw, 14rem);
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(3.8rem, 9vw, 8rem);
}

h2 {
  font-size: clamp(2.8rem, 6vw, 6.2rem);
}

h3 {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: .02em;
}

.intro {
  max-width: 840px;
  color: var(--charcoal);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
  cursor: pointer;
}

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

.button.light {
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  border-color: rgba(255, 255, 255, .64);
  backdrop-filter: blur(16px);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
}

.hero .button.ghost {
  color: var(--ink);
  border-color: rgba(8, 8, 8, .38);
}

.section {
  padding: clamp(72px, 11vw, 148px) clamp(18px, 4vw, 56px);
}

.section.compact { padding-block: clamp(48px, 7vw, 92px); }
.section.dark { background: var(--white); color: var(--ink); }
.section.white { background: var(--white); }

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(32px, 6vw, 78px);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.dark .section-head p,
.dark .intro {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, .98fr) minmax(0, 1.02fr);
}

.split.reverse .media-frame { order: -1; }

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-frame img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.media-frame.wide img { aspect-ratio: 16 / 10; }
.media-frame.runway img { aspect-ratio: 16 / 7; }
.media-frame:hover img { transform: scale(1.035); }

.runway-opening {
  position: relative;
  min-height: 90dvh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.runway-opening img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.runway-opening::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .78));
  content: "";
}

.runway-opening-copy {
  position: relative;
  z-index: 1;
  min-height: 90dvh;
  display: grid;
  align-content: end;
  padding: clamp(32px, 7vw, 104px);
}

.runway-opening-copy h2 {
  max-width: 1220px;
  color: var(--white);
  font-size: clamp(4rem, 11vw, 11rem);
  text-transform: uppercase;
}

.runway-opening-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.edition-duet {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--ink);
}

.edition-panel {
  position: relative;
  min-height: min(78dvh, 860px);
  overflow: hidden;
  color: var(--white);
}

.edition-panel + .edition-panel {
  border-left: 1px solid rgba(255, 255, 255, .45);
}

.edition-panel img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), filter .4s ease;
}

.edition-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .78));
  content: "";
}

.edition-panel:hover img {
  transform: scale(1.035);
}

.edition-panel-copy {
  position: absolute;
  z-index: 1;
  inset: auto clamp(24px, 5vw, 70px) clamp(28px, 5vw, 70px);
}

.edition-panel-copy .meta,
.edition-panel-copy h2,
.edition-panel-copy p {
  color: var(--white);
}

.edition-panel-copy h2 {
  max-width: 650px;
  font-size: clamp(3.2rem, 6vw, 7rem);
  text-transform: uppercase;
}

.edition-panel-copy p:not(.meta) {
  max-width: 520px;
}

.edition-panel-copy .button {
  margin-top: 18px;
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.fashion-capitals-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 86dvh;
  background: var(--white);
}

.capital-feature {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
}

.capital-feature img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.capital-feature:hover img {
  transform: scale(1.035);
}

.capital-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, .8));
  content: "";
}

.capital-feature-copy {
  position: absolute;
  z-index: 1;
  inset: auto clamp(24px, 5vw, 64px) clamp(28px, 5vw, 64px);
}

.capital-feature-copy h2 {
  color: var(--white);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  text-transform: uppercase;
}

.capital-feature-copy p {
  max-width: 470px;
}

.runway-world {
  position: relative;
  min-height: 82dvh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.runway-world > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.runway-world::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .12) 68%),
    linear-gradient(0deg, rgba(0, 0, 0, .65), transparent 50%);
  content: "";
}

.runway-world-copy {
  position: relative;
  z-index: 1;
  min-height: 82dvh;
  display: grid;
  align-content: end;
  padding: clamp(34px, 7vw, 104px);
}

.runway-world-copy h2 {
  max-width: 960px;
  color: var(--white);
  font-size: clamp(4rem, 9vw, 9rem);
  text-transform: uppercase;
}

.runway-world-copy p {
  max-width: 600px;
  font-size: 1.08rem;
}

.runway-world .button.ghost {
  border-color: rgba(255, 255, 255, .72);
  color: var(--white);
}

.runway-ribbon {
  padding: clamp(76px, 10vw, 138px) clamp(18px, 4vw, 56px);
  overflow: hidden;
  background: var(--white);
}

.runway-ribbon-head {
  width: min(1380px, 100%);
  margin: 0 auto clamp(28px, 5vw, 62px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.runway-ribbon-head h2 {
  max-width: 980px;
  font-size: clamp(3.6rem, 9vw, 9.5rem);
  text-transform: uppercase;
}

.runway-ribbon-head .issue {
  flex: 0 0 auto;
  padding-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.runway-ribbon-grid {
  width: min(1380px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr 1fr;
  gap: clamp(8px, 1.2vw, 18px);
  align-items: end;
}

.runway-ribbon figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #eee;
}

.runway-ribbon figure:nth-child(1) { aspect-ratio: 4 / 5; }
.runway-ribbon figure:nth-child(2) { aspect-ratio: 3 / 5; }
.runway-ribbon figure:nth-child(3) { aspect-ratio: 4 / 4.6; }

.runway-ribbon img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.runway-ribbon figure:hover img {
  transform: scale(1.04);
}

.runway-ribbon figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 44px 18px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .72));
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.runway-ribbon-cta {
  width: min(1380px, 100%);
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.runway-ribbon-cta a {
  border-bottom: 1px solid currentColor;
}

.glass-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(18px);
  color: var(--ink);
}

.eyebrow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.eyebrow-grid > * {
  min-height: 164px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .42);
}

.eyebrow-grid strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.eyebrow-grid span,
.card p,
.ticket p,
.feature-list p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.ticket,
.form-panel,
.press-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .66);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.card:hover,
.ticket:hover,
.press-item:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 145, 66, .5);
  box-shadow: 0 18px 50px rgba(8, 8, 8, .08);
}

.card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.card-body,
.ticket,
.form-panel,
.press-item {
  padding: 24px;
}

.meta {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-list article {
  padding: clamp(22px, 4vw, 36px);
  background: var(--ivory);
}

.dark .feature-list article {
  background: var(--ivory);
}

.dark .feature-list {
  background: var(--line);
  border-color: var(--line);
}

.masthead-line {
  border-block: 1px solid var(--ink);
  background: var(--white);
  padding: clamp(18px, 3vw, 34px) clamp(18px, 4vw, 56px);
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: .82;
  text-align: center;
  text-transform: uppercase;
}

.edition-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.editorial-index {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1px;
  border-block: 1px solid var(--ink);
  background: var(--ink);
}

.editorial-index article {
  min-height: 320px;
  padding: clamp(24px, 5vw, 58px);
  background: var(--white);
}

.editorial-index article:first-child {
  display: grid;
  align-content: space-between;
  min-height: 520px;
}

.editorial-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: .8;
}

.quote-line {
  max-width: 980px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
}

.article-shell {
  width: min(820px, 100%);
  margin: 0 auto;
}

.article-deck {
  margin: 0 0 48px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.article-body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.78;
}

.article-body h2,
.article-body h3 {
  margin: 64px 0 20px;
  line-height: 1;
}

.article-body h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
.article-body h3 { font-size: clamp(2rem, 4vw, 3.5rem); }
.article-body p { margin: 0 0 26px; }
.article-body ul { margin: 0 0 32px; padding-left: 24px; }
.article-body li { margin-bottom: 12px; }

.article-rule {
  margin: 48px 0;
  border: 0;
  border-top: 1px solid var(--ink);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 11px 16px;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.tab[aria-selected="true"] {
  background: var(--ink);
  color: var(--white);
}

.tab-panel[hidden] { display: none; }

.schedule-list {
  display: grid;
  gap: 12px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price {
  margin: 18px 0;
  font-family: var(--serif);
  font-size: 3.8rem;
  line-height: .9;
}

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

.field {
  display: grid;
  gap: 7px;
}

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

label {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
}

textarea { min-height: 132px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(185, 145, 66, .12); }

.form-status {
  min-height: 22px;
  color: var(--green);
  font-weight: 700;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.marquee-track {
  display: flex;
  gap: 38px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
  color: var(--charcoal);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

.site-footer {
  padding: 56px clamp(18px, 4vw, 56px);
  background: #080808;
  color: var(--white);
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 32px;
}

.footer-grid h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, .72);
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 42px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .52);
  font-size: .82rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }

  .primary-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(251, 250, 246, .96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    overflow: hidden;
    transform: none;
    pointer-events: none;
    transition: max-height .3s ease, padding .3s ease;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 250px;
    padding: 6px 0;
    transform: none;
    pointer-events: auto;
  }

  .section-head,
  .split,
  .split.reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .media-frame { order: initial; }
  .eyebrow-grid, .cards, .ticket-grid { grid-template-columns: repeat(2, 1fr); }
  .fashion-capitals-grid { grid-template-columns: 1fr; }
  .edition-panel { min-height: 68dvh; }
  .runway-ribbon-grid { grid-template-columns: 1.1fr .9fr; }
  .runway-ribbon figure:nth-child(3) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 680px) {
  .site-header { min-height: 68px; padding-inline: 16px; }
  .primary-nav { inset-top: 68px; }
  .brand span { font-size: 1rem; }
  .brand small { display: none; }
  .hero-content { width: min(100% - 28px, 1180px); padding-bottom: 46px; }
  h1 { font-size: clamp(3.2rem, 18vw, 5.7rem); }
  .page-hero h1 { font-size: clamp(3rem, 16vw, 5.2rem); }
  h2 { font-size: clamp(2.4rem, 13vw, 4rem); }
  .hero-actions, .actions { display: grid; }
  .button { width: 100%; }
  .eyebrow-grid, .cards, .ticket-grid, .feature-list, .form-grid { grid-template-columns: 1fr; }
  .editorial-index { grid-template-columns: 1fr; }
  .editorial-index article:first-child { min-height: 320px; }
  .schedule-row { grid-template-columns: 1fr; gap: 8px; }
  .field.full { grid-column: auto; }
  .hero-edition-stamp { width: 86px; top: 92px; font-size: .76rem; }
  .home-hero h1 { font-size: clamp(4rem, 21vw, 6.4rem); }
  .home-hero .hero-content { width: calc(100% - 28px); }
  .runway-opening,
  .runway-opening-copy { min-height: 74dvh; }
  .edition-duet { grid-template-columns: 1fr; }
  .edition-panel + .edition-panel {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .45);
  }
  .edition-panel { min-height: 72dvh; }
  .capital-feature { min-height: 70dvh; }
  .runway-world,
  .runway-world-copy { min-height: 74dvh; }
  .runway-ribbon-head { display: block; }
  .runway-ribbon-head .issue { margin-top: 16px; }
  .runway-ribbon-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .runway-ribbon figure:nth-child(1),
  .runway-ribbon figure:nth-child(2) { aspect-ratio: 3 / 5; }
  .runway-ribbon figure:nth-child(3) { aspect-ratio: 16 / 10; }
  .runway-ribbon-cta { display: grid; }
}

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

/* Modern light redesign */
:root {
  --ivory: #f7f8f6;
  --white: #ffffff;
  --ink: #111411;
  --charcoal: #272c28;
  --muted: #626963;
  --line: rgba(17, 20, 17, .13);
  --glass: rgba(255, 255, 255, .9);
  --gold: #157347;
  --green: #157347;
  --shadow: 0 24px 70px rgba(24, 35, 28, .09);
  --serif: "Helvetica Neue", "Avenir Next", Avenir, Arial, sans-serif;
  --sans: "Helvetica Neue", "Avenir Next", Avenir, Arial, sans-serif;
}

html,
body {
  background: var(--white);
}

body {
  letter-spacing: -.01em;
}

::selection {
  background: #dcefe4;
  color: var(--ink);
}

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

.site-header {
  min-height: 72px;
  padding-block: 12px;
  background: rgba(255, 255, 255, .94);
  border-color: var(--line);
  box-shadow: 0 1px 20px rgba(24, 35, 28, .035);
}

.brand {
  gap: 0;
  color: var(--ink);
  letter-spacing: .03em;
}

.brand span {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -.025em;
}

.brand small {
  color: var(--muted);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.primary-nav {
  gap: clamp(12px, 1.6vw, 24px);
  color: var(--charcoal);
  font-size: .7rem;
  letter-spacing: .06em;
}

.primary-nav a::after {
  background: var(--green);
}

.nav-cta {
  padding: 10px 18px !important;
  border-color: var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.nav-cta:hover {
  border-color: var(--green);
  background: var(--green);
}

.nav-dropdown-toggle span,
.nav-dropdown-menu a span {
  color: var(--green);
}

.nav-dropdown-menu {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero,
.hero.page-hero,
.home-hero {
  min-height: min(860px, 100dvh);
  padding: 96px clamp(18px, 4vw, 56px) 24px;
  align-items: stretch;
  background: var(--white);
  color: var(--ink);
}

.hero.page-hero {
  min-height: min(720px, 82dvh);
}

.hero::before,
.home-hero::before {
  display: none;
}

.hero-media {
  position: absolute;
  inset: 96px clamp(18px, 4vw, 56px) 24px 48%;
  z-index: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--ivory);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(10, 20, 13, .12));
  content: "";
}

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

.hero-content,
.home-hero .hero-content {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(72px, 10vh, 118px) 56% 54px 0;
  align-self: center;
}

.hero-edition-stamp {
  display: none;
}

h1,
h2,
h3,
.display {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -.055em;
  text-transform: none;
}

h1,
.home-hero h1 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(3.9rem, 7.5vw, 7.6rem);
  line-height: .9;
  text-wrap: balance;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 6.5vw, 6.5rem);
}

h2 {
  font-size: clamp(2.5rem, 5.3vw, 5.2rem);
  line-height: .96;
}

h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  line-height: 1;
}

.home-hero .lead,
.home-hero .kicker,
.lead {
  color: var(--charcoal);
}

.lead {
  max-width: 520px;
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 500;
  line-height: 1.55;
}

.kicker {
  margin-bottom: 22px;
  color: var(--green);
  font-size: .68rem;
  letter-spacing: .14em;
}

.kicker::before {
  width: 24px;
}

.button,
.button.light,
.home-hero .button.ghost,
.hero .button.ghost {
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: .72rem;
  letter-spacing: .07em;
  backdrop-filter: none;
}

.button.ghost,
.home-hero .button.ghost,
.hero .button.ghost {
  background: var(--white);
  color: var(--ink);
}

.button:hover,
.button.light:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

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

.section,
.section.white,
.section.dark,
.runway-ribbon {
  background: var(--white);
  color: var(--ink);
}

.section {
  padding-block: clamp(80px, 10vw, 140px);
}

.section.compact {
  padding-block: clamp(58px, 7vw, 92px);
}

.container {
  width: min(1280px, 100%);
}

.section-head {
  display: block;
  max-width: 920px;
  margin: 0 auto clamp(48px, 7vw, 86px);
  text-align: center;
}

.section-head p {
  max-width: 680px;
  margin: 26px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-head .kicker {
  justify-content: center;
}

.section-head .kicker::before {
  display: none;
}

.masthead-line {
  padding-block: clamp(48px, 7vw, 88px);
  border: 0;
  background: var(--white);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -.065em;
  text-transform: none;
}

.edition-line {
  padding-block: 18px;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
}

.marquee {
  border-top: 0;
}

.marquee-track {
  color: var(--muted);
  font-size: .68rem;
}

.eyebrow-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border: 0;
}

.eyebrow-grid > * {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ivory);
}

.eyebrow-grid strong {
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 700;
}

.runway-opening,
.runway-world {
  width: min(1400px, calc(100% - clamp(28px, 5vw, 72px)));
  min-height: min(760px, 78dvh);
  margin: 0 auto clamp(70px, 9vw, 130px);
  border-radius: 16px;
  background: var(--ivory);
  color: var(--ink);
}

.runway-opening::after,
.runway-world::after {
  background: linear-gradient(180deg, transparent 45%, rgba(8, 16, 11, .72));
}

.runway-opening-copy,
.runway-world-copy {
  min-height: min(760px, 78dvh);
  padding: clamp(32px, 6vw, 80px);
}

.runway-opening-copy h2,
.runway-world-copy h2 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(3.1rem, 7vw, 7rem);
  letter-spacing: -.06em;
  text-transform: none;
}

.runway-opening-copy .kicker,
.runway-opening-copy p,
.runway-world-copy .kicker,
.runway-world-copy p {
  color: var(--white);
}

.editorial-index {
  grid-template-columns: 1.25fr .75fr;
  gap: 14px;
  border: 0;
  background: transparent;
}

.editorial-index article {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ivory);
}

.editorial-index article:first-child {
  min-height: 480px;
  background: var(--ink);
  color: var(--white);
}

.editorial-number {
  color: #75bd91;
  font-size: clamp(3rem, 8vw, 7rem);
}

.quote-line {
  max-width: 1080px;
  color: var(--ink);
  font-size: clamp(3rem, 7.5vw, 7rem);
  letter-spacing: -.06em;
  text-transform: none;
}

.edition-duet,
.fashion-capitals-grid {
  width: min(1400px, calc(100% - clamp(28px, 5vw, 72px)));
  margin: 0 auto clamp(70px, 9vw, 130px);
  gap: 18px;
  background: var(--white);
}

.edition-panel,
.capital-feature {
  min-height: min(680px, 72dvh);
  border-radius: 16px;
}

.edition-panel + .edition-panel {
  border: 0;
}

.edition-panel-copy h2,
.capital-feature-copy h2 {
  font-size: clamp(2.7rem, 4.8vw, 5.4rem);
  letter-spacing: -.055em;
  text-transform: none;
}

.edition-panel-copy .button,
.capital-feature-copy .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.media-frame,
.card,
.ticket,
.form-panel,
.press-item,
.schedule-row {
  border-radius: 14px;
}

.media-frame {
  box-shadow: none;
}

.feature-list {
  gap: 14px;
  border: 0;
  background: transparent;
}

.feature-list article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ivory);
}

.cards,
.ticket-grid {
  gap: 14px;
}

.card,
.ticket,
.form-panel,
.press-item,
.schedule-row {
  background: var(--white);
}

.card:hover,
.ticket:hover,
.press-item:hover {
  border-color: rgba(21, 115, 71, .42);
  box-shadow: 0 18px 48px rgba(24, 35, 28, .08);
}

.card img {
  border-radius: 13px 13px 0 0;
}

.meta {
  color: var(--green);
}

input,
select,
textarea {
  border-radius: 8px;
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(21, 115, 71, .12);
}

.runway-ribbon-head h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  text-transform: none;
}

.runway-ribbon-head .issue {
  display: none;
}

.runway-ribbon figure {
  border-radius: 14px;
}

.runway-ribbon figcaption {
  font-size: .66rem;
  letter-spacing: .08em;
}

.site-footer {
  padding-top: clamp(70px, 9vw, 112px);
  background: var(--ivory);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-grid h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.footer-grid a,
.footer-grid p,
.footer-bottom {
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--green);
}

.footer-bottom {
  border-color: var(--line);
}

@media (max-width: 980px) {
  .hero,
  .hero.page-hero,
  .home-hero {
    min-height: auto;
    padding-top: 98px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    grid-row: 2;
    min-height: 54dvh;
    margin-top: 28px;
  }

  .hero-content,
  .home-hero .hero-content {
    width: 100%;
    padding: 54px 0 0;
  }

  .primary-nav {
    inset: 72px 14px auto;
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
  }

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

  .edition-duet,
  .fashion-capitals-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
  }

  .hero,
  .hero.page-hero,
  .home-hero {
    padding: 86px 14px 14px;
  }

  .hero-content,
  .home-hero .hero-content {
    padding-top: 38px;
  }

  h1,
  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .hero-media {
    min-height: 52dvh;
    border-radius: 12px;
  }

  .hero-actions,
  .actions {
    display: grid;
  }

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

  .runway-opening,
  .runway-world,
  .edition-duet,
  .fashion-capitals-grid {
    width: calc(100% - 28px);
    border-radius: 12px;
  }

  .runway-opening,
  .runway-opening-copy,
  .runway-world,
  .runway-world-copy {
    min-height: 68dvh;
  }

  .edition-panel,
  .capital-feature {
    min-height: 66dvh;
    border-radius: 12px;
  }

  .editorial-index {
    grid-template-columns: 1fr;
  }
}
