:root {
  --ink: #0b2035;
  --navy: #071d31;
  --navy-soft: #123a59;
  --sky: #dceefa;
  --cloud: #f5f8fa;
  --white: #ffffff;
  --gold: #c9983e;
  --gold-light: #f0cf8a;
  --line: rgba(11, 32, 53, 0.14);
  --muted: #5d7080;
  --shadow: 0 30px 80px rgba(3, 19, 34, 0.16);
  --radius: 1.5rem;
  --page: min(1180px, calc(100vw - 3rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cloud);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  color: var(--navy);
  background: var(--white);
  border-radius: 0.6rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.section {
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.4rem, 5.4vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.15;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.2rem;
  padding-inline: clamp(1.2rem, 4vw, 4rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    min-height 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  min-height: 4.5rem;
  background: rgba(7, 29, 49, 0.88);
  box-shadow: 0 10px 40px rgba(1, 13, 24, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-symbol {
  position: relative;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.brand-symbol::before {
  position: absolute;
  width: 0.92rem;
  height: 0.92rem;
  content: "";
  border-top: 2px solid var(--gold-light);
  border-right: 2px solid var(--gold-light);
  border-radius: 50%;
  transform: translate(0.28rem, -0.24rem) rotate(-10deg);
}

.brand-symbol span {
  width: 0.2rem;
  height: 0.2rem;
  background: var(--white);
  border-radius: 50%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.26em;
}

.brand-copy small {
  color: var(--gold-light);
  font-size: 0.51rem;
  font-weight: 600;
  letter-spacing: 0.27em;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.7vw, 3rem);
}

.primary-navigation a {
  position: relative;
  padding-block: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-navigation a:hover::after,
.primary-navigation a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 1.6rem;
  height: 1px;
  margin: 0.4rem auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(46rem, 100svh);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  place-items: center;
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: 50% 43%;
  transform: scale(1.04);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 18, 32, 0.88) 0%, rgba(4, 23, 39, 0.62) 42%, rgba(5, 25, 42, 0.08) 76%),
    linear-gradient(180deg, rgba(3, 20, 34, 0.28) 0%, transparent 42%, rgba(3, 17, 29, 0.5) 100%);
}

.hero-grid {
  z-index: -1;
  opacity: 0.18;
  background-image: linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.35) 1px);
  background-size: 25% 100%;
}

.hero-content {
  padding-top: 5rem;
}

.hero-eyebrow {
  color: var(--gold-light);
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.6rem, 10.5vw, 9.4rem);
  font-weight: 300;
  letter-spacing: 0.105em;
  line-height: 0.92;
  text-shadow: 0 6px 35px rgba(0, 0, 0, 0.25);
}

