:root {
  --brand: #353a7c;
  --brand-dark: #282d66;
  --paper: #fff;
  --white: #fff;
  --ink: #1e1b18;
  --muted: #706a63;
  --sand: #b28a5c;
  --clay: #6d4b33;
  --night: #171511;
  --line: rgba(30, 27, 24, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Kaushan Script", cursive;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.section-shell { width: min(1180px, calc(100% - 64px)); margin-inline: auto; }

.topbar {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 108px;
  padding: 0 38px;
  display: grid;
  grid-template-columns: minmax(350px, 1fr) auto minmax(350px, 1fr);
  align-items: center;
  background: #fff;
  border-bottom: 1px solid rgba(30, 27, 24, 0.08);
  transition: transform 280ms cubic-bezier(.22,.8,.2,1), box-shadow 280ms ease;
}
.topbar.is-floating {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-110%);
  box-shadow: 0 12px 40px rgba(30,27,24,.08);
}
.topbar.is-floating.is-visible { transform: translateY(0); }
.nav { display: flex; align-items: center; justify-self: center; gap: 28px; }
.nav a, .contact-link {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav a {
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right 220ms ease;
}
.nav a:hover::after { right: 0; }
.nav a[aria-current="page"] { color: #1769aa; }
.nav a[aria-current="page"]::after { right: 0; height: 2px; }
.brand {
  justify-self: start;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 180px;
  min-height: 52px;
  padding: 5px 14px;
  background: #fff;
}
.brand img { width: 100%; height: 90px; object-fit: contain; }
.contact-link {
  justify-self: end;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: color 200ms ease, background 200ms ease;
}
.contact-link:hover { color: var(--paper); background: var(--ink); }
.header-info {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  max-width: 380px;
}
.header-address-trigger {
  max-width: 280px;
  margin: 0;
  padding: 0 !important;
  color: #353a7c !important;
  background: transparent !important;
  border: 0 !important;
  font: 600 14px/1.5 var(--sans);
  letter-spacing: .035em;
  text-align: right;
  text-transform: uppercase;
  cursor: pointer;
}
.header-address-trigger:hover,
.header-address-trigger:focus-visible { color: #282d66 !important; background: transparent !important; }
.social-links { display: grid; grid-template-columns: repeat(2, 26px); gap: 5px; flex: 0 0 auto; }
.social-links a {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.social-links a:nth-child(1) { color: #fff; background: #1877f2; border-color: #1877f2; }
.social-links a:nth-child(2) { color: #fff; background: linear-gradient(135deg, #833ab4, #fd1d1d 58%, #fcb045); border-color: #d94680; }
.social-links a:nth-child(3) { color: #fff; background: #0a66c2; border-color: #0a66c2; }
.social-links a:nth-child(4) { color: #fff; background: #111; border-color: #111; box-shadow: inset 2px 0 #25f4ee, inset -2px 0 #fe2c55; }
.social-links a:hover { color: #fff; transform: translateY(-3px) scale(1.06); }
.social-links svg { width: 12px; height: 12px; fill: currentColor; }

.mobile-menu-toggle { display: none; }
.mobile-menu-backdrop,
.mobile-menu {
  display: block;
}
.mobile-menu-toggle {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
}
.mobile-menu-backdrop {
  position: fixed;
  z-index: 930;
  inset: 0;
  background: rgba(12, 18, 28, .52);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 260ms ease;
}
.mobile-menu-backdrop.is-open { opacity: 1; }
.mobile-menu {
  position: fixed;
  z-index: 940;
  top: 0;
  right: 0;
  width: min(390px, 88vw);
  height: 100dvh;
  transform: translateX(102%);
  transition: transform 320ms cubic-bezier(.16,.8,.2,1);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
  padding: 20px 18px 24px;
  overflow: auto;
  background: #fff;
  box-shadow: -20px 0 70px rgba(30,27,24,.18);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.mobile-menu-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.mobile-menu-brand img {
  width: min(174px, 58vw);
  height: auto;
  object-fit: contain;
}
.mobile-menu-close {
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}
.mobile-menu-nav a {
  color: var(--brand-dark);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mobile-menu-section {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.mobile-menu-section p {
  margin: 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mobile-menu-section a,
.mobile-menu-address-trigger {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}
.mobile-menu-address-trigger {
  padding: 0;
  text-align: left;
  background: transparent !important;
  border: 0 !important;
  cursor: pointer;
}
.mobile-menu-socials {
  display: grid;
  grid-template-columns: repeat(4, 34px);
  justify-content: start;
  gap: 8px;
}
.mobile-menu-socials a {
  width: 34px;
  height: 34px;
}
.mobile-menu-socials svg {
  width: 14px;
  height: 14px;
}
body.mobile-menu-open { overflow: hidden; }

.fw-hero {
  position: relative;
  z-index: 2;
  isolation: isolate;
  height: min(810px, calc(100vh - 108px));
  min-height: 650px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 25px 42px -28px rgba(12, 35, 65, .22);
}
.hero-grid {
  position: absolute;
  inset: 22px 3.5% 30px;
  z-index: 1;
  background:
    linear-gradient(to right, transparent calc(25% - .5px), var(--line) 25%, transparent calc(25% + .5px)),
    linear-gradient(to right, transparent calc(50% - .5px), var(--line) 50%, transparent calc(50% + .5px)),
    linear-gradient(to right, transparent calc(75% - .5px), var(--line) 75%, transparent calc(75% + .5px)),
    linear-gradient(to bottom, transparent calc(50% - .5px), var(--line) 50%, transparent calc(50% + .5px));
  border: 1px solid rgba(30, 27, 24, 0.09);
}
.hero-card {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background: #2a241f;
  animation: hero-arrive 1.1s cubic-bezier(.22,.8,.2,1) both;
}
.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}
.hero-static-image,
.hero-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-static-image {
  z-index: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: none;
  animation: hero-image-reveal 1.1s cubic-bezier(.22,.8,.2,1) both;
}
.hero-video-frame {
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  border: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms linear;
  pointer-events: none;
}
.fw-hero.is-video-playing .hero-video-frame { opacity: 1; }
.hero-sound-toggle {
  position: absolute;
  z-index: 8;
  left: 3.5%;
  bottom: 2.5%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(7, 20, 31, .64);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  cursor: pointer;
}
.hero-sound-toggle:hover { background: rgba(7, 20, 31, .84); }
.hero-sound-label { font: 600 10px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.hero-slogan,
.package-mosaic,
.hero-plane,
.hero-sound-toggle,
.hero-coordinate,
.hero-sound-consent {
  transition: opacity 700ms ease, visibility 700ms ease;
}
.fw-hero.is-video-signoff .hero-slogan,
.fw-hero.is-video-signoff .package-mosaic,
.fw-hero.is-video-signoff .hero-plane,
.fw-hero.is-video-signoff .hero-sound-toggle,
.fw-hero.is-video-signoff .hero-coordinate,
.fw-hero.is-video-signoff .hero-sound-consent {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}
.hero-sound-consent {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}
.hero-sound-consent.is-dismissed { display: none; }
.hero-sound-consent-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f4f8fb;
  opacity: 0;
  transition: opacity 480ms ease;
  pointer-events: none;
}
body.consent-ready .hero-sound-consent-backdrop { opacity: 1; }
.hero-sound-consent-card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: clamp(34px, 5vw, 56px);
  color: #142b42;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 28px 90px rgba(3,13,24,.38);
  text-align: center;
  opacity: 0;
  transform: translateY(70px) scale(.96);
  pointer-events: auto;
}
body.consent-ready .hero-sound-consent-card { animation: consent-modal-rise 650ms 120ms cubic-bezier(.16,.8,.2,1) both; }
.hero-sound-consent.is-closing { pointer-events: none; }
.hero-sound-consent.is-closing .hero-sound-consent-backdrop { opacity: 0; }
.hero-sound-consent.is-closing .hero-sound-consent-card { animation: consent-modal-dismiss 500ms cubic-bezier(.55,.05,.75,.3) both; }
.hero-sound-consent-kicker { color: #1769aa; font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.hero-sound-consent-card h2 { margin: 14px 0 10px; font: 500 clamp(38px, 6vw, 54px)/.94 var(--serif); }
.hero-sound-consent-card p { margin: 0 auto 28px; max-width: 330px; color: #566a7d; font-size: 14px; line-height: 1.7; }
.hero-sound-accept,
.hero-sound-decline {
  width: 100%;
  cursor: pointer;
  font-family: var(--sans);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.hero-sound-accept { padding: 15px 18px; color: #fff; background: #1769aa; border: 1px solid #1769aa; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.hero-sound-accept:hover { background: #0f568f; }
.hero-sound-decline { margin-top: 10px; padding: 10px; color: #566a7d; background: transparent; border: 0; font-size: 12px; }
.hero-consent-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 15px; margin-top: 17px; }
.hero-consent-links a { color: #1769aa; font-size: 10px; line-height: 1.4; text-decoration: underline; text-underline-offset: 3px; }
.hero-consent-links a:hover { color: #0f568f; }
body.sound-consent-open { overflow: hidden; }
body.sound-consent-open .fw-hero { opacity: 0 !important; visibility: hidden; }
.hero-plane {
  position: absolute;
  z-index: 6;
  left: 2.5%;
  bottom: 8%;
  width: clamp(320px, 34vw, 540px);
  pointer-events: none;
  animation: plane-arrive 1.4s .2s cubic-bezier(.16,.8,.2,1) both;
}
.hero-plane img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 16px rgba(5, 17, 31, .58)) drop-shadow(0 5px 5px rgba(5, 17, 31, .4));
  animation: plane-hover 4.8s 1.6s ease-in-out infinite;
}
.hero-slogan {
  position: absolute;
  z-index: 5;
  left: 3.5%;
  bottom: 39%;
  width: 42%;
  margin: 0;
  color: #fff;
  font: 400 clamp(58px, 6.4vw, 102px)/.82 var(--serif);
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(8,12,16,.38);
  animation: slogan-rise 900ms .35s cubic-bezier(.22,.8,.2,1) both, travel-glow 8s 3s ease-in-out infinite;
}
.hero-slogan span { display: inline-block; white-space: nowrap; }
.hero-slogan-line { display: block !important; }
.package-mosaic {
  position: absolute;
  z-index: 4;
  inset: 7% 4% 9% 48%;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  transition: opacity 420ms ease, transform 420ms ease;
}
.package-tile {
  position: relative;
  container-type: inline-size;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.42);
  opacity: .62;
  transform: scale(.982);
  transition:
    opacity 520ms cubic-bezier(.22,.8,.2,1),
    transform 760ms cubic-bezier(.22,.8,.2,1);
}
.package-tile.is-featured {
  grid-row: 1 / 3;
  opacity: 1;
  transform: scale(1);
}
.package-tile.is-leaving {
  opacity: 0;
  transform: scale(.94);
}
.package-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
}
.package-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(14,16,16,.72)); }
.package-tile div { position: absolute; z-index: 2; inset: 0; color: #fff; }
.package-tile div > span {
  position: absolute;
  top: 14px;
  right: 14px;
  max-width: calc(100% - 36px);
  padding: 8px 13px;
  color: #fff;
  background: #1769aa;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  box-shadow: 0 7px 20px rgba(4,38,68,.28);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}
.package-tile strong {
  position: absolute;
  left: 20px;
  right: 18px;
  bottom: 18px;
  display: block;
  max-width: 100%;
  font: 500 clamp(26px, 3.4vw, 52px)/.92 var(--serif);
  font-size: clamp(25px, 12.5cqi, 52px);
  text-shadow: 0 4px 22px rgba(0,0,0,.65);
}
.hero-package-title-trigger {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: .04em .1em;
  width: 100%;
  max-width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
  text-align: left;
}
.hero-package-title-trigger:focus-visible {
  outline: 2px solid rgba(255,255,255,.95);
  outline-offset: 4px;
}
.package-title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 440ms cubic-bezier(.22,.8,.2,1),
    transform 440ms cubic-bezier(.22,.8,.2,1);
  transition-delay: calc(var(--word-index, 0) * 95ms);
}
.package-tile.is-featured .package-title-word {
  opacity: 1;
  transform: translateY(0);
}
.package-tile.is-leaving .package-title-word {
  opacity: 0;
  transform: translateY(-12px);
  transition-delay: calc((var(--word-index, 0) * 70ms));
}
.package-tile.is-featured img { transform: none; }
.package-dots { position: absolute; right: 0; bottom: -28px; display: flex; gap: 8px; }
.package-dots button { width: 24px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.46); cursor: pointer; transition: width 220ms ease, background 220ms ease; }
.package-dots button.is-active { width: 46px; background: #fff; }
.hero-copy {
  position: absolute;
  z-index: 4;
  top: 49%;
  left: 50%;
  width: min(980px, 90vw);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 30px rgba(20, 12, 6, .24);
  animation: copy-arrive .9s .25s ease both;
}
.kicker {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.kicker-light { color: rgba(255,255,255,.72); }
.hero-copy h1,
.statement h2,
.section-heading-row h2,
.support h2,
.experience h2,
.destination-copy h2,
.testimonials h2,
.journal h2,
.contact-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .86;
}
.hero-copy .kicker { font-size: 11px; }
.hero-copy h1 { font-size: clamp(72px, 7.5vw, 118px); text-transform: uppercase; }
.hero-copy h1 span { display: block; white-space: nowrap; }
.hero-intro {
  width: min(680px, 94%);
  margin: 28px auto 26px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.86);
}
.hero-contact p { margin: 3px 0; }
.hero-contact strong { font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.hero-contact a { transition: color 180ms ease; }
.hero-contact a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease;
}
.outline-button-light { color: #fff; }
.outline-button-light:hover { color: var(--ink); background: #fff; }
.hero-coordinate {
  position: absolute;
  top: 48%;
  color: rgba(30,27,24,.4);
  font-size: 8px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}
.hero-coordinate-left { left: 5.6%; }
.hero-coordinate-right { right: 5.6%; transform: rotate(180deg); }

.statement { padding-top: 170px; padding-bottom: 180px; text-align: center; }
.statement h2 { font-size: clamp(70px, 9vw, 140px); }
.statement-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 330px));
  justify-content: center;
  gap: 70px;
  margin-top: 72px;
  text-align: left;
}
.statement-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.9; }
.intro-cta h2 { text-transform: uppercase; }
.intro-contact { max-width: 760px; margin: 56px auto 0; color: var(--muted); font-size: 15px; line-height: 1.9; }
.intro-contact p { margin: 4px 0; }
.intro-contact strong { color: var(--ink); letter-spacing: .08em; text-transform: uppercase; }
.intro-contact a { border-bottom: 1px solid transparent; transition: color 180ms ease, border-color 180ms ease; }
.intro-contact a:hover { color: var(--ink); border-color: currentColor; }
.intro-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; max-width: 760px; margin: 62px auto 0; background: var(--line); border: 1px solid var(--line); text-align: left; }
.intro-action { display: grid; align-content: start; min-height: 190px; padding: 30px; background: #fff; transition: color 240ms ease, background 240ms ease; }
.intro-action > span { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.intro-action small { margin-top: 28px; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.intro-action strong { align-self: end; margin-top: auto; color: #d99b18; font-size: 17px; letter-spacing: .18em; }
.intro-action:hover { color: #fff; background: var(--ink); }
.intro-action:hover small { color: rgba(255,255,255,.68); }

.travel-types { padding-bottom: 170px; }
.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 42px;
}
.section-heading-row .kicker { margin-bottom: 8px; }
.section-heading-row h2 { font-size: clamp(68px, 8vw, 118px); }
.travel-panels { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; }
.travel-panel { position: relative; overflow: hidden; color: #fff; }
.panel-image, .panel-overlay { position: absolute; inset: 0; }
.panel-image { background-size: cover; background-position: center; transition: transform 900ms cubic-bezier(.2,.8,.2,1); }
.private-panel .panel-image { background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1400&q=85"); }
.corporate-panel .panel-image { background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1400&q=85"); }
.panel-overlay { background: linear-gradient(180deg, rgba(17,15,12,.07) 15%, rgba(17,15,12,.72) 100%); }
.travel-panel:hover .panel-image { transform: scale(1.035); }
.panel-content {
  position: absolute;
  inset: auto 48px 48px;
  z-index: 2;
}
.panel-content > span { font-size: 10px; letter-spacing: .18em; }
.panel-content h3 {
  margin: 12px 0 24px;
  font-family: var(--serif);
  font-size: clamp(66px, 6vw, 94px);
  font-weight: 400;
  line-height: .84;
}
.panel-content p { max-width: 420px; margin: 0 0 28px; color: rgba(255,255,255,.78); line-height: 1.75; }
.panel-content a { display: inline-flex; gap: 9px; align-items: center; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.panel-content a b { font-size: 14px; font-weight: 400; }

.support {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  padding-bottom: 180px;
}
.support-heading { position: sticky; top: 120px; align-self: start; }
.support h2 { font-size: clamp(62px, 6.5vw, 96px); }
.support-list { border-top: 1px solid var(--line); }
.support-list article {
  display: grid;
  grid-template-columns: 46px 1fr 1.2fr;
  gap: 22px;
  align-items: start;
  padding: 36px 0 38px;
  border-bottom: 1px solid var(--line);
}
.support-number { color: var(--muted); font-size: 10px; letter-spacing: .14em; }
.support-list h3 { margin: -5px 0 0; font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1; }
.support-list p { margin: 0; color: var(--muted); line-height: 1.8; }

.experience { padding: 150px 0 125px; color: var(--ink); background: #fff; border-top: 1px solid var(--line); }
.experience .kicker-light { color: var(--muted); }
.experience h2 { font-size: clamp(74px, 8vw, 126px); }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 105px;
  border-top: 1px solid var(--line);
}
.metric-grid > div { min-height: 210px; padding: 26px 26px 0 0; border-right: 1px solid var(--line); }
.metric-grid > div:not(:first-child) { padding-left: 26px; }
.metric-grid > div:last-child { border-right: 0; }
.metric-grid span { display: block; color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.metric-grid strong { display: block; margin-top: 46px; font-family: var(--serif); font-size: clamp(58px, 6vw, 88px); font-weight: 400; line-height: 1; }
.metric-grid small { font-size: .42em; font-weight: 400; }

.destination-feature { position: relative; height: 780px; margin-top: 150px; overflow: hidden; color: #fff; }
.destination-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,15,12,.56), rgba(17,15,12,.05)),
    url("https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?auto=format&fit=crop&w=1800&q=88") center / cover;
  transition: transform 1.2s ease;
}
.destination-feature:hover .destination-image { transform: scale(1.025); }
.destination-copy { position: absolute; z-index: 2; left: 68px; bottom: 66px; }
.destination-copy h2 { font-size: clamp(76px, 8vw, 122px); }
.destination-copy > p:not(.kicker) { max-width: 440px; margin: 24px 0 30px; color: rgba(255,255,255,.8); line-height: 1.75; }

.testimonials { padding-top: 175px; padding-bottom: 170px; }
.testimonials > .kicker, .testimonials > h2 { text-align: center; }
.testimonials h2 { font-size: clamp(70px, 8vw, 120px); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 90px; background: var(--line); }
.quote-grid blockquote { margin: 0; padding: 58px; background: var(--paper); }
.quote-grid blockquote > p { min-height: 180px; margin: 0; font-family: var(--serif); font-size: 31px; line-height: 1.32; }
.quote-grid footer { display: flex; flex-direction: column; gap: 7px; padding-top: 35px; border-top: 1px solid var(--line); }
.quote-grid footer span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.quote-grid footer small { color: var(--muted); }

.journal { padding-bottom: 170px; }
.journal-heading { align-items: end; }
.journal-heading h2 { margin-top: 20px; }
.text-link { padding-bottom: 8px; border-bottom: 1px solid currentColor; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.journal-image { height: 380px; background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1200&q=84") center / cover; filter: saturate(.72); }
.journal-meta { margin-top: 20px; color: var(--muted); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.journal-card h3 { margin: 14px 0 10px; font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1.05; }
.journal-card p { color: var(--muted); line-height: 1.7; }

.contact-stage { position: relative; min-height: 840px; overflow: hidden; color: var(--ink); background: #fff; border-top: 1px solid var(--line); }
.contact-stage .kicker-light { color: var(--muted); }
.contact-stage .outline-button-light { color: var(--ink); }
.contact-stage .outline-button-light:hover { color: #fff; background: var(--ink); }
.contact-orbit {
  position: absolute;
  width: 780px;
  height: 780px;
  left: 50%;
  bottom: -430px;
  border: 1px solid rgba(30,27,24,.12);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 110px rgba(30,27,24,.018), 0 0 0 220px rgba(30,27,24,.012);
}
.contact-inner { position: relative; z-index: 2; padding-top: 160px; text-align: center; }
.contact-inner h2 { font-size: clamp(78px, 9vw, 136px); }
.contact-inner > p:not(.kicker) { max-width: 510px; margin: 34px auto; color: var(--muted); line-height: 1.8; }
.contact-details {
  display: flex;
  justify-content: center;
  gap: 46px;
  margin-top: 120px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 55px 38px 45px;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
}
.footer-brand { font-family: var(--serif); font-size: 25px; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { display: flex; justify-content: center; gap: 22px; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-meta { display: flex; flex-direction: column; align-items: end; gap: 8px; color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

@keyframes hero-arrive {
  from { opacity: 0; transform: scale(.94); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes hero-image-reveal {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes copy-arrive {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 24px)); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
@keyframes nav-fall-in {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes social-enter {
  from { opacity: 0; transform: translateX(34px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes address-fade-down {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes plane-arrive {
  from { opacity: 0; transform: translate(-24%, 24%) scale(.82); }
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}
@keyframes plane-hover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}
@keyframes slogan-rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Admin */
.admin-wrap {
  width: min(1024px, calc(100% - 32px));
  margin: 40px auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(30,27,24,.08);
}
.admin-grid { display: grid; grid-template-columns: 240px 1fr; gap: 24px; }
.sidebar { display: flex; flex-direction: column; gap: 10px; }
.sidebar a { padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: block; margin-bottom: 6px; font-weight: 600; }
input, textarea, select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; font: inherit; }
textarea { min-height: 160px; resize: vertical; }
.notice { margin-bottom: 16px; padding: 12px 14px; border-radius: 8px; color: #30523f; background: #e5f0e9; }
.btn { display: inline-flex; padding: 12px 18px; border: 1px solid var(--ink); border-radius: 999px; background: transparent; font: 600 12px var(--sans); cursor: pointer; }
.btn-primary { color: #fff; background: var(--ink); }
.card { padding: 20px; border: 1px solid var(--line); background: #fff; }
.inquiry-admin-list { display: grid; gap: 14px; margin-top: 24px; }
.inquiry-admin-card { display: grid; grid-template-columns: 1fr 230px; gap: 28px; align-items: center; }
.inquiry-admin-card h2 { margin: 7px 0 12px; color: #123c61; font-size: 32px; }
.inquiry-admin-card p { margin: 6px 0; }
.inquiry-admin-card form { display: grid; gap: 9px; }
.inquiry-admin-date { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 1180px) and (min-width: 901px) {
  .topbar { padding-inline: 24px; grid-template-columns: 180px 1fr 180px; }
  .header-info { max-width: none; }
  .header-address-trigger { display: none; }
  .social-links { grid-template-columns: repeat(4, 27px); }
  .social-links a { width: 27px; height: 27px; }
}

@media (max-width: 900px) {
  .inquiry-admin-card { grid-template-columns: 1fr; }
  .section-shell { width: min(100% - 36px, 680px); }
  .topbar,
  .topbar.is-floating {
    position: sticky;
    z-index: 920;
    top: 0;
    height: 72px;
    padding: 0 16px 0 18px;
    grid-template-columns: 1fr auto;
    transform: none;
    box-shadow: 0 8px 28px rgba(30,27,24,.08);
  }
  .nav-left { display: none; }
  .brand { justify-self: start; min-width: 173px; min-height: 54px; padding: 4px 8px; }
  .brand img { height: 44px; }
  .header-info { display: none; }
  .mobile-menu-toggle { display: inline-flex; justify-self: end; }
  .fw-hero { height: auto; min-height: 0; padding: 14px 12px 28px; }
  .hero-grid {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
  }
  .hero-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    animation: hero-arrive .8s cubic-bezier(.22,.8,.2,1) both;
  }
  .hero-media { position: absolute; inset: 0; width: 100%; height: 100%; }
  .hero-static-image { object-position: center; }
  .hero-plane { left: 7px; bottom: 54px; width: 255px; }
  .hero-plane img { animation-duration: 4.2s; }
  .hero-slogan { left: 18px; bottom: 24%; width: calc(100% - 36px); font-size: clamp(43px, 13vw, 52px); }
  .hero-copy { width: calc(100% - 24px); }
  .hero-copy h1 { font-size: clamp(42px, 12vw, 49px); }
  .hero-intro { font-size: 14px; }
  .hero-contact { width: min(330px, 94%); line-height: 1.55; }
  .hero-contact p { margin: 7px 0; }
  .hero-contact span[aria-hidden="true"] { display: none; }
  .hero-contact a { display: block; }
  .hero-coordinate { display: none; }
  .statement { padding-top: 110px; padding-bottom: 120px; }
  .statement h2, .section-heading-row h2, .support h2, .experience h2, .testimonials h2, .journal h2 { font-size: clamp(55px, 16vw, 78px); }
  .statement-copy { grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
  .intro-contact { margin-top: 42px; font-size: 14px; }
  .intro-contact span { display: none; }
  .intro-contact a { display: block; }
  .intro-actions { grid-template-columns: 1fr; margin-top: 45px; }
  .intro-action { min-height: 160px; }
  .travel-types { padding-bottom: 110px; }
  .section-heading-row { display: block; }
  .section-heading-row h2 { margin-top: 14px; }
  .travel-panels { grid-template-columns: 1fr; }
  .travel-panel { min-height: 620px; }
  .panel-content { inset: auto 25px 32px; }
  .panel-content h3 { font-size: 70px; }
  .support { grid-template-columns: 1fr; gap: 58px; padding-bottom: 110px; }
  .support-heading { position: static; }
  .support-list article { grid-template-columns: 35px 1fr; }
  .support-list article p { grid-column: 2; }
  .experience { padding: 105px 0 85px; }
  .metric-grid { grid-template-columns: 1fr 1fr; margin-top: 70px; }
  .metric-grid > div { min-height: 165px; border-bottom: 1px solid var(--line); }
  .metric-grid > div:nth-child(2) { border-right: 0; }
  .destination-feature { width: calc(100% - 36px); height: 650px; margin-top: 90px; }
  .destination-copy { left: 26px; right: 26px; bottom: 36px; }
  .destination-copy h2 { font-size: 72px; }
  .testimonials { padding-top: 110px; padding-bottom: 110px; }
  .quote-grid { grid-template-columns: 1fr; margin-top: 60px; }
  .quote-grid blockquote { padding: 34px 28px; }
  .quote-grid blockquote > p { min-height: 0; margin-bottom: 50px; font-size: 27px; }
  .journal { padding-bottom: 110px; }
  .journal-heading .text-link { display: inline-block; margin-top: 28px; }
  .journal-grid { grid-template-columns: 1fr; gap: 58px; }
  .journal-image { height: 430px; }
  .contact-stage { min-height: 760px; }
  .contact-inner { padding-top: 115px; }
  .contact-inner h2 { font-size: clamp(58px, 16vw, 80px); }
  .contact-details { flex-direction: column; gap: 13px; margin-top: 85px; }
  .footer { grid-template-columns: 1fr; padding-inline: 22px; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
  .footer-meta { align-items: start; }
  .footer-main { grid-template-columns: 1fr; gap: 26px; width: min(100% - 28px, 760px); padding: 34px 0 28px; text-align: center; }
  .footer-intro { grid-column: auto; }
  .footer-intro img { width: min(328px, 86vw); height: auto; margin-inline: auto; }
  .footer-intro p { margin: 14px 0 14px; font-size: 34px; text-align: center; }
  .footer-column { align-items: center; }
  .footer-column > p { text-align: center; }
  .footer-contact a { text-align: center; }
  .footer-address { grid-column: auto; }
  .footer-address-trigger { text-align: center; }
  .footer-meta-inner { grid-template-columns: 1fr; gap: 10px; width: min(100% - 28px, 760px); padding: 18px 0; justify-items: center; text-align: center; }
  .footer-legal-links { justify-content: center; }
  .footer-developer { justify-self: center; text-align: center; }
  .chatbot-launcher { bottom: 108px; }
  .chatbot-panel { bottom: 182px; }
  .admin-grid, .form-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .packages-showcase .packages-heading > div,
  .packages-showcase .packages-heading > a,
  .packages-showcase .package-carousel-shell,
  .packages-showcase .packages-control-row {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

/* Homepage loading and entrance sequence */
body.is-loading { overflow: hidden; }
.site-preloader {
  --progress: 0;
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  color: #1769aa;
  background: #fff;
  transition: opacity 700ms ease, visibility 700ms ease;
}
.site-preloader.is-complete { opacity: 0; visibility: hidden; }
.preloader-inner { width: min(440px, calc(100% - 54px)); text-align: center; }
.preloader-plane {
  width: min(340px, 82vw);
  margin: 0 auto 44px;
  transform: translateX(calc((var(--progress) - 50) * .7px));
  transition: transform 80ms linear;
  animation: preloader-float 1.5s ease-in-out infinite;
}
.preloader-progress { height: 2px; overflow: hidden; background: #dbe7f1; }
.preloader-progress span { display: block; width: calc(var(--progress) * 1%); height: 100%; background: #1769aa; transition: width 80ms linear; }
.preloader-percent { display: block; margin-top: 18px; font: 500 14px/1 var(--sans); letter-spacing: .18em; }

.brand, .nav a, .header-address-trigger, .social-links a { opacity: 0; }
body.page-ready .brand { animation: logo-reveal 700ms 120ms cubic-bezier(.22,.8,.2,1) both; }
body.page-ready .nav a { animation: header-drop 560ms cubic-bezier(.22,.8,.2,1) both; }
body.page-ready .nav a:nth-child(1) { animation-delay: 380ms; }
body.page-ready .nav a:nth-child(2) { animation-delay: 510ms; }
body.page-ready .nav a:nth-child(3) { animation-delay: 640ms; }
body.page-ready .nav a:nth-child(4) { animation-delay: 770ms; }
body.page-ready .nav a:nth-child(5) { animation-delay: 900ms; }
body.page-ready .header-address-trigger { animation: header-drop 650ms 920ms cubic-bezier(.22,.8,.2,1) both; }
body.page-ready .social-links a { animation: social-enter 620ms cubic-bezier(.22,.8,.2,1) both; }
body.page-ready .social-links a:nth-child(1) { animation-delay: 1080ms; }
body.page-ready .social-links a:nth-child(2) { animation-delay: 1170ms; }
body.page-ready .social-links a:nth-child(3) { animation-delay: 1260ms; }
body.page-ready .social-links a:nth-child(4) { animation-delay: 1350ms; }
.fw-hero { opacity: 0; transform: translateY(80px); }
body.page-ready .fw-hero { animation: hero-section-up 1.55s 1.15s cubic-bezier(.16,.8,.2,1) both; }
.hero-slogan { bottom: 56%; font-family: var(--script); font-size: clamp(60px, 5.5vw, 88px); line-height: .92; text-transform: uppercase; }
.hero-slogan span { opacity: 0; }
body.page-ready .hero-slogan span { animation: slogan-word-fade 1.15s cubic-bezier(.22,.8,.2,1) both; }
body.page-ready .hero-slogan span:nth-child(1) { animation-delay: 1.9s; }
body.page-ready .hero-slogan span:nth-child(2) { animation-delay: 2.38s; }
body.page-ready .hero-slogan span:nth-child(3) { animation-delay: 2.86s; }
body.page-ready .hero-slogan span:nth-child(4) { animation-delay: 3.34s; }
.hero-plane { bottom: 12%; width: clamp(380px, 38vw, 600px); opacity: 0; animation: none; }
body.page-ready .hero-plane { animation: plane-arrive 1.25s 2.35s cubic-bezier(.16,.8,.2,1) both; }
body.page-ready .hero-plane img { animation: plane-hover 4.8s 3.55s ease-in-out infinite; }
.package-mosaic { inset: 6% 4% 8% 52%; opacity: 0; transform: translateY(46px) scale(.97); }
body.page-ready .package-mosaic { animation: mosaic-rise 1.1s 2.55s cubic-bezier(.16,.8,.2,1) both; }
/* Local package carousel */
.packages-showcase { padding: 145px 0 135px; overflow: hidden; background: #fff; }
.packages-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.packages-heading h2, .visa-copy h2, .client-story-heading h2, .final-contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .9;
}
.packages-heading h2 { max-width: none; font-size: clamp(26px, 5.6vw, 86px); white-space: nowrap; }
.packages-view-all, .service-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.packages-view-all span, .service-cta span { font-size: 14px; transition: transform 200ms ease; }
.packages-view-all:hover span, .service-cta:hover span { transform: translate(3px, -3px); }
.package-carousel-shell { position: relative; margin-top: 82px; }
.local-package-track {
  display: flex;
  gap: 20px;
  width: calc(100% - 128px);
  margin-inline: auto;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  outline: none;
}
.local-package-track::-webkit-scrollbar { display: none; }
.local-package-card {
  position: relative;
  flex: 0 0 clamp(250px, 25vw, 350px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  color: #fff;
  background: #173957;
  scroll-snap-align: start;
  cursor: pointer;
  opacity: 0;
  transform: translateY(72px);
  transition: opacity 850ms var(--package-delay, 0ms) ease, transform 980ms var(--package-delay, 0ms) cubic-bezier(.16,.8,.2,1), box-shadow 260ms ease;
}
.local-package-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,18,28,.03) 25%, rgba(7,18,28,.82)); }
.local-package-card img { width: 100%; height: 100%; object-fit: contain; background: #eaf0f5; transition: transform 900ms cubic-bezier(.2,.8,.2,1); }
.local-package-card:hover img { filter: saturate(1.08); transform: scale(.975); }
.local-package-card.is-package-visible { opacity: 1; transform: translateY(0); }
.local-package-card.is-package-visible:hover { transform: translateY(-7px); box-shadow: 0 22px 55px rgba(13,52,83,.24); }
.local-package-card:focus-visible { outline: 4px solid #168cff; outline-offset: 4px; }
.local-package-number { position: absolute; z-index: 2; top: 18px; right: 18px; font-size: 10px; letter-spacing: .16em; }
.local-package-copy { position: absolute; z-index: 2; right: 24px; bottom: 28px; left: 24px; }
.local-package-copy > span { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.local-package-copy h3 { margin: 10px 0 22px; font: 500 35px/1 var(--serif); }
.local-package-copy a { font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.package-arrow { position: absolute; z-index: 4; top: 50%; width: 48px; height: 48px; padding: 0; color: #fff; background: #1769aa; border: 0; border-radius: 50%; font-size: 20px; cursor: pointer; transform: translateY(-50%); transition: transform 200ms ease, background 200ms ease; }
.package-arrow:hover { background: #0d4f84; transform: translateY(-50%) scale(1.08); }
.package-arrow-prev { left: 20px; }
.package-arrow-next { right: 20px; }
.packages-control-row { display: flex; align-items: center; justify-content: space-between; margin-top: 44px; }
.package-count strong { color: #1769aa; font: 500 38px/1 var(--serif); }
.package-count span { color: var(--muted); font-size: 11px; letter-spacing: .12em; }

.packages-showcase .packages-heading > div,
.packages-showcase .packages-heading > a,
.packages-showcase .package-carousel-shell,
.packages-showcase .packages-control-row {
  opacity: 0;
  transform: translateY(34px);
}
.packages-showcase.is-revealed .packages-heading > div {
  animation: package-block-rise 900ms 80ms cubic-bezier(.16,.8,.2,1) both;
}
.packages-showcase.is-revealed .packages-heading > a {
  animation: package-block-rise 900ms 180ms cubic-bezier(.16,.8,.2,1) both;
}
.packages-showcase.is-revealed .package-carousel-shell {
  animation: package-block-rise 1.05s 280ms cubic-bezier(.16,.8,.2,1) both;
}
.packages-showcase.is-revealed .packages-control-row {
  animation: package-block-rise 820ms 440ms cubic-bezier(.16,.8,.2,1) both;
}

/* Services and testimonial */
.visa-section-label { margin-bottom: 34px; }
.visa-section-label h2 {
  margin: 0;
  color: var(--brand);
  font-family: var(--script);
  font-size: clamp(26px, 5.6vw, 86px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .9;
}
.visa-service { display: grid; grid-template-columns: 1.45fr .55fr; min-height: 720px; margin-bottom: 150px; border: 1px solid var(--line); }
.visa-gallery { display: grid; grid-template-columns: repeat(3, 1fr); align-content: center; gap: 7px; padding: 7px; background: #eaf0f5; }
.visa-gallery-item { margin: 0; overflow: hidden; background: #fff; }
.visa-gallery-item img { display: block; width: 100%; aspect-ratio: 940 / 788; object-fit: contain; transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 500ms ease; }
.visa-gallery-item:hover img { filter: saturate(1.12); }
.visa-copy { display: flex; flex-direction: column; justify-content: center; padding: 75px; }
.visa-copy h2 { margin: 0; color: #123c61; font-size: clamp(38px, 3.7vw, 58px); font-weight: 400; line-height: 1.05; }
.visa-copy h2 span { display: block; color: #1769aa; }
.visa-copy > p:not(.kicker) { max-width: 360px; margin: 36px 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.visa-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.service-cta { align-self: flex-start; padding: 0 0 8px; color: #1769aa; background: transparent; border: 0; border-bottom: 1px solid currentColor; font: 600 10px/1.2 var(--sans); letter-spacing: .13em; text-transform: uppercase; cursor: pointer; }
.client-story { padding: 145px 0; border-top: 1px solid var(--line); }
.client-story-heading { display: flex; align-items: end; justify-content: space-between; }
.client-story-heading h2 { font-size: clamp(70px, 8vw, 118px); }
.client-story-grid { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 650px; margin-top: 72px; }
.client-portrait { background: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1200&q=86") center / cover; }
.client-story blockquote { display: flex; flex-direction: column; justify-content: center; margin: 0; padding: 80px; color: #fff; background: #1769aa; }
.client-stars { color: #f7c94b; font-size: 19px; letter-spacing: .2em; }
.client-story blockquote > p { margin: 42px 0 60px; font: 400 clamp(36px, 4vw, 58px)/1.05 var(--serif); }
.client-story blockquote footer { display: flex; flex-direction: column; gap: 8px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.28); }
.client-story blockquote footer strong { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.client-story blockquote footer span { color: rgba(255,255,255,.7); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.final-contact { padding: 150px 0; text-align: center; border-top: 1px solid var(--line); }
.final-contact h2 { font-size: clamp(84px, 10vw, 150px); }
.final-contact a { display: inline-block; margin-top: 45px; color: #1769aa; border-bottom: 1px solid currentColor; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }

/* Footer and chatbot */
.footer-meta-strip { color: #fff; background: var(--brand); }
.footer-meta-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  width: min(1120px, calc(100% - 76px));
  margin-inline: auto;
  padding: 19px 0;
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.footer-meta-inner strong { font-weight: 600; }
.footer-meta-inner a { color: #fff; text-decoration: none; }
.footer-developer { justify-self: end; text-align: right; }
.site-footer { display: block; width: 100%; padding: 0; overflow: hidden; border-top: 1px solid rgba(30, 27, 24, 0.08); }
.footer-main { display: grid; grid-template-columns: 1.05fr .7fr 1.1fr .95fr; gap: 48px; width: min(1120px, calc(100% - 76px)); margin-inline: auto; padding: 38px 0 30px; }
.footer-intro img { width: 285px; height: 105px; object-fit: contain; object-position: left center; }
.footer-intro p { margin: 13px 0 16px; color: #353a7c; font: 400 30px/1 var(--script); text-align: center; }
.footer-intro > a, .footer-column a { width: fit-content; font-size: 11px; letter-spacing: .1em; line-height: 1.35; text-transform: uppercase; }
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-column > p { margin: 0 0 8px; color: #353a7c; font-size: 14px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-column a, .footer-intro > a { color: var(--muted); transition: color 180ms ease, transform 180ms ease; }
.footer-column a:hover, .footer-intro > a:hover { color: var(--brand); transform: translateX(4px); }
.footer-contact a { color: #353a7c; font-size: clamp(15px, 1.2vw, 18px); font-weight: 650; letter-spacing: .01em; line-height: 1.45; text-transform: none; }
.footer-contact a:hover { color: #0d4f84; }
.footer-contact a[href^="mailto:"] { margin-top: 2px; font-weight: 700; }
.footer-address-trigger {
  width: 100%;
  padding: 0 !important;
  color: #353a7c !important;
  background: transparent !important;
  border: 0 !important;
  font: 600 clamp(15px, 1.2vw, 18px)/1.55 var(--sans);
  text-align: left;
  text-transform: none;
  cursor: pointer;
}
.footer-address-trigger:hover,
.footer-address-trigger:focus-visible { color: #0d4f84 !important; background: transparent !important; }
.footer-address-trigger small { display: block; margin-top: 8px; color: currentColor; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-contact-link { margin-top: 4px; padding-bottom: 5px; color: var(--brand) !important; border-bottom: 1px solid currentColor; font-weight: 700; }
.footer-map-modal { position: fixed; z-index: 960; inset: 0; display: grid; place-items: center; padding: 26px; }
.footer-map-modal[hidden] { display: none; }
.footer-map-modal-backdrop { position: absolute; inset: 0; background: rgba(7,18,28,.82); backdrop-filter: blur(8px); animation: modal-fade 260ms ease both; }
.footer-map-modal-card { position: relative; z-index: 2; width: min(960px, 96vw); max-height: 92vh; padding: 34px; overflow-y: auto; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.38); animation: modal-rise 520ms cubic-bezier(.16,.8,.2,1) both; }
.footer-map-modal-heading { padding-right: 62px; }
.footer-map-modal-heading .kicker { margin-bottom: 8px; }
.footer-map-modal-heading h2 { margin: 0 0 24px; color: #123c61; font-size: clamp(38px, 5vw, 66px); font-weight: 400; line-height: .95; }
.footer-map-frame { display: block; width: 100%; height: clamp(330px, 56vh, 540px); border: 0; background: #eaf0f5; }
.footer-map-modal-close { position: absolute; z-index: 3; top: 18px; right: 18px; width: 42px; height: 42px; padding: 0; color: #1769aa !important; background: #fff !important; border: 1px solid var(--line) !important; border-radius: 50%; font-size: 29px; cursor: pointer; }
.footer-map-external { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; color: #1769aa; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.chatbot-launcher {
  position: fixed;
  z-index: 90;
  top: 50%;
  right: 0;
  bottom: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 62px;
  padding: 18px 10px 16px;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 12px 35px rgba(53,58,124,.3);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.chatbot-launcher:hover { transform: translateY(-50%) translateX(-4px); box-shadow: 0 18px 42px rgba(53,58,124,.4); }
.chatbot-launcher img { width: 30px; height: 30px; object-fit: contain; }
.chatbot-launcher span {
  font: 600 10px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.chatbot-panel { position: fixed; z-index: 91; right: 84px; bottom: 22px; width: min(390px, calc(100% - 44px)); padding: 0; overflow: hidden; color: var(--ink); background: #fff; border: 1px solid var(--line); box-shadow: 0 20px 65px rgba(30,27,24,.2); }
.chatbot-panel[hidden] { display: none; }
.chatbot-panel strong { color: var(--brand); font-family: var(--serif); font-size: 28px; }
.chatbot-panel p { margin: 14px 0 0; color: var(--muted); line-height: 1.7; }
.chatbot-close { position: absolute; top: 10px; right: 12px; width: 30px; height: 30px; padding: 0; background: transparent; border: 0; font-size: 25px; cursor: pointer; }
[data-reveal] { opacity: 0; transform: translateY(65px); transition: opacity 900ms ease, transform 1.1s cubic-bezier(.16,.8,.2,1); }
[data-reveal].is-revealed, [data-reveal]:target { opacity: 1; transform: translateY(0); }
[data-reveal][data-stagger] { opacity: 1; transform: none; }
[data-reveal][data-stagger]:not(.is-revealed):not(:target) [data-stagger-item] { opacity: 0; transform: translateY(38px); }
[data-reveal].is-revealed [data-stagger-item], [data-reveal]:target [data-stagger-item] { animation: stagger-item-in 900ms cubic-bezier(.16,.8,.2,1) backwards; animation-delay: calc(var(--stagger-index, 0) * 105ms); }
.about-editorial [data-reveal].is-revealed [data-stagger-item],
.about-editorial [data-reveal]:target [data-stagger-item] {
  animation-name: about-stagger-in;
  animation-duration: 1400ms;
  animation-delay: calc(var(--stagger-index, 0) * 240ms);
}
.about-editorial .about-hero.is-revealed [data-stagger-item],
.about-editorial .about-hero:target [data-stagger-item] {
  animation-delay: calc(420ms + (var(--stagger-index, 0) * 240ms));
}
body.is-loading .about-editorial [data-reveal].is-revealed [data-stagger-item] { animation-play-state: paused; }
.services-editorial [data-reveal].is-revealed [data-stagger-item],
.services-editorial [data-reveal]:target [data-stagger-item] {
  animation-name: about-stagger-in;
  animation-duration: 1300ms;
  animation-delay: calc(var(--stagger-index, 0) * 175ms);
}
.services-editorial .services-hero.is-revealed [data-stagger-item],
.services-editorial .services-hero:target [data-stagger-item] {
  animation-delay: calc(380ms + (var(--stagger-index, 0) * 220ms));
}
body.is-loading .services-editorial [data-reveal].is-revealed [data-stagger-item] { animation-play-state: paused; }
.contact-page [data-reveal].is-revealed [data-stagger-item],
.contact-page [data-reveal]:target [data-stagger-item] {
  animation-name: about-stagger-in;
  animation-duration: 1300ms;
  animation-delay: calc(var(--stagger-index, 0) * 180ms);
}
.contact-page .contact-hero.is-revealed [data-stagger-item],
.contact-page .contact-hero:target [data-stagger-item] {
  animation-delay: calc(380ms + (var(--stagger-index, 0) * 220ms));
}
body.is-loading .contact-page [data-reveal].is-revealed [data-stagger-item] { animation-play-state: paused; }
.contact-office.is-revealed [data-stagger-item],
.contact-office:target [data-stagger-item] {
  animation-duration: 1100ms;
  animation-delay: calc(var(--stagger-index, 0) * 180ms);
}
.visa-service.is-revealed [data-stagger-item],
.visa-service:target [data-stagger-item] {
  animation: visa-assemble-in 1450ms cubic-bezier(.16,.8,.2,1) backwards;
  animation-delay: calc(var(--stagger-index, 0) * 145ms);
}

@keyframes preloader-float { 0%, 100% { margin-top: 0; margin-bottom: 44px; } 50% { margin-top: -12px; margin-bottom: 56px; } }
@keyframes logo-reveal { from { opacity: 0; transform: scale(.86); } to { opacity: 1; transform: scale(1); } }
@keyframes header-drop { from { opacity: 0; transform: translateY(-25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-section-up { from { opacity: 0; transform: translateY(80px); } to { opacity: 1; transform: translateY(0); } }
@keyframes visa-assemble-in {
  from { opacity: 0; transform: translateY(48px) scale(.94); }
  65% { opacity: 1; }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes consent-modal-rise { from { opacity: 0; transform: translateY(70px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes consent-modal-dismiss { from { opacity: 1; transform: translateY(0) scale(1); } to { opacity: 0; transform: translateY(90px) scale(.97); } }
@keyframes slogan-line-down { from { opacity: 0; transform: translateY(-38px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slogan-word-fade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mosaic-rise { from { opacity: 0; transform: translateY(46px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes package-block-rise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }
@keyframes stagger-item-in { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: translateY(0); } }
@keyframes about-stagger-in { from { opacity: 0; transform: translateY(54px); } to { opacity: 1; transform: translateY(0); } }
@keyframes travel-glow {
  0%, 100% { text-shadow: 0 12px 28px rgba(3,10,18,.72), 0 0 8px #7c3aed, 0 0 22px #7c3aed, 0 0 48px rgba(124,58,237,.82); }
  20% { text-shadow: 0 12px 28px rgba(3,10,18,.72), 0 0 8px #168cff, 0 0 22px #168cff, 0 0 48px rgba(22,140,255,.82); }
  40% { text-shadow: 0 12px 28px rgba(3,10,18,.72), 0 0 8px #20b86a, 0 0 22px #20b86a, 0 0 48px rgba(32,184,106,.82); }
  60% { text-shadow: 0 12px 28px rgba(3,10,18,.72), 0 0 8px #f23838, 0 0 22px #f23838, 0 0 48px rgba(242,56,56,.82); }
  80% { text-shadow: 0 12px 28px rgba(3,10,18,.72), 0 0 8px #ff8412, 0 0 22px #ff8412, 0 0 48px rgba(255,132,18,.82); }
}

@media (max-width: 900px) {
  .hero-slogan { left: 18px; bottom: 34%; width: calc(100% - 36px); font-size: clamp(44px, 14vw, 56px); translate: 0 35%; }
  .hero-plane { left: 6px; bottom: 9%; width: 285px; }
  .package-mosaic { inset: 14px 12px 325px; }
  .hero-video-frame {
    inset: 0;
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 0;
    transform: none;
  }
  .hero-sound-toggle { left: 18px; right: auto; bottom: 12px; padding: 9px 11px; }
  body.page-ready .fw-hero { animation-duration: 1.9s; animation-delay: 1.25s; }
  body.page-ready .hero-slogan span { animation-duration: 1.65s; }
  body.page-ready .hero-slogan span:nth-child(1) { animation-delay: 2.25s; }
  body.page-ready .hero-slogan span:nth-child(2) { animation-delay: 2.8s; }
  body.page-ready .hero-slogan span:nth-child(3) { animation-delay: 3.35s; }
  body.page-ready .hero-slogan span:nth-child(4) { animation-delay: 3.9s; }
  body.page-ready .package-mosaic { animation-duration: 1.55s; animation-delay: 2.6s; }
  body.page-ready .hero-plane { animation-duration: 1.7s; animation-delay: 3.15s; }
  body.page-ready .hero-plane img { animation-delay: 4.85s; }
  .hero-sound-consent-card { padding: 36px 24px 28px; }
  .packages-showcase { padding: 95px 0 90px; }
  .packages-heading { display: block; }
  .packages-heading h2 { font-size: clamp(20px, 5.6vw, 52px); }
  .packages-heading .packages-view-all { margin-top: 32px; }
  .package-carousel-shell { margin-top: 55px; }
  .local-package-track { width: calc(100% - 36px); gap: 14px; }
  .local-package-card { flex-basis: 82vw; }
  .package-arrow { display: none; }
  .packages-view-all-bottom { display: none; }
  .visa-service { grid-template-columns: 1fr; margin-bottom: 95px; }
  .visa-gallery { grid-template-columns: repeat(2, 1fr); }
  .visa-copy { padding: 55px 28px 65px; }
  .visa-copy h2 { font-size: clamp(38px, 11vw, 52px); }
  .client-story { padding: 90px 0; }
  .client-story-heading { display: block; }
  .client-story-heading h2 { font-size: 67px; }
  .client-story-grid { grid-template-columns: 1fr; min-height: 0; margin-top: 48px; }
  .client-portrait { min-height: 520px; }
  .client-story blockquote { padding: 50px 28px; }
  .client-story blockquote > p { font-size: 37px; }
  .final-contact { padding: 100px 0; }
  .final-contact h2 { font-size: 70px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 34px 24px; width: min(100% - 36px, 760px); padding: 38px 0 30px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-address { grid-column: 1 / -1; }
  .footer-address-trigger { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer-meta-inner { grid-template-columns: 1fr; gap: 10px; width: min(100% - 36px, 760px); padding: 18px 0; }
  .footer-legal-links { justify-content: center; }
  .footer-developer { width: 100%; justify-self: center; text-align: center; }
  .chatbot-launcher { right: 14px; bottom: 14px; }
  .chatbot-launcher span { display: none; }
  .chatbot-launcher { width: 64px; height: 64px; padding: 8px; }
  .chatbot-launcher img { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader { display: none; }
  body.is-loading { overflow: auto; }
  .brand, .nav a, .header-address-trigger, .social-links a, .fw-hero, .hero-slogan span, .hero-plane, .package-mosaic, [data-reveal], [data-stagger-item] { opacity: 1 !important; transform: none !important; transition-delay: 0ms !important; }
  .hero-slogan { animation: none; text-shadow: 0 0 12px rgba(22,140,255,.75), 0 0 36px rgba(22,140,255,.55); }
  .local-package-card { opacity: 1; transform: none; }
}

/* Shared brand typography and interactive polish */
.site-main h1, .site-main h2, .site-main h3, .package-modal h2, .packages-page h1, .packages-page h2, .content-page h1 { font-family: var(--script) !important; }
.social-links a { overflow: hidden; }
.social-links a::after { content: ""; position: absolute; inset: -2px; border: 1px solid currentColor; border-radius: inherit; opacity: 0; transform: scale(.55); transition: opacity 260ms ease, transform 320ms cubic-bezier(.22,.8,.2,1); }
.social-links a:hover { transform: translateY(-5px) rotate(7deg) scale(1.1); box-shadow: 0 9px 20px rgba(23,105,170,.22); }
.social-links a:hover::after { opacity: .5; transform: scale(1.3); }
.social-links svg { transition: transform 400ms cubic-bezier(.22,.8,.2,1); }
.social-links a:hover svg { transform: rotate(-14deg) scale(1.13); }
.package-card-cta { display: inline-flex; gap: 9px; align-items: center; font: 600 9px/1 var(--sans); letter-spacing: .13em; text-transform: uppercase; }
.package-card-cta b { font-size: 14px; font-weight: 400; transition: transform 180ms ease; }
.local-package-card:hover .package-card-cta b { transform: translate(3px, -3px); }
.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; }

/* Package preview modal */
body.modal-open { overflow: hidden; }
.package-modal { position: fixed; z-index: 950; inset: 0; display: grid; place-items: center; padding: 28px; }
.package-modal[hidden] { display: none; }
.package-modal-backdrop { position: absolute; inset: 0; background: rgba(7,18,28,.82); backdrop-filter: blur(8px); animation: modal-fade 260ms ease both; }
.package-modal-card { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(300px, .85fr) 1.15fr; width: min(1160px, 96vw); height: min(92vh, 800px); overflow: hidden; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.38); animation: modal-rise 520ms cubic-bezier(.16,.8,.2,1) both; }
.package-modal-media { display: flex; min-width: 0; min-height: 0; flex-direction: column; background: #eef3f7; border-right: 1px solid #d9e4ec; }
.package-zoom-controls { z-index: 3; display: flex; align-items: center; justify-content: center; gap: 9px; flex: 0 0 auto; padding: 10px; background: rgba(255,255,255,.94); border-bottom: 1px solid #d9e4ec; }
.package-zoom-controls button { min-width: 34px; height: 32px; padding: 0 10px; color: #1769aa; background: #fff; border: 1px solid #bdd0df; border-radius: 999px; font: 600 12px/1 var(--sans); cursor: pointer; }
.package-zoom-controls output { min-width: 46px; color: #37566f; font: 600 10px/1 var(--sans); text-align: center; }
.package-modal-image-wrap { min-width: 0; min-height: 0; flex: 1; overflow: auto; overscroll-behavior: contain; background: #eef3f7; scrollbar-color: #1769aa #dce7ef; }
.package-modal-image { display: block; width: 85%; max-width: none; height: auto; margin: 0 auto; object-fit: contain; background: #eef3f7; }
.package-modal-copy { display: flex; flex-direction: column; justify-content: center; padding: 58px 60px 45px; overflow-y: auto; }
.package-modal-region { color: #1769aa; font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.package-modal-copy h2 { margin: 12px 0 14px; color: #123c61; font-size: clamp(32px, 3.5vw, 52px); font-weight: 400; line-height: .98; }
.package-modal-map { position: relative; flex: 0 0 auto; height: 245px; margin-top: 16px; border: 1px solid #d8e3eb; border-radius: 14px; box-shadow: 0 14px 32px rgba(35,52,73,.13); }
.package-modal-map-frame { display: block; width: 100%; height: 100%; border: 0; border-radius: inherit; }
.package-inquiry-form { margin-top: 20px; }
.package-inquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.package-inquiry-grid label { display: grid; gap: 6px; color: #37566f; font: 600 9px/1.2 var(--sans); letter-spacing: .1em; text-transform: uppercase; }
.package-inquiry-grid input, .package-inquiry-grid select { width: 100%; min-width: 0; padding: 12px 13px; color: var(--ink); background: #f7fafc; border: 1px solid #d8e3eb; border-radius: 7px; font: 500 14px/1.2 var(--sans); outline: none; text-transform: none; }
.package-inquiry-grid input:focus, .package-inquiry-grid select:focus { border-color: #1769aa; box-shadow: 0 0 0 3px rgba(23,105,170,.12); }
.visa-country-field { grid-column: 1 / -1; }
.package-inquiry-form button { margin-top: 16px; padding: 14px 23px; color: #fff; background: #1769aa; border: 0; border-radius: 999px; font: 600 10px/1 var(--sans); letter-spacing: .13em; text-transform: uppercase; cursor: pointer; transition: transform 180ms ease, background 180ms ease; }
.package-inquiry-form button:hover { background: #0d4f84; transform: translateY(-2px); }
.package-inquiry-form button:disabled { cursor: wait; opacity: .65; }
.package-inquiry-status { min-height: 20px; margin: 12px 0 0; font: 600 12px/1.5 var(--sans); }
.package-inquiry-status.is-success { color: #14834b; }
.package-inquiry-status.is-error { color: #bd2929; }
.inquiry-honeypot { position: absolute; left: -10000px; }
.package-modal-close { position: absolute; z-index: 5; top: 14px; right: 16px; width: 42px; height: 42px; padding: 0; color: #1769aa; background: #fff; border: 1px solid var(--line); border-radius: 50%; font-size: 29px; cursor: pointer; }

/* Visa assistance modal */
.visa-modal { position: fixed; z-index: 955; inset: 0; display: grid; place-items: center; padding: 24px; }
.visa-modal[hidden] { display: none; }
.visa-modal-backdrop { position: absolute; inset: 0; background: rgba(7,18,28,.82); backdrop-filter: blur(8px); animation: modal-fade 260ms ease both; }
.visa-modal-card { position: relative; z-index: 2; width: min(680px, 94vw); max-height: 92vh; padding: 58px 64px 48px; overflow-y: auto; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.38); animation: modal-rise 520ms cubic-bezier(.16,.8,.2,1) both; }
.visa-modal-card > .kicker { margin: 0 0 10px; }
.visa-modal-card h2 { margin: 0; color: #1769aa; font: 400 clamp(60px, 7vw, 92px)/.95 var(--script); }
.visa-modal-card > p:not(.kicker) { margin: 18px 0 0; color: var(--muted); }
.visa-modal-plane { display: block; width: min(310px, 72%); margin: 12px auto 0; filter: drop-shadow(0 12px 12px rgba(23,105,170,.22)); animation: modal-plane-fly 3.4s ease-in-out infinite; }
.visa-modal-close { position: absolute; z-index: 3; top: 14px; right: 16px; width: 42px; height: 42px; padding: 0; color: #1769aa; background: #fff; border: 1px solid var(--line); border-radius: 50%; font-size: 29px; cursor: pointer; }

/* Service inquiry modal */
.service-modal { position: fixed; z-index: 954; inset: 0; display: grid; place-items: center; padding: 24px; }
.service-modal[hidden] { display: none; }
.service-modal-backdrop { position: absolute; inset: 0; background: rgba(7,18,28,.82); backdrop-filter: blur(8px); animation: modal-fade 260ms ease both; }
.service-modal-card { position: relative; z-index: 2; width: min(620px, 94vw); max-height: 92vh; padding: 48px 56px 44px; overflow-y: auto; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.34); animation: modal-rise 520ms cubic-bezier(.16,.8,.2,1) both; }
.service-modal-card > .kicker { margin: 0 0 10px; }
.service-modal-card h2 { margin: 0; color: #123c61; font-size: clamp(52px, 6vw, 82px); line-height: .95; }
.service-modal-intro { margin: 16px 0 0; color: var(--muted); line-height: 1.75; }
.service-modal-close { position: absolute; z-index: 3; top: 14px; right: 16px; width: 42px; height: 42px; padding: 0; color: #1769aa; background: #fff; border: 1px solid var(--line); border-radius: 50%; font-size: 29px; cursor: pointer; }

/* Chat and scroll controls */
.chatbot-launcher {
  top: 50%;
  right: 0;
  bottom: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 62px;
  padding: 18px 10px 16px;
  border-radius: 20px 0 0 20px;
  transform: translateY(-50%);
}
.chatbot-launcher:hover { transform: translateY(-50%) translateX(-4px); }
.chatbot-launcher img { width: 30px; height: 30px; object-fit: contain; }
.chatbot-launcher span {
  font: 600 10px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.chatbot-panel { right: 84px; bottom: 22px; width: min(390px, calc(100% - 44px)); padding: 0; overflow: hidden; }
.chatbot-panel:not([hidden]) { animation: chatbot-panel-slide-in 480ms cubic-bezier(.16,.8,.2,1) both; }
body:not(.page-ready) .chatbot-launcher { opacity: 0; transform: translateY(-50%) translateX(110%); }
body.page-ready .chatbot-launcher {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  transition: opacity 480ms ease, transform 620ms cubic-bezier(.16,.8,.2,1), box-shadow 200ms ease;
}
body.page-ready .chatbot-launcher:hover { transform: translateY(-50%) translateX(-4px); }
.chatbot-panel > strong { display: block; padding: 23px 52px 20px 22px; color: #fff; background: var(--brand); }
.chatbot-messages { display: flex; flex-direction: column; gap: 10px; max-height: 230px; padding: 20px; overflow-y: auto; background: #f5f9fc; }
.chat-message { max-width: 85%; margin: 0; padding: 11px 14px; border-radius: 16px; font-size: 13px; line-height: 1.55; }
.chat-message-assistant { align-self: flex-start; color: var(--ink); background: #fff; border-bottom-left-radius: 4px; }
.chat-message-user { align-self: flex-end; color: #fff; background: var(--brand); border-bottom-right-radius: 4px; }
.chat-message.is-loading { opacity: .62; }
.chatbot-contact-card { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; padding: 13px 18px 14px; color: #555b75; background: #eef0f8; border-top: 1px solid rgba(53,58,124,.14); }
.chatbot-contact-label { grid-column: 1 / -1; margin-bottom: 2px; color: var(--brand); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.chatbot-contact-card a { font-size: 9px; line-height: 1.35; transition: color 180ms ease; }
.chatbot-contact-card a:hover { color: var(--brand); }
.chatbot-contact-email { grid-column: 1 / -1; color: var(--brand); font-weight: 700; }
.chatbot-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 14px; background: #fff; border-top: 1px solid var(--line); }
.chatbot-form input { min-width: 0; border-radius: 999px; }
.chatbot-form button { padding: 0 18px; color: #fff; background: var(--brand); border: 0; border-radius: 999px; font: 600 9px var(--sans); letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.chatbot-close { z-index: 3; color: #fff; }
.scroll-top-button { position: fixed; z-index: 89; right: 29px; bottom: calc(22px + var(--footer-overlap, 0px)); width: 52px; height: 52px; padding: 0; color: #1769aa; background: #fff; border: 1px solid #1769aa; border-radius: 50%; box-shadow: 0 10px 30px rgba(23,105,170,.18); font-size: 22px; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(14px); transition: bottom 220ms ease, opacity 220ms ease, transform 220ms ease, color 180ms ease, background 180ms ease; }
.scroll-top-button.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top-button:hover { color: #fff; background: #1769aa; transform: translateY(-4px); }
/* Packages and custom pages */
.packages-page { padding: 120px 0 150px; }
.packages-page-header { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 70px; }
.packages-page-header.is-revealed [data-stagger-item], .packages-page-header:target [data-stagger-item] { animation-duration: 1250ms; animation-delay: calc(650ms + (var(--stagger-index, 0) * 240ms)); }
body.is-loading .packages-page-header.is-revealed [data-stagger-item] { animation-play-state: paused; }
.packages-page h1 { max-width: none; margin: 0; color: #123c61; font-size: clamp(26px, 5.6vw, 86px); font-weight: 400; line-height: .9; white-space: nowrap; }
.packages-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.packages-page-grid .local-package-card { aspect-ratio: 2 / 3; transition: opacity 1150ms var(--package-delay, 0ms) ease, transform 1350ms var(--package-delay, 0ms) cubic-bezier(.16,.8,.2,1), box-shadow 260ms ease; }
.international-tours { margin-top: 145px; padding-top: 90px; border-top: 1px solid var(--line); }
.international-tours-header { display: grid; grid-template-columns: 1fr .7fr; gap: 20px 80px; align-items: end; margin-bottom: 28px; }
.international-tours-header .kicker { grid-column: 1 / -1; margin: 0; }
.international-tours-header h2 { margin: 0; color: #123c61; font: 400 clamp(64px, 7vw, 108px)/.86 var(--script); letter-spacing: -.035em; }
.international-tours-header > p:last-child { max-width: 440px; margin: 0 0 8px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.international-collection-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin: 0 0 25px; padding-bottom: 17px; border-bottom: 1px solid rgba(18,60,97,.15); }
.international-collection-heading > span { color: #123c61; font: 500 clamp(25px, 3vw, 38px)/1 var(--serif); }
.international-collection-heading p { margin: 0; color: var(--muted); font-size: 12px; letter-spacing: .04em; }
.international-packages-heading { margin-top: 0; }
.international-packages-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 38px 22px; }
.international-package-card { position: relative; min-width: 0; cursor: pointer; opacity: 0; transform: translateY(55px); transition: opacity 1050ms var(--international-delay, 0ms) ease, transform 1200ms var(--international-delay, 0ms) cubic-bezier(.16,.8,.2,1); }
.international-package-card.is-international-visible { opacity: 1; transform: translateY(0); }
.international-package-card.is-international-visible:hover { transform: translateY(-7px); }
.international-package-card:focus-visible { outline: 4px solid #168cff; outline-offset: 4px; }
.international-package-image { position: relative; overflow: hidden; }
.international-package-image img { display: block; width: 100%; height: auto; transition: transform 700ms cubic-bezier(.16,.8,.2,1); }
.international-package-card:hover .international-package-image img { transform: scale(1.025); }
.content-page { min-height: 70vh; padding: 130px 0; }
.content-page h1 { margin: 0 0 50px; color: #123c61; font-size: clamp(72px, 9vw, 130px); font-weight: 400; line-height: .9; }
.content-page-body { max-width: 820px; color: var(--muted); font-size: 17px; line-height: 1.9; }
.legal-page { min-height: 75vh; padding: 115px 0 140px; }
.legal-page-header { max-width: 900px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }
.legal-page h1 { margin: 12px 0 28px; color: #123c61; font-size: clamp(62px, 8vw, 118px); font-weight: 400; letter-spacing: -.045em; line-height: .86; }
.legal-page-updated { margin: 0; color: #1769aa; font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.legal-page-content { display: grid; gap: 45px; max-width: 850px; padding-top: 65px; }
.legal-page-content section { padding-bottom: 40px; border-bottom: 1px solid rgba(18,60,97,.12); }
.legal-page-content h2 { margin: 0 0 18px; color: #123c61; font: 500 clamp(34px, 4vw, 52px)/1 var(--serif); }
.legal-page-content p, .legal-page-content li { color: var(--muted); font-size: 16px; line-height: 1.85; }
.legal-page-content ul { margin: 18px 0 0; padding-left: 22px; }
.legal-page-content a { color: #1769aa; text-decoration: underline; text-underline-offset: 3px; }
.footer-legal-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal-links a { color: #fff; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-rise { from { opacity: 0; transform: translateY(55px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes modal-plane-fly { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes chatbot-panel-slide-in { from { opacity: 0; transform: translateX(115%); } to { opacity: 1; transform: translateX(0); } }

@media (max-width: 900px) {
  .package-modal { padding: 12px; }
  .package-modal-card { grid-template-columns: 1fr; grid-template-rows: minmax(250px, 43vh) minmax(0, 1fr); width: 100%; height: 95vh; max-height: 95vh; overflow: hidden; }
  .package-modal-media { border-right: 0; border-bottom: 1px solid #d9e4ec; }
  .package-modal-copy { justify-content: flex-start; padding: 38px 22px 32px; overflow-y: auto; }
  .package-modal-copy h2 { padding-right: 35px; font-size: clamp(30px, 9.5vw, 42px); }
  .package-inquiry-grid { grid-template-columns: 1fr; }
  .package-modal-map { height: 220px; margin-top: 18px; }
  .visa-modal { padding: 12px; }
  .visa-modal-card { width: 100%; max-height: 95vh; padding: 52px 22px 34px; }
  .visa-modal-card h2 { padding-right: 35px; font-size: clamp(56px, 18vw, 78px); }
  .visa-modal-plane { width: min(250px, 78%); }
  .service-modal { padding: 12px; }
  .service-modal-card { width: 100%; max-height: 95vh; padding: 44px 22px 32px; }
  .service-modal-card h2 { font-size: clamp(42px, 12vw, 62px); }
  .chatbot-launcher { bottom: 86px; }
  .chatbot-panel { right: 12px; bottom: 157px; width: calc(100% - 24px); }
  .scroll-top-button { right: 20px; bottom: calc(16px + var(--footer-overlap, 0px)); }
  .packages-page { padding: 90px 0 110px; }
  .packages-page-header { display: block; }
  .packages-page h1 { font-size: clamp(20px, 5.6vw, 52px); }
  .packages-page-grid { grid-template-columns: 1fr; }
  .international-tours { margin-top: 100px; padding-top: 65px; }
  .international-tours-header { grid-template-columns: 1fr; gap: 18px; margin-bottom: 45px; }
  .international-tours-header .kicker { grid-column: auto; }
  .international-tours-header h2 { font-size: clamp(57px, 16vw, 80px); }
  .international-packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-page { padding: 80px 0 100px; }
  .legal-page-header { padding-bottom: 42px; }
  .legal-page h1 { font-size: clamp(54px, 17vw, 82px); }
  .legal-page-content { gap: 32px; padding-top: 45px; }
  .footer-legal-links { justify-content: center; }
}

@media (max-width: 560px) {
  .international-collection-heading { display: block; }
  .international-collection-heading p { margin-top: 9px; line-height: 1.55; }
  .international-packages-grid { grid-template-columns: 1fr; gap: 25px; }
}

/* About and Services editorial pages */
.editorial-page { overflow: hidden; padding: 105px 0 140px; background: #fff; }
.editorial-page h1, .editorial-page h2, .editorial-page h3 { color: #123c61; font-weight: 400; }
.editorial-hero { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; min-height: 680px; }
.editorial-hero-copy h1 { max-width: 650px; margin: 12px 0 35px; font-size: clamp(90px, 10vw, 150px); line-height: .82; }
.editorial-hero-copy > p:last-child { max-width: 520px; color: var(--muted); font-size: 17px; line-height: 1.9; }
.editorial-hero-collage { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, 260px); gap: 12px; transform: rotate(1deg); }
.editorial-hero-collage img { width: 100%; height: 100%; object-fit: cover; }
.editorial-hero-collage img:first-child { grid-row: 1 / 3; }
.editorial-hero-collage img:last-child { display: none; }
.services-editorial { padding-top: 0; }
.services-hero { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(55px, 7vw, 110px); align-items: start; min-height: 700px; padding-top: 28px; }
.services-hero-copy { min-width: 0; }
.services-hero h1 { max-width: 600px; margin: 15px 0 32px; font-size: clamp(64px, 7.5vw, 110px); letter-spacing: -.045em; line-height: .87; }
.services-hero-intro { max-width: 470px; margin: 0; padding-left: 54px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.services-hero-intro::before { display: block; width: 34px; height: 2px; margin: 0 0 -2px -54px; background: #1769aa; content: ""; transform: translateY(13px); }
.services-hero-visual { position: relative; min-width: 0; min-height: 660px; }
.services-hero-visual figure { margin: 0; overflow: hidden; background: #e8f0f4; }
.services-hero-primary { width: 76%; margin-left: auto !important; padding: 18px; }
.services-hero-primary img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.services-hero-secondary { position: absolute; bottom: 26px; left: 0; z-index: 2; width: 43%; padding: 8px; background: #fff !important; box-shadow: 0 24px 60px rgba(18,60,97,.2); transform: rotate(-2deg); }
.services-hero-secondary img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.services-hero-seal { position: absolute; z-index: 3; top: 54px; left: 3%; display: grid; width: 132px; height: 132px; padding: 24px; color: #fff; background: #1769aa; border: 7px solid #fff; border-radius: 50%; place-content: center; text-align: center; box-shadow: 0 15px 35px rgba(18,60,97,.22); }
.services-hero-seal strong { font: 400 45px/.75 var(--script); }
.services-hero-seal span { margin-top: 10px; font-size: 8px; font-weight: 700; letter-spacing: .13em; line-height: 1.35; text-transform: uppercase; }
.services-list-section, .other-services-section { padding-top: 130px; }
.editorial-section-heading { display: grid; grid-template-columns: .35fr 1fr; gap: 50px; align-items: end; margin-bottom: 70px; }
.editorial-section-heading h2 { max-width: 850px; margin: 0; font-size: clamp(68px, 7vw, 110px); line-height: .92; }
.services-list-section { position: relative; padding: 82px 46px 48px; overflow: hidden; color: #fff; background: linear-gradient(135deg, #0d3555 0%, #1769aa 100%); }
.services-list-section::before { position: absolute; top: -260px; right: -170px; width: 560px; height: 560px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 76px rgba(255,255,255,.03), 0 0 0 152px rgba(255,255,255,.02); content: ""; pointer-events: none; }
.services-list-section .services-section-heading, .services-numbered-grid { position: relative; z-index: 1; }
.services-section-heading { grid-template-columns: .3fr 1fr; margin-bottom: 56px; }
.services-section-heading .kicker { align-self: start; color: rgba(255,255,255,.68); }
.services-section-heading h2 { color: #fff; font-size: clamp(58px, 6.2vw, 94px); }
.services-section-heading > div > p { max-width: 560px; margin: 24px 0 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.75; }
.services-numbered-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.services-numbered-grid article { position: relative; display: flex; flex-direction: column; min-height: 260px; padding: 28px; overflow: hidden; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); transition: color 300ms ease, background 300ms ease, transform 300ms cubic-bezier(.16,.8,.2,1); cursor: pointer; }
.services-numbered-grid article::after { position: absolute; right: -46px; bottom: -46px; width: 112px; height: 112px; background: rgba(255,255,255,.06); border-radius: 50%; content: ""; transition: transform 350ms ease; }
.services-numbered-grid article:hover { color: #123c61; background: #fff; transform: translateY(-6px); }
.services-numbered-grid article:hover::after { background: rgba(23,105,170,.08); transform: scale(1.25); }
.services-numbered-grid article:focus-visible { outline: 4px solid #f3ba3f; outline-offset: -4px; }
.service-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.services-numbered-grid .service-card-meta span { color: rgba(255,255,255,.55); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.service-card-meta em { color: rgba(255,255,255,.62); font-size: 8px; font-style: normal; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.services-numbered-grid h3 { max-width: 330px; margin: 54px 0 28px; color: #fff; font-size: clamp(27px, 2.4vw, 38px); line-height: 1.04; }
.services-numbered-grid b { display: inline-flex; align-items: center; gap: 9px; margin-top: auto; color: rgba(255,255,255,.8); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.services-numbered-grid b i { font-size: 14px; font-style: normal; transition: transform 220ms ease; }
.services-numbered-grid article:hover h3, .services-numbered-grid article:hover b, .services-numbered-grid article:hover .service-card-meta span, .services-numbered-grid article:hover .service-card-meta em { color: #123c61; }
.services-numbered-grid article:hover b i { transform: translate(3px, -3px); }
.service-visa-feature { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 690px; margin-top: 130px; overflow: hidden; background: #123c61; }
.service-visa-feature > figure { display: grid; min-width: 0; margin: 0; padding: 24px; background: #e8f0f4; place-items: center; }
.service-visa-feature > figure img { display: block; width: 100%; max-height: 680px; object-fit: contain; }
.service-visa-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 68px clamp(42px, 6vw, 88px); overflow: hidden; }
.service-visa-copy::after { position: absolute; right: -145px; bottom: -180px; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.025); content: ""; }
.service-visa-feature .kicker { color: rgba(255,255,255,.6); }
.service-visa-feature h2 { position: relative; z-index: 1; margin: 12px 0 28px; color: #fff; font: 400 clamp(67px, 7.4vw, 108px)/.85 var(--script); }
.service-visa-feature p:not(.kicker) { position: relative; z-index: 1; max-width: 470px; margin: 0 0 28px; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.8; }
.visa-destination-list { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; max-width: 530px; margin-bottom: 32px; }
.visa-destination-list span { padding: 8px 11px; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.service-visa-copy .service-cta { position: relative; z-index: 1; align-self: flex-start; color: #123c61 !important; background: #fff !important; border-color: #fff !important; }
.service-visa-copy .service-cta:hover, .service-visa-copy .service-cta:focus-visible { color: #fff; background: #1769aa !important; border-color: #1769aa !important; }
.other-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.other-service-card { min-width: 0; overflow: hidden; background: #f3f7fa; cursor: pointer; transition: box-shadow 300ms ease, transform 300ms cubic-bezier(.16,.8,.2,1); }
.other-service-card:hover { box-shadow: 0 24px 55px rgba(18,60,97,.16); transform: translateY(-7px); }
.other-service-card:focus-visible { outline: 4px solid #168cff; outline-offset: 4px; }
.other-service-image { aspect-ratio: 16 / 10; overflow: hidden; background: #e5eef3; }
.other-services-grid img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.16,.8,.2,1); }
.other-service-card:first-child img { object-fit: contain; }
.other-service-card:hover img { transform: scale(1.025); }
.other-service-card > div:last-child { min-height: 250px; padding: 34px; }
.other-service-card > div:last-child > span { color: #1769aa; font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.other-services-grid h3 { margin: 14px 0 16px; font-size: clamp(34px, 3.5vw, 52px); line-height: 1; }
.other-services-grid p { max-width: 480px; margin: 0; color: var(--muted); line-height: 1.7; }
.other-services-grid b { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; color: #1769aa; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.other-services-grid b i { font-size: 14px; font-style: normal; }
.editorial-contact { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; margin-top: 150px; padding-block: 100px; border-block: 1px solid var(--line); }
.editorial-contact h2 { max-width: 700px; margin: 14px 0 0; font-size: clamp(74px, 8vw, 122px); line-height: .9; }
.editorial-contact-details { align-self: center; }
.editorial-contact-details p { margin: 0; padding: 20px 0; color: var(--muted); border-bottom: 1px solid var(--line); line-height: 1.7; }
.editorial-contact-details strong { display: block; margin-bottom: 7px; color: #1769aa; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.editorial-contact-address span { display: block; color: #123c61; font-size: clamp(18px, 1.9vw, 28px); line-height: 1.55; }
.service-hours { margin: 0; padding: 20px 0; border-bottom: 1px solid var(--line); }
.service-hours > strong { display: block; margin-bottom: 15px; color: #1769aa; font-size: clamp(18px, 2vw, 30px); letter-spacing: .12em; text-transform: uppercase; }
.service-hours p { display: flex; justify-content: space-between; gap: 24px; margin: 0; padding: 12px 0; border-bottom: 1px solid rgba(18,60,97,.1); color: #123c61; font-size: clamp(14px, 1.3vw, 19px); }
.service-hours p:last-child { border-bottom: 0; }
.service-hours span:last-child { color: #1769aa; font-weight: 600; }
.services-contact { grid-template-columns: 1.08fr .92fr; gap: 12px; padding: 18px; border: 0; background: linear-gradient(135deg, #0d3555 0%, #1769aa 100%); }
.services-contact-heading { display: flex; flex-direction: column; justify-content: center; min-height: 610px; padding: clamp(48px, 6vw, 82px); }
.services-contact .services-contact-heading .kicker { color: rgba(255,255,255,.62); }
.services-contact .services-contact-heading h2 { margin-top: 18px; color: #fff; font-size: clamp(66px, 7vw, 105px); }
.services-contact-heading > span { max-width: 380px; margin-top: 34px; color: rgba(255,255,255,.68); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.services-contact-details { align-self: stretch; padding: clamp(34px, 5vw, 62px); background: #fff; }

.about-editorial { padding-top: 0; }
.about-hero { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(55px, 7vw, 110px); align-items: start; padding-top: 28px; }
.about-hero-copy { min-width: 0; padding-top: 0; }
.about-hero h1 { max-width: 620px; margin: 15px 0 32px; font-size: clamp(60px, calc(7.4vw - 10px), 106px); letter-spacing: -.045em; line-height: .87; }
.about-hero-intro { max-width: 430px; margin: 0; padding-left: 54px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.about-hero-intro::before { display: block; width: 34px; height: 2px; margin: 0 0 -2px -54px; background: #1769aa; content: ""; transform: translateY(13px); }
.about-hero-visual { min-width: 0; }
.about-hero-visual figure { position: relative; margin: 0; padding: 28px; background: #f0f5f7; }
.about-hero-visual figure::before { position: absolute; top: -9px; right: -9px; width: 78px; height: 78px; border-top: 2px solid #1769aa; border-right: 2px solid #1769aa; content: ""; }
.about-hero-visual img { display: block; width: 100%; height: auto; object-fit: contain; }
.about-photo-note { position: absolute; z-index: 1; top: 54px; left: -42px; padding: 13px 16px; color: #fff; background: #1769aa; font-size: 9px; font-weight: 700; letter-spacing: .13em; line-height: 1.55; text-transform: uppercase; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; padding-top: 90px; }
.about-story-images { display: grid; gap: 14px; align-items: start; padding: 22px; background: #f0f5f7; }
.about-story-images img { display: block; width: 100%; height: auto; object-fit: contain; }
.about-story-copy h2 { margin: 12px 0 35px; font-size: clamp(53px, calc(6.5vw - 10px), 90px); line-height: .9; }
.about-story-copy > p:not(.kicker) { color: var(--muted); font-size: 16px; line-height: 1.85; }
.about-stats { position: relative; display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, .7fr) minmax(0, 1.6fr); gap: 12px; margin-top: 90px; padding: 18px; overflow: hidden; color: #fff; background: linear-gradient(135deg, #0d3555 0%, #1769aa 100%); }
.about-stats::before { position: absolute; top: -180px; left: -120px; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 58px rgba(255,255,255,.035), 0 0 0 116px rgba(255,255,255,.025); content: ""; }
.about-stats article, .about-stats-cta { position: relative; z-index: 1; min-height: 310px; margin: 0; padding: 42px; }
.about-stats article { display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.14); }
.about-stats article:nth-child(2) { background: rgba(255,255,255,.11); }
.about-stats article::after { position: absolute; right: 24px; bottom: 22px; width: 28px; height: 2px; background: rgba(255,255,255,.45); content: ""; }
.about-stats strong { display: block; color: #fff; font: 400 clamp(56px, 5.8vw, 84px)/.88 var(--script); }
.about-stats article:nth-child(2) strong { font-size: clamp(26px, calc(5.8vw - 30px), 54px); }
.about-stats article > span { display: block; max-width: 130px; margin-top: 24px; color: rgba(255,255,255,.82); font-size: 9px; font-weight: 700; letter-spacing: .14em; line-height: 1.55; text-transform: uppercase; }
.about-stats-cta { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; color: #123c61; background: #fff; }
.about-stats-cta > p { max-width: 530px; margin: 0; color: #123c61; font: 500 clamp(24px, 2.2vw, 34px)/1.18 var(--serif); letter-spacing: -.02em; }
.about-stats-cta .about-stats-button { display: inline-flex; align-items: center; gap: 13px; margin-top: 30px; padding: 16px 22px; color: #fff; background: #1769aa; border: 0; border-radius: 999px; box-shadow: 0 10px 24px rgba(23,105,170,.2); font-size: 9px; font-weight: 700; letter-spacing: .13em; line-height: 1; transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease; }
.about-stats-cta .about-stats-button:hover { color: #fff; background: #123c61; box-shadow: 0 14px 30px rgba(18,60,97,.25); transform: translateY(-3px); }
.about-stats-cta .about-stats-button:focus-visible { outline: 3px solid #f3ba3f; outline-offset: 4px; }
.about-stats-cta .about-stats-button span { margin: 0; color: inherit; font-size: 14px; letter-spacing: 0; }
.about-wide-image { margin-top: 24px; }
.about-wide-image img { display: block; width: 100%; max-height: 560px; object-fit: cover; }
.contact-office { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(65px, 9vw, 140px); margin-top: 150px; padding-block: 110px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-office::before { position: absolute; top: 0; left: 0; width: 150px; height: 5px; background: #1769aa; content: ""; }
.contact-office-copy { align-self: center; }
.contact-office h2 { max-width: 760px; margin: 12px 0 48px; font-size: clamp(67px, 7vw, 108px); letter-spacing: -.035em; line-height: .88; }
.contact-office-address { display: grid; grid-template-columns: 42px minmax(0, 540px); gap: 20px; align-items: start; }
.contact-office-address > span, .office-hours-heading > span { display: grid; width: 32px; height: 32px; place-items: center; color: #1769aa; border: 1px solid rgba(23,105,170,.4); border-radius: 50%; font-size: 9px; font-weight: 700; }
.contact-office-address p { margin: 1px 0 0; color: var(--muted); line-height: 1.8; }
.office-hours { align-self: center; padding: 44px; background: #f0f5f7; box-shadow: 22px 22px 0 #dceaf1; }
.office-hours-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 29px; }
.office-hours-heading > strong { color: #1769aa; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.office-hours p { display: grid; grid-template-columns: 1fr auto; gap: 20px; margin: 0; padding: 18px 0; border-bottom: 1px solid rgba(18,60,97,.14); font-size: 13px; }
.office-hours p:last-child { border-bottom: 0; }
.office-hours p > span { color: var(--muted); }
.office-hours p > strong { color: #123c61; font-weight: 600; }

@media (max-width: 900px) {
  .editorial-page { padding: 75px 0 90px; }
  .about-editorial { padding-top: 28px; }
  .services-editorial { padding-top: 28px; }
  .editorial-hero, .about-hero, .about-story, .services-hero, .service-visa-feature, .editorial-contact, .contact-office { grid-template-columns: 1fr; gap: 45px; }
  .editorial-hero-copy h1 { font-size: clamp(72px, 22vw, 100px); }
  .about-hero h1 { font-size: clamp(38px, calc(13vw - 10px), 56px); line-height: .92; }
  .services-hero { min-height: 0; padding-top: 0; }
  .services-hero h1 { font-size: clamp(48px, 14vw, 72px); }
  .services-hero-visual { width: min(100%, 680px); min-height: 640px; margin-left: auto; }
  .editorial-hero-collage { grid-template-rows: repeat(2, 180px); }
  .services-list-section { margin-top: 95px; padding: 64px 22px 22px; }
  .other-services-section { padding-top: 95px; }
  .about-story { padding-top: 70px; }
  .editorial-section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 45px; }
  .editorial-section-heading h2, .about-story-copy h2, .contact-office h2 { font-size: clamp(55px, 16vw, 78px); }
  .about-story-copy h2 { font-size: clamp(45px, calc(16vw - 10px), 68px); }
  .services-numbered-grid { grid-template-columns: 1fr 1fr; }
  .services-numbered-grid article { min-height: 230px; padding: 22px; }
  .services-numbered-grid h3 { margin-top: 42px; font-size: 29px; }
  .service-visa-feature { margin-top: 95px; }
  .service-visa-feature > figure { padding: 18px; }
  .service-visa-feature > div { padding: 52px 28px 58px; }
  .service-visa-feature h2 { font-size: 78px; }
  .editorial-contact-address span { font-size: 20px; }
  .service-hours > strong { font-size: 20px; }
  .service-hours p { font-size: 15px; }
  .other-services-grid { grid-template-columns: 1fr; }
  .other-service-card > div:last-child { min-height: 0; padding: 28px; }
  .other-services-grid h3 { font-size: 31px; }
  .editorial-contact { margin-top: 95px; padding-block: 70px; }
  .editorial-contact h2 { font-size: 75px; }
  .services-contact { gap: 10px; padding: 10px; }
  .services-contact-heading { min-height: 430px; padding: 50px 34px; }
  .services-contact-details { padding: 36px 30px; }
  .about-hero { padding-top: 0; }
  .about-hero-copy { padding-top: 0; }
  .about-hero-intro { max-width: 520px; }
  .about-hero-visual { width: min(100%, 660px); margin-left: auto; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 70px; padding: 12px; }
  .about-stats article, .about-stats-cta { min-height: 220px; padding: 34px 28px; }
  .about-stats-cta { grid-column: 1 / -1; min-height: 250px; }
  .contact-office { margin-top: 95px; padding-block: 80px; }
  .office-hours { padding: 34px 30px; box-shadow: 14px 14px 0 #dceaf1; }
}

@media (max-width: 560px) {
  .services-numbered-grid { grid-template-columns: 1fr; }
  .services-hero-intro { padding-left: 42px; font-size: 15px; }
  .services-hero-intro::before { width: 28px; margin-left: -42px; }
  .services-hero-visual { min-height: 500px; }
  .services-hero-primary { width: 84%; padding: 12px; }
  .services-hero-secondary { bottom: 12px; width: 44%; padding: 5px; }
  .services-hero-seal { top: 30px; left: 0; width: 102px; height: 102px; padding: 15px; border-width: 5px; }
  .services-hero-seal strong { font-size: 34px; }
  .services-hero-seal span { font-size: 7px; }
  .services-list-section { padding: 52px 14px 14px; }
  .services-section-heading { margin-bottom: 35px; }
  .services-section-heading h2 { font-size: clamp(47px, 14vw, 62px); }
  .services-numbered-grid article { min-height: 205px; }
  .service-card-meta em { font-size: 7px; }
  .service-visa-feature > figure { padding: 10px; }
  .service-visa-feature > div { padding: 44px 24px 50px; }
  .service-visa-feature h2 { font-size: 64px; }
  .visa-destination-list { gap: 5px; }
  .other-service-image { aspect-ratio: 4 / 3; }
  .editorial-hero-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 180px; }
  .editorial-hero-collage img:first-child { grid-column: 1 / 3; grid-row: auto; }
  .other-services-grid img { height: 100%; }
  .services-contact-heading { min-height: 370px; padding: 42px 25px; }
  .services-contact .services-contact-heading h2 { font-size: 61px; }
  .services-contact-details { padding: 30px 20px; }
  .about-story-images { gap: 7px; }
  .about-hero-intro { padding-left: 42px; font-size: 15px; }
  .about-hero-intro::before { width: 28px; margin-left: -42px; }
  .about-hero-visual figure { padding: 16px; }
  .about-photo-note { top: 36px; left: -6px; }
  .about-stats { grid-template-columns: 1fr; gap: 8px; padding: 9px; }
  .about-stats article, .about-stats-cta { min-height: 190px; padding: 30px 24px; }
  .about-stats-cta { grid-column: auto; min-height: 270px; }
  .about-stats-cta > p { font-size: 26px; }
  .about-stats-cta .about-stats-button { white-space: normal; line-height: 1.35; }
  .contact-office { padding-block: 65px; }
  .contact-office-address { grid-template-columns: 34px 1fr; gap: 13px; }
  .office-hours { padding: 29px 20px; box-shadow: 9px 9px 0 #dceaf1; }
  .office-hours p { grid-template-columns: 1fr; gap: 6px; }
}

/* Contact page */
.contact-page { overflow: hidden; padding: 0 0 140px; background: #fff; }
.contact-hero { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(55px, 7vw, 105px); align-items: center; min-height: 690px; padding-top: 28px; }
.contact-hero-copy { min-width: 0; }
.contact-hero h1 { max-width: 630px; margin: 15px 0 32px; font-size: clamp(62px, 7.4vw, 108px); font-weight: 400; letter-spacing: -.045em; line-height: .87; }
.contact-hero-copy > p:not(.kicker) { max-width: 490px; margin: 0; padding-left: 54px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.contact-hero-copy > p:not(.kicker)::before { display: block; width: 34px; height: 2px; margin: 0 0 -2px -54px; background: #1769aa; content: ""; transform: translateY(13px); }
.contact-hero-note { display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: start; max-width: 430px; margin-top: 48px; }
.contact-hero-note > span { display: grid; width: 32px; height: 32px; color: #1769aa; border: 1px solid rgba(23,105,170,.4); border-radius: 50%; place-items: center; font-size: 8px; font-weight: 700; }
.contact-hero-note p { margin: 3px 0 0; color: #123c61; font: 500 18px/1.45 var(--serif); }
.contact-hero-visual { position: relative; margin: 0; padding: 22px; background: #e8f0f4; }
.contact-hero-visual::before { position: absolute; top: -9px; right: -9px; width: 82px; height: 82px; border-top: 2px solid #1769aa; border-right: 2px solid #1769aa; content: ""; }
.contact-hero-visual img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.contact-hero-visual figcaption { position: absolute; right: -28px; bottom: 50px; display: flex; flex-direction: column; min-width: 190px; padding: 16px 20px; color: #fff; background: #1769aa; box-shadow: 0 16px 34px rgba(18,60,97,.2); }
.contact-hero-visual figcaption strong { font: 500 20px/1.1 var(--serif); }
.contact-hero-visual figcaption span { margin-top: 7px; font-size: 7px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 95px; padding: 18px; color: #fff; background: linear-gradient(135deg, #0d3555 0%, #1769aa 100%); }
.contact-methods article { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; min-height: 270px; padding: 30px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); transition: background 280ms ease, transform 280ms ease; }
.contact-methods article:hover { background: rgba(255,255,255,.13); transform: translateY(-5px); }
.contact-methods article > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; margin-bottom: 52px; }
.contact-methods article > div span, .contact-methods article > div em { color: rgba(255,255,255,.6); font-size: 8px; font-style: normal; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-methods article > a:not(.contact-method-link) { max-width: 100%; color: #fff; font: 500 clamp(20px, 1.8vw, 29px)/1.25 var(--serif); overflow-wrap: anywhere; }
.contact-methods article > p { margin: auto 0 0; color: rgba(255,255,255,.6); font-size: 11px; line-height: 1.6; }
.contact-methods .contact-method-address { margin: 0; color: #fff; font: 500 clamp(19px, 1.7vw, 27px)/1.3 var(--serif); }
.contact-method-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: #fff; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-method-link b { font-size: 13px; }
.contact-page-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(55px, 8vw, 120px); align-items: start; margin-top: 130px; }
.contact-message-intro { padding-top: 32px; }
.contact-message-intro h2 { max-width: 620px; margin: 14px 0 30px; font-size: clamp(58px, 6vw, 91px); font-weight: 400; letter-spacing: -.035em; line-height: .9; }
.contact-message-intro > p:not(.kicker) { max-width: 510px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.contact-response-note { display: grid; gap: 7px; max-width: 490px; margin-top: 42px; padding: 22px 24px; background: #edf4f8; border-left: 4px solid #1769aa; }
.contact-response-note strong { color: #123c61; font: 500 22px/1.2 var(--serif); }
.contact-response-note span { color: var(--muted); font-size: 11px; line-height: 1.6; }
.contact-social-row { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.contact-message-intro .contact-social-row { margin-top: 45px; }
.contact-social-row > span { flex-basis: 100%; }
.contact-social-row > span { margin-bottom: 9px; color: var(--brand); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-social-row a { padding-bottom: 5px; color: var(--brand); border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-page-form { position: relative; align-self: start; padding: clamp(38px, 5vw, 62px); overflow: hidden; color: #fff; background: linear-gradient(145deg, #123c61 0%, #1769aa 100%); box-shadow: 20px 20px 0 #dceaf1; }
.contact-page-form::after { position: absolute; right: -155px; bottom: -190px; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 58px rgba(255,255,255,.025); content: ""; pointer-events: none; }
.contact-form-heading { position: relative; z-index: 1; display: flex; flex-direction: column; margin-bottom: 38px; }
.contact-form-heading span { color: rgba(255,255,255,.58); font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-form-heading strong { max-width: 430px; margin-top: 12px; color: #fff; font: 500 clamp(27px, 3vw, 42px)/1.1 var(--serif); }
.contact-page-form > label, .contact-form-grid label { position: relative; z-index: 1; display: grid; gap: 8px; margin: 0 0 19px; color: rgba(255,255,255,.68); font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-page-form input, .contact-page-form textarea { padding: 15px 2px; color: #fff; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); border-radius: 0; outline: none; font: 500 15px/1.4 var(--sans); text-transform: none; transition: border-color 180ms ease, box-shadow 180ms ease; }
.contact-page-form textarea { min-height: 145px; resize: vertical; }
.contact-page-form input:focus, .contact-page-form textarea:focus { border-color: #fff; box-shadow: 0 2px 0 #fff; }
.contact-page-form button { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 13px; margin-top: 8px; padding: 15px 24px; color: #123c61 !important; background: #fff !important; border: 0; border-radius: 999px; font: 700 9px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }
.contact-page-form button:hover, .contact-page-form button:focus-visible { color: #fff !important; background: #0d3555 !important; }
.contact-form-notice { position: relative; z-index: 1; margin: 0 0 25px; padding: 13px 15px; font-size: 12px; line-height: 1.55; }
.contact-form-notice p { margin: 0; }
.contact-form-notice.is-success { color: #176a42; background: #e5f4ec; }
.contact-form-notice.is-error { color: #a22f37; background: #fae8ea; }
.contact-location { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 700px; margin-top: 140px; overflow: hidden; background: #123c61; }
.contact-location-map { min-width: 0; min-height: 700px; background: #e8f0f4; }
.contact-location-map iframe { display: block; width: 100%; height: 100%; min-height: 700px; border: 0; }
.contact-location-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 6vw, 82px); }
.contact-location-panel .kicker { color: rgba(255,255,255,.58); }
.contact-location-panel h2 { max-width: 570px; margin: 14px 0 30px; color: #fff !important; font-size: clamp(54px, 5.5vw, 83px); font-weight: 400; letter-spacing: -.035em; line-height: .9; }
.contact-location-address { max-width: 510px; margin: 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.8; }
.contact-location-hours { margin-top: 40px; }
.contact-location-hours > strong { display: block; margin-bottom: 14px; color: #fff; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.contact-location-hours p { display: flex; justify-content: space-between; gap: 20px; margin: 0; padding: 14px 0; color: rgba(255,255,255,.66); border-bottom: 1px solid rgba(255,255,255,.14); font-size: 11px; }
.contact-location-hours p:last-child { border-bottom: 0; }
.contact-location-hours b { color: #fff; font-weight: 600; }

@media (max-width: 900px) {
  .contact-page { padding: 0 0 95px; }
  .contact-hero, .contact-page-layout, .contact-location { grid-template-columns: 1fr; gap: 45px; }
  .contact-hero { min-height: 0; padding-top: 28px; }
  .contact-hero h1 { font-size: clamp(51px, 14vw, 72px); }
  .contact-hero-visual { width: min(100%, 690px); margin-left: auto; }
  .contact-methods { grid-template-columns: 1fr; margin-top: 85px; padding: 12px; }
  .contact-methods article { min-height: 230px; }
  .contact-page-layout { margin-top: 95px; }
  .contact-message-intro { padding-top: 0; }
  .contact-message-intro h2 { font-size: clamp(50px, 14vw, 72px); }
  .contact-page-form { padding: 40px 28px; box-shadow: 13px 13px 0 #dceaf1; }
  .contact-location { gap: 0; min-height: 0; margin-top: 110px; }
  .contact-location-map, .contact-location-map iframe { min-height: 480px; }
  .contact-location-panel { padding: 58px 34px; }
  .contact-location-panel h2 { font-size: 65px; }
}

@media (max-width: 560px) {
  .contact-form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-hero-copy > p:not(.kicker) { padding-left: 42px; font-size: 15px; }
  .contact-hero-copy > p:not(.kicker)::before { width: 28px; margin-left: -42px; }
  .contact-hero-note { margin-top: 36px; }
  .contact-hero-visual { padding: 12px; }
  .contact-hero-visual figcaption { right: -3px; bottom: 26px; min-width: 166px; padding: 13px 16px; }
  .contact-methods { padding: 8px; }
  .contact-methods article { min-height: 215px; padding: 24px; }
  .contact-methods article > div { margin-bottom: 38px; }
  .contact-page-form { padding: 36px 22px; box-shadow: 9px 9px 0 #dceaf1; }
  .contact-location-map, .contact-location-map iframe { min-height: 390px; }
  .contact-location-panel { padding: 48px 24px; }
  .contact-location-panel h2 { font-size: 56px; }
  .contact-location-hours p { flex-direction: column; gap: 6px; }
}

/* Keep headings and interactive controls aligned with the Viaje brand color. */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  color: var(--brand) !important;
}

button,
.btn,
a.btn,
.contact-link,
input[type="submit"] {
  color: #fff !important;
  background-color: var(--brand) !important;
  border-color: var(--brand) !important;
}

.hero-package-title-trigger,
.hero-package-title-trigger:hover,
.hero-package-title-trigger:active,
.hero-package-title-trigger:focus,
.hero-package-title-trigger:focus-visible {
  color: inherit !important;
  background: transparent !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.hero-package-tile-trigger,
.hero-package-tile-trigger:hover,
.hero-package-tile-trigger:active,
.hero-package-tile-trigger:focus,
.hero-package-tile-trigger:focus-visible {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  color: inherit !important;
  background: transparent !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

button:hover,
button:focus-visible,
.btn:hover,
.btn:focus-visible,
a.btn:hover,
a.btn:focus-visible,
.contact-link:hover,
.contact-link:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible {
  background-color: var(--brand-dark) !important;
  border-color: var(--brand-dark) !important;
}

.service-cta {
  padding: 14px 22px;
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  border-radius: 999px;
}

.service-cta:hover,
.service-cta:focus-visible {
  color: #fff;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

/* These titles sit directly over imagery and need the stronger contrast. */
.hero-slogan,
.local-package-copy h2,
.local-package-copy h3,
.package-tile h2,
.package-tile h3 {
  color: #fff !important;
}

.services-section-heading h2,
.services-numbered-grid h3,
.service-visa-feature h2,
.services-contact-heading h2 {
  color: #fff !important;
}

.services-numbered-grid article:hover h3 {
  color: #123c61 !important;
}

.package-dots button,
.package-dots button:hover,
.package-dots button:focus-visible {
  background-color: #fff !important;
  border-color: #fff !important;
}
