:root {
  --paper: #ffffff;
  --paper-alt: #f7f7f8;
  --ink: #0a0a0a;
  --muted: #646464;
  --rule: #d7d7d7;
  --accent: #ff4f00;
  --header-height: 76px;
  --page-pad: clamp(20px, 4vw, 64px);
  --content-width: 1600px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: inherit;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: stretch;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--ink);
  transition: min-height .3s var(--ease);
}

.site-header.is-scrolled {
  --header-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 0 var(--page-pad);
  text-decoration: none;
  width: max-content;
}

.brand-logo {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 12px;
  letter-spacing: .13em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .1em;
}

.primary-nav {
  display: flex;
  align-items: stretch;
}

.primary-nav a,
.nav-apply,
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 0 20px;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-left: 1px solid var(--rule);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: var(--paper-alt);
  color: var(--accent);
}

.nav-apply {
  min-width: 134px;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.nav-apply:hover,
.nav-apply:focus-visible {
  background: var(--accent);
}

.menu-toggle {
  display: none;
}

.hero {
  max-width: var(--content-width);
  min-height: 100svh;
  margin: 0 auto;
  padding-top: var(--header-height);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  background: var(--ink);
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}

.hero-copy {
  z-index: 3;
  grid-column: 1;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(42px, 7vh, 92px) var(--page-pad) 38px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(26px) saturate(.9);
  backdrop-filter: blur(26px) saturate(.9);
  border-right: 1px solid var(--ink);
}

.eyebrow {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  margin: 0 12px 3px 0;
  background: var(--accent);
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 6.6vw, 114px);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 800;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  color: var(--accent);
}

.hero-lead {
  max-width: 590px;
  margin: clamp(34px, 6vh, 72px) 0 0;
  padding-left: clamp(0px, 8vw, 140px);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 34px 0 0;
  padding-left: clamp(0px, 8vw, 140px);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

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

.button-light:hover,
.button-light:focus-visible {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}

.button-accent {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.text-link {
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.text-link span {
  margin-left: 8px;
  color: var(--accent);
  transition: margin-left .2s ease;
}

.text-link:hover span {
  margin-left: 14px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: auto calc(var(--page-pad) * -1) -38px;
  border-top: 1px solid var(--rule);
}

.hero-meta div {
  min-height: 126px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 22px clamp(14px, 2vw, 26px);
  border-right: 1px solid var(--rule);
}

.hero-meta div:last-child {
  border-right: 0;
}

.hero-meta strong {
  font-size: clamp(28px, 3vw, 48px);
  line-height: .8;
  letter-spacing: -.06em;
}

.hero-meta span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  inset: var(--header-height) 0 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -28px;
  background: url("images/indexbanner.webp") center / cover no-repeat;
  filter: blur(20px) saturate(.58) brightness(.55);
  transform: scale(1.06);
}

.hero-visual::after {
  content: "";
  z-index: 2;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 58%, rgba(0, 0, 0, .62) 100%);
  pointer-events: none;
}

.hero-visual picture {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(.72) contrast(1.08);
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  color: var(--paper);
  font-size: 10px;
  letter-spacing: .1em;
}

.hero-year {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: -12px;
  color: var(--paper);
  font-size: clamp(100px, 14vw, 240px);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.08em;
  opacity: .95;
  writing-mode: vertical-rl;
  mix-blend-mode: difference;
}

.partner-strip {
  max-width: var(--content-width);
  min-height: 132px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
}

.partner-strip > p {
  margin: 0;
  padding: 0 var(--page-pad);
  color: #b7b7b7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.partner-logos {
  min-height: 132px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-left: 1px solid #414141;
}

.partner-logos img {
  max-width: min(140px, 60%);
  max-height: 54px;
  margin: auto;
  filter: none;
  opacity: 1;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(86px, .45fr) minmax(260px, 1.25fr) minmax(0, 2.3fr);
  max-width: var(--content-width);
  margin: 0 auto;
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}

.overview {
  padding-bottom: 120px;
}

.section-index {
  padding: 96px 24px;
  color: var(--accent);
  border-right: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 700;
}

.section-heading {
  padding: 96px clamp(24px, 4vw, 64px);
  border-right: 1px solid var(--rule);
}

.section-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: .95;
  letter-spacing: -.06em;
}

