:root {
  --cream: #ebe0cd;
  --cream-dark: #e0d3bd;
  --forest: #2e3d18;
  --ink: #1c260f;
  --gold: #9e6536;
  --muted: #6f6553;
  --paper: #ffffff;
  --shadow: 0 24px 70px rgba(28, 38, 15, 0.16);
  --sans: "Manrope", system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  touch-action: pan-y;
}

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

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: 80px;
  padding: 0 5vw;
  color: var(--cream);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: var(--forest);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.2);
}

.brand {
  display: grid;
  line-height: 1;
}

.brand span {
  color: rgba(235, 224, 205, 0.68);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.brand strong {
  margin-top: 6px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: rgba(235, 224, 205, 0.78);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--cream);
}

.site-nav .nav-cta {
  border: 1px solid rgba(235, 224, 205, 0.55);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-open .menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(158, 101, 54, 0.2), transparent 32%),
    linear-gradient(to bottom, rgba(12, 15, 6, 0.16), rgba(12, 15, 6, 0.64));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 24px 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: rgba(235, 224, 205, 0.72);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.eyebrow.gold,
.section-kicker {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
}

h1 {
  color: var(--cream);
  max-width: 1120px;
  font-size: clamp(44px, 7.4vw, 104px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 0.95;
  text-transform: uppercase;
}

h2 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.08;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-subtitle {
  margin: 22px 0 36px;
  color: rgba(235, 224, 205, 0.82);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 30px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-outline {
  color: var(--cream);
  border-color: rgba(235, 224, 205, 0.6);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.button-solid {
  color: var(--ink);
  background: var(--cream);
}

.button-dark {
  color: var(--cream);
  background: var(--forest);
}

.button.small {
  min-height: 38px;
  padding-inline: 22px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(235, 224, 205, 0.38);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, currentColor, transparent);
}

.section,
.features {
  padding: clamp(72px, 8vw, 120px) 5vw;
}

.experience {
  position: relative;
  overflow: visible;
  padding: clamp(76px, 9vw, 132px) 5vw;
  background:
    linear-gradient(90deg, rgba(46, 61, 24, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), #f5efe4 48%, var(--cream));
  background-size: 76px 76px, auto;
}

.experience::before {
  content: "";
  position: absolute;
  top: 120px;
  bottom: 120px;
  left: max(32px, calc((100vw - 1240px) / 2 + 34px));
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(158, 101, 54, 0.48), transparent);
}

.experience-intro,
.journey {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.experience-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.experience-intro h2 {
  max-width: 780px;
}

.experience-intro p:last-child {
  margin-bottom: 6px;
}

.journey {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.journey-card {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  background: var(--forest);
  box-shadow: var(--shadow);
  --stack-progress: 0;
  --stack-progress-height: 0%;
  --gate-opacity: 1;
  --gate-scale: 1;
  --gate-y: 0px;
  --amenities-opacity: 0;
  --amenities-glow: 0;
  --amenities-scale: 1.12;
  --amenities-y: 60px;
  --amenities-clip: 34%;
  --gate-copy-opacity: 1;
  --gate-copy-y: 0px;
  --amenities-copy-opacity: 0;
  --amenities-copy-y: 32px;
}

.journey-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12, 15, 6, 0.02), rgba(12, 15, 6, 0.72)),
    linear-gradient(115deg, rgba(12, 15, 6, 0.72), transparent 52%);
  pointer-events: none;
}

.journey-wide {
  grid-column: 1 / -1;
  min-height: 680px;
}

.journey-aerial-focus {
  grid-column: 1 / -1;
  width: 100vw;
  min-height: clamp(760px, 92vh, 1040px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #080b05;
  box-shadow: none;
}

.journey-aerial-focus::after {
  background:
    linear-gradient(90deg, rgba(12, 15, 6, 0.68), rgba(12, 15, 6, 0.08) 42%, rgba(12, 15, 6, 0)),
    linear-gradient(to bottom, rgba(12, 15, 6, 0), rgba(12, 15, 6, 0.22));
}

.journey-aerial-focus img {
  object-fit: contain;
  object-position: center center;
  filter: saturate(1.06) contrast(1.03) brightness(1.04);
}

.journey-aerial-focus .journey-copy {
  width: min(560px, calc(100% - 10vw));
  margin-left: 5vw;
  margin-bottom: clamp(28px, 5vw, 56px);
  padding: clamp(20px, 3vw, 30px);
  background: rgba(18, 23, 9, 0.62);
}

.journey-aerial-focus .journey-copy h3 {
  max-width: 520px;
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: 0;
}

.flight-pin-wrap {
  grid-column: 1 / -1;
  min-height: 178vh;
  position: relative;
  --flight-sticky-top: clamp(78px, 10vh, 108px);
}

.flight-pin-wrap .journey-flight-stack {
  height: clamp(520px, calc(100vh - var(--flight-sticky-top) - 24px), 760px);
  min-height: 0;
  position: sticky;
  top: var(--flight-sticky-top);
}

.flight-pin-wrap .journey-feature {
  min-height: 0;
}

.journey-feature {
  min-height: 760px;
  outline: 1px solid rgba(158, 101, 54, 0.34);
  outline-offset: -8px;
}

.journey-feature::before {
  content: "Lifestyle Core";
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  border: 1px solid rgba(235, 224, 205, 0.36);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(18, 23, 9, 0.62);
  color: var(--cream);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.journey-feature::after {
  background:
    radial-gradient(circle at 78% 22%, rgba(158, 101, 54, 0.24), transparent 28%),
    linear-gradient(to bottom, rgba(12, 15, 6, 0.04), rgba(12, 15, 6, 0.7)),
    linear-gradient(105deg, rgba(12, 15, 6, 0.82), transparent 62%);
}

.journey-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, clip-path 0.7s ease;
}

.journey-card:hover img {
  transform: scale(1.035);
}

.journey-flight-stack {
  min-height: min(980px, 110vh);
  isolation: isolate;
}

.journey-flight-stack::before {
  content: "Scroll overlay";
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  border: 1px solid rgba(235, 224, 205, 0.34);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(18, 23, 9, 0.42);
  color: var(--cream);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.journey-flight-stack::after {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 30%, rgba(235, 224, 205, var(--amenities-glow)), transparent 26%),
    linear-gradient(90deg, rgba(12, 15, 6, 0.38), transparent 50%, rgba(12, 15, 6, 0.3)),
    linear-gradient(to bottom, rgba(12, 15, 6, 0), rgba(12, 15, 6, 0.42));
}

.journey-flight-stack .flight-image {
  transition: none;
  will-change: opacity, transform, clip-path;
}

.flight-image-gate {
  opacity: var(--gate-opacity);
  transform: translate3d(0, var(--gate-y), 0) scale(var(--gate-scale));
  transform-origin: 50% 58%;
}

.flight-image-amenities {
  opacity: var(--amenities-opacity);
  clip-path: inset(var(--amenities-clip) 0 0 0);
  transform: translate3d(0, var(--amenities-y), 0) scale(var(--amenities-scale));
  transform-origin: 50% 60%;
}

.flight-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(12, 15, 6, 0.38), transparent 52%),
    linear-gradient(to top, rgba(12, 15, 6, 0.34), transparent 54%);
  pointer-events: none;
}

