:root {
  --navy: #064d80;
  --navy-deep: #042c49;
  --blue: #0d639d;
  --sky: #cce9f8;
  --yellow: #ffc600;
  --gold: #e8a913;
  --sand: #fff6d6;
  --paper: #fffdf7;
  --ink: #102b40;
  --muted: #5f6f7b;
  --line: rgba(6, 77, 128, 0.17);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  color: white;
  background: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.75rem;
  padding: 0 clamp(1.25rem, 4vw, 4.75rem);
  color: white;
  transition: background .28s ease, color .28s ease, box-shadow .28s ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 253, 247, .98);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  width: 4.35rem;
  height: 5.35rem;
  display: grid;
  place-items: center;
  justify-self: start;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 .3rem .8rem rgba(0, 25, 47, .28));
}
.site-header.scrolled .brand img { filter: drop-shadow(0 .2rem .45rem rgba(0, 39, 69, .13)); }
nav { display: flex; gap: clamp(.85rem, 2vw, 2.1rem); }
nav a, .header-cta {
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}
nav a { position: relative; }
nav a::after {
  content: '';
  position: absolute;
  inset: auto 0 -.5rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); }
.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: .65rem;
}
.language-switcher { position: relative; }
.language-button {
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .75rem;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 999px;
  color: inherit;
  background: rgba(255,255,255,.08);
  font: inherit;
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
}
.language-button img, .language-menu img {
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.05rem;
  border-radius: .13rem;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(4,44,73,.14);
}
.language-button i {
  width: .35rem;
  height: .35rem;
  margin: -.18rem .1rem 0 .15rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.language-switcher.open .language-button i { margin-top: .18rem; transform: rotate(225deg); }
.site-header.scrolled .language-button,
.site-header.menu-open .language-button { border-color: var(--line); background: rgba(6,77,128,.04); }
.language-menu {
  position: absolute;
  top: calc(100% + .65rem);
  right: 0;
  width: 11.5rem;
  padding: .4rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255,253,247,.99);
  box-shadow: 0 1rem 2.5rem rgba(4,44,73,.2);
}
.language-menu[hidden] { display: none; }
.language-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem .75rem;
  color: inherit;
  border: 0;
  border-radius: .7rem;
  background: transparent;
  font: inherit;
  font-size: .82rem;
  text-align: left;
  cursor: pointer;
}
.language-menu button:hover, .language-menu button:focus-visible { background: rgba(6,77,128,.08); }
.language-menu button[aria-selected="true"] { color: var(--navy); background: rgba(255,198,0,.22); font-weight: 800; }
.header-cta {
  padding: .75rem 1rem;
  color: white;
  border: 1px solid #1fa855;
  border-radius: 999px;
  background: #168c48;
  box-shadow: 0 .55rem 1.5rem rgba(5,45,27,.2);
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover, .header-cta:focus-visible { transform: translateY(-2px); background: #11773c; }
.site-header.scrolled .header-cta, .site-header.menu-open .header-cta { color: white; border-color: #168c48; }
.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: .75rem;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  color: inherit;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}
.menu-toggle span + span { margin-top: .3rem; }
.site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(.4rem) rotate(45deg); }
.site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-.4rem) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: white;
  background: var(--navy-deep);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { z-index: -3; object-fit: cover; object-position: 50% center; }
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 18, 30, .88) 0%, rgba(8, 25, 39, .64) 37%, rgba(8, 25, 39, .06) 72%),
    linear-gradient(0deg, rgba(7, 22, 35, .42), transparent 36%);
}
.hero-content {
  width: min(46rem, 89vw);
  margin-left: clamp(1.25rem, 8vw, 9rem);
  padding: 9rem 0 7rem;
}
.eyebrow, .kicker {
  margin: 0 0 1.25rem;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero .eyebrow, .kicker.light { color: var(--yellow); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
h1 { margin-bottom: 1.55rem; font-size: clamp(4rem, 8vw, 8.4rem); line-height: .87; }
.hero-copy { max-width: 39rem; margin-bottom: 2.2rem; color: rgba(255,255,255,.83); font-size: clamp(1rem, 1.35vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-safety {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.35rem;
  width: fit-content;
  max-width: 44rem;
  margin-top: 1.45rem;
  color: rgba(255,255,255,.76);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-safety span { position: relative; }
.hero-safety span:first-child { color: var(--yellow); }
.hero-safety span + span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -.72rem;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255,255,255,.58);
}
.hero-safety:hover span:first-child, .hero-safety:focus-visible span:first-child { color: #ffda32; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: #08283f; background: var(--yellow); }
.button-primary:hover, .button-primary:focus-visible { background: #ffda32; }
.button-secondary { color: white; border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.06); }
.hero-note {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4.75rem);
  bottom: 2.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, 14rem);
  align-items: start;
  gap: .85rem;
  font-size: .78rem;
  line-height: 1.45;
}
.hero-note span { color: var(--yellow); font-weight: 800; letter-spacing: .15em; }
.hero-note p { margin: 0; color: rgba(255,255,255,.72); }
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  width: 1.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
}
.scroll-cue span {
  position: absolute;
  top: .5rem;
  left: 50%;
  width: .25rem;
  height: .25rem;
  border-radius: 50%;
  background: white;
  transform: translateX(-50%);
  animation: descend 1.8s ease infinite;
}
@keyframes descend { 0%,100% { transform: translate(-50%, 0); opacity: .35; } 45% { transform: translate(-50%, .85rem); opacity: 1; } }

.section { padding: clamp(5.5rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8rem); }
.section-intro { max-width: 70rem; }
h2 { margin-bottom: 1.5rem; font-size: clamp(2.7rem, 5.5vw, 5.75rem); line-height: 1.02; }
.experience { background: var(--paper); }
.experience .section-intro h2 { max-width: 66rem; }
.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .76fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  margin-top: clamp(3rem, 7vw, 7rem);
}
.experience-story { max-width: 39rem; }
.experience-story .lead { font-family: var(--serif); font-size: clamp(1.45rem, 2.5vw, 2.2rem); line-height: 1.35; }
.experience-story p:last-child { max-width: 33rem; color: var(--muted); }
.coordinate-card {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy);
  border-radius: 50%;
}
.coordinate-card::before, .coordinate-card::after, .coordinate-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}
.coordinate-card::before { content: ''; inset: 12%; }
.coordinate-card::after { content: ''; inset: 28%; }
.coordinate-orbit { inset: -18%; animation: rotate 26s linear infinite; }
.coordinate-orbit::before, .coordinate-orbit::after {
  content: '';
  position: absolute;
  left: 50%; top: 0;
  width: 1px; height: 100%;
  background: rgba(255,255,255,.09);
}
.coordinate-orbit::after { transform: rotate(90deg); }
@keyframes rotate { to { transform: rotate(360deg); } }
.balloon-mark { position: absolute; left: 50%; top: 4%; width: 3.5rem; height: 4.8rem; transform: translateX(-50%); }
.balloon-mark span { position: absolute; top: 0; height: 3.65rem; border-radius: 55% 55% 48% 48%; background: var(--yellow); transform-origin: center bottom; }
.balloon-mark span:nth-child(1) { left: .35rem; width: .75rem; transform: rotate(-17deg); }
.balloon-mark span:nth-child(2) { left: 1.05rem; width: .65rem; transform: rotate(-7deg); background: #ffe05d; }
.balloon-mark span:nth-child(3) { left: 1.65rem; width: .55rem; background: var(--yellow); }
.balloon-mark span:nth-child(4) { left: 2.15rem; width: .65rem; transform: rotate(7deg); background: #ffe05d; }
.balloon-mark span:nth-child(5) { left: 2.7rem; width: .75rem; transform: rotate(17deg); }
.balloon-mark i { position: absolute; top: 3.9rem; left: 1.42rem; width: .75rem; height: .5rem; border: 1px solid var(--yellow); }
.coordinate-copy { position: relative; z-index: 2; text-align: center; }
.coordinate-copy span { display: block; color: #8fb4d2; font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.coordinate-copy strong { display: block; margin: .2rem 0; font-family: var(--serif); font-size: clamp(3rem, 7vw, 6rem); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.coordinate-copy p { margin: 0; color: rgba(255,255,255,.55); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; }

.gallery { background: #f5f9fb; }
.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, .42fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.gallery-heading h2 { max-width: 50rem; margin-bottom: 0; }
.gallery-heading > p { max-width: 31rem; margin-bottom: .6rem; color: var(--muted); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(12rem, 20vw, 20rem);
  gap: clamp(.65rem, 1.3vw, 1.15rem);
}
.gallery-item {
  position: relative;
  grid-column: span 5;
  margin: 0;
  overflow: hidden;
  background: var(--navy-deep);
}
.gallery-item-wide { grid-column: span 7; }
.gallery-item-tall { grid-column: span 7; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(3, 26, 43, .68));
  pointer-events: none;
}
.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  right: 1.35rem;
  bottom: 1.15rem;
  left: 1.35rem;
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.15;
}
.photo-credit {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .72rem;
  text-align: right;
}
.photo-credit a { text-underline-offset: .18rem; }

.standards { color: white; background: var(--navy); }
.standards-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(15rem, .45fr); column-gap: clamp(3rem, 8vw, 8rem); }
.standards-heading .kicker { grid-column: 1 / -1; }
.standards-heading h2 { max-width: 53rem; }
.standards-heading > p:last-child { align-self: end; color: rgba(255,255,255,.66); }
.safety-promise {
  max-width: 70rem;
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  padding: 1.4rem 0 1.4rem 1.5rem;
  border-left: .22rem solid var(--yellow);
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.35;
}
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 3rem; background: rgba(255,255,255,.14); }
.standard-card { min-height: 22rem; padding: clamp(1.5rem, 3vw, 3rem); background: var(--navy); }
.card-number { display: block; margin-bottom: 5rem; color: #87a9c8; font-size: .75rem; font-weight: 800; letter-spacing: .15em; }
.standard-card h3 { margin-bottom: .85rem; font-family: var(--serif); font-size: clamp(1.65rem, 2.5vw, 2.35rem); font-weight: 400; }
.standard-card p { max-width: 23rem; color: rgba(255,255,255,.62); }
.readiness-strip { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 4rem; border-block: 1px solid rgba(255,255,255,.14); }
.readiness-strip span { padding: 1.4rem .75rem; color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-align: center; text-transform: uppercase; }

.journey { display: grid; grid-template-columns: minmax(0, .85fr) minmax(22rem, 1.15fr); gap: clamp(4rem, 10vw, 11rem); background: var(--sand); }
.journey-copy { position: sticky; top: 8rem; align-self: start; }
.journey-copy p:last-child { max-width: 31rem; color: var(--muted); }
.journey-list { margin: 0; padding: 0; list-style: none; }
.journey-list li { display: grid; grid-template-columns: 3rem 1fr; gap: 1.2rem; padding: 2.4rem 0; border-top: 1px solid var(--line); }
.journey-list li:last-child { border-bottom: 1px solid var(--line); }
.journey-list > li > span { color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .15em; }
.journey-list h3 { margin-bottom: .35rem; font-family: var(--serif); font-size: clamp(1.65rem, 2.8vw, 2.45rem); font-weight: 400; line-height: 1.1; }
.journey-list p { max-width: 34rem; margin: 0; color: var(--muted); }

.flight-options { background: var(--paper); }
.flight-options .section-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(16rem, .42fr); column-gap: clamp(3rem, 8vw, 8rem); }
.flight-options .section-intro .kicker { grid-column: 1 / -1; }
.flight-options .section-intro h2 { max-width: 50rem; }
.options-intro { align-self: end; color: var(--muted); }
.options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 4.5rem; }
.option-card {
  position: relative;
  min-height: 24rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid var(--line);
  background: white;
}
.option-card.featured { color: white; background: var(--navy); border-color: var(--navy); }
.option-card .card-number { margin-bottom: 5.5rem; color: var(--blue); }
.option-card.featured .card-number { color: var(--sky); }
.option-card h3 { max-width: 16rem; margin-bottom: .85rem; font-family: var(--serif); font-size: clamp(1.85rem, 2.8vw, 2.75rem); font-weight: 400; line-height: 1.08; }
.option-card p { max-width: 24rem; margin: 0; color: var(--muted); }
.option-card.featured p { color: rgba(255,255,255,.72); }
.option-label {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: .35rem .7rem;
  color: var(--navy-deep);
  background: var(--yellow);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.extras-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 1rem; border: 1px solid var(--line); }
