:root {
  --navy: #061226;
  --navy-2: #0a1d3d;
  --indigo: #35359a;
  --cobalt: #175cd3;
  --blue: #2f5bff;
  --gold: #b8954f;
  --gold-light: #d7bd7c;
  --ink: #0f2345;
  --muted: #5d6b82;
  --line: #dfe6f1;
  --mist: #f5f8fd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 35, 69, 0.14);
  --container: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.gate-open { overflow: hidden; }

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--blue);
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.brand { display: flex; align-items: center; gap: 20px; text-decoration: none; }
.brand img { width: 132px; height: 63px; object-fit: contain; }
.brand > span { width: 1px; height: 38px; background: var(--gold); }
.brand strong { color: var(--ink); font-size: 14px; letter-spacing: 0.02em; }

.header-nav { display: flex; align-items: center; gap: 34px; }
.header-nav a { text-decoration: none; font-weight: 650; font-size: 14px; }
.header-nav a:not(.header-cta):hover { color: var(--cobalt); }

.header-cta {
  border: 1px solid var(--cobalt);
  color: var(--cobalt);
  padding: 12px 19px;
  border-radius: 7px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.header-cta:hover { color: var(--white); background: var(--cobalt); transform: translateY(-2px); }

.hero { position: relative; overflow: hidden; min-height: 620px; display: grid; align-items: center; background: linear-gradient(120deg, #fff 0%, #fff 53%, #eff5ff 100%); }
.hero-glow { position: absolute; inset: 0; background: radial-gradient(circle at 76% 43%, rgba(47, 91, 255, .13), transparent 28%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; padding-block: 76px; }
.hero-copy { position: relative; z-index: 2; }

.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.eyebrow > span { width: 32px; height: 1px; background: currentColor; }
.hero h1 { max-width: 720px; margin: 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(46px, 5vw, 72px); font-weight: 400; line-height: 1.08; letter-spacing: -.035em; }
.hero-lead { max-width: 670px; margin: 26px 0 0; color: var(--muted); font-size: 19px; line-height: 1.75; }

.inline-status {
  width: min(100%, 520px);
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,.9);
  border: 1px solid #ced9ea;
  border-radius: 9px;
  box-shadow: 0 12px 36px rgba(15,35,69,.08);
}

.inline-status strong, .inline-status span { display: block; }
.inline-status strong { font-size: 15px; color: var(--ink); }
.inline-status div > span { margin-top: 1px; font-size: 13px; color: var(--muted); }

.status-radar { position: relative; width: 43px; height: 43px; flex: 0 0 43px; border-radius: 50%; display: grid; place-items: center; background: #edf3ff; }
.status-radar::before, .status-radar::after { content: ""; position: absolute; border: 1px solid rgba(47,91,255,.35); border-radius: inherit; inset: 5px; }
.status-radar::after { inset: 0; animation: radar 1.7s ease-out infinite; }
.status-radar i { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(47,91,255,.13); }

.globe { justify-self: center; position: relative; width: min(42vw, 520px); aspect-ratio: 1; border: 1px solid rgba(47,91,255,.38); border-radius: 50%; box-shadow: inset 0 0 80px rgba(47,91,255,.1), 0 0 70px rgba(47,91,255,.08); transform: rotate(-8deg); }
.globe::before, .globe::after { content: ""; position: absolute; inset: 4%; border-radius: 50%; border: 1px solid rgba(47,91,255,.28); }
.globe::before { transform: scaleX(.5); }
.globe::after { transform: scaleX(.82); }
.globe-axis { position: absolute; left: 5%; right: 5%; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, rgba(47,91,255,.5), transparent); transform-origin: center; }
.globe-axis-one { transform: rotate(27deg); }
.globe-axis-two { transform: rotate(-34deg); }
.globe-axis-three { transform: rotate(68deg); }
.globe-latitude { position: absolute; left: 4%; right: 4%; height: 30%; border: 1px solid rgba(47,91,255,.25); border-left-color: transparent; border-right-color: transparent; border-radius: 50%; }
.globe-latitude-one { top: 20%; }
.globe-latitude-two { bottom: 18%; }
.globe-dot { position: absolute; z-index: 2; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 8px rgba(47,91,255,.12), 0 0 25px rgba(47,91,255,.7); }
.globe-dot-one { top: 26%; left: 21%; }
.globe-dot-two { top: 44%; right: 10%; }
.globe-dot-three { bottom: 20%; left: 44%; }
.globe-shine { position: absolute; inset: 8%; border-radius: 50%; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.75) 48%, transparent 61%); animation: globe-shine 6s ease-in-out infinite; }

.destinations { position: relative; overflow: hidden; padding: 100px 0 110px; background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 100%); color: var(--ink); border-top: 1px solid var(--line); }
.destinations::before { content: ""; position: absolute; width: 760px; height: 760px; right: -360px; top: -390px; border-radius: 50%; border: 1px solid rgba(47,91,255,.14); box-shadow: 0 0 100px rgba(47,91,255,.08), inset 0 0 100px rgba(47,91,255,.04); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading h2 { margin: 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(36px, 4vw, 54px); font-weight: 400; line-height: 1.15; letter-spacing: -.025em; }
.section-heading > p:last-child { color: var(--muted); font-size: 17px; }
.section-heading-light h2 { color: var(--navy); }
.section-heading-light > p:last-child { color: var(--muted); }

.destination-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.country-card { position: relative; isolation: isolate; overflow: hidden; min-height: 540px; display: flex; align-items: stretch; background: rgba(255,255,255,.96); border: 1px solid #d6dfed; border-radius: 12px; box-shadow: 0 20px 60px rgba(15,35,69,.11); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.country-card + .country-card { border-left: 1px solid #d6dfed; }
.country-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 50% 105%, rgba(47,91,255,.11), transparent 48%); opacity: .65; transition: opacity .25s ease; }
.country-card:hover { transform: translateY(-5px); border-color: #b3c6e5; box-shadow: 0 28px 70px rgba(15,35,69,.16); }
.country-card:hover::after { opacity: 1; }
.country-code { position: absolute; top: 15px; left: 28px; z-index: -1; color: rgba(53,53,154,.045); font-weight: 900; font-size: clamp(130px, 15vw, 210px); line-height: 1; letter-spacing: -.08em; }
.country-content { position: relative; z-index: 3; width: 100%; display: flex; flex-direction: column; align-items: flex-start; padding: 64px clamp(30px, 5vw, 66px) 42px; }
.country-kicker { display: flex; align-items: center; gap: 12px; color: var(--cobalt); font-size: 12px; font-weight: 850; letter-spacing: .19em; text-transform: uppercase; }
.flag { display: inline-grid; place-items: center; width: 48px; height: 48px; border: 1px solid #cbd8ea; border-radius: 50%; background: var(--white); box-shadow: 0 8px 22px rgba(15,35,69,.08); font-size: 27px; line-height: 1; }
.country-card h3 { margin: 24px 0 4px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 5vw, 62px); font-weight: 400; line-height: 1.05; }
.country-card p { margin: 16px 0 0; color: var(--muted); font-size: 16px; }
.country-card ul { margin: 24px 0 30px; padding: 0; list-style: none; color: #3e506d; font-size: 14px; }
.country-card li { position: relative; padding-left: 22px; margin: 8px 0; }
.country-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 9px; height: 1px; background: var(--gold-light); }
.country-button { margin-top: auto; width: 100%; min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 22px; border-radius: 7px; text-decoration: none; color: var(--white); background: linear-gradient(100deg, #174fd0, #2567ef); border: 1px solid #4f80ff; box-shadow: 0 15px 35px rgba(14,65,199,.28); font-weight: 750; transition: transform .2s ease, filter .2s ease, box-shadow .2s ease; }
.country-uk .country-button { color: var(--cobalt); background: var(--white); border-color: var(--cobalt); box-shadow: none; }
.country-uk .country-button:hover { color: var(--white); background: var(--cobalt); }
.country-button svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.country-button:hover { transform: translateY(-3px); filter: brightness(1.1); box-shadow: 0 20px 42px rgba(14,65,199,.4); }
.country-button:hover svg { transform: translateX(4px); }
.country-contact { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 18px; margin-top: 19px; color: #6f7e94; font-size: 13px; }
.country-contact a { text-decoration: none; }
.country-contact a:hover { color: var(--cobalt); text-decoration: underline; }
.skyline { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; height: 150px; opacity: .08; background-image: linear-gradient(90deg, transparent 0 3%, #2b5aba 3% 4.5%, transparent 4.5% 8%, #234b9b 8% 11%, transparent 11% 15%, #2b5aba 15% 16%, transparent 16% 22%, #1d448f 22% 27%, transparent 27% 31%, #2b5aba 31% 35%, transparent 35% 43%, #224a9b 43% 48%, transparent 48% 51%, #2b5aba 51% 52%, transparent 52% 58%, #1d448f 58% 65%, transparent 65% 72%, #2b5aba 72% 74%, transparent 74% 79%, #224a9b 79% 86%, transparent 86% 91%, #2b5aba 91% 95%, transparent 95%); clip-path: polygon(0 100%,0 82%,3% 82%,3% 40%,4.5% 25%,6% 82%,8% 82%,8% 58%,11% 58%,11% 82%,15% 82%,15% 33%,16% 18%,17% 82%,22% 82%,22% 48%,27% 48%,27% 82%,31% 82%,31% 63%,35% 63%,35% 82%,43% 82%,43% 40%,48% 40%,48% 82%,51% 82%,51% 14%,52% 3%,53% 82%,58% 82%,58% 57%,65% 57%,65% 82%,72% 82%,72% 35%,74% 35%,74% 82%,79% 82%,79% 50%,86% 50%,86% 82%,91% 82%,91% 42%,95% 42%,95% 82%,100% 82%,100% 100%); }

.services { padding: 110px 0; background: var(--mist); }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.service-item { position: relative; min-height: 310px; padding: 30px 25px; border-right: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.service-item:last-child { border-right: 0; }
.service-item:hover { z-index: 2; transform: translateY(-6px); box-shadow: 0 18px 45px rgba(15,35,69,.12); }
.service-number { color: #9aa7b9; font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.service-icon { margin: 38px 0 24px; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid #c7d6ec; color: var(--cobalt); font-size: 26px; }
.service-item h3 { margin: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 400; line-height: 1.25; }
.service-item p { margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.contact { padding: 84px 0; background: linear-gradient(115deg, #252581, #0b1d45 72%); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.eyebrow-light { color: var(--gold-light); }
.contact h2 { max-width: 600px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 52px); font-weight: 400; line-height: 1.15; }
.contact-options { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid rgba(255,255,255,.2); }
.contact-options article { padding: 30px; }
.contact-options article + article { border-left: 1px solid rgba(255,255,255,.2); }
.contact-options span, .contact-options a { display: block; }
.contact-options span { margin-bottom: 18px; color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-options a { margin-top: 5px; color: var(--white); text-decoration: none; font-size: 15px; }
.contact-options a:hover { text-decoration: underline; }

footer { padding: 32px 0; background: #031021; color: #98a9c4; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; font-size: 12px; }
.footer-inner img { width: 95px; filter: brightness(0) invert(1); opacity: .88; }
.footer-inner p { margin: 0; }

.location-gate { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px; overflow: auto; background: rgba(247, 250, 255, .97); transition: opacity .42s ease, visibility .42s ease; }
.location-gate[hidden] { display: none; }
.location-gate.is-closing { opacity: 0; visibility: hidden; }
.gate-backdrop { position: absolute; inset: 0; overflow: hidden; pointer-events: none; background: radial-gradient(circle at 50% 40%, rgba(47,91,255,.13), transparent 34%), linear-gradient(140deg, #ffffff, #edf4ff); }
.gate-backdrop::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(101,139,220,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(101,139,220,.13) 1px, transparent 1px); background-size: 70px 70px; mask-image: radial-gradient(circle, #000 5%, transparent 70%); }
.gate-orbit { position: absolute; left: 50%; top: 48%; translate: -50% -50%; border: 1px solid rgba(53,53,154,.17); border-radius: 50%; }
.gate-orbit-one { width: min(86vw, 980px); aspect-ratio: 1; }
.gate-orbit-two { width: min(65vw, 720px); aspect-ratio: 1; transform: rotate(40deg) scaleY(.45); }
.gate-card { position: relative; z-index: 2; width: min(100%, 590px); padding: 42px 48px 32px; border: 1px solid rgba(130,158,219,.48); border-radius: 14px; background: rgba(255,255,255,.985); box-shadow: 0 36px 110px rgba(15,35,69,.2); text-align: center; }
.gate-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; border-radius: 14px 14px 0 0; background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold)); }
.gate-logo { width: 142px; height: 68px; object-fit: contain; margin: 0 auto 18px; }
.locator { position: relative; width: 76px; height: 76px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #174fd0, #2f5bff); color: var(--white); box-shadow: 0 12px 36px rgba(47,91,255,.32); }
.locator svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.locator-ring { position: absolute; inset: -10px; border: 1px solid rgba(47,91,255,.35); border-radius: 50%; animation: locator-ring 1.8s ease-out infinite; }
.gate-eyebrow { margin: 0 0 8px; color: var(--gold); font-size: 10px; font-weight: 850; letter-spacing: .22em; text-transform: uppercase; }
.gate-card h1 { margin: 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 5vw, 42px); font-weight: 400; line-height: 1.15; }
.gate-message { max-width: 470px; margin: 14px auto 0; color: var(--muted); font-size: 15px; }
.detection-dots { display: flex; justify-content: center; gap: 8px; margin: 25px 0 8px; }
.detection-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: dots 1.2s ease-in-out infinite; }
.detection-dots span:nth-child(2) { animation-delay: .15s; }
.detection-dots span:nth-child(3) { animation-delay: .3s; }
.redirect-panel, .fallback-panel { margin-top: 26px; }
.destination-badge { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--mist); border: 1px solid var(--line); text-align: left; }
.destination-flag { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; background: var(--white); border: 1px solid var(--line); font-size: 24px; }
.destination-badge strong, .destination-badge span { display: block; }
.destination-badge strong { color: var(--ink); font-size: 14px; }
.destination-badge div span { color: var(--muted); font-size: 12px; }
.countdown-row { margin: 16px 0 7px; display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 11px; }
.secure-label { color: var(--cobalt); font-weight: 750; }
.progress-track { height: 4px; overflow: hidden; background: #dfe7f5; }
.progress-track span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold), var(--blue)); }
.progress-track span.is-running { animation: progress 5s linear forwards; }
.gate-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.button { min-height: 48px; border-radius: 6px; border: 1px solid transparent; cursor: pointer; font-weight: 750; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--cobalt); border-color: var(--cobalt); }
.button-primary:hover { background: #0f4ebd; }
.button-quiet { color: var(--cobalt); background: var(--white); border-color: #b9c9e2; }
.button-quiet:hover { background: #f2f6fc; }
.fallback-panel .button { width: 100%; }
.gate-note { margin: 22px 0 0; color: #8592a6; font-size: 11px; }

.noscript-banner { position: fixed; z-index: 2200; left: 0; right: 0; bottom: 0; padding: 14px 20px; background: #fff3cd; color: #604c00; text-align: center; }

@keyframes radar { from { opacity: .75; transform: scale(.45); } to { opacity: 0; transform: scale(1.35); } }
@keyframes locator-ring { from { opacity: .7; transform: scale(.65); } to { opacity: 0; transform: scale(1.35); } }
@keyframes dots { 0%, 80%, 100% { opacity: .3; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-4px); } }
@keyframes globe-shine { 0%, 15% { transform: translateX(-65%); opacity: 0; } 35% { opacity: .75; } 60%, 100% { transform: translateX(65%); opacity: 0; } }
@keyframes progress { from { width: 0; } to { width: 100%; } }

@media (max-width: 1050px) {
  .header-nav > a:not(.header-cta) { display: none; }
  .hero-grid { grid-template-columns: 1fr .7fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item { border-bottom: 1px solid var(--line); }
  .service-item:nth-child(2n) { border-right: 0; }
  .service-item:last-child { grid-column: 1 / -1; min-height: 230px; }
  .contact-grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 76px; }
  .brand { gap: 12px; }
  .brand img { width: 100px; height: 48px; }
  .brand > span, .brand strong { display: none; }
  .header-cta { padding: 9px 12px; font-size: 12px !important; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 64px 56px; }
  .hero h1 { font-size: clamp(44px, 12vw, 62px); }
  .hero-lead { font-size: 17px; }
  .globe { position: absolute; width: 430px; right: -230px; bottom: -170px; opacity: .28; }
  .destinations, .services { padding: 76px 0; }
  .destination-grid { grid-template-columns: 1fr; }
  .country-card + .country-card { border-left: 1px solid #d6dfed; border-top: 1px solid #d6dfed; }
  .country-card { min-height: 540px; }
  .country-code { font-size: 145px; }
  .country-content { padding: 50px 26px 34px; }
  .country-contact { flex-direction: column; }
  .contact-options { grid-template-columns: 1fr; }
  .contact-options article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .gate-card { padding: 32px 23px 25px; }
}

@media (max-width: 520px) {
  .location-gate { padding: 12px; align-items: start; }
  .gate-card { margin-block: 12px; }
  .gate-logo { width: 118px; height: 56px; }
  .locator { width: 62px; height: 62px; margin-bottom: 18px; }
  .gate-actions { grid-template-columns: 1fr; }
  .countdown-row { flex-direction: column; gap: 2px; text-align: left; }
  .service-grid { grid-template-columns: 1fr; }
  .service-item, .service-item:nth-child(2n) { border-right: 0; }
  .service-item:last-child { grid-column: auto; }
}

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

/* Compact desktop composition: the complete gateway fits within one viewport. */
@media (min-width: 900px) {
  .site-header { height: 72px; }
  .header-inner { min-height: 72px; }
  .brand img { width: 104px; height: 50px; }
  .brand > span { height: 30px; }
  .header-cta { padding: 9px 16px; }

  main {
    height: calc(100svh - 108px);
    min-height: 650px;
    display: grid;
    grid-template-rows: minmax(215px, 34%) minmax(305px, 48%) minmax(120px, 18%);
  }

  .hero { min-height: 0; }
  .hero-grid { height: 100%; padding-block: 20px; gap: 38px; }
  .hero h1 { font-size: clamp(36px, 3.7vw, 52px); }
  .hero-lead { max-width: 650px; margin-top: 12px; font-size: 14px; line-height: 1.5; }
  .hero .eyebrow { margin-bottom: 7px; font-size: 10px; }
  .inline-status { width: min(100%, 500px); margin-top: 14px; padding: 9px 12px; gap: 11px; }
  .inline-status strong { font-size: 13px; }
  .inline-status div > span { font-size: 11px; }
  .status-radar { width: 34px; height: 34px; flex-basis: 34px; }
  .globe { width: min(31vh, 305px); }

  .destinations { padding: 14px 0 18px; }
  .destinations .container { height: 100%; display: flex; flex-direction: column; }
  .destinations .section-heading { max-width: none; margin-bottom: 10px; }
  .destinations .section-heading .eyebrow { margin-bottom: 2px; font-size: 9px; }
  .destinations .section-heading h2 { font-family: Inter, ui-sans-serif, sans-serif; font-size: 22px; font-weight: 750; letter-spacing: -.02em; }
  .destinations .section-heading > p:last-child { display: none; }
  .destination-grid { flex: 1; min-height: 0; gap: 16px; }
  .country-card { min-height: 0; height: 100%; }
  .country-content { padding: 15px 22px 13px; }
  .country-code { top: 4px; font-size: 96px; }
  .country-kicker { gap: 9px; font-size: 9px; }
  .flag { width: 34px; height: 34px; font-size: 19px; }
  .country-card h3 { margin-top: 8px; font-size: clamp(28px, 3.2vw, 39px); }
  .country-card p { margin-top: 5px; font-size: 12px; line-height: 1.45; }
  .country-card ul { display: none; }
  .country-button { min-height: 40px; padding-inline: 16px; font-size: 13px; }
  .country-button svg { width: 18px; }
  .country-contact { margin-top: 7px; font-size: 10px; }
  .skyline { height: 78px; }

  .services { padding: 10px 0; }
  .services .container { height: 100%; }
  .services .section-heading { display: none; }
  .service-grid { height: 100%; grid-template-columns: repeat(5, 1fr); }
  .service-item,
  .service-item:nth-child(2n),
  .service-item:last-child { min-height: 0; grid-column: auto; padding: 11px 14px; border-right: 1px solid var(--line); border-bottom: 0; display: flex; flex-direction: column; justify-content: center; }
  .service-item:last-child { border-right: 0; }
  .service-number { display: none; }
  .service-icon { width: 34px; height: 34px; margin: 0 0 7px; font-size: 19px; }
  .service-item h3 { font-family: Inter, ui-sans-serif, sans-serif; font-size: 14px; font-weight: 750; line-height: 1.2; }
  .service-item p { display: none; }

  .contact { display: none; }
  footer { height: 36px; padding: 5px 0; }
  .footer-inner { height: 26px; grid-template-columns: auto 1fr auto; gap: 18px; }
  .footer-inner img { width: 58px; max-height: 25px; object-fit: contain; }
}

/* Mobile composition: concise content across roughly two scroll screens. */
@media (max-width: 780px) {
  .hero-grid { padding-block: 30px 28px; gap: 0; }
  .hero h1 { font-size: clamp(36px, 10.5vw, 48px); line-height: 1.04; }
  .hero-lead { margin-top: 13px; font-size: 13px; line-height: 1.5; }
  .hero .eyebrow { margin-bottom: 10px; font-size: 9px; }
  .inline-status { margin-top: 14px; padding: 9px 11px; }
  .inline-status strong { font-size: 13px; }
  .inline-status div > span { font-size: 11px; }

  .destinations { padding: 26px 0; }
  .destinations .section-heading { margin-bottom: 12px; }
  .destinations .section-heading .eyebrow { margin-bottom: 7px; font-size: 8px; }
  .destinations .section-heading h2 { font-size: 24px; }
  .destinations .section-heading > p:last-child { display: none; }
  .destination-grid { gap: 13px; }
  .country-card { min-height: 285px; }
  .country-content { padding: 18px 18px 15px; }
  .country-code { top: 8px; font-size: 100px; }
  .country-kicker { gap: 9px; font-size: 9px; }
  .flag { width: 36px; height: 36px; font-size: 20px; }
  .country-card h3 { margin-top: 8px; font-size: 32px; }
  .country-card p { margin-top: 5px; font-size: 12px; line-height: 1.4; }
  .country-card ul { display: none; }
  .country-button { min-height: 42px; font-size: 12px; }
  .country-contact { margin-top: 8px; font-size: 10px; }
  .skyline { height: 70px; }

  .services { padding: 24px 0; }
  .services .section-heading { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item,
  .service-item:nth-child(2n) { min-height: 70px; padding: 10px; border-right: 1px solid var(--line); display: flex; flex-direction: row; align-items: center; gap: 9px; }
  .service-item:nth-child(2n) { border-right: 0; }
  .service-item:last-child { grid-column: 1 / -1; min-height: 64px; border-right: 0; }
  .service-number { display: none; }
  .service-icon { flex: 0 0 28px; width: 28px; height: 28px; margin: 0; font-size: 16px; }
  .service-item h3 { font-family: Inter, ui-sans-serif, sans-serif; font-size: 12px; font-weight: 750; line-height: 1.25; }
  .service-item p { display: none; }

  .contact { display: none; }
  footer { padding: 14px 0; }
  .footer-inner { gap: 8px; }
  .footer-inner p:first-of-type { display: none; }

  .gate-card { max-height: calc(100svh - 24px); overflow: auto; }
}