.flight-progress {
  position: absolute;
  right: 24px;
  top: 24px;
  bottom: 24px;
  z-index: 3;
  width: 2px;
  background: rgba(235, 224, 205, 0.18);
  pointer-events: none;
}

.flight-progress::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: var(--stack-progress-height);
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--cream), var(--gold));
  box-shadow: 0 0 24px rgba(235, 224, 205, 0.42);
}

.journey-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(560px, calc(100% - 40px));
  margin: 20px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(235, 224, 205, 0.2);
  background: rgba(18, 23, 9, 0.68);
  backdrop-filter: blur(10px);
}

.journey-copy-flight {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  bottom: clamp(24px, 6vw, 78px);
  z-index: 2;
  width: min(360px, calc(100% - 40px));
  margin: 0;
  padding: clamp(16px, 2vw, 22px);
  border-color: rgba(235, 224, 205, 0.16);
  background: rgba(18, 23, 9, 0.44);
  box-shadow: 0 18px 50px rgba(12, 15, 6, 0.22);
  transition: none;
}

.journey-copy-gate {
  opacity: var(--gate-copy-opacity);
  transform: translate3d(0, var(--gate-copy-y), 0);
}

.journey-copy-amenities {
  left: auto;
  right: clamp(20px, 5vw, 72px);
  opacity: var(--amenities-copy-opacity);
  transform: translate3d(0, var(--amenities-copy-y), 0);
}

