:root {
  --navy: #07356b;
  --navy-deep: #03264f;
  --gold: #d18c19;
  --cream: #f5f1eb;
  --charcoal: #2f3a45;
  --white: #fff;
  --wrap: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
.final-poster {
  position: relative;
  width: min(100%, 1024px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--navy-deep);
}
.final-poster--story,
.final-poster--contact {
  width: min(100%, 862px);
}
.final-poster--navigator {
  width: min(100%, 1012px);
}
.final-poster > img {
  display: block;
  width: 100%;
  height: auto;
}
.final-poster-links {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.poster-link {
  position: absolute;
  top: 0;
  z-index: 3;
  height: 6.3%;
  pointer-events: auto;
}
.poster-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.poster-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}
.poster-link--home { left: 25%; width: 7%; }
.poster-link--story { left: 32%; width: 10%; }
.poster-link--routes { left: 42%; width: 8%; }
.poster-link--experience { left: 50%; width: 11%; }
.poster-link--navigator { left: 61%; width: 20%; }
.poster-link--resources { left: 81%; width: 10%; }
.poster-link--contact { left: 91%; width: 9%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
}
h1 {
  font-size: clamp(3.4rem, 7vw, 7rem);
}
h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
}
h3 {
  font-size: 1.55rem;
}
.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}
.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}
.button--outline {
  background: transparent;
  color: var(--navy);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 10px max(24px, calc((100% - var(--wrap)) / 2));
  border-bottom: 1px solid rgba(212, 175, 55, 0.55);
  background: rgba(7, 53, 107, 0.98);
  color: #fff;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.brand img {
  width: 150px;
  height: 88px;
  object-fit: contain;
}
.brand b,
.brand small {
  display: block;
}
.brand b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand small {
  font-size: 0.6rem;
  letter-spacing: 0.07em;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header nav > a,
.site-header nav button {
  border: 0;
  background: transparent;
  color: #fff;
  font: 600 0.68rem Montserrat, Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header nav > a:hover,
.site-header nav > a:focus-visible {
  color: var(--gold);
}
.menu-button {
  display: none;
  border: 1px solid var(--gold);
  background: transparent;
  color: #fff;
  padding: 9px;
}
.hero {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 660px;
  background: #fff;
}
.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero > div {
  align-self: center;
  padding: clamp(40px, 6vw, 86px);
}
.hero h1 {
  margin-bottom: 22px;
  color: var(--navy);
}
.hero p:not(.eyebrow) {
  max-width: 620px;
}
.values,
.routes,
.themes,
.phases {
  padding: clamp(70px, 8vw, 120px) 0;
}
.values header,
.routes header,
.phases header {
  text-align: center;
}
.values > div,
.themes > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: rgba(7, 53, 107, 0.18);
}
.values article,
.themes article {
  padding: 32px 24px;
  background: var(--cream);
  text-align: center;
}
.values article span,
.themes article span,
.phases article > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 700;
}
.values article p,
.themes article p {
  font-size: 0.84rem;
}
.routes > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.route-card {
  display: grid;
  grid-template-columns: 44% 56%;
  overflow: hidden;
  border: 1px solid rgba(7, 53, 107, 0.15);
  background: #fff;
  color: inherit;
  text-decoration: none;
}
.route-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}
.route-card div {
  padding: 28px;
}
.route-card p {
  font-size: 0.86rem;
}
.route-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.route-card:last-child {
  grid-column: 1/-1;
  width: calc(50% - 12px);
  justify-self: center;
}
.split,
.question {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  color: #fff;
}
.split > div,
.question > div {
  padding: clamp(55px, 7vw, 100px);
}
.split > div + div,
.question > div + div {
  border-left: 1px solid rgba(212, 175, 55, 0.45);
}
.split h2,
.question h2 {
  color: #fff;
}
.route-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  overflow: hidden;
}
.route-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.64);
}
.route-hero > div {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 900px;
  padding: clamp(44px, 7vw, 96px);
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.route-hero h1 {
  margin-bottom: 15px;
  color: #fff;
}
.route-hero p:last-child {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
}
.question dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-self: center;
  padding: 50px;
  margin: 0;
}
.question dl div {
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  text-align: center;
}
.question dt {
  color: var(--gold);
  font: 600 2.5rem "Cormorant Garamond", Georgia, serif;
}
.question dd {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
}
.themes > div {
  grid-template-columns: repeat(5, 1fr);
}
.route-cta {
  padding: 70px 24px;
  background: var(--navy-deep);
  color: #fff;
  text-align: center;
}
.route-cta h2 {
  color: #fff;
}
.interior-hero {
  padding: clamp(90px, 12vw, 170px) max(28px, calc((100% - var(--wrap)) / 2));
  background: linear-gradient(
      90deg,
      rgba(245, 241, 235, 0.99),
      rgba(245, 241, 235, 0.82)
    ),
    url("/static/images/launch.webp") center/cover;
}
.interior-hero h1 {
  max-width: 850px;
}
.interior-hero > p:not(.eyebrow) {
  max-width: 650px;
}
.navigator-hero {
  background: linear-gradient(
      90deg,
      rgba(245, 241, 235, 0.99),
      rgba(245, 241, 235, 0.75)
    ),
    url("/static/images/navigator.webp") center/cover;
}
.phases > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.phases > div.five {
  grid-template-columns: repeat(5, 1fr);
}
.phases article {
  padding: 30px 22px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: #fff;
  text-align: center;
}
.phases article p {
  font-size: 0.8rem;
}
.gate {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: linear-gradient(rgba(3, 38, 79, 0.88), rgba(3, 38, 79, 0.95)),
    url("/static/images/launch.webp") center/cover;
}
.gate-card {
  width: min(500px, 100%);
  padding: 48px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  background: rgba(245, 241, 235, 0.97);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}
