:root {
  --dawn: #fbfaf5;
  --porcelain: #f3f0e7;
  --sky: #dff3f7;
  --sky-deep: #b9e3eb;
  --pine: #173f34;
  --ink: #1d2824;
  --muted: #65716c;
  --red: #ed1c2a;
  --red-dark: #c91420;
  --amber: #efb46d;
  --line: rgba(29, 40, 36, .18);
  --header-h: 88px;
  --page-p: 0;
  --hero-p: 0;
  --places-p: 0;
  --chapter-local-p: 0;
  --vision-p: 0;
  --contact-p: 0;
  --sun-x: 50;
  --sun-y: 50;
  --mx: 0;
  --my: 0;
  --contact-x: 73%;
  --contact-y: 47%;
  --motion-fast: 180ms;
  --motion-standard: 320ms;
  --motion-slow: 520ms;
  --ease-standard: cubic-bezier(.2, 0, 0, 1);
  --ease-enter: cubic-bezier(0, 0, .2, 1);
  --font-display: "Manrope", "Aptos", "Segoe UI", sans-serif;
  --font-signal: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--dawn);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-display);
}

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

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

button {
  border: 0;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  transform: translateY(-180%);
  background: var(--ink);
  color: #fff;
  font: 500 .75rem/1 var(--font-signal);
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.page-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.page-progress i {
  display: block;
  width: calc(var(--page-p) * 100%);
  height: 100%;
  background: var(--red);
  transform-origin: left;
}

.page-intro {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--sky);
  pointer-events: none;
  transition: opacity .8s ease .25s, visibility .8s ease .25s;
}

.page-intro span {
  color: var(--pine);
  font: 500 .72rem/1 var(--font-signal);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-intro i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  animation: intro-line 1s cubic-bezier(.7, 0, .2, 1) forwards;
}

body.is-ready .page-intro {
  opacity: 0;
  visibility: hidden;
}

@keyframes intro-line {
  to { transform: scaleX(1); }
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-h);
  padding: 0 clamp(1.5rem, 4vw, 4.25rem);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: color-mix(in srgb, var(--dawn) 90%, transparent);
  box-shadow: 0 12px 34px rgba(23, 63, 52, .04);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 2;
  display: block;
  width: clamp(82px, 8.5vw, 112px);
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 2.5vw, 3rem);
}

.site-nav a,
.menu-toggle {
  position: relative;
  color: var(--ink);
  font: 500 .69rem/1 var(--font-signal);
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

.site-nav .concept-link {
  color: var(--red-dark);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: .8rem;
  padding: .6rem 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle i,
.menu-toggle i::before {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform .3s ease;
}

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

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

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

.hero {
  position: relative;
  height: 185svh;
  min-height: 1120px;
  background: var(--sky);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 255, 255, .92), transparent 28%),
    linear-gradient(180deg, #dff4f9 0%, #d4edf1 52%, #edf1dc 100%);
}

.hero-landscape {
  position: absolute;
  inset: 19% -4% -8%;
  background-image:
    linear-gradient(180deg, rgba(223, 244, 249, .08), rgba(223, 244, 249, 0) 42%),
    url("../shared/assets/new-horizons-panorama.png");
  background-position: center 54%;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(.94) brightness(1.03);
  transform: translate3d(calc(var(--mx) * -6px), calc(var(--hero-p) * -4.5%), 0) scale(calc(1.06 + var(--hero-p) * .06));
  transform-origin: center 58%;
  will-change: transform;
}

.hero-landscape::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(223, 244, 249, .78) 0%, transparent 25%, transparent 78%, rgba(242, 240, 231, .45) 100%);
  content: "";
}

.clouds {
  position: absolute;
  inset: 0;
  opacity: calc(.8 - var(--hero-p) * .35);
  background:
    radial-gradient(ellipse at 22% 17%, rgba(255,255,255,.84) 0 6%, transparent 14%),
    radial-gradient(ellipse at 67% 11%, rgba(255,255,255,.66) 0 8%, transparent 18%),
    radial-gradient(ellipse at 88% 28%, rgba(255,255,255,.55) 0 7%, transparent 17%);
  filter: blur(8px);
  transform: translateX(calc(var(--hero-p) * 4%));
}