.journey-copy-flight > span {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  font-size: 14px;
}

.journey-copy-flight .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.28em;
}

.journey-copy-flight h3 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.journey-copy-flight > p:not(.eyebrow) {
  margin-top: 10px;
  color: rgba(235, 224, 205, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.journey-copy > span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(235, 224, 205, 0.32);
  border-radius: 50%;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
}

.journey-copy .eyebrow {
  margin-bottom: 12px;
}

.journey-copy h3 {
  color: var(--cream);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.journey-copy p:last-child,
.journey-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(235, 224, 205, 0.72);
}

.journey-feature .journey-copy {
  width: min(720px, calc(100% - 40px));
}

.journey-feature .journey-copy-flight {
  width: min(360px, calc(100% - 40px));
}

.journey-feature .journey-copy h3 {
  font-size: clamp(36px, 5vw, 72px);
}

.journey-feature .journey-copy-flight h3 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.journey-copy-flight > span {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  font-size: 14px;
}

.journey-copy-flight .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.28em;
}

.journey-copy-flight > p:not(.eyebrow),
.journey-copy-flight p:last-child {
  margin-top: 10px;
  color: rgba(235, 224, 205, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.journey-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.journey-pills b {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(235, 224, 205, 0.28);
  border-radius: 999px;
  padding: 0 11px;
  color: var(--cream);
  background: rgba(235, 224, 205, 0.08);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.track-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 5vw clamp(52px, 7vw, 92px);
}

.track-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 15, 5, 0.88), rgba(11, 15, 5, 0.22)),
    linear-gradient(to bottom, rgba(11, 15, 5, 0.16), rgba(11, 15, 5, 0.78));
}

.track-hero-content {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.track-hero h1 {
  max-width: 980px;
}

.track-hero .hero-subtitle {
  max-width: 760px;
  text-align: left;
}

.track-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1040px, 100%);
  margin-top: clamp(34px, 5vw, 62px);
  background: rgba(235, 224, 205, 0.24);
}

.track-hero-stats div {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 3vw, 34px);
  background: rgba(18, 23, 9, 0.76);
  backdrop-filter: blur(8px);
}

.track-hero-stats strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1;
}

.track-hero-stats span {
  color: rgba(235, 224, 205, 0.64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.track-page-intro .section-heading {
  align-items: start;
}

.track-page-intro .section-heading > p {
  max-width: 460px;
  margin: 0;
}

.record-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: rgba(46, 61, 24, 0.16);
}

.record-proof-grid article {
  padding: clamp(24px, 3vw, 36px);
  background: var(--cream);
}

.record-proof-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 30px;
}

.record-proof-grid span {
  color: var(--muted);
  line-height: 1.7;
}

.track-projects {
  background: var(--forest);
}

.track-project {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 760px;
  border-top: 1px solid rgba(235, 224, 205, 0.14);
}

.track-project:nth-child(even) {
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
}

.track-project:nth-child(even) figure {
  order: 2;
}

.track-project figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.track-project figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(12, 15, 6, 0.24));
}

.track-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.track-project:hover img {
  transform: scale(1.035);
}

.track-project-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(158, 101, 54, 0.14), transparent 42%),
    var(--forest);
}