.gate-card > img {
  width: min(290px, 82%);
  height: auto;
  margin: 0 auto 20px;
  object-fit: contain;
}
.gate-card h1 {
  font-size: 3rem;
}
.gate-card form {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  text-align: left;
}
.gate-card input {
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(7, 53, 107, 0.3);
  font: inherit;
}
.gate-card button {
  min-height: 50px;
  border: 0;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
}
.error {
  margin-top: 16px;
  color: #9b2d20;
  font-size: 0.84rem;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px max(24px, calc((100% - var(--wrap)) / 2));
  background: var(--navy);
  color: #fff;
}
footer p {
  margin: 0;
  color: var(--gold);
  font: italic 1.7rem "Cormorant Garamond", Georgia, serif;
}
.brand--footer img {
  width: 145px;
  height: 100px;
}
@media (max-width: 950px) {
  .menu-button {
    display: block;
  }
  .site-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: var(--navy-deep);
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav > a,
  .site-header nav button {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero > img {
    height: 460px;
  }
  .values > div,
  .themes > div {
    grid-template-columns: repeat(2, 1fr);
  }
  .routes > div {
    grid-template-columns: 1fr;
  }
  .route-card:last-child {
    grid-column: auto;
    width: auto;
  }
  .split,
  .question {
    grid-template-columns: 1fr;
  }
  .split > div + div,
  .question > div + div {
    border-left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.45);
  }
  .themes > div {
    grid-template-columns: repeat(2, 1fr);
  }
  .phases > div,
  .phases > div.five {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 28px));
  }
  .brand small {
    display: none;
  }
  .brand b {
    font-size: 0.95rem;
  }
  .brand img {
    width: 110px;
    height: 72px;
  }
  .hero > img {
    height: 330px;
  }
  .hero > div {
    padding: 42px 24px;
  }
  .route-card {
    grid-template-columns: 1fr;
  }
  .route-card img {
    height: 220px;
    min-height: 0;
  }
  .values > div,
  .themes > div,
  .phases > div,
  .phases > div.five {
    grid-template-columns: 1fr;
  }
  .question dl {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .route-hero {
    min-height: 560px;
  }
  .route-hero > div {
    padding: 35px 24px;
  }
  .gate-card {
    padding: 34px 24px;
  }
  footer {
    display: block;
    text-align: center;
  }
  footer p {
    margin-top: 24px;
  }
}
.body--artwork-page {
  background: #fff;
}
.body--artwork-page main {
  width: 100%;
}
.route-artwork,
.home-artwork {
  position: relative;
  width: min(100%, 1200px);
  margin: 0 auto;
  background: #fff;
}
.route-artwork > img,
.home-artwork > img {
  width: 100%;
  height: auto;
}
.route-artwork-links,
.home-artwork-links {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.art-link,
.home-link {
  position: absolute;
  display: block;
  pointer-events: auto;
}
.art-link span,
.home-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.art-link:focus-visible,
.home-link:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: -4px;
  background: rgba(212, 175, 55, 0.18);
}
.art-link--home {
  left: 10.5%;
  top: 0;
  width: 8.5%;
  height: 3.1%;
}
.art-link--story {
  left: 21%;
  top: 0;
  width: 11%;
  height: 3.1%;
}
.art-link--routes {
  left: 35%;
  top: 0;
  width: 10%;
  height: 3.1%;
}
.art-link--experience {
  left: 46%;
  top: 0;
  width: 14%;
  height: 3.1%;
}
.art-link--navigator {
  left: 60%;
  top: 0;
  width: 24%;
  height: 3.1%;
}
.art-link--resources {
  left: 84%;
  top: 0;
  width: 10%;
  height: 3.1%;
}
.art-link--contact {
  left: 94%;
  top: 0;
  width: 6%;
  height: 3.1%;
}
.art-link--start {
  left: 35%;
  top: 94.1%;
  width: 26%;
  height: 3.6%;
}
.art-link--legacy {
  left: 65%;
  top: 93.5%;
  width: 34%;
  height: 5.5%;
}
.route-artwork--grand .art-link--start {
  left: 34%;
  top: 96.2%;
  width: 26%;
  height: 3.1%;
}
.route-artwork--grand .art-link--legacy {
  left: 66%;
  top: 96%;
  width: 33%;
  height: 3.5%;
}
.route-artwork--global-navigator .art-link--start {
  left: 73%;
  top: 89.4%;
  width: 25%;
  height: 2.8%;
}
.route-artwork--global-navigator .art-link--legacy {
  left: 71%;
  top: 78.5%;
  width: 28%;
  height: 10.3%;
}
.route-artwork--dual-explorer .art-link--start {
  left: 53%;
  top: 98%;
  width: 39%;
  height: 1.8%;
}
.route-artwork--dual-explorer .art-link--legacy {
  left: 57%;
  top: 93.5%;
  width: 40%;
  height: 4.3%;
}
.route-artwork--digital-pioneer .art-link--start {
  left: 36.5%;
  top: 96.5%;
  width: 27%;
  height: 3%;
}
.route-artwork--digital-pioneer .art-link--legacy {
  left: 66%;
  top: 95.5%;
  width: 33%;
  height: 4.2%;
}
.art-anchor {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
}
.art-anchor--story {
  top: 26%;
}
.art-anchor--routes {
  top: 68%;
}
.home-link--home {
  left: 24.5%;
  top: 0;
  width: 6.5%;
  height: 4.8%;
}
.home-link--story {
  left: 31%;
  top: 0;
  width: 7%;
  height: 4.8%;
}
.home-link--routes {
  left: 38%;
  top: 0;
  width: 6.5%;
  height: 4.8%;
}
.home-link--experience {
  left: 44.5%;
  top: 0;
  width: 9%;
  height: 4.8%;
}
.home-link--navigator {
  left: 53.5%;
  top: 0;
  width: 17%;
  height: 4.8%;
}
.home-link--resources {
  left: 70.5%;
  top: 0;
  width: 9%;
  height: 4.8%;
}
.home-link--contact {
  left: 78.5%;
  top: 0;
  width: 5.5%;
  height: 4.8%;
}
.home-link--consultation {
  left: 83%;
  top: 1%;
  width: 13%;
  height: 3%;
}
.home-link--hero-routes {
  left: 2%;
  top: 21%;
  width: 20%;
  height: 3.6%;
}
.home-link--hero-navigator {
  left: 22.8%;
  top: 21%;
  width: 25%;
  height: 3.6%;
}
.home-link--grand {
  left: 1.2%;
  top: 70.8%;
  width: 18%;
  height: 15.6%;
}
.home-link--global {
  left: 20.2%;
  top: 70.8%;
  width: 18%;
  height: 15.6%;
}
.home-link--dual {
  left: 38.8%;
  top: 70.8%;
  width: 18%;
  height: 15.6%;
}
.home-link--digital {
  left: 57.4%;
  top: 70.8%;
  width: 18.5%;
  height: 15.6%;
}
.home-link--resident {
  left: 77%;
  top: 70.8%;
  width: 20.5%;
  height: 15.6%;
}
.home-link--become {
  left: 22%;
  top: 93.2%;
  width: 21%;
  height: 2.7%;
}
.home-link--join {
  left: 54%;
  top: 93.2%;
  width: 20%;
  height: 2.7%;
}
.art-routes-control {
  position: absolute;
  z-index: 5;
  pointer-events: auto;
}
.art-routes-control--interior {
  left: 35%;
  top: 0;
  width: 10%;
  height: 3.1%;
}
.art-routes-control--home {
  left: 38%;
  top: 0;
  width: 6.5%;
  height: 4.8%;
}
.art-routes-control summary {
  width: 100%;
  height: 100%;
  cursor: pointer;
  list-style: none;
}
.art-routes-control summary::-webkit-details-marker {
  display: none;
}
.art-routes-control summary span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.art-routes-control summary:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: -4px;
  background: rgba(209, 140, 25, 0.16);
}
.art-routes-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  display: grid;
  width: min(280px, 78vw);
  padding: 8px;
  border: 1px solid var(--gold);
  background: #fff;
  box-shadow: 0 14px 32px rgba(3, 38, 79, 0.24);
}
.art-routes-menu a {
  padding: 10px 12px;
  color: var(--navy-deep);
  font: 600 0.75rem Montserrat, Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.art-routes-menu a:hover,
.art-routes-menu a:focus-visible {
  background: rgba(209, 140, 25, 0.14);
  color: var(--navy);
}