.overview-intro {
  padding: 96px var(--page-pad) 68px;
}

.large-copy {
  margin: 0 0 36px;
  font-size: clamp(24px, 2.8vw, 44px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.overview-intro > p:last-child {
  max-width: 720px;
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.experience-grid {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--ink);
}

.experience-grid article {
  min-height: 340px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  border-right: 1px solid var(--rule);
  transition: background .25s ease, color .25s ease;
}

.experience-grid article:nth-child(1),
.experience-grid article:nth-child(2) {
  grid-column: span 3;
  border-bottom: 1px solid var(--rule);
}

.experience-grid article:nth-child(3),
.experience-grid article:nth-child(4),
.experience-grid article:nth-child(5) {
  grid-column: span 2;
}

.experience-grid article:nth-child(2),
.experience-grid article:nth-child(5) {
  border-right: 0;
}

.experience-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--accent);
  transition: width .45s var(--ease);
}

.experience-grid article:hover::before {
  width: 100%;
}

.experience-grid article:not(:nth-child(3)):hover {
  background: var(--paper-alt);
}

.experience-grid article:nth-child(3) {
  background: var(--ink);
  color: var(--paper);
}

.card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}

.card-number {
  font-size: clamp(46px, 4.2vw, 68px);
  font-weight: 800;
  line-height: .78;
  letter-spacing: -.08em;
}