.horizon-canvas {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.travelling-sun {
  position: absolute;
  z-index: 4;
  top: calc(var(--sun-y) * 1%);
  left: calc(var(--sun-x) * 1%);
  width: 17px;
  height: 17px;
  border: 4px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(237,28,42,.08), 0 5px 24px rgba(237,28,42,.25);
  transform: translate(-50%, -50%);
}

.hero-copy {
  position: absolute;
  z-index: 5;
  top: clamp(116px, 14vh, 150px);
  left: clamp(1.5rem, 14vw, 13.5rem);
  width: min(53rem, 74vw);
  transform: translateY(calc(var(--hero-p) * -22px));
}

.hero-copy > p,
.signal-label,
.scroll-index,
.journey-status,
.chapter-copy > span,
.chapter-visual > span,
.gateway-copy small,
.contact-form label > span,
.form-status,
.contact-details small,
.footer-route-board header {
  font-family: var(--font-signal);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-copy > p {
  margin: 0 0 1.1rem;
  color: var(--pine);
  font-size: clamp(.66rem, .7vw, .76rem);
  font-weight: 500;
}

.hero-copy h1 {
  max-width: 800px;
  margin: 0;
  color: var(--pine);
  font-size: clamp(5.1rem, 8.5vw, 8.25rem);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .88;
  text-transform: uppercase;
}

.hero-copy h1 em {
  font-style: normal;
  font-weight: 500;
}

.hero-copy > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  min-width: 220px;
  min-height: 52px;
  margin-top: 1.65rem;
  padding: .45rem .5rem .45rem 1.3rem;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(201,20,32,.2);
  color: #fff;
  font: 500 .72rem/1 var(--font-signal);
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--motion-standard) var(--ease-standard), box-shadow var(--motion-standard) var(--ease-standard), transform var(--motion-standard) var(--ease-standard);
}

.hero-copy > a span {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--red-dark);
  place-items: center;
  transition: transform var(--motion-standard) var(--ease-standard);
}

.hero-copy > a:hover {
  background: var(--pine);
  box-shadow: 0 16px 36px rgba(23,63,52,.2);
  transform: translateY(-3px);
}

.hero-copy > a:hover span {
  transform: translateX(3px) rotate(-12deg);
}

.scroll-index {
  position: absolute;
  z-index: 5;
  bottom: 2.2rem;
  left: clamp(1.5rem, 4vw, 4.25rem);
  display: grid;
  grid-template-columns: auto 76px auto;
  align-items: center;
  gap: .8rem;
  color: var(--pine);
  font-size: .62rem;
}

.scroll-index i {
  position: relative;
  height: 1px;
  background: rgba(23,63,52,.28);
}

.scroll-index i::after {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  animation: index-travel 2.8s ease-in-out infinite;
}

.scroll-index b {
  grid-column: 1 / -1;
  font-weight: 400;
}

@keyframes index-travel {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(71px); }
}

.signal-label {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0;
  color: var(--red-dark);
  font-size: clamp(.66rem, .72vw, .76rem);
  font-weight: 500;
}

.signal-label i {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(237,28,42,.1);
}

.places {
  position: relative;
  background: var(--porcelain);
}

.places-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, .45fr);
  gap: 3rem;
  padding: clamp(6rem, 9vw, 10rem) clamp(1.5rem, 4vw, 4.25rem) clamp(3.5rem, 5vw, 5.5rem);
  border-bottom: 1px solid var(--line);
}

.places-heading .signal-label {
  grid-column: 1 / -1;
}

.places-heading h2,
.vision h2,
.progress h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.6rem, 7.25vw, 7.25rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .94;
}

.places-heading h2 span,
.vision h2 span,
.progress h2 span {
  color: var(--pine);
  font-weight: 500;
}

.places-deck {
  align-self: end;
  max-width: 29rem;
  margin: 0 0 .35rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.65;
}

.places-journey {
  position: relative;
  height: 405svh;
}

.places-sticky {
  position: sticky;
  z-index: 2;
  top: var(--header-h);
  height: calc(100svh - var(--header-h));
  min-height: 630px;
  overflow: hidden;
  background: var(--dawn);
}

.journey-status {
  display: grid;
  grid-template-columns: 36px minmax(120px, 260px) 36px 1fr;
  align-items: center;
  gap: .75rem;
  height: 42px;
  padding: 0 clamp(1.5rem, 4vw, 4.25rem);
  border-bottom: 1px solid var(--line);
  color: var(--pine);
  font-size: .62rem;
}

.journey-status > div {
  position: relative;
  height: 1px;
  background: var(--line);
}

.journey-status > div i {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--places-p) * 100%);
  background: var(--red);
}

.journey-status > div b {
  position: absolute;
  top: 50%;
  left: calc(var(--places-p) * 100%);
  width: 9px;
  height: 9px;
  border: 2px solid var(--dawn);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(237,28,42,.13);
  transform: translate(-50%, -50%);
}

.journey-status small {
  justify-self: end;
  color: var(--muted);
  font-size: inherit;
}