.extras-strip p { display: grid; gap: .2rem; margin: 0; padding: 1.5rem 2rem; }
.extras-strip p + p { border-left: 1px solid var(--line); }
.extras-strip strong { color: var(--navy); font-size: .9rem; }
.extras-strip span { color: var(--muted); font-size: .8rem; }

.contact { color: white; background: #083f68; }
.contact-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .48fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}
.contact-heading h2 { max-width: 55rem; margin-bottom: 0; }
.contact-heading > p { max-width: 32rem; margin-bottom: .65rem; color: rgba(255,255,255,.7); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.contact-card {
  position: relative;
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
  color: white;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.contact-card::after {
  content: '↗';
  position: absolute;
  top: 1.35rem;
  right: 1.5rem;
  color: var(--yellow);
  font-size: 1.35rem;
}
.contact-card:hover, .contact-card:focus-visible { transform: translateY(-4px); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.09); }
.contact-card-featured { color: #08283f; border-color: var(--yellow); background: var(--yellow); }
.contact-card-featured::after { color: #08283f; }
.contact-card-featured:hover, .contact-card-featured:focus-visible { border-color: #ffda32; background: #ffda32; }
.contact-label { margin-bottom: 1.7rem; font-size: .72rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; opacity: .72; }
.contact-card strong { overflow-wrap: anywhere; font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 2.2rem); font-weight: 400; line-height: 1.15; }
.contact-card small { margin-top: .55rem; font-size: .82rem; opacity: .68; }
.contact-map {
  display: grid;
  grid-template-columns: minmax(18rem, .68fr) minmax(0, 1.32fr);
  min-height: 28rem;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
}
.contact-map-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(2rem, 5vw, 4.5rem); }
.contact-map-copy h3 { margin: 0 0 1rem; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 400; line-height: 1; }
.contact-map-copy > p:not(.kicker) { max-width: 30rem; margin: 0 0 2rem; color: rgba(255,255,255,.72); }
.contact-map iframe { width: 100%; min-height: 28rem; height: 100%; border: 0; filter: saturate(.82) contrast(1.04); }

.closing {
  position: relative;
  min-height: 70svh;
  display: grid;
  place-items: center;
  align-content: center;
  overflow: hidden;
  padding: 7rem 1.25rem;
  color: white;
  text-align: center;
  background: var(--navy-deep);
}
.closing > * { position: relative; z-index: 2; }
.closing h2 { max-width: 70rem; }
.closing-mark {
  position: absolute;
  z-index: 0;
  width: min(47rem, 90vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.closing-mark::before, .closing-mark::after { content: ''; position: absolute; border: 1px solid rgba(255,255,255,.07); border-radius: inherit; }
.closing-mark::before { inset: 14%; }
.closing-mark::after { inset: 30%; background: radial-gradient(circle, rgba(255,198,0,.16), transparent 66%); }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem clamp(1.25rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: .78rem;
}
footer img { width: 4.75rem; height: 6.1rem; object-fit: contain; }
footer p { margin: 0; color: var(--muted); text-align: center; }
footer a { justify-self: end; font-weight: 750; text-decoration: none; }

[dir="rtl"] body { font-family: Tahoma, Arial, sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] .experience-story .lead,
[dir="rtl"] .coordinate-copy strong, [dir="rtl"] .contact-card strong { font-family: Tahoma, Arial, sans-serif; letter-spacing: -.02em; }
[dir="rtl"] .hero-content { margin-right: clamp(1.25rem, 8vw, 9rem); margin-left: 0; }
[dir="rtl"] .hero-note { right: auto; left: clamp(1.25rem, 4vw, 4.75rem); }
[dir="rtl"] nav a::after { transform-origin: right; }
[dir="rtl"] .language-menu { right: auto; left: 0; }
[dir="rtl"] .language-menu button { text-align: right; }
[dir="rtl"] .safety-promise { padding-right: 1.5rem; padding-left: 0; border-right: .22rem solid var(--yellow); border-left: 0; }
[dir="rtl"] .extras-strip p + p { border-right: 1px solid var(--line); border-left: 0; }
[dir="rtl"] .photo-credit { text-align: left; }
[dir="rtl"] .contact-card::after { right: auto; left: 1.5rem; transform: scaleX(-1); }
[dir="rtl"] .contact-map-copy { align-items: flex-start; }
[dir="rtl"] footer a { justify-self: start; }

html[lang="fr"] h1, html[lang="ru"] h1 { font-size: clamp(3.3rem, 6.8vw, 7.2rem); }
html[lang="ru"] #primary-navigation { transform: translateX(-1.35rem); }
html[lang="zh"] h1, html[lang="zh"] h2 { font-family: 'Noto Serif SC', 'Songti SC', SimSun, serif; letter-spacing: -.02em; }
.phone-number { direction: ltr; unicode-bidi: isolate; }
[dir="rtl"] .phone-number { width: 100%; text-align: right; }

.reveal { opacity: 0; transform: translateY(2rem); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.standards-grid .reveal:nth-child(2), .journey-list .reveal:nth-child(2) { transition-delay: .08s; }
.standards-grid .reveal:nth-child(3), .journey-list .reveal:nth-child(3) { transition-delay: .16s; }
.journey-list .reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto 1fr auto; column-gap: .65rem; min-height: 5.25rem; }
  .site-header.menu-open {
    color: var(--ink);
    background: rgba(255,253,247,.99);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(16px);
  }
  nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: .35rem clamp(1.25rem, 4vw, 4.75rem) 1rem;
    color: var(--ink);
    background: rgba(255,253,247,.99);
    box-shadow: 0 1rem 2rem rgba(4,44,73,.13);
  }
  html[lang="ru"] #primary-navigation { transform: none; }
  .site-header.menu-open nav { display: flex; }
  nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  nav a:last-child { border-bottom: 0; }
  nav a::after { display: none; }
  nav a[href="#standards"] { color: var(--blue); }
  .menu-toggle { display: block; }
  .site-header.scrolled .menu-toggle, .site-header.menu-open .menu-toggle { border-color: var(--line); background: transparent; }
  .site-header.menu-open .header-cta { border-color: #168c48; }
  .site-header.menu-open .brand img { filter: drop-shadow(0 .2rem .45rem rgba(0,39,69,.13)); }
  .brand { width: 3.5rem; height: 4.35rem; }
  .hero-content { margin-left: 1.25rem; }
  [dir="rtl"] .hero-content { margin-inline: 1.25rem; }
  .hero-image { object-position: 65% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,18,30,.9), rgba(8,25,39,.42) 80%), linear-gradient(0deg, rgba(7,22,35,.5), transparent 40%); }
  .hero-note, .scroll-cue { display: none; }
  .experience-grid, .journey, .flight-options .section-intro, .gallery-heading, .contact-heading { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: clamp(12rem, 38vw, 20rem); }
  .gallery-item, .gallery-item-wide, .gallery-item-tall { grid-column: span 6; }
  .coordinate-card { width: min(34rem, 100%); justify-self: center; }
  .standards-heading { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: 1fr; }
  .standard-card { min-height: auto; }
  .card-number { margin-bottom: 3rem; }
  .readiness-strip { grid-template-columns: repeat(3, 1fr); }
  .journey-copy { position: static; }
  .options-grid { grid-template-columns: 1fr; }
  .option-card { min-height: auto; }
  .option-card .card-number { margin-bottom: 3rem; }
  .extras-strip { grid-template-columns: 1fr; }
  .extras-strip p + p { border-top: 1px solid var(--line); border-left: 0; }
  [dir="rtl"] .extras-strip p + p { border-right: 0; }
  .contact-map { grid-template-columns: 1fr; }
  .contact-map-copy { min-height: 22rem; }
  .contact-map iframe { min-height: 24rem; }
}

@media (max-width: 560px) {
  .site-header { padding-inline: 1rem; }
  .brand { width: 3.15rem; height: 4.05rem; }
  .header-actions { gap: .4rem; }
  .language-button { min-height: 2.35rem; gap: .4rem; padding: .4rem .6rem; font-size: .66rem; }
  .language-button img { width: 1.2rem; height: .9rem; }
  .header-cta { padding: .62rem .75rem; font-size: 0; }
  .header-cta::after { content: 'WhatsApp'; font-size: .66rem; }
  .hero-content { width: auto; margin-inline: 1rem; padding-top: 8rem; }
  h1 { font-size: clamp(3.65rem, 19vw, 5.4rem); }
  h2 { font-size: clamp(2.5rem, 12vw, 3.85rem); }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 18rem; }
  .hero-safety { gap: .4rem; max-width: 20rem; font-size: .66rem; line-height: 1.45; }
  .hero-safety span { flex-basis: 100%; padding-left: .8rem; }
  .hero-safety span + span::before, .hero-safety span:first-child::before {
    content: '';
    position: absolute;
    top: .67em;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
  }
  .button { width: 100%; }
  .section { padding-inline: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 16rem; }
  .gallery-item, .gallery-item-wide, .gallery-item-tall { grid-column: auto; }
  .gallery-item-wide { grid-row: span 2; }
  .photo-credit { text-align: left; }
  .readiness-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer img, footer a { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