.project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.project-topline span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(235, 224, 205, 0.26);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(235, 224, 205, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-topline.active span {
  border-color: rgba(158, 101, 54, 0.7);
  color: var(--cream);
  background: rgba(158, 101, 54, 0.18);
}

.project-topline strong {
  color: rgba(235, 224, 205, 0.24);
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1;
}

.track-project h2 {
  color: var(--cream);
  font-size: clamp(38px, 5vw, 76px);
}

.project-lead {
  margin: 18px 0 0;
  color: rgba(235, 224, 205, 0.86);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.track-project-copy > p:not(.project-lead) {
  max-width: 620px;
  color: rgba(235, 224, 205, 0.62);
}

.track-project dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  background: rgba(235, 224, 205, 0.14);
}

.track-project dl div {
  padding: 20px;
  background: rgba(12, 15, 6, 0.22);
}

.track-project dt {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.track-project dd {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
}

.mini-project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mini-project-grid article {
  display: grid;
  min-height: 320px;
  align-content: end;
  padding: 30px;
  border: 1px solid rgba(46, 61, 24, 0.1);
  background:
    linear-gradient(to bottom, rgba(235, 224, 205, 0.15), rgba(46, 61, 24, 0.1)),
    var(--paper);
}

.mini-project-grid span {
  width: fit-content;
  margin-bottom: auto;
  color: rgba(158, 101, 54, 0.62);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
}

.mini-project-grid h3 {
  margin-top: 50px;
  font-size: 28px;
}

.mini-project-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.mini-project-grid p {
  margin-bottom: 0;
}

.white {
  background: var(--paper);
}

.cream {
  background: var(--cream);
}

.dark {
  background: var(--forest);
  color: var(--cream);
}

.dark h2,
.dark h3,
.dark strong {
  color: var(--cream);
}

.dark p {
  color: rgba(235, 224, 205, 0.58);
}

.container,
.split,
.contact-grid,
.stats-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 760px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

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

.split h2,
.container > h2,
.centered h2 {
  margin-bottom: 28px;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  padding: 12px 28px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.image-frame {
  margin: 0;
  border: 1px solid rgba(46, 61, 24, 0.12);
  overflow: hidden;
  background: var(--cream-dark);
}

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

.image-frame.tall {
  aspect-ratio: 4 / 3;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.feature-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.line-icon {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.feature-card h3 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stats {
  padding: 64px 5vw;
}

.stats-heading {
  width: min(1240px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.stats .section-kicker {
  margin-bottom: 0;
  color: var(--gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 24px;
  text-align: center;
}

.stats-grid > div {
  display: grid;
  align-content: center;
  min-height: 116px;
  border: 1px solid rgba(235, 224, 205, 0.12);
  padding: 18px 14px;
  background: rgba(235, 224, 205, 0.035);
}

.stats strong {
  display: inline-block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
}

.stats span {
  margin-left: 5px;
  color: var(--gold);
}

.stats p {
  margin: 8px 0 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats .line-icon {
  display: block;
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 30px;
}

.stats-feature p {
  color: rgba(235, 224, 205, 0.76);
}

.centered {
  text-align: center;
}

.narrow {
  max-width: 820px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  margin-top: 34px;
  text-align: left;
}

.plan-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 42px 0 24px;
  color: var(--muted);
}

.plan-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.plan-image {
  width: 100%;
  padding: 0;
  border: 1px solid rgba(46, 61, 24, 0.12);
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
}

.plan-image img {
  width: 100%;
  transition: transform 0.45s ease;
}

.plan-image:hover img {
  transform: scale(1.02);
}

.cards-2,
.cards-3,
.process-grid,
.gallery-grid,
.info-grid {
  display: grid;
  gap: 24px;
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
}

.cards-2 article,
.cards-3 article,
.process-grid article,
.info-grid div,
details {
  background: var(--cream-dark);
  border: 1px solid rgba(46, 61, 24, 0.08);
  padding: 28px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
}

.process-grid article {
  background: transparent;
  border-width: 1px 0 0;
  border-color: rgba(158, 101, 54, 0.45);
}

.process-grid span {
  display: block;
  margin-bottom: 24px;
  color: rgba(158, 101, 54, 0.45);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
}

.security-home {
  padding-top: 0;
  background: var(--cream);
}

.security-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: end;
  overflow: hidden;
  margin: 0 0 clamp(56px, 7vw, 96px);
  padding: clamp(120px, 16vw, 220px) 5vw 64px;
}

.security-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.security-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 38, 15, 0.88), rgba(28, 38, 15, 0.42)), linear-gradient(to bottom, rgba(28, 38, 15, 0.2), rgba(28, 38, 15, 0.72));
}

.security-hero > div {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.security-hero h2 {
  max-width: 760px;
  color: var(--cream);
}

.security-hero p:last-child {
  max-width: 680px;
  color: rgba(235, 224, 205, 0.72);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.security-grid article {
  min-height: 270px;
  padding: 30px;
  background: var(--cream-dark);
  border: 1px solid rgba(46, 61, 24, 0.1);
}

.security-grid span,
.record-details span,
.gallery-grid figcaption span,
.gallery-masonry figcaption span,
.update-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.security-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: rgba(46, 61, 24, 0.16);
}

.security-stats div {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 34px 18px;
  background: var(--forest);
  text-align: center;
}

.security-stats strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.security-stats span {
  color: rgba(235, 224, 205, 0.56);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

input[type="range"] {
  accent-color: var(--forest);
}

.info-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-grid strong,
.cards-3 strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 28px;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.gallery-grid figure {
  margin: 0;
  background: var(--paper);
}

.gallery-preview figure:first-child {
  grid-column: span 2;
}

.gallery-grid img {
  aspect-ratio: 1.1;
  width: 100%;
  object-fit: cover;
}

.gallery-preview figure:first-child img {
  aspect-ratio: 2.1 / 1;
}

.gallery-grid figcaption {
  padding: 18px;
  color: var(--muted);
  font-size: 13px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.lead-copy {
  max-width: 780px;
  font-size: 18px;
}

.record-quote {
  margin: 46px 0 0;
  padding: clamp(30px, 5vw, 48px);
  border-left: 5px solid var(--gold);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.45;
}

.record-quote cite {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.record-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.record-details article {
  padding: 28px;
  border: 1px solid rgba(46, 61, 24, 0.1);
  background: var(--paper);
}

.page-hero {
  display: grid;
  align-items: end;
  min-height: 560px;
  padding: 150px 5vw 82px;
  background: var(--forest);
}

.page-hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  letter-spacing: 0;
  text-transform: none;
}

.page-hero p:last-child {
  max-width: 780px;
  color: rgba(235, 224, 205, 0.62);
  font-size: 18px;
}

.gallery-page-hero {
  background:
    linear-gradient(90deg, rgba(20, 29, 10, 0.94), rgba(20, 29, 10, 0.64)),
    url("assets/experience-aerial.jpg") center / cover;
}

.gallery-page {
  background: var(--forest);
  overflow-x: hidden;
}

.gallery-page h2 {
  color: var(--cream);
}

.gallery-page .text-link {
  border-color: rgba(235, 224, 205, 0.44);
  color: var(--cream);
}

.mobile-gallery-app {
  display: none;
}

.update-strip {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
  padding: 24px 28px;
  border: 1px solid rgba(235, 224, 205, 0.14);
  background: rgba(235, 224, 205, 0.06);
}

.update-strip strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}

.timeline-filter {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin: 8px 0 38px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(235, 224, 205, 0.12);
  background:
    radial-gradient(circle at 78% 22%, rgba(158, 101, 54, 0.16), transparent 28%),
    rgba(235, 224, 205, 0.045);
  touch-action: pan-y;
}

.timeline-filter h3 {
  color: var(--cream);
  font-size: clamp(24px, 2.4vw, 34px);
}

.timeline-heading .eyebrow {
  margin-bottom: 14px;
}

.timeline-all {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(235, 224, 205, 0.2);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--cream);
  background: rgba(235, 224, 205, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

.timeline-all.is-active,
.timeline-all:hover {
  border-color: rgba(158, 101, 54, 0.75);
  background: var(--gold);
}

.timeline-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: clamp(34px, 8vw, 120px);
  align-items: center;
  min-height: 270px;
  padding: 42px clamp(18px, 3vw, 44px);
}

.timeline-diagram::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d6b13f 0%, #d6b13f 48%, #9e6536 48%, #9e6536 100%);
  box-shadow: 0 16px 36px rgba(8, 12, 4, 0.26);
  transform: translateY(-50%);
}

.timeline-node {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  width: min(300px, 100%);
  border: 0;
  background: transparent;
  color: var(--cream);
  text-align: left;
  cursor: pointer;
}

.timeline-node::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 1px;
  height: 40px;
  background: rgba(235, 224, 205, 0.22);
}

.timeline-node:nth-child(odd) {
  align-self: start;
  padding: 0 0 78px 44px;
}

.timeline-node:nth-child(odd)::before {
  top: calc(100% - 78px);
}

.timeline-node:nth-child(even) {
  align-self: end;
  padding: 78px 0 0 44px;
}

.timeline-node:nth-child(even)::before {
  bottom: calc(100% - 78px);
}

.node-dot {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 28px;
  height: 28px;
  border: 6px solid var(--forest);
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 2px rgba(235, 224, 205, 0.42), 0 10px 24px rgba(8, 12, 4, 0.36);
  transform: translateY(-50%);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.timeline-node:nth-child(odd) .node-dot {
  top: calc(100% - 78px);
}

.timeline-node:nth-child(even) .node-dot {
  top: 78px;
}

.node-quarter {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.timeline-node strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.08;
}

.timeline-node small {
  color: rgba(235, 224, 205, 0.58);
  font-size: 12px;
  max-width: 220px;
  line-height: 1.5;
}

.timeline-node:hover .node-dot,
.timeline-node.is-active .node-dot {
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(158, 101, 54, 0.18), 0 12px 28px rgba(8, 12, 4, 0.42);
  transform: translateY(-50%) scale(1.08);
}

.timeline-node.is-active strong {
  color: #f8ead0;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-masonry figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  contain: layout paint style;
  content-visibility: auto;
  contain-intrinsic-size: 360px 360px;
}

.gallery-masonry .feature-tile {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 744px;
}

.gallery-masonry img,
.gallery-masonry video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-masonry figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 42%, rgba(12, 15, 6, 0.78));
}

.gallery-masonry figure:hover img,
.gallery-masonry figure:hover video {
  transform: scale(1.035);
}

.gallery-masonry figure.is-hidden {
  display: none;
}

.gallery-masonry figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
}

.gallery-empty {
  margin: 24px 0 0;
  padding: 22px;
  border: 1px solid rgba(235, 224, 205, 0.16);
  color: rgba(235, 224, 205, 0.7);
  background: rgba(235, 224, 205, 0.06);
}

.gallery-cta p {
  margin-bottom: 28px;
}

details {
  margin-top: 14px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(40px, 7vw, 96px);
}

.info-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
}

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

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(46, 61, 24, 0.15);
  background: var(--paper);
  padding: 15px 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--forest);
  font-weight: 700;
}