.horizon-gallery {
  display: grid;
  grid-template-rows: 28px repeat(4, 42px) minmax(0, 1fr);
  height: calc(100% - 42px);
  background: var(--dawn);
}

.flight-board-head {
  display: grid;
  grid-row: 1;
  grid-column: 1;
  grid-template-columns: 70px minmax(210px, 1.45fr) minmax(170px, .9fr) 145px;
  align-items: center;
  padding: 0 clamp(1.5rem, 4vw, 4.25rem);
  border-bottom: 1px solid rgba(255,255,255,.2);
  background: #102e27;
  color: rgba(255,255,255,.58);
  font: 500 .52rem/1 var(--font-signal);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.place-chapter {
  display: contents;
}

.place-chapter:nth-of-type(1) .place-ribbon { grid-row: 2; }
.place-chapter:nth-of-type(2) .place-ribbon { grid-row: 3; }
.place-chapter:nth-of-type(3) .place-ribbon { grid-row: 4; }
.place-chapter:nth-of-type(4) .place-ribbon { grid-row: 5; }

.place-ribbon {
  position: relative;
  z-index: 2;
  display: grid;
  grid-column: 1;
  grid-template-columns: 70px minmax(210px, 1.45fr) minmax(170px, .9fr) 145px;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0 clamp(1.5rem, 4vw, 4.25rem);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  border-left: 0 solid var(--red);
  background: var(--pine);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background .3s ease, border-width .3s ease, color .3s ease, opacity .3s ease;
}

.place-chapter.is-past .place-ribbon {
  background: #1b4b3e;
  color: rgba(255,255,255,.68);
}

.place-chapter.is-active .place-ribbon {
  border-left-width: 5px;
  border-bottom-color: var(--line);
  background: #def1f4;
  color: var(--ink);
}

.place-ribbon:hover {
  background: #245846;
}

.place-chapter.is-active .place-ribbon:hover {
  background: #d3eaee;
}

.place-ribbon.is-flipping > span {
  animation: board-flip .44s cubic-bezier(.2,.7,.2,1) both;
}

.place-ribbon.is-flipping > span:nth-child(2) { animation-delay: .035s; }
.place-ribbon.is-flipping > span:nth-child(3) { animation-delay: .07s; }
.place-ribbon.is-flipping > span:nth-child(4) { animation-delay: .105s; }

@keyframes board-flip {
  0% { opacity: .15; transform: rotateX(-74deg) translateY(-4px); }
  58% { opacity: 1; transform: rotateX(8deg) translateY(0); }
  100% { opacity: 1; transform: rotateX(0) translateY(0); }
}

.place-number {
  color: var(--red);
  font: 500 .75rem/1 var(--font-signal);
}

.place-name {
  font-size: clamp(1.02rem, 1.35vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -.025em;
}

.place-theme,
.place-action {
  font: 400 .66rem/1.3 var(--font-signal);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.place-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-self: stretch;
  gap: .8rem;
}

.place-action b {
  display: block;
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: currentColor;
  opacity: .55;
}

.place-chapter.is-active .place-action b {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(237,28,42,.13);
  opacity: 1;
}

.place-reveal {
  grid-row: 6;
  grid-column: 1;
  min-height: 0;
  overflow: hidden;
  background: var(--dawn);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity .38s ease, transform .48s cubic-bezier(.2,.7,.2,1), visibility .38s ease;
}

.place-chapter.is-active .place-reveal {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.place-reveal-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(300px, .68fr);
  height: 100%;
  min-height: 0;
}

.chapter-visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(23,63,52,.2), transparent 38%, rgba(23,63,52,.06)),
    var(--chapter-image);
  background-repeat: no-repeat;
  background-size: cover;
}

.visual-1 {
  --chapter-image: url("assets/journey/journey-indahpura-client-v3.jpg");
  background-position: center 50%;
}

.visual-2 {
  --chapter-image: url("assets/journey/journey-pura-kencana-client-v3.jpg");
  background-position: center 54%;
}

.visual-3 {
  --chapter-image: url("assets/journey/journey-industrial-city-client-v4.jpg");
  background-position: center 44%;
}

.visual-4 {
  --chapter-image: url("assets/journey/journey-johor-tech-client-v3.jpg");
  background-position: center 52%;
}