.hero-claim {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
  color: var(--gold-light);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.hero-claim::before {
  width: 3.8rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero-intro {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.85rem 1.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

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

.button-primary {
  color: var(--navy);
  background: var(--gold-light);
}

.button-primary:hover {
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero-place {
  position: absolute;
  right: clamp(1.2rem, 4vw, 4rem);
  bottom: 2.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-place i {
  width: 2rem;
  height: 1px;
  background: var(--gold-light);
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(90deg) translateX(50%);
  transform-origin: center;
}

.scroll-cue i {
  width: 2.4rem;
  height: 1px;
  background: var(--gold-light);
}

.intro-section {
  position: relative;
  background:
    radial-gradient(circle at 78% 12%, rgba(155, 209, 238, 0.28), transparent 26rem),
    var(--cloud);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.2fr 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 6.5rem);
  align-items: center;
}

.section-marker {
  align-self: start;
  color: rgba(11, 32, 53, 0.12);
  font-size: clamp(3.7rem, 7vw, 7rem);
  font-weight: 200;
  line-height: 1;
  writing-mode: vertical-rl;
}

.intro-copy h2 {
  max-width: 9ch;
}

.intro-copy .lead {
  max-width: 42rem;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.8vw, 1.4rem);
  line-height: 1.55;
}

.intro-copy > p:last-of-type {
  max-width: 38rem;
  color: var(--muted);
}

.flight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.flight-tags span {
  padding: 0.55rem 0.8rem;
  color: var(--navy-soft);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(11, 32, 53, 0.1);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-date {
  margin: 1.35rem 0 0;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.intro-visuals {
  position: relative;
  width: min(31rem, 100%);
  padding: 0 0 3.8rem 2.5rem;
  justify-self: end;
}

.journey-card {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.journey-card::after {
  position: absolute;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(3, 18, 31, 0.86));
}

.journey-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 48%;
}

.journey-card figcaption {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  max-width: 75%;
  padding: 0.65rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(4, 22, 38, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
}

.journey-card figcaption small {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold-light);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.intro-brand-lockup {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  height: auto;
  padding: 0.35rem;
  background: var(--white);
  border: 1px solid rgba(11, 32, 53, 0.08);
  border-radius: 0.9rem;
  box-shadow: 0 18px 45px rgba(3, 19, 34, 0.18);
  transform: rotate(-2.5deg);
}

.worlds-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.8rem, 5vw, 4.7rem);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 34rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.15rem;
}

.world-card {
  position: relative;
  grid-column: span 5;
  min-height: clamp(30rem, 48vw, 38rem);
  color: var(--white);
  border-radius: var(--radius);
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(5, 27, 46, 0.15);
}

.world-card-wide {
  grid-column: span 7;
}

.world-card img,
.world-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.world-card img {
  z-index: -2;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.world-card:first-child img {
  object-position: 50% 58%;
}

.world-card:nth-child(2) img {
  object-position: 43% 56%;
}

.world-card:nth-child(3) img {
  object-position: 58% 48%;
}

.world-card:nth-child(4) img {
  object-position: 50% 48%;
}

.world-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 15, 26, 0.18) 12%, transparent 47%, rgba(2, 15, 26, 0.88) 100%),
    linear-gradient(90deg, rgba(4, 22, 37, 0.22), transparent 62%);
  transition: background 0.4s ease;
}

.world-number,
.world-status,
.world-arrow {
  position: absolute;
  z-index: 1;
}

.world-number {
  top: 1.5rem;
  left: 1.6rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.world-status {
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.5rem 0.75rem;
  background: rgba(5, 25, 42, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.world-copy {
  position: absolute;
  right: 5rem;
  bottom: 2rem;
  left: 1.8rem;
  display: flex;
  flex-direction: column;
}

.world-copy small {
  margin-bottom: 0.45rem;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.world-copy strong {
  font-size: clamp(2.1rem, 4.3vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.world-copy strong b {
  display: block;
  margin-top: 0.48rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.world-copy em {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
  font-style: normal;
}

.world-arrow {
  right: 1.7rem;
  bottom: 1.8rem;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  font-size: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  place-items: center;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.world-card:hover img {
  transform: scale(1.045);
}

.world-card:hover .world-arrow {
  color: var(--navy);
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: rotate(45deg);
}

.journey-section {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(45, 103, 144, 0.35), transparent 32rem),
    var(--navy);
}

.journey-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(3.5rem, 8vw, 9rem);
}

.journey-heading {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.journey-heading h2 {
  max-width: 8ch;
}

.journey-heading > p:last-child {
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.66);
}

.journey-heading-photo {
  width: min(13rem, 68%);
  margin: 2.2rem 0 0;
  overflow: hidden;
  background: #061625;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.journey-heading-photo img {
  width: 100%;
  height: auto;
}

.journey-heading-photo figcaption {
  padding: 0.8rem 0.9rem 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  padding-left: 2.7rem;
}

.timeline::before {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(var(--gold-light), rgba(255, 255, 255, 0.16));
}

.timeline-item {
  position: relative;
  padding: 0 0 4.2rem 1rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 0.3rem;
  left: -3.12rem;
  width: 0.86rem;
  height: 0.86rem;
  background: var(--navy);
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 0.45rem rgba(240, 207, 138, 0.08);
}

.timeline-state {
  margin-bottom: 0.7rem;
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 0.85rem;
  font-weight: 400;
}

.timeline-item > p:not(.timeline-state) {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.67);
}

.timeline-meta {
  display: inline-block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.timeline-item-goal h3 {
  color: var(--gold-light);
}

.bridge-section {
  position: relative;
  display: grid;
  min-height: min(88vh, 58rem);
  color: var(--white);
  overflow: hidden;
  place-items: center;
}

.bridge-section > img,
.bridge-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bridge-section > img {
  object-fit: cover;
  object-position: 50% 42%;
}

.bridge-shade {
  background: linear-gradient(180deg, rgba(2, 17, 29, 0.25), rgba(2, 17, 29, 0.72));
}

.bridge-copy {
  position: relative;
  width: min(950px, calc(100vw - 3rem));
  text-align: center;
}

.bridge-copy .eyebrow {
  color: var(--gold-light);
}

.bridge-copy h2 {
  margin-inline: auto;
  font-size: clamp(3rem, 8vw, 8rem);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.bridge-copy > p:last-child {
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.08em;
}

.gallery-section {
  background: var(--cloud);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 16rem;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  margin: 0;
  padding: 0;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 1.15rem;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item-wide {
  grid-column: span 8;
}

.gallery-item-full {
  grid-column: span 12;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.45s ease,
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-item:first-child img {
  object-position: 46% 50%;
}

.gallery-item:nth-child(2) img {
  object-position: 50% 45%;
}

.gallery-item:nth-child(3) img {
  object-position: 48% 48%;
}

.gallery-item:nth-child(4) img {
  object-position: 50% 44%;
}

.gallery-item:nth-child(5) img {
  object-position: 50% 52%;
}

.gallery-item:nth-child(6) img {
  object-position: 52% 48%;
}

.gallery-item:nth-child(7) img {
  object-position: 43% 66%;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(3, 18, 31, 0.83));
}

.gallery-item > span {
  position: absolute;
  z-index: 1;
  right: 1.2rem;
  bottom: 1.1rem;
  left: 1.2rem;
  font-size: 0.96rem;
  font-weight: 500;
  text-align: left;
}

.gallery-item small {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-item:hover img {
  filter: saturate(1.08);
  transform: scale(1.04);
}

.manifesto-section {
  background: var(--white);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.manifesto-symbol {
  position: relative;
  display: grid;
  width: min(20rem, 65vw);
  aspect-ratio: 1;
  border: 1px solid rgba(11, 32, 53, 0.13);
  border-radius: 50%;
  place-items: center;
}

.manifesto-symbol::before,
.manifesto-symbol::after,
.manifesto-symbol span {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.manifesto-symbol::before {
  width: 66%;
  aspect-ratio: 1;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(-16deg);
}

.manifesto-symbol::after {
  width: 36%;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--navy-soft);
  transform: translate(26%, -8%) rotate(-14deg);
}

.manifesto-symbol span {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--navy);
}

.manifesto-copy h2 {
  max-width: 11ch;
}

.manifesto-copy > p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.site-footer {
  padding-block: 3.5rem;
  color: rgba(255, 255, 255, 0.68);
  background: #041523;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand strong {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
}

.footer-brand span {
  margin-top: 0.45rem;
  color: var(--gold-light);
  font-size: 0.52rem;
  letter-spacing: 0.24em;
}

.site-footer p {
  margin: 0;
  font-size: 0.8rem;
  text-align: center;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0.55rem;
  font-size: 0.72rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 1.2rem;
}

.footer-links a {
  color: var(--gold-light);
}

.footer-links a:hover {
  color: var(--white);
}

.legal-page {
  background: #eaf1f5;
}

.site-header.legal-header {
  background: rgba(7, 29, 49, 0.94);
  box-shadow: 0 10px 40px rgba(1, 13, 24, 0.16);
  backdrop-filter: blur(18px);
}

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  position: relative;
  display: grid;
  min-height: 26rem;
  padding: clamp(9rem, 15vw, 12rem) 0 clamp(4rem, 8vw, 6.5rem);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(4, 21, 35, 0.96), rgba(7, 39, 65, 0.72)),
    url("assets/photos/wolken-brandenburg.webp") center 42% / cover;
  isolation: isolate;
  overflow: hidden;
}

.legal-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 25% 100%, 25% 100%;
  mask-image: linear-gradient(to right, transparent, black 35%, black);
}

.legal-hero h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.legal-intro {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.legal-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 0.38fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 7rem;
  padding-top: 0.35rem;
}

.legal-summary strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--navy);
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-summary p {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-summary a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-summary a::before {
  width: 1.8rem;
  height: 1px;
  content: "";
  background: var(--gold);
}

.legal-card {
  padding: clamp(1.6rem, 5vw, 4.5rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 32, 53, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(3, 19, 34, 0.1);
}

.legal-card section + section {
  padding-top: clamp(2rem, 4vw, 3.2rem);
  margin-top: clamp(2rem, 4vw, 3.2rem);
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.legal-card h3 {
  margin: 1.7rem 0 0.65rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card address {
  font-style: normal;
}

.legal-card address strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.legal-card a {
  color: #165b86;
  text-decoration: underline;
  text-decoration-color: rgba(22, 91, 134, 0.35);
  text-underline-offset: 0.2em;
}

.legal-card ul {
  padding-left: 1.25rem;
}

.legal-card li + li {
  margin-top: 0.45rem;
}

.legal-note {
  padding: 1rem 1.15rem;
  color: var(--navy-soft);
  background: rgba(220, 238, 250, 0.55);
  border-left: 3px solid var(--gold);
  border-radius: 0 0.6rem 0.6rem 0;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.82rem;
}

.lightbox {
  width: min(1080px, calc(100vw - 2rem));
  max-width: none;
  height: min(88vh, 820px);
  max-height: none;
  padding: 0;
  color: var(--white);
  background: rgba(3, 16, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.35rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(0, 9, 16, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox figure {
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 2rem 4.6rem 3.3rem;
  place-items: center;
}

.lightbox figure img {
  min-height: 0;
  max-height: calc(88vh - 8rem);
  object-fit: contain;
  border-radius: 0.6rem;
}

.lightbox figcaption {
  position: absolute;
  right: 4rem;
  bottom: 1.2rem;
  left: 4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 1.6rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 940px) {
  :root {
    --page: min(100% - 2rem, 760px);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.25rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.25rem) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.4rem;
    padding: 7rem 2rem 3rem;
    background: rgba(4, 21, 35, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

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

  .primary-navigation a {
    font-size: clamp(1.7rem, 8vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .hero-content {
    padding-top: 7rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.15rem, 13vw, 6.2rem);
  }

  .hero-place,
  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .journey-layout,
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .section-marker {
    display: none;
  }

  .intro-visuals {
    width: min(34rem, 100%);
    margin-inline: auto;
    justify-self: center;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .world-card,
  .world-card-wide {
    grid-column: span 6;
    min-height: 32rem;
  }

  .journey-heading {
    position: static;
  }

  .journey-heading h2 {
    max-width: 11ch;
  }

  .gallery-item,
  .gallery-item-wide,
  .gallery-item-full {
    grid-column: span 6;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .manifesto-symbol {
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-meta {
    align-items: center;
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100vw - 1.5rem);
    --radius: 1.15rem;
  }

  .section {
    padding-block: 5rem;
  }

  .site-header {
    min-height: 4.6rem;
    padding-inline: 0.85rem;
  }

  .brand-symbol {
    width: 2rem;
    height: 2rem;
  }

  .brand-copy strong {
    font-size: 0.76rem;
  }

  .brand-copy small {
    font-size: 0.45rem;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .legal-hero {
    min-height: 23rem;
    padding: 8.5rem 0 3.5rem;
  }

  .legal-hero h1 {
    overflow-wrap: anywhere;
  }

  .legal-card {
    padding: 1.35rem;
  }

  .hero-media {
    object-position: 50% 42%;
    transform: scale(1.08);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 18, 32, 0.1) 0%, rgba(3, 18, 32, 0.2) 38%, rgba(3, 18, 32, 0.97) 82%),
      linear-gradient(90deg, rgba(3, 18, 32, 0.5), transparent 90%);
  }

  .hero-grid {
    background-size: 50% 100%;
  }

  .hero-content {
    padding: 8rem 0 2.2rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 11.7vw, 4.5rem);
    letter-spacing: 0.07em;
  }

  .hero-claim {
    margin-top: 1rem;
    font-size: 1.08rem;
  }

  .hero-claim::before {
    width: 2rem;
  }

  .hero-intro {
    font-size: 0.98rem;
    line-height: 1.55;
  }

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

  .button {
    width: 100%;
  }

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

  .world-card,
  .world-card-wide {
    grid-column: 1;
    min-height: 31rem;
  }

  .world-copy {
    right: 4.5rem;
    bottom: 1.5rem;
    left: 1.3rem;
  }

  .world-copy strong {
    font-size: 2.45rem;
  }

  .world-status {
    max-width: 10rem;
    text-align: center;
  }

  .world-number {
    top: 1.35rem;
    left: 1.25rem;
  }

  .world-arrow {
    right: 1.25rem;
    bottom: 1.35rem;
  }

  .timeline {
    padding-left: 1.8rem;
  }

  .timeline-item {
    padding-left: 0.6rem;
  }

  .timeline-dot {
    left: -2.27rem;
  }

  .bridge-section {
    min-height: 78vh;
  }

  .bridge-section > img {
    object-position: 50% 37%;
    transform: scale(1.28);
  }

  .gallery-grid {
    grid-auto-rows: 20rem;
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item-wide,
  .gallery-item-full,
  .gallery-item-tall {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-item:first-child {
    min-height: 27rem;
  }

  .lightbox {
    width: calc(100vw - 1rem);
    height: 85vh;
  }

  .lightbox figure {
    padding: 3.8rem 1rem 4rem;
  }

  .lightbox figcaption {
    right: 1rem;
    left: 1rem;
  }

  .lightbox-nav {
    top: auto;
    bottom: 0.75rem;
    transform: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