.privacy-note {
  margin: 0;
  color: rgba(46, 61, 24, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.privacy-note.centered-note {
  margin-top: 18px;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 5vw;
  background: var(--ink);
  color: var(--cream);
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  font-family: var(--serif);
  font-size: 20px;
}

.site-footer span,
.site-footer a {
  color: rgba(235, 224, 205, 0.58);
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(16, 20, 8, 0.96);
  overflow: auto;
}

.lightbox[hidden] {
  display: none;
}

.lightbox button {
  position: fixed;
  top: 22px;
  right: 28px;
  border: 0;
  background: transparent;
  color: rgba(235, 224, 205, 0.7);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.lightbox img {
  width: min(1100px, 100%);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

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

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

  .flight-image-amenities {
    clip-path: none;
    opacity: 1;
    transform: none;
  }

  .journey-copy-gate,
  .journey-copy-amenities {
    opacity: 1;
    transform: none;
  }

  .flight-pin-wrap {
    min-height: auto;
  }

  .flight-pin-wrap .journey-flight-stack {
    position: relative;
    top: auto;
  }
}

@media (max-width: 1180px) {
  .site-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--forest);
    transition: max-height 0.3s ease;
  }

  .site-header.is-open .site-nav {
    max-height: 640px;
  }

  .site-nav a {
    border-top: 1px solid rgba(235, 224, 205, 0.1);
    padding: 16px 5vw;
  }

  .site-nav .nav-cta {
    border-radius: 0;
    border-width: 1px 0 0;
    background: rgba(158, 101, 54, 0.18);
  }

  .menu-button {
    display: block;
  }
}

@media (max-width: 900px) {
  .split,
  .split.reverse,
  .contact-grid,
  .experience-intro,
  .journey {
    grid-template-columns: 1fr;
  }

  .track-hero-stats,
  .record-proof-grid,
  .mini-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .track-project,
  .track-project:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .track-project:nth-child(even) figure {
    order: 0;
  }

  .track-project figure {
    min-height: 420px;
  }

  .experience::before {
    display: none;
  }

  .journey-wide {
    grid-column: auto;
  }

  .journey-card,
  .journey-wide {
    min-height: 560px;
  }

  .feature-grid,
  .stats-grid,
  .process-grid,
  .security-grid,
  .security-stats,
  .gallery-grid,
  .cards-3,
  .record-details,
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-filter,
  .timeline-diagram {
    grid-template-columns: 1fr;
  }

  .timeline-diagram {
    gap: 0;
    min-height: auto;
    padding: 24px 0 6px 34px;
  }

  .timeline-diagram::before {
    top: 0;
    bottom: 0;
    left: 13px;
    right: auto;
    width: 8px;
    height: auto;
    background: linear-gradient(180deg, #d6b13f 0%, #d6b13f 48%, #9e6536 48%, #9e6536 100%);
    transform: none;
  }

  .timeline-node,
  .timeline-node:nth-child(odd),
  .timeline-node:nth-child(even) {
    align-self: auto;
    width: 100%;
    padding: 0 0 34px 28px;
  }

  .timeline-node::before {
    display: none;
  }

  .timeline-node .node-dot,
  .timeline-node:nth-child(odd) .node-dot,
  .timeline-node:nth-child(even) .node-dot {
    left: -33px;
    top: 10px;
    transform: none;
  }

  .timeline-node:hover .node-dot,
  .timeline-node.is-active .node-dot {
    transform: scale(1.08);
  }

  .gallery-masonry .feature-tile {
    grid-column: span 2;
    min-height: 520px;
  }

  .two-col,
  .cards-2,
  .track-page-intro .section-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  html {
    scroll-behavior: auto;
  }

  .site-header {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
  }

  h1 {
    letter-spacing: 0.05em;
  }

  .page-hero {
    min-height: 360px;
    padding: 110px 5vw 46px;
  }

  .page-hero h1 {
    margin-bottom: 14px;
    font-size: 48px;
  }

  .page-hero p:last-child {
    font-size: 15px;
  }

  .gallery-page-body {
    background: var(--forest);
  }

  .mobile-gallery-app {
    display: block;
    min-height: 100vh;
    padding: 96px 14px 42px;
    background: var(--forest);
  }

  .mobile-gallery-app + .page-hero,
  .mobile-gallery-app ~ .gallery-page,
  .mobile-gallery-app ~ .gallery-cta,
  .gallery-page-body .site-footer {
    display: none;
  }

  .mobile-gallery-top {
    padding-bottom: 20px;
  }

  .mobile-gallery-top .eyebrow {
    margin-bottom: 12px;
  }

  .mobile-gallery-top h1 {
    color: var(--cream);
    font-size: 44px;
    letter-spacing: 0;
    text-transform: none;
  }

  .mobile-gallery-top p:last-child {
    margin: 12px 0 0;
    color: rgba(235, 224, 205, 0.68);
    line-height: 1.55;
  }

  .mobile-stage-filter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .mobile-stage-filter input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-stage-filter label {
    display: grid;
    min-height: 40px;
    place-items: center;
    border: 1px solid rgba(235, 224, 205, 0.16);
    border-radius: 999px;
    color: rgba(235, 224, 205, 0.72);
    background: rgba(235, 224, 205, 0.06);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
  }

  #mobile-stage-all:checked + label,
  #mobile-stage-road:checked + label,
  #mobile-stage-clearing:checked + label,
  #mobile-stage-before:checked + label {
    border-color: var(--gold);
    color: var(--cream);
    background: var(--gold);
  }

  .mobile-gallery-list {
    grid-column: 1 / -1;
    display: grid;
    gap: 14px;
    margin-top: 16px;
  }

  .mobile-gallery-card {
    display: grid;
    overflow: hidden;
    background: var(--cream);
  }

  .mobile-gallery-card img,
  .mobile-gallery-card video {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--ink);
  }

  .mobile-gallery-card div {
    display: grid;
    gap: 7px;
    padding: 13px 14px 15px;
  }

  .mobile-gallery-card span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-gallery-card strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.25;
  }

  #mobile-stage-road:checked ~ .mobile-gallery-list .stage-clearing,
  #mobile-stage-road:checked ~ .mobile-gallery-list .stage-before,
  #mobile-stage-clearing:checked ~ .mobile-gallery-list .stage-road,
  #mobile-stage-clearing:checked ~ .mobile-gallery-list .stage-before,
  #mobile-stage-before:checked ~ .mobile-gallery-list .stage-road,
  #mobile-stage-before:checked ~ .mobile-gallery-list .stage-clearing {
    display: none;
  }

  .experience {
    padding-inline: 0;
  }

  .experience-intro {
    padding-inline: 5vw;
  }

  .journey {
    gap: 0;
  }

  .journey-card,
  .journey-wide {
    min-height: 680px;
    box-shadow: none;
  }

  .flight-pin-wrap {
    min-height: 152vh;
  }

  .flight-pin-wrap .journey-flight-stack {
    top: 78px;
  }

  .journey-copy-flight {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .journey-copy {
    width: calc(100% - 28px);
    margin: 14px;
    padding: 22px;
  }

  .journey-aerial-focus {
    min-height: 680px;
  }

  .journey-aerial-focus .journey-copy {
    width: calc(100% - 28px);
    margin: 14px;
    padding: 18px;
  }

  .journey-aerial-focus .journey-copy h3 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .hero-actions,
  .plan-tools,
  .section-heading,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .feature-grid,
  .stats-grid,
  .process-grid,
  .security-grid,
  .security-stats,
  .track-hero-stats,
  .record-proof-grid,
  .mini-project-grid,
  .gallery-grid,
  .cards-3,
  .record-details,
  .gallery-masonry,
  .info-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .gallery-preview figure:first-child,
  .gallery-masonry .feature-tile {
    grid-column: auto;
  }

  .gallery-masonry figure,
  .gallery-masonry .feature-tile {
    min-height: 0;
  }

  .gallery-page {
    padding: 52px 4vw 64px;
  }

  .timeline-filter {
    display: block;
    margin-bottom: 24px;
    padding: 18px 14px 14px;
    background: rgba(235, 224, 205, 0.06);
  }

  .timeline-heading h3 {
    font-size: 24px;
  }

  .timeline-all {
    width: 100%;
    justify-content: center;
    padding-inline: 14px;
    text-align: center;
  }

  .timeline-diagram {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    margin-top: 16px;
    padding: 0;
  }

  .timeline-diagram::before {
    display: none;
  }

  .timeline-node,
  .timeline-node:nth-child(odd),
  .timeline-node:nth-child(even) {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    row-gap: 2px;
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(235, 224, 205, 0.14);
    background: rgba(235, 224, 205, 0.055);
  }

  .timeline-node.is-active {
    border-color: rgba(158, 101, 54, 0.75);
    background: rgba(158, 101, 54, 0.18);
  }

  .timeline-node::before,
  .timeline-node .node-dot {
    display: none;
  }

  .node-quarter {
    grid-row: span 2;
    min-width: 34px;
    font-size: 24px;
  }

  .timeline-node strong {
    font-size: 19px;
  }

  .timeline-node small {
    max-width: none;
    font-size: 11px;
  }

  .gallery-masonry {
    gap: 14px;
  }

  .gallery-masonry figure {
    aspect-ratio: auto;
    background: var(--cream);
    contain: none;
    content-visibility: visible;
  }

  .gallery-masonry img,
  .gallery-masonry video {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: none;
    background: var(--ink);
  }

  .gallery-masonry figure::after {
    display: none;
  }

  .gallery-masonry figure:hover img,
  .gallery-masonry figure:hover video {
    transform: none;
  }

  .gallery-masonry figcaption {
    position: static;
    padding: 14px;
    color: var(--ink);
    font-size: 18px;
    background: var(--cream);
  }

  .gallery-masonry figcaption span {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 10px;
  }

  .track-hero {
    min-height: 860px;
    padding-top: 104px;
  }

  .track-hero .hero-subtitle {
    text-align: inherit;
  }

  .track-project figure {
    min-height: 280px;
  }

  .track-project-copy {
    padding: 30px 5vw 42px;
  }

  .track-project dl {
    grid-template-columns: 1fr;
  }

  .project-topline {
    align-items: start;
  }

  .project-topline strong {
    font-size: 48px;
  }

  .mini-project-grid article {
    min-height: 260px;
  }
}