.chapter-route {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.chapter-route path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.chapter-route-base {
  stroke: rgba(237,28,42,.24);
  stroke-width: 1.25;
}

.chapter-route-progress {
  stroke: var(--red);
  stroke-linecap: round;
  stroke-width: 2;
  stroke-dasharray: 18 100;
}

.chapter-route-marker {
  position: absolute;
  z-index: 3;
  top: var(--route-y, 59%);
  left: var(--route-x, 18%);
  width: 14px;
  height: 14px;
  border: 3px solid rgba(255,255,255,.96);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(237,28,42,.13), 0 5px 18px rgba(237,28,42,.28);
  transform: translate(-50%, -50%);
}

.chapter-visual > span,
.chapter-visual > p {
  position: absolute;
  z-index: 3;
  left: clamp(1.25rem, 3vw, 3rem);
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.38);
}

.chapter-visual > span {
  top: clamp(1.25rem, 3vw, 2.5rem);
  font-size: .62rem;
}

.chapter-visual > p {
  bottom: clamp(1.25rem, 3vw, 2.5rem);
  font-size: clamp(1.7rem, 3vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
}

.chapter-copy {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(1.5rem, 3vw, 3.25rem);
  border-left: 1px solid var(--line);
  background: var(--dawn);
}

.chapter-copy > span {
  color: var(--red-dark);
  font-size: .62rem;
}

.chapter-copy h3 {
  margin: auto 0 1rem;
  color: var(--pine);
  font-size: clamp(1.8rem, 2.8vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.chapter-copy > p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(.9rem, 1.05vw, 1.08rem);
  line-height: 1.6;
}

.chapter-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 1.15rem 0;
  padding: 0;
  list-style: none;
}

.chapter-copy li {
  padding: .42rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--pine);
  font: 500 .58rem/1 var(--font-signal);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.chapter-next {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: .2rem 1rem;
  width: 100%;
  margin-top: auto;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.chapter-next small {
  color: var(--red-dark);
  font: 500 .58rem/1 var(--font-signal);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.chapter-next span {
  grid-row: 2;
  font-size: .9rem;
  font-weight: 700;
}

.chapter-next b {
  grid-row: 1 / 3;
  grid-column: 2;
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform .3s ease;
}

.chapter-next:hover b {
  transform: translateX(6px);
}

.vision {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: clamp(7rem, 10vw, 11rem) clamp(1.5rem, 4vw, 4.25rem);
  background:
    radial-gradient(circle at 12% 14%, rgba(185,227,235,.74), transparent 31%),
    linear-gradient(122deg, var(--sky) 0%, var(--dawn) 52%, #f5e8d7 100%);
}

.vision-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
  column-gap: clamp(2.5rem, 6vw, 7rem);
  row-gap: clamp(2.75rem, 4vw, 4rem);
  align-items: end;
}

.vision-lead h2 {
  margin-top: 2.25rem;
  font-size: clamp(3.5rem, 6vw, 6.25rem);
}

.vision-intro {
  max-width: 37rem;
  padding-bottom: .6rem;
}

.vision-intro > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--red-dark);
  font: 500 .66rem/1.3 var(--font-signal);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.vision-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}

.vision-path {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.8rem, 1.6vw, 1.4rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.vision-path li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: clamp(1.5rem, 2.5vw, 2.4rem);
  overflow: hidden;
  border: 1px solid rgba(23,63,52,.2);
  border-radius: 0 38px 0 0;
  background: rgba(251,250,245,.74);
  box-shadow: 0 20px 54px rgba(23,63,52,.05);
  opacity: 0;
  transform: translateY(28px);
  transition: border-color var(--motion-standard) var(--ease-standard), box-shadow var(--motion-standard) var(--ease-standard), opacity var(--motion-slow) var(--ease-enter), transform var(--motion-slow) var(--ease-enter);
}

.vision-path li:nth-child(2) { transition-delay: 50ms; }
.vision-path li:nth-child(3) { transition-delay: 100ms; }

.vision.is-in-view .vision-path li {
  opacity: 1;
  transform: translateY(0);
}

.vision.is-in-view .vision-path li:hover {
  border-color: rgba(237,28,42,.52);
  box-shadow: 0 28px 68px rgba(23,63,52,.1);
  transform: translateY(-7px);
}

.vision-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: auto;
  border: 1px solid rgba(23,63,52,.24);
  border-radius: 50%;
  color: var(--pine);
  place-items: center;
  transition: background var(--motion-standard) var(--ease-standard), color var(--motion-standard) var(--ease-standard), transform var(--motion-standard) var(--ease-standard);
}

.vision-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.vision-path li:hover .vision-icon {
  background: var(--pine);
  color: #fff;
  transform: rotate(-8deg);
}