.card-action {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.experience-grid h3 {
  margin: auto 0 14px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
  letter-spacing: -.04em;
}

.experience-grid p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.experience-grid article:nth-child(3) .card-heading {
  border-color: #414141;
}

.experience-grid article:nth-child(3) p {
  color: #b7b7b7;
}

.program {
  background: var(--paper-alt);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.program-header {
  border-color: #c8c8c8;
}

.program-header .section-index,
.program-header .section-heading {
  border-color: #c8c8c8;
}

.program-note {
  align-self: end;
  max-width: 620px;
  margin: 0;
  padding: 0 var(--page-pad) 96px;
  color: var(--muted);
  font-size: 14px;
}

.route-layout {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(0, 2.12fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid #c8c8c8;
  border-right: 1px solid #c8c8c8;
}

.route-map {
  padding: 70px clamp(28px, 4vw, 62px);
  border-right: 1px solid var(--ink);
}

.route-track {
  --route-progress: 0%;
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.route-track::before,
.route-progress {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 30px;
  left: 18px;
  width: 1px;
  background: #bbbbbb;
}

.route-progress {
  bottom: auto;
  height: var(--route-progress);
  background: var(--accent);
  transition: height .5s var(--ease);
}

.route-stop {
  min-height: 112px;
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  border: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.route-stop:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.route-stop > span {
  z-index: 1;
  width: 37px;
  height: 37px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-alt);
  border: 1px solid #bbbbbb;
  font-size: 10px;
  font-weight: 700;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.route-stop.is-active > span {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}

.route-stop:hover > span {
  border-color: var(--accent);
  color: var(--accent);
}

.route-stop.is-active:hover > span {
  color: var(--paper);
}

.route-stop p {
  margin: 7px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.route-stop:hover p,
.route-stop:focus-visible p {
  color: var(--accent);
}

.route-stop small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.day-list {
  background: var(--paper);
}

.day {
  border-bottom: 1px solid var(--ink);
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.day:last-child {
  border-bottom: 0;
}

.day summary {
  min-height: 124px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 110px 30px;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(24px, 4vw, 56px);
  list-style: none;
  cursor: pointer;
}

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

.day summary:hover,
.day[open] summary {
  background: var(--ink);
  color: var(--paper);
}

.day-count {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.day-name {
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.day-city {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.summary-control {
  width: 26px;
  height: 26px;
  position: relative;
  border: 1px solid currentColor;
}

.summary-control::before,
.summary-control::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 6px;
  width: 12px;
  height: 1px;
  background: currentColor;
}

.summary-control::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.day[open] .summary-control::after {
  transform: rotate(0);
}

.day-body {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  border-top: 1px solid var(--ink);
}

.day-body > img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  align-self: center;
  background: var(--paper-alt);
  filter: saturate(.78);
}

.schedule {
  padding: 20px clamp(24px, 4vw, 54px) 38px;
}

.schedule > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--rule);
}

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

.schedule time {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.schedule p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.schedule strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17px;
}

.day-body-text {
  display: block;
  padding: 54px;
}

.day-body-text .large-copy {
  max-width: 900px;
  margin: 0;
}

.visits {
  padding-bottom: 100px;
}

.visits-intro {
  align-self: end;
  max-width: 720px;
  margin: 0;
  padding: 0 var(--page-pad) 96px;
  color: var(--muted);
  font-size: 17px;
}

.visit-grid {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.visit-grid article {
  min-width: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: .9;
  border-right: 1px solid var(--paper);
  border-bottom: 1px solid var(--paper);
  background: var(--ink);
}

.visit-grid article:nth-child(4n) {
  border-right: 0;
}

.visit-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  opacity: .68;
  transition: filter .45s var(--ease), opacity .45s var(--ease), transform .7s var(--ease);
}

.visit-grid article:hover img {
  filter: grayscale(0) contrast(1);
  opacity: .9;
  transform: scale(1.035);
}

.visit-grid article > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--paper);
}

.visit-grid span {
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.visit-grid h3 {
  margin: 7px 0 0;
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1;
  letter-spacing: -.04em;
}

.legal-note {
  grid-column: 2 / 4;
  margin: 0;
  padding: 22px 30px;
  color: var(--muted);
  font-size: 11px;
}

.audience {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: var(--paper);
}

.audience-image {
  min-height: 620px;
  background: url("images/shanghai.jpg") center / cover no-repeat;
  filter: none;
}

.audience-copy {
  padding: 90px var(--page-pad);
}

.audience-copy .eyebrow {
  color: #b7b7b7;
}

.audience-copy h2 {
  max-width: 720px;
  margin: 0 0 60px;
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: .95;
  letter-spacing: -.06em;
}

.audience-copy ul {
  max-width: 720px;
  margin: 0 0 52px;
  padding: 0;
  border-top: 1px solid #515151;
  list-style: none;
}

.audience-copy li {
  display: grid;
  grid-template-columns: 52px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid #515151;
  font-size: 16px;
}

.audience-copy li span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.faq {
  padding-bottom: 120px;
}

.faq-list {
  padding: 96px var(--page-pad) 0;
}

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

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

.faq-list summary {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 22px;
  list-style: none;
  cursor: pointer;
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 700;
}

.faq-list summary span {
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 2px;
  width: 18px;
  height: 1px;
  background: var(--ink);
}

.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details[open] summary {
  color: var(--accent);
}

.faq-list p {
  max-width: 800px;
  margin: -2px 0 34px;
  color: var(--muted);
  font-size: 16px;
}

.faq-list a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.closing-cta {
  min-height: 670px;
  padding: 90px var(--page-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--paper);
  text-align: center;
}

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

.closing-cta .eyebrow::before {
  background: var(--paper);
}

.closing-cta h2 {
  margin: 0 0 54px;
  font-size: clamp(54px, 10vw, 150px);
  line-height: .78;
  letter-spacing: -.075em;
}

.site-footer {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--paper);
  border-top: 1px solid var(--ink);
}

.site-footer > div {
  padding: 48px var(--page-pad);
  border-right: 1px solid var(--rule);
}

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

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer-brand strong {
  font-size: 12px;
  letter-spacing: .12em;
}

.footer-brand p,
.footer-contact p,
.footer-legal p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-contact a {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.apply-dialog {
  width: min(840px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 0;
}

.apply-dialog::backdrop {
  background: rgba(0, 0, 0, .72);
}

.dialog-head {
  position: relative;
  padding: 46px 52px 38px;
  border-bottom: 1px solid var(--ink);
}

.dialog-head .eyebrow {
  margin-bottom: 18px;
}

.dialog-head h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(38px, 6vw, 66px);
  line-height: .9;
  letter-spacing: -.06em;
}

.dialog-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  padding: 0;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  cursor: pointer;
}

.dialog-close span::before,
.dialog-close span::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 20px;
  width: 24px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}

.dialog-close span::after {
  transform: rotate(-45deg);
}

.dialog-close:hover,
.dialog-close:focus-visible {
  background: var(--accent);
}

.apply-dialog form {
  display: grid;
  gap: 24px;
  padding: 40px 52px 52px;
}

.form-row,
.phone-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.phone-fields[hidden] {
  display: none;
}

.apply-dialog label,
.apply-dialog legend {
  font-size: 12px;
  font-weight: 700;
}

.apply-dialog input,
.apply-dialog select {
  width: 100%;
  height: 52px;
  margin-top: 8px;
  padding: 0 14px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid #9f9f9f;
  border-radius: 0;
  outline: 0;
}

.apply-dialog input:focus,
.apply-dialog select:focus {
  border: 2px solid var(--accent);
}

.apply-dialog fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.radio {
  display: inline-flex;
  align-items: center;
  margin: 14px 28px 0 0;
}

.radio input {
  width: 19px;
  height: 19px;
  margin: 0 8px 0 0;
  accent-color: var(--accent);
}

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  cursor: pointer;
}

.form-consent input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.form-consent span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.form-status {
  padding: 14px 16px;
  border-left: 4px solid var(--ink);
  background: var(--paper-alt);
  font-size: 13px;
}

.form-status.is-error {
  border-color: var(--accent);
  background: #fff2ec;
}

.form-status[hidden] {
  display: none;
}

.apply-dialog [aria-invalid="true"] {
  border: 2px solid var(--accent);
}

.form-submit {
  justify-self: start;
}

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: flex;
    min-width: 112px;
    gap: 12px;
  }

  .menu-lines {
    width: 22px;
    height: 15px;
    position: relative;
  }

  .menu-lines i {
    position: absolute;
    left: 0;
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s ease, top .2s ease;
  }

  .menu-lines i:first-child { top: 3px; }
  .menu-lines i:last-child { top: 11px; }

  .menu-toggle[aria-expanded="true"] .menu-lines i:first-child {
    top: 7px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:last-child {
    top: 7px;
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a,
  .nav-apply {
    min-height: 62px;
    border-top: 1px solid var(--rule);
  }

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

  .hero-copy {
    min-height: calc(100svh - var(--header-height));
    border-right: 0;
  }

  .hero h1 {
    font-size: clamp(68px, 12vw, 122px);
  }

  .hero-lead,
  .hero-actions {
    padding-left: 24vw;
  }

  .hero-meta {
    margin-top: 64px;
  }

  .hero-visual {
    min-height: 0;
    border-top: 0;
  }

  .hero-year {
    writing-mode: initial;
  }

  .section-grid {
    grid-template-columns: 86px 1fr 1.5fr;
  }

  .route-layout {
    grid-template-columns: 250px 1fr;
  }

  .route-map {
    padding: 52px 28px;
  }

  .day summary {
    grid-template-columns: 72px 1fr 82px 28px;
    gap: 14px;
  }

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

  .day-body > img {
    min-height: 0;
    max-height: none;
  }

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

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

  .audience {
    min-height: 0;
    grid-template-columns: .82fr 1.18fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .brand {
    padding-left: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    min-width: 90px;
    padding: 0 14px;
  }

  .menu-label {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: var(--header-height);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    background: var(--paper);
  }

  .hero-visual {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1672 / 941;
    border-bottom: 1px solid var(--ink);
  }

  .hero-visual::before {
    inset: -14px;
    filter: blur(14px) saturate(.7) brightness(.62);
  }

  .hero-visual img {
    object-fit: contain;
    object-position: center;
    filter: saturate(.9) contrast(1.04);
  }

  .hero-visual figcaption {
    bottom: 42px;
    left: 16px;
    right: 16px;
    font-size: 8px;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
    margin: -28px 8px 0;
    padding: 30px 18px 0;
    background: rgba(255, 255, 255, .9);
    -webkit-backdrop-filter: blur(16px) saturate(.94);
    backdrop-filter: blur(16px) saturate(.94);
    border: 1px solid var(--ink);
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(46px, 14.5vw, 68px);
  }

  .hero-lead,
  .hero-actions {
    padding-left: 0;
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .hero-meta {
    margin: 48px -18px 0;
  }

  .hero-meta div {
    min-height: 110px;
    padding: 18px 12px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-meta strong {
    font-size: 30px;
  }

  .hero-year {
    top: 14px;
    right: 14px;
    font-size: clamp(42px, 15vw, 60px);
    opacity: .82;
  }

  .partner-strip {
    grid-template-columns: 1fr;
  }

  .partner-strip > p {
    padding: 24px 20px;
  }

  .partner-logos {
    min-height: 90px;
    border-top: 1px solid #414141;
    border-left: 0;
  }

  .partner-logos img {
    max-width: 64%;
    max-height: 38px;
  }

  .section-grid,
  .program-header {
    grid-template-columns: 46px 1fr;
  }

  .section-index {
    grid-row: 1 / span 2;
    padding: 56px 12px;
  }

  .section-heading {
    padding: 56px 24px 38px;
    border-right: 0;
  }

  .section-heading h2 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .overview-intro,
  .program-note,
  .visits-intro {
    grid-column: 2;
    padding: 0 24px 56px;
  }

  .large-copy {
    font-size: 28px;
  }

  .experience-grid,
  .visit-grid,
  .legal-note {
    grid-column: 1 / 3;
  }

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

  .experience-grid article,
  .experience-grid article:nth-child(n) {
    grid-column: auto;
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .experience-grid h3 {
    margin-top: 56px;
  }

  .overview,
  .visits,
  .faq {
    padding-bottom: 72px;
  }

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

  .route-map {
    display: none;
  }

  .day summary {
    min-height: 118px;
    grid-template-columns: 56px minmax(0, 1fr) 24px;
    padding: 22px 20px;
  }

  .day-city {
    display: none;
  }

  .day-name {
    font-size: 21px;
  }

  .day-body > img {
    min-height: 0;
  }

  .schedule {
    padding: 10px 22px 24px;
  }

  .schedule > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .day-body-text {
    padding: 32px 24px;
  }

  .visit-grid article {
    aspect-ratio: .82;
  }

  .legal-note {
    padding: 20px;
  }

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

  .audience-image {
    min-height: 60vw;
  }

  .audience-copy {
    padding: 60px 24px 68px;
  }

  .audience-copy h2 {
    font-size: 46px;
  }

  .faq-list {
    grid-column: 2;
    padding: 0 24px 0;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 17px;
  }

  .closing-cta {
    min-height: 540px;
    padding: 64px 20px;
  }

  .closing-cta h2 {
    font-size: clamp(50px, 18vw, 84px);
  }

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

  .site-footer > div {
    min-height: 150px;
    padding: 32px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

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

  .dialog-head {
    padding: 34px 24px 28px;
  }

  .dialog-head .eyebrow {
    padding-right: 40px;
  }

  .dialog-close {
    width: 54px;
    height: 54px;
  }

  .dialog-close span::before,
  .dialog-close span::after {
    top: 26px;
    left: 16px;
    width: 22px;
  }

  .apply-dialog form {
    padding: 28px 24px 34px;
  }

  .form-row,
  .phone-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .brand-copy strong {
    font-size: 10px;
  }

  .hero-meta span {
    font-size: 8px;
  }

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

  .visit-grid article,
  .visit-grid article:nth-child(n) {
    aspect-ratio: .82;
    border-right: 1px solid var(--paper);
  }

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

  .visit-grid article > div {
    left: 14px;
    right: 14px;
    bottom: 16px;
  }

  .visit-grid span {
    font-size: 8px;
  }

  .visit-grid h3 {
    margin-top: 5px;
    font-size: clamp(17px, 5vw, 21px);
  }
}

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

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