.vision-path span {
  display: block;
  margin: 2.5rem 0 .75rem;
  color: var(--red-dark);
  font: 500 .66rem/1 var(--font-signal);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vision-path strong {
  color: var(--pine);
  font-size: clamp(1.25rem, 1.65vw, 1.65rem);
  letter-spacing: -.03em;
  line-height: 1.15;
}

.vision-path small {
  max-width: 25rem;
  margin-top: .85rem;
  color: var(--muted);
  font-size: clamp(.88rem, 1vw, 1rem);
  line-height: 1.55;
}

.progress {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 9vw, 10rem) clamp(1.5rem, 4vw, 4.25rem) clamp(5rem, 8vw, 8rem);
  background: var(--dawn);
}

.progress-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, .45fr);
  gap: 2.5rem;
  margin-bottom: clamp(4rem, 6vw, 7rem);
}

.progress-head .signal-label {
  grid-column: 1 / -1;
}

.progress-head > p:last-child {
  align-self: end;
  max-width: 30rem;
  margin: 0 0 .4rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.6;
}

.progress h2 {
  font-size: clamp(3.5rem, 6.2vw, 6.4rem);
}

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

.gateway {
  --gateway-shift: 55px;
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(280px, .8fr) minmax(340px, 1.2fr) 52px;
  gap: clamp(1.25rem, 3vw, 3.5rem);
  align-items: center;
  min-height: 245px;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  opacity: .2;
  text-decoration: none;
  transform: translateX(var(--gateway-shift));
  transition: opacity .7s ease, transform .85s cubic-bezier(.2,.75,.2,1), background .35s ease;
}

.gateway:nth-child(even) {
  --gateway-shift: -55px;
}

.gateway.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.gateway:hover {
  background: rgba(223,243,247,.38);
}

.gateway-number {
  align-self: start;
  padding-top: .65rem;
  color: var(--red-dark);
  font: 500 .72rem/1 var(--font-signal);
}

.gateway-image {
  position: relative;
  height: 185px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  filter: saturate(.86);
  transition: clip-path .5s ease, filter .5s ease, transform .6s ease;
}

.gateway:hover .gateway-image {
  clip-path: polygon(0 0, 96% 0, 100% 100%, 4% 100%);
  filter: saturate(1.05);
  transform: scale(1.015);
}

.gateway-townships { background-image: url("../option-02-made-of-many/assets/platform/platform-townships.webp"); }
.gateway-projects { background-image: url("../option-02-made-of-many/assets/platform/platform-construction.webp"); }
.gateway-commercial { background-image: url("../option-02-made-of-many/assets/platform/platform-leasing.webp"); }

.gateway-copy small {
  color: var(--red-dark);
  font-size: .64rem;
}

.gateway-copy h3 {
  margin: .8rem 0 .75rem;
  color: var(--pine);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
}

.gateway-copy p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.gateway > b {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 400;
  place-items: center;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.gateway:hover > b {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(390px, .75fr);
  gap: clamp(3rem, 8vw, 10rem);
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(7rem, 10vw, 11rem) clamp(1.5rem, 4vw, 4.25rem) clamp(3rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 78% 30%, rgba(255,255,255,.9), transparent 28%),
    linear-gradient(120deg, var(--sky) 0%, #edf5e7 52%, #f4ddcb 100%);
}

.contact-sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-orbit {
  position: absolute;
  top: calc(var(--contact-y) - 15vw);
  left: calc(var(--contact-x) - 15vw);
  width: 30vw;
  height: 30vw;
  min-width: 300px;
  min-height: 300px;
  border: 1px solid rgba(23,63,52,.13);
  border-radius: 50%;
  opacity: calc(.25 + var(--contact-p) * .75);
  transform: scale(calc(.55 + var(--contact-p) * .45));
  transition: top .3s ease, left .3s ease;
}

.orbit-two { transform: scale(calc(.8 + var(--contact-p) * .55)); }
.orbit-three { transform: scale(calc(1.05 + var(--contact-p) * .7)); }

.contact-horizon {
  position: absolute;
  top: 66%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red) 18%, var(--red) 82%, transparent);
  transform: rotate(-4deg) scaleX(var(--contact-p));
  transform-origin: left;
}

.contact-sun {
  position: absolute;
  top: var(--contact-y);
  left: var(--contact-x);
  width: 22px;
  height: 22px;
  border: 5px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 10px rgba(237,28,42,.08), 0 14px 40px rgba(237,28,42,.2);
  transform: translate(-50%, -50%);
  transition: top .3s ease, left .3s ease;
}

.contact-heading,
.contact-form,
.contact-details {
  position: relative;
  z-index: 2;
}

.contact-heading h2 {
  max-width: 760px;
  margin-top: 2rem;
  font-size: clamp(3.5rem, 6.6vw, 6.75rem);
}

.contact-heading h2 span {
  color: var(--pine);
  font-weight: 500;
}

.contact-heading > p:last-child {
  max-width: 36rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.65;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
  align-self: start;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border: 1px solid rgba(29,40,36,.26);
  background: rgba(251,250,245,.78);
  backdrop-filter: blur(16px);
}

.contact-form label {
  display: grid;
  gap: .55rem;
}

.contact-form label:nth-child(3),
.contact-form label:nth-child(4),
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form label > span {
  color: var(--pine);
  font-size: .62rem;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(29,40,36,.38);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 1rem;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 1px 0 var(--red);
}

.contact-form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  margin-top: .4rem;
  padding: 0 1.25rem;
  background: var(--red);
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s ease;
}

.contact-form button:hover {
  background: var(--pine);
}

.contact-form button b {
  font-size: 1.25rem;
  font-weight: 400;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: .58rem;
}

.contact-details {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: .8fr 1.2fr;
  align-self: end;
  margin-top: 2rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.contact-details > * {
  display: grid;
  gap: .8rem;
  min-height: 140px;
  margin: 0;
  padding: 1.5rem;
  color: var(--ink);
  font-style: normal;
  text-decoration: none;
}

.contact-details > * + * {
  border-left: 1px solid var(--line);
}

.contact-details small {
  color: var(--red-dark);
  font-size: .62rem;
}

.contact-details strong {
  align-self: end;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.45;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(122deg, #dff2f5 0%, var(--dawn) 58%, #f4e5d2 100%);
}

.footer-marquee {
  overflow: hidden;
  background: var(--pine);
  color: #fff;
  font: 500 .66rem/48px var(--font-signal);
  letter-spacing: .14em;
  white-space: nowrap;
}

.footer-marquee div {
  width: max-content;
  animation: footer-travel 28s linear infinite;
}

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

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, .8fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 4vw, 4.25rem);
}

.footer-call h2 {
  max-width: 760px;
  margin: 1.7rem 0 2.5rem;
  color: var(--ink);
  font-size: clamp(3.25rem, 5.8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .95;
}

.footer-call h2 span {
  color: var(--pine);
  font-weight: 500;
}

.footer-call > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 230px;
  min-height: 54px;
  padding: .5rem .55rem .5rem 1.3rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font: 500 .68rem/1 var(--font-signal);
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--motion-standard) var(--ease-standard), transform var(--motion-standard) var(--ease-standard);
}

.footer-call > a b {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--red-dark);
  font-size: 1rem;
  font-weight: 400;
  place-items: center;
}

.footer-call > a:hover {
  background: var(--pine);
  transform: translateY(-3px);
}

.footer-route-board {
  overflow: hidden;
  border-radius: 0 34px 0 0;
  background: var(--pine);
  box-shadow: 0 30px 70px rgba(23,63,52,.16);
  color: #fff;
}

.footer-route-board header,
.footer-route-board a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 80px 24px;
  gap: 1rem;
  align-items: center;
}

.footer-route-board header {
  grid-template-columns: 48px minmax(0, 1fr) 104px;
  min-height: 38px;
  padding: 0 1.35rem;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.54);
  font: 500 .52rem/1 var(--font-signal);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-route-board a {
  min-height: 86px;
  padding: 1rem 1.35rem;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: #fff;
  text-decoration: none;
  transition: background var(--motion-standard) var(--ease-standard), color var(--motion-standard) var(--ease-standard);
}

.footer-route-board a:last-child { border-bottom: 0; }

.footer-route-board a:hover {
  background: var(--sky);
  color: var(--ink);
}

.footer-route-board a > span {
  color: var(--red);
  font: 500 .66rem/1 var(--font-signal);
}

.footer-route-board a strong {
  font-size: clamp(.95rem, 1.2vw, 1.15rem);
}

.footer-route-board a small {
  font: 400 .56rem/1.3 var(--font-signal);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-route-board a b {
  justify-self: end;
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform var(--motion-standard) var(--ease-standard);
}

.footer-route-board a:hover b { transform: translateX(5px); }

.footer-identity {
  display: grid;
  grid-template-columns: minmax(150px, .65fr) minmax(210px, .8fr) minmax(300px, 1.3fr) minmax(170px, .55fr);
  gap: 2rem;
  align-items: center;
  margin: 0 clamp(1.5rem, 4vw, 4.25rem);
  padding: 2.25rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.footer-identity img { width: 112px; }

.footer-identity p {
  display: grid;
  gap: .15rem;
  margin: 0;
  font-size: .72rem;
  text-transform: uppercase;
}

.footer-identity p span {
  color: var(--muted);
  font-size: .64rem;
}

.footer-identity address {
  color: var(--muted);
  font-size: .85rem;
  font-style: normal;
  line-height: 1.6;
}

.footer-identity > a {
  justify-self: end;
  color: var(--red-dark);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 84px;
  margin: 0 clamp(1.5rem, 4vw, 4.25rem);
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-base p {
  margin: 0;
}

.footer-base nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}

.footer-base a {
  text-decoration: none;
}

@media (max-width: 1100px) {
  :root { --header-h: 82px; }

  .site-nav { gap: 1.4rem; }
  .hero-copy { left: 8vw; }
  .hero-copy h1 { font-size: clamp(5rem, 9.7vw, 7rem); }
  .places-heading h2,
  .vision h2,
  .progress h2 { font-size: clamp(3.5rem, 8vw, 6rem); }
  .flight-board-head,
  .place-ribbon { grid-template-columns: 54px minmax(190px, 1.35fr) minmax(140px, .8fr) 128px; }
  .place-reveal-inner { grid-template-columns: minmax(0, 1.45fr) minmax(290px, .7fr); }
  .chapter-copy { padding: 1.6rem; }
  .chapter-copy h3 { font-size: clamp(1.65rem, 2.8vw, 2.6rem); }
  .chapter-copy > p { font-size: .9rem; }
  .gateway { grid-template-columns: 46px minmax(250px, .8fr) minmax(300px, 1.2fr) 46px; }
  .contact { grid-template-columns: minmax(0, .8fr) minmax(390px, .8fr); gap: 3rem; }
  .footer-main { grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr); gap: 3rem; }
  .footer-identity { grid-template-columns: 110px minmax(180px,.8fr) minmax(260px,1.2fr) minmax(150px,.55fr); gap: 1.2rem; }
}

@media (max-width: 880px) {
  :root { --header-h: 74px; }

  .site-header {
    height: var(--header-h);
    padding: 0 1.25rem;
    border-color: var(--line);
    background: rgba(251,250,245,.94);
    backdrop-filter: blur(16px);
  }

  .brand { width: 83px; }
  .menu-toggle { display: flex; z-index: 3; }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    background: var(--dawn);
    box-shadow: 0 22px 40px rgba(23,63,52,.09);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-110%);
    transition: opacity .3s ease, transform .45s cubic-bezier(.7,0,.2,1);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: .74rem;
  }

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

  .hero {
    height: 150svh;
    min-height: 980px;
  }

  .hero-sticky { min-height: 600px; }
  .hero-landscape { inset: 28% -20% -4%; background-position: 52% 54%; }
  .hero-copy { top: 16%; left: 1.25rem; width: calc(100% - 2.5rem); }
  .hero-copy h1 { font-size: clamp(4rem, 15vw, 6.4rem); line-height: .9; }
  .scroll-index { left: 1.25rem; bottom: 1.5rem; }

  .places-heading,
  .progress-head {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .progress-head {
    padding-right: 0;
    padding-left: 0;
  }

  .places-heading h2,
  .vision h2,
  .progress h2 { font-size: clamp(3.2rem, 11vw, 5.4rem); line-height: .96; }
  .places-deck,
  .progress-head > p:last-child { max-width: 38rem; }

  .places-journey { height: auto; }
  .places-sticky { position: relative; top: 0; height: auto; min-height: 0; overflow: visible; }
  .journey-status { position: sticky; z-index: 8; top: var(--header-h); grid-template-columns: 30px 1fr 30px; height: 44px; background: rgba(251,250,245,.96); backdrop-filter: blur(12px); }
  .journey-status small { display: none; }
  .horizon-gallery { display: block; height: auto; }
  .flight-board-head { display: none; }
  .place-chapter,
  .place-chapter.is-active { display: block; min-height: 0; }
  .place-ribbon {
    grid-template-columns: 44px minmax(0,1fr) 86px;
    min-height: 66px;
    padding: 0 1.25rem;
    border-bottom-color: rgba(255,255,255,.22);
  }
  .place-theme { display: none; }
  .place-action { justify-content: flex-end; justify-self: stretch; gap: .65rem; }
  .place-action small { font-size: .5rem; }
  .place-reveal {
    display: none;
    grid-row: auto;
    grid-column: auto;
    height: auto;
    max-height: none;
    transform: none;
  }
  .place-chapter.is-active .place-reveal { display: block; }
  .place-reveal-inner { display: grid; grid-template-columns: 1fr; height: auto; }
  .chapter-visual { min-height: 52svh; background-size: cover; }
  .visual-1 { background-position: center 50%; }
  .visual-2 { background-position: center 54%; }
  .visual-3 { background-position: center 44%; }
  .visual-4 { background-position: center 52%; }
  .chapter-copy { min-height: 340px; border-top: 1px solid var(--line); border-left: 0; }
  .chapter-copy h3 { margin-top: 3rem; font-size: clamp(2.15rem, 7vw, 3.2rem); }

  .vision { min-height: 0; padding: 7rem 1.25rem; }
  .vision-grid { grid-template-columns: 1fr; column-gap: 0; row-gap: 2rem; }
  .vision-intro { max-width: 42rem; }
  .vision-path { grid-template-columns: 1fr; margin-top: .5rem; }
  .vision-path li { min-height: 250px; }

  .progress { padding: 7rem 1.25rem 5rem; }
  .gateway { grid-template-columns: 40px minmax(0, .8fr) minmax(260px, 1.2fr) 42px; gap: 1rem; }
  .gateway-image { height: 160px; }

  .contact {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 7rem 1.25rem 4rem;
  }

  .contact-heading h2 { font-size: clamp(3.4rem, 11vw, 5.8rem); line-height: .96; }
  .contact-form { max-width: 680px; }
  .contact-details { margin-top: 1rem; }
  .contact-orbit { min-width: 260px; min-height: 260px; }

  .footer-main { grid-template-columns: 1fr; padding-right: 1.25rem; padding-left: 1.25rem; }
  .footer-route-board { max-width: 720px; }
  .footer-identity { grid-template-columns: 1fr 1fr; margin-right: 1.25rem; margin-left: 1.25rem; }
  .footer-identity > a { justify-self: start; }
  .footer-base { align-items: flex-start; flex-direction: column; padding: 1.5rem 0; }
  .footer-base nav { flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .hero-landscape { inset: 32% -45% -2%; background-position: 50% 58%; }
  .hero-copy { top: 18%; }
  .hero-copy > p { margin-bottom: 1rem; }
  .hero-copy h1 { font-size: clamp(3.8rem, 18vw, 5.4rem); letter-spacing: -.06em; }
  .hero-copy > a { margin-top: 1.25rem; }

  .places-heading { padding-top: 5.5rem; padding-bottom: 3rem; }
  .places-heading h2,
  .vision h2,
  .progress h2 { font-size: clamp(2.85rem, 12.5vw, 4.5rem); letter-spacing: -.055em; }
  .places-deck { font-size: 1rem; }
  .place-name { font-size: .96rem; }
  .chapter-visual { min-height: 38svh; }
  .chapter-copy { min-height: 330px; padding: 1.35rem 1.25rem; }
  .chapter-copy h3 { margin-top: 2.5rem; font-size: 2.2rem; }

  .vision { padding-top: 6rem; padding-bottom: 6rem; }
  .vision-intro > p { font-size: 1.05rem; }
  .vision-path li { min-height: 230px; border-radius: 0 28px 0 0; }

  .progress { padding-top: 6rem; }
  .progress-head { margin-bottom: 3rem; }
  .gateway {
    grid-template-columns: 36px 1fr 40px;
    min-height: 0;
    padding: 1.25rem 0 1.5rem;
  }
  .gateway-image { grid-row: 1; grid-column: 2 / 4; height: 180px; }
  .gateway-number { grid-row: 1; grid-column: 1; }
  .gateway-copy { grid-row: 2; grid-column: 2 / 4; padding-top: .5rem; }
  .gateway > b { grid-row: 3; grid-column: 3; width: 40px; height: 40px; }
  .gateway-copy h3 { font-size: 2rem; }

  .contact { padding-top: 6rem; }
  .contact-heading h2 { font-size: clamp(3rem, 12.8vw, 4.3rem); }
  .contact-form { grid-template-columns: 1fr; padding: 1.25rem; }
  .contact-form label,
  .contact-form label:nth-child(3),
  .contact-form label:nth-child(4),
  .contact-form button,
  .form-status { grid-column: 1; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-details > * + * { border-top: 1px solid var(--line); border-left: 0; }
  .contact-details > * { min-height: 120px; padding: 1.25rem 0; }

  .footer-main { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .footer-call h2 { font-size: clamp(2.8rem, 13vw, 4.6rem); }
  .footer-route-board header { grid-template-columns: 38px 1fr 70px; }
  .footer-route-board a { grid-template-columns: 38px 1fr 24px; }
  .footer-route-board a small { display: none; }
  .footer-identity { grid-template-columns: 1fr; gap: 1.35rem; }
  .footer-identity img { width: 100px; }
  .footer-base nav { gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-landscape,
  .contact-orbit,
  .gateway { transform: none !important; }
  .footer-marquee div { animation: none !important; }
  .vision-path li { opacity: 1; transform: none !important; }
  .gateway { opacity: 1; }
}
