:root {
  --black: #07090a;
  --ink: #111517;
  --graphite: #111619;
  --panel: #171d20;
  --paper: #f1f0eb;
  --white: #ffffff;
  --muted: #919b9f;
  --line-dark: rgba(255, 255, 255, .14);
  --line-light: rgba(17, 21, 23, .17);
  --orange: #ff4d24;
  --orange-bright: #ff6844;
  --font: "Manrope", Arial, sans-serif;
  --mono: "Roboto Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--black); color: var(--white); font-family: var(--font); font-size: 16px; }
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
main { min-height: 70vh; }
section[id], form[data-order-form] { scroll-margin-top: 108px; }
.mobile-action-bar { display: none; }
@media (max-width: 600px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  section[id], form[data-order-form] { scroll-margin-top: 94px; }
  .mobile-action-bar:not([hidden]) { position: fixed; z-index: 90; inset: auto 0 0; display: grid; grid-template-columns: 1.25fr 1fr; gap: 8px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid #344047; background: rgba(9,13,15,.97); }
  .mobile-action-bar a { display: flex; min-height: 48px; align-items: center; justify-content: center; gap: 12px; padding: 10px; border: 1px solid #53616a; border-radius: 5px; color: #fff; font-size: 13px; font-weight: 700; }
  .mobile-action-bar a:first-child { border-color: var(--orange); background: var(--orange); }
  body.menu-open .mobile-action-bar, body.lightbox-open .mobile-action-bar { display: none; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.skip-link { position: fixed; top: -60px; left: 18px; z-index: 200; padding: 12px 18px; background: white; color: #111; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  height: 86px;
  padding: 0 clamp(22px, 5vw, 84px);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(7, 9, 10, .94);
  backdrop-filter: blur(18px);
}

.brand, .footer-brand { display: inline-flex; align-items: center; width: max-content; }
.brand img { width: 150px; height: 56px; object-fit: contain; }
.brand > span, .footer-brand > span { margin-left: 12px; padding-left: 12px; border-left: 1px solid rgba(255,255,255,.25); color: #aeb7ba; font: 700 11px/1 var(--mono); letter-spacing: .18em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 32px); color: #b5bec1; font-size: 14px; }
.desktop-nav a, .mobile-menu a { transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: white; }
.header-cta { justify-self: end; color: white; font-size: 14px; font-weight: 700; }
.header-cta span { margin-left: 8px; color: var(--orange); }
.menu-button, .mobile-menu { display: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: .62; transform: none; }
.button-primary { background: var(--orange); color: white; }
.button-primary:hover { background: var(--orange-bright); }
.button-ghost { border-color: rgba(255,255,255,.34); background: rgba(7,9,10,.25); color: white; }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.button-outline { border-color: rgba(255,255,255,.27); background: transparent; color: white; }
.button-outline:hover { border-color: white; background: white; color: #111; }
.button-light { background: white; color: #111; }
.button-light:hover { background: #111; color: white; }
.button-dark { border: 0; background: #111517; color: white; }
.button-dark:hover { background: #2a3134; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; }
.text-link.dark { color: #111; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, .55fr);
  gap: clamp(50px, 7vw, 112px);
  align-items: center;
  min-height: calc(100svh - 86px);
  padding: clamp(70px, 8vw, 120px) clamp(22px, 5vw, 84px);
  overflow: hidden;
  isolation: isolate;
}
.hero-media, .hero-shade { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(5,7,8,.96) 0%, rgba(5,7,8,.82) 48%, rgba(5,7,8,.34) 100%), linear-gradient(0deg, rgba(5,7,8,.9), transparent 60%); }
.hero-content { max-width: 850px; }
.hero-kicker, .eyebrow {
  margin: 0 0 24px;
  color: #b5bdc0;
  font: 700 12px/1.45 var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-kicker { display: flex; align-items: center; gap: 12px; }
.hero-kicker span { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(255,77,36,.15); }
.orange { color: var(--orange); }
.hero h1, .page-hero h1 {
  margin: 0;
  font-size: clamp(54px, 6.4vw, 106px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.065em;
}
.hero h1 em { display: block; margin-top: .12em; color: var(--orange-bright); font-style: normal; }
.hero-lead { max-width: 690px; margin: 30px 0 0; color: #c0c8ca; font-size: clamp(18px, 1.45vw, 22px); line-height: 1.62; }
.hero-service-note { display: flex; max-width: 690px; gap: 10px; margin: 20px 0 0; padding: 15px 18px; border-left: 2px solid var(--orange); background: rgba(7,9,10,.48); color: #b9c2c5; font-size: 14px; line-height: 1.55; backdrop-filter: blur(8px); }
.hero-service-note b { flex: 0 0 auto; color: var(--orange-bright); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 720px; margin-top: 56px; border-top: 1px solid var(--line-dark); }
.hero-metrics div { display: flex; flex-direction: column; gap: 6px; padding: 19px 18px 0 0; }
.hero-metrics div + div { padding-left: 20px; border-left: 1px solid var(--line-dark); }
.hero-metrics strong { font-size: 18px; }
.hero-metrics span { color: #8d989c; font-size: 13px; }

.route-board { border: 1px solid rgba(255,255,255,.26); background: rgba(11,15,17,.86); box-shadow: 0 30px 100px rgba(0,0,0,.42); backdrop-filter: blur(18px); }
.board-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line-dark); color: #798589; font: 500 10px var(--mono); letter-spacing: .12em; }
.board-head i { color: #c7cecf; font-style: normal; }
.board-head i::first-letter { color: var(--orange); }
.route-board > a { display: grid; grid-template-columns: 38px 1fr auto 18px; gap: 13px; align-items: center; min-height: 80px; padding: 0 22px; border-bottom: 1px solid var(--line-dark); transition: background .2s ease; }
.route-board > a:hover { background: rgba(255,255,255,.055); }
.route-board a small { color: #667277; font: 10px var(--mono); }
.route-board a div { display: flex; flex-direction: column; gap: 4px; }
.route-board a strong { font-size: 16px; }
.route-board a div span { color: #7f8a8e; font-size: 12px; }
.route-board a em { color: #8e999c; font-size: 11px; font-style: normal; white-space: nowrap; }
.route-board a em.active { color: var(--orange-bright); }
.route-board a b { color: var(--orange); }
.board-destination { padding: 25px 22px; }
.board-destination span { color: #687478; font: 10px var(--mono); letter-spacing: .12em; }
.board-destination p { margin: 14px 0 0; color: #d7dcdd; font-size: 14px; line-height: 1.7; }

.service-rail { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 82px; padding: 0 clamp(22px, 5vw, 84px); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: #090c0d; }
.service-rail span { display: flex; align-items: center; gap: 13px; color: #b6bfc1; font-size: 13px; }
.service-rail span + span { padding-left: 20px; border-left: 1px solid var(--line-dark); }
.service-rail b { color: var(--orange); font: 10px var(--mono); }

.section-pad { padding-right: clamp(22px, 5vw, 84px); padding-left: clamp(22px, 5vw, 84px); }
.intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(55px, 9vw, 150px);
  align-items: end;
  padding-top: clamp(90px, 11vw, 170px);
  padding-bottom: clamp(90px, 11vw, 170px);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(90deg, rgba(5,7,8,.72) 0%, rgba(5,7,8,.61) 54%, rgba(5,7,8,.50) 100%),
    linear-gradient(0deg, rgba(5,7,8,.34), rgba(5,7,8,.03)),
    url("/assets/photos/container-yard.webp") center 58% / cover no-repeat;
  color: var(--white);
}
.intro h2, .section-heading h2, .photo-proof-copy h2, .rate-teaser h2, .contact-strip h2, .country-photo h2, .launch-panel h2, .notice h2, .packing-story h2, .about-statement h2 {
  margin: 0;
  font-size: clamp(42px, 5.3vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}
.intro h2 { text-shadow: 0 10px 40px rgba(0,0,0,.32); }
.intro > p { max-width: 600px; margin: 0; color: rgba(235,240,241,.8); font-size: clamp(18px, 1.4vw, 22px); line-height: 1.68; text-shadow: 0 4px 24px rgba(0,0,0,.45); }
.section-heading { display: grid; min-width: 0; grid-template-columns: minmax(180px, .38fr) minmax(0, 1fr); gap: 30px; margin-bottom: clamp(45px, 6vw, 84px); }
.section-heading > * { min-width: 0; }
.section-heading > p { margin: 5px 0 0; color: var(--orange); font: 800 12px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.section-heading.light { color: var(--ink); }

.work-formats { padding-top: clamp(85px, 10vw, 150px); padding-bottom: clamp(85px, 10vw, 150px); border-bottom: 1px solid var(--line-dark); background: radial-gradient(circle at 85% 18%, rgba(255,77,36,.1), transparent 24%), #0b0f11; color: var(--white); }
.work-formats .section-heading h2 { max-width: 1100px; }
.format-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 12px; }
.format-card { position: relative; display: flex; min-width: 0; min-height: 620px; flex-direction: column; padding: clamp(27px, 4vw, 54px); overflow: hidden; border: 1px solid var(--line-dark); }
.format-delivery { background: linear-gradient(145deg, rgba(255,255,255,.04), transparent 48%), #111619; }
.format-sourcing { border-color: rgba(255,255,255,.28); background: linear-gradient(145deg, #ff6844, #e43a15); box-shadow: 0 32px 90px rgba(83,17,2,.32); }
.format-sourcing::after { position: absolute; right: -6%; bottom: -14%; color: rgba(255,255,255,.08); font-size: clamp(190px, 23vw, 370px); font-weight: 800; line-height: .8; letter-spacing: -.08em; content: "D"; pointer-events: none; }
.format-card > * { position: relative; z-index: 1; }
.format-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.2); }
.format-top span { color: var(--orange); font: 800 11px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.format-sourcing .format-top span { color: white; }
.format-top em { color: #7f8a8e; font: 700 11px var(--mono); font-style: normal; text-align: right; text-transform: uppercase; }
.format-sourcing .format-top em { color: rgba(255,255,255,.72); }
.format-card h3 { max-width: 780px; margin: clamp(55px, 6vw, 90px) 0 22px; font-size: clamp(40px, 4.6vw, 72px); line-height: .94; letter-spacing: -.06em; }
.format-card > div:nth-child(2) > p { max-width: 760px; margin: 0; color: #a8b2b5; font-size: 17px; line-height: 1.68; }
.format-sourcing > div:nth-child(2) > p { color: rgba(255,255,255,.9); }
.format-card ul { display: grid; gap: 0; margin: 40px 0 36px; padding: 0; list-style: none; }
.format-card li { position: relative; padding: 14px 10px 14px 26px; border-top: 1px solid rgba(255,255,255,.15); color: #c4ccce; font-size: 14px; line-height: 1.5; }
.format-card li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.format-card li::before { position: absolute; top: 19px; left: 4px; width: 7px; height: 7px; border: 1px solid var(--orange); border-radius: 50%; content: ""; }
.format-sourcing li { border-color: rgba(255,255,255,.28); color: white; }
.format-sourcing li::before { border-color: white; background: white; }
.format-note { max-width: 690px; margin: -10px 0 30px; color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.55; }
.format-card .button { align-self: flex-start; margin-top: auto; }

.direction-section, .process-section, .points-section { padding-top: clamp(85px, 10vw, 150px); padding-bottom: clamp(85px, 10vw, 150px); background: white; color: var(--ink); }
.direction-section {
  position: relative;
  overflow: hidden;
  background: var(--black) url("/assets/dparts-route-map.webp") center / cover no-repeat;
  color: var(--white);
}
.direction-section .section-heading.light { color: var(--white); }
.direction-section .section-heading, .direction-section .direction-grid { position: relative; z-index: 1; }
.direction-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: rgba(7,9,10,.36); box-shadow: 0 24px 70px rgba(0,0,0,.24); backdrop-filter: blur(2px); }
.direction-grid > a { position: relative; display: flex; min-height: 330px; flex-direction: column; justify-content: space-between; padding: 28px; background: rgba(7,9,10,.1); transition: background .22s ease, color .22s ease; }
.direction-grid > a + a { border-left: 1px solid var(--line-dark); }
.direction-grid > a:hover { background: rgba(255,255,255,.075); color: white; }
.direction-grid > a > span { color: #a6b0b3; font: 11px var(--mono); letter-spacing: .11em; }
.direction-grid h3 { margin: 7px 0 13px; font-size: clamp(42px, 4.3vw, 64px); line-height: 1; letter-spacing: -.055em; }
.direction-grid small { color: #a7b0b3; font-size: 13px; }
.direction-grid em { color: #9aa4a7; font-size: 12px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.direction-grid em.active { color: var(--orange); }
.direction-grid > a > b { position: absolute; top: 26px; right: 26px; }

.photo-proof { display: grid; grid-template-columns: minmax(300px, .46fr) minmax(0, 1.54fr); gap: clamp(50px, 7vw, 115px); align-items: center; padding-top: clamp(85px, 10vw, 150px); padding-bottom: clamp(85px, 10vw, 150px); background: var(--black); }
.photo-proof-copy > p:not(.eyebrow) { color: #909a9d; font-size: 17px; line-height: 1.68; }
.photo-proof-copy .text-link { margin-top: 20px; }
.photo-proof-grid { display: grid; grid-template-columns: 1.45fr .55fr; grid-template-rows: repeat(2, minmax(250px, 34vh)); gap: 9px; }
.photo-card, .gallery-card { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: #161b1e; cursor: zoom-in; text-align: left; }
.photo-card.main { grid-row: 1 / 3; }
.photo-card img, .gallery-card img, .packing-photos img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.photo-card:hover img, .gallery-card:hover img, .packing-photos figure:hover img { transform: scale(1.025); }
.photo-card::after, .gallery-card::after, .packing-photos figure::after, .hero-photo-card::after, .country-photo figure::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 50%, rgba(4,6,7,.85)); }
.photo-card span, .gallery-card > span, .packing-photos figcaption, .hero-photo-card figcaption, .country-photo figcaption { position: absolute; z-index: 1; right: 20px; bottom: 18px; left: 20px; color: white; font-size: 14px; font-weight: 800; }

.cargo-section, .content-section, .gallery-section, .values { padding-top: clamp(85px, 10vw, 150px); padding-bottom: clamp(85px, 10vw, 150px); background: var(--black); }
.cargo-section { position: relative; isolation: isolate; overflow: hidden; }
.cargo-section::before, .cargo-section::after { content: ""; position: absolute; z-index: 0; top: 0; bottom: 0; width: 55%; pointer-events: none; background-position: center; background-size: cover; background-repeat: no-repeat; }
.cargo-section::before { left: 0; background-image: linear-gradient(180deg, rgba(7,9,10,.46), rgba(7,9,10,.72)), linear-gradient(90deg, rgba(7,9,10,.58), rgba(7,9,10,.28)), url("/assets/photos/engines-container.webp"); }
.cargo-section::after { right: 0; background-image: linear-gradient(180deg, rgba(7,9,10,.48), rgba(7,9,10,.74)), linear-gradient(90deg, rgba(7,9,10,.74), rgba(7,9,10,.34)), url("/assets/photos/vehicle-loading.webp"); background-position: 46% center; }
.cargo-section > * { position: relative; z-index: 1; }
.cargo-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-bottom: 40px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: rgba(7,9,10,.34); backdrop-filter: blur(2px); }
.cargo-grid article { min-height: 280px; padding: 25px 22px; background: rgba(7,9,10,.08); }
.cargo-grid article + article { border-left: 1px solid var(--line-dark); }
.cargo-grid span, .process-grid span, .nuance-grid article > span, .service-grid article > span { color: var(--orange); font: 11px var(--mono); }
.cargo-grid h3, .process-grid h3, .nuance-grid h3, .service-grid h3 { margin: 82px 0 15px; font-size: 23px; letter-spacing: -.035em; }
.cargo-grid p, .process-grid p, .nuance-grid p, .service-grid p { margin: 0; color: #8d989b; font-size: 15px; line-height: 1.65; }

.process-section {
  background:
    radial-gradient(circle at 76% 14%, rgba(255,77,36,.11), transparent 26%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #090c0d;
  background-size: auto, 64px 64px, 64px 64px, auto;
  color: var(--white);
}
.process-section .section-heading.light { color: var(--white); }
.process-section .text-link.dark { color: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 38px; background: rgba(7,9,10,.26); }
.process-grid article { min-height: 350px; padding: 26px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: rgba(255,255,255,.008); transition: background .22s ease; }
.process-grid article + article { border-left: 1px solid var(--line-dark); }
.process-grid article:hover { background: rgba(255,255,255,.035); }
.process-grid article:nth-child(n+4) { border-top: 0; }
.process-grid article:nth-child(4) { border-left: 0; }
.process-icon { display: grid; width: 76px; height: 76px; place-items: center; margin-top: 42px; border: 1px solid rgba(255,77,36,.32); background: rgba(255,77,36,.07); color: var(--orange); transition: border-color .22s ease, background .22s ease, transform .22s ease; }
.process-icon svg { width: 46px; height: 46px; }
.process-grid article:hover .process-icon { transform: translateY(-3px); border-color: rgba(255,104,68,.65); background: rgba(255,77,36,.12); }
.process-grid h3 { margin: 28px 0 15px; color: var(--white); }
.process-grid p { color: #98a2a5; }

.rate-teaser { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(44px, 6vw, 100px); align-items: center; padding-top: clamp(85px, 10vw, 150px); padding-bottom: clamp(85px, 10vw, 150px); background: var(--graphite); }
.rate-teaser > div:first-child > p:not(.eyebrow) { max-width: 570px; color: #929da0; font-size: 17px; line-height: 1.65; }
.rate-teaser .button { margin-top: 18px; }
.rate-pair { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line-dark); }
.rate-pair article, .rate-cards article { display: flex; min-width: 0; min-height: 310px; flex-direction: column; justify-content: space-between; padding: clamp(22px, 2vw, 32px); }
.rate-pair article + article { border-left: 1px solid var(--line-dark); }
.rate-pair span, .rate-cards span { color: #9ca6a9; font-size: 14px; }
.rate-value { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.rate-value em { color: var(--orange-bright); font: 800 12px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.rate-pair strong, .rate-cards strong { color: var(--orange-bright); font-size: clamp(48px, 5vw, 82px); line-height: .82; letter-spacing: -.07em; white-space: nowrap; }
.rate-pair small, .rate-cards small { color: #8b9699; font-size: 13px; }

.points-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 80% 30%, rgba(255,77,36,.13), transparent 25%),
    linear-gradient(180deg, rgba(5,7,8,.96) 0%, rgba(5,7,8,.68) 43%, rgba(5,7,8,.48) 68%, rgba(5,7,8,.9) 100%),
    url("/assets/cities-panorama.webp") center 58% / cover no-repeat;
  color: var(--white);
}
.points-section .section-heading, .point-list { position: relative; z-index: 1; }
.points-section .section-heading h2 { color: var(--white); }
.point-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid rgba(255,255,255,.2); background: rgba(5,7,8,.35); box-shadow: 0 28px 80px rgba(0,0,0,.28); backdrop-filter: blur(3px); }
.point-list a { position: relative; display: flex; min-width: 0; min-height: 360px; flex-direction: column; justify-content: flex-end; padding: 28px; background: linear-gradient(180deg, rgba(7,9,10,.08), rgba(7,9,10,.66)); transition: background .24s ease, transform .24s ease; }
.point-list a + a { border-left: 1px solid rgba(255,255,255,.18); }
.point-list a:hover { background: linear-gradient(180deg, rgba(255,77,36,.06), rgba(255,77,36,.2)); transform: translateY(-4px); }
.point-list span { position: absolute; top: 28px; left: 28px; color: #aab3b6; font: 700 11px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.point-list strong { color: var(--white); font-size: clamp(27px, 2.4vw, 42px); line-height: .98; letter-spacing: -.045em; }
.point-list small { margin-top: 13px; color: #b3bdc0; font-size: 14px; }
.point-list b { position: absolute; top: 25px; right: 28px; color: var(--orange); font-size: 20px; transition: transform .24s ease; }
.point-list a:hover b { transform: translate(4px, -4px); }

.founder-section {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(360px, .84fr) minmax(0, 1.16fr);
  gap: clamp(55px, 8vw, 135px);
  align-items: center;
  padding-top: clamp(90px, 10vw, 155px);
  padding-bottom: clamp(90px, 10vw, 155px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 13% 46%, rgba(255,77,36,.12), transparent 24%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #080b0c;
  background-size: auto, 64px 64px, 64px 64px, auto;
  color: var(--white);
}
.founder-section > * { min-width: 0; }
.founder-visual { position: relative; min-height: 680px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: linear-gradient(180deg, rgba(5,7,8,.08), rgba(5,7,8,.74)), url("/assets/founder-engine-bg.webp") center / cover no-repeat; isolation: isolate; }
.founder-visual::before { position: absolute; z-index: 0; inset: 0; background: radial-gradient(circle at 52% 37%, rgba(255,77,36,.16), transparent 35%); content: ""; }
.founder-visual::after { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; height: 30%; background: linear-gradient(transparent, rgba(5,7,8,.72)); content: ""; pointer-events: none; }
.founder-visual > img { position: absolute; z-index: 1; bottom: 0; left: 50%; width: auto; max-width: 95%; height: 93%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 24px 34px rgba(0,0,0,.55)); transform: translateX(-50%); }
.founder-seal { position: absolute; z-index: 3; top: 28px; left: 28px; display: flex; min-width: 154px; flex-direction: column; gap: 7px; padding: 18px; border: 1px solid rgba(255,255,255,.2); background: rgba(5,7,8,.62); backdrop-filter: blur(7px); }
.founder-seal span, .founder-seal small { color: #aab4b7; font: 700 10px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.founder-seal strong { color: var(--orange-bright); font-size: 29px; line-height: 1; letter-spacing: -.04em; }
.founder-copy h2 { max-width: 900px; margin: 0; font-size: clamp(42px, 5vw, 76px); line-height: .98; letter-spacing: -.055em; }
.founder-name { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin: clamp(34px, 4vw, 58px) 0 30px; padding: 22px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.founder-name strong { font-size: clamp(24px, 2.4vw, 35px); letter-spacing: -.04em; }
.founder-name span { color: var(--orange); font: 800 11px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.founder-copy > p:not(.eyebrow) { max-width: 820px; margin: 0 0 18px; color: #aeb8bb; font-size: 17px; line-height: 1.72; }
.founder-copy blockquote { max-width: 780px; margin: 32px 0 0; padding: 4px 0 4px 24px; border-left: 2px solid var(--orange); color: var(--white); font-size: clamp(22px, 2.1vw, 31px); font-weight: 700; line-height: 1.25; letter-spacing: -.025em; }
.founder-actions { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; margin-top: 38px; }
.founder-actions .text-link.dark { color: var(--white); }
.founder-social { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 44px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.founder-social a { display: flex; min-width: 0; min-height: 86px; flex-direction: column; justify-content: center; gap: 8px; padding: 14px 18px; transition: background .22s ease; }
.founder-social a + a { border-left: 1px solid var(--line-dark); }
.founder-social a:hover { background: rgba(255,255,255,.045); }
.founder-social span { color: #7f898c; font: 700 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.founder-social b { overflow: hidden; color: #dfe4e5; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }

.contact-strip { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: clamp(80px, 9vw, 130px) clamp(22px, 5vw, 84px); background: var(--orange); }
.contact-strip > div > p { margin: 0 0 18px; color: rgba(255,255,255,.72); font: 800 12px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.contact-strip h2 { max-width: 850px; }
.contact-strip > div > span { display: block; max-width: 740px; margin-top: 24px; color: rgba(255,255,255,.83); font-size: 18px; line-height: 1.6; }

.order-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
  padding-top: clamp(85px, 9vw, 135px);
  padding-bottom: clamp(85px, 9vw, 135px);
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.18), transparent 24%),
    var(--orange);
  background-size: 64px 64px, 64px 64px, auto, auto;
}
.order-intro { position: sticky; top: 120px; }
.order-intro > p { margin: 0 0 20px; color: rgba(255,255,255,.75); font: 800 12px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.order-intro h2 { max-width: 720px; margin: 0; font-size: clamp(48px, 6vw, 90px); line-height: .92; letter-spacing: -.065em; }
.order-intro > span { display: block; max-width: 620px; margin-top: 28px; color: rgba(255,255,255,.86); font-size: 18px; line-height: 1.65; }
.order-route { display: grid; grid-template-columns: auto auto 1fr auto auto 1fr auto auto; gap: 10px; align-items: center; margin-top: 48px; color: rgba(255,255,255,.82); }
.order-route b { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(255,255,255,.46); border-radius: 50%; font: 700 9px var(--mono); }
.order-route em { font-size: 11px; font-style: normal; font-weight: 800; white-space: nowrap; }
.order-route i { min-width: 14px; height: 1px; background: rgba(255,255,255,.36); }
.order-form { padding: clamp(27px, 4vw, 52px); border: 1px solid rgba(255,255,255,.18); background: rgba(8,11,12,.96); box-shadow: 0 35px 100px rgba(48,10,1,.3); color: var(--white); }
.order-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.order-fields label { display: flex; min-width: 0; flex-direction: column; gap: 10px; }
.order-fields label.full { grid-column: 1 / -1; }
.order-fields label > span { color: #b7c0c2; font-size: 13px; font-weight: 700; }
.order-fields label > span small { margin-left: 8px; color: #707b7f; font-weight: 500; }
.order-fields input, .order-fields select, .order-fields textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 0;
  outline: 0;
  background: #151a1d;
  padding: 0 16px;
  color: var(--white);
}
.order-fields textarea { min-height: 132px; padding-top: 16px; padding-bottom: 16px; resize: vertical; line-height: 1.55; }
.order-fields input::placeholder, .order-fields textarea::placeholder { color: #697377; }
.order-fields input:focus, .order-fields select:focus, .order-fields textarea:focus { border-color: var(--orange-bright); box-shadow: 0 0 0 1px var(--orange-bright); }
.service-choice select { border-color: rgba(255,104,68,.58); background: linear-gradient(90deg, rgba(255,77,36,.11), transparent 55%), #151a1d; }
.file-field { position: relative; cursor: pointer; }
.file-field input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.file-field em { display: flex; min-height: 58px; align-items: center; justify-content: center; border: 1px dashed rgba(255,255,255,.3); background: rgba(255,255,255,.035); color: #dce2e3; font-size: 13px; font-style: normal; font-weight: 800; transition: border-color .2s ease, background .2s ease; }
.file-field:hover em, .file-field:focus-within em { border-color: var(--orange-bright); background: rgba(255,77,36,.09); }
.order-submit-row { display: flex; align-items: center; gap: 22px; margin-top: 28px; }
.order-submit-row > small { max-width: 390px; color: #737e81; font-size: 11px; line-height: 1.55; }
.form-status { min-height: 24px; margin: 18px 0 0; font-size: 13px; font-weight: 700; line-height: 1.5; }
.form-status:empty { min-height: 0; margin-top: 0; }
.form-status.sending { color: #aeb8bb; }
.form-status.success { color: #7fe0a0; }
.form-status.error { color: #ff9d87; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.page-hero { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(260px, .68fr); gap: clamp(50px, 8vw, 130px); align-items: end; min-height: 560px; padding: clamp(85px, 10vw, 145px) clamp(22px, 5vw, 84px) clamp(70px, 8vw, 115px); overflow: hidden; border-bottom: 1px solid var(--line-dark); background: radial-gradient(circle at 78% 24%, rgba(255,77,36,.13), transparent 24%), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px), var(--black); background-size: auto, 58px 58px, 58px 58px, auto; }
.page-hero-copy { max-width: 1000px; }
.page-hero h1 { font-size: clamp(50px, 6.8vw, 104px); }
.page-lead { max-width: 780px; margin: 30px 0 0; color: #aeb8bb; font-size: clamp(18px, 1.45vw, 22px); line-height: 1.65; }
.page-hero-aside { align-self: end; }
.route-stamp, .page-icon-card, .rate-stamp, .country-stamp, .brand-card { display: flex; aspect-ratio: 1; max-width: 330px; flex-direction: column; justify-content: space-between; margin-left: auto; padding: 28px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
.route-stamp span, .page-icon-card span, .rate-stamp span, .country-stamp strong { color: var(--orange); font-size: clamp(64px, 7vw, 108px); line-height: .8; letter-spacing: -.075em; }
.route-stamp p, .page-icon-card p, .rate-stamp p { margin: 0; color: #a8b1b4; font: 700 12px/1.5 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.country-stamp span { color: #a9b3b6; font: 700 12px/1.5 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.country-stamp span.active { color: var(--orange-bright); }
.brand-card img { width: 100%; margin: auto 0; }
.brand-card span { color: #879296; font: 10px var(--mono); letter-spacing: .12em; }

.direction-index { padding: 0 clamp(22px, 5vw, 84px); background: var(--paper); color: var(--ink); }
.direction-index > a { display: grid; grid-template-columns: 150px 1fr 24px; gap: clamp(30px, 5vw, 80px); align-items: center; min-height: 250px; border-bottom: 1px solid var(--line-light); transition: padding .2s ease, background .2s ease; }
.direction-index > a:hover { padding-right: 18px; padding-left: 18px; background: white; }
.direction-index > a > div:first-child { display: flex; flex-direction: column; gap: 42px; }
.direction-index small { color: #747d80; font: 11px var(--mono); }
.direction-index > a > div:first-child strong { color: var(--orange); font-size: 48px; letter-spacing: -.06em; }
.direction-index p { margin: 0 0 8px; color: #6e777a; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.direction-index h2 { margin: 0 0 17px; font-size: clamp(36px, 4vw, 60px); line-height: 1; letter-spacing: -.05em; }
.direction-index > a > div:nth-child(2) > span { display: block; max-width: 780px; color: #566063; line-height: 1.65; }
.direction-index em { display: inline-block; margin-top: 18px; color: #737c7f; font-size: 12px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.direction-index em.active { color: var(--orange); }
.direction-index > a > b { color: var(--orange); }

.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0 clamp(22px, 5vw, 84px); }
.fact-grid > div { display: flex; min-height: 155px; flex-direction: column; justify-content: center; gap: 8px; border-bottom: 1px solid var(--line-dark); }
.fact-grid > div + div { padding-left: clamp(24px, 4vw, 60px); border-left: 1px solid var(--line-dark); }
.fact-grid strong { font-size: clamp(26px, 3vw, 43px); letter-spacing: -.045em; }
.fact-grid span { color: #828d91; font-size: 14px; }

.country-photo { display: grid; grid-template-columns: 1.2fr .8fr; gap: 0; padding-top: clamp(60px, 7vw, 105px); padding-bottom: clamp(60px, 7vw, 105px); background: var(--paper); color: var(--ink); }
.country-photo figure, .hero-photo-card { position: relative; margin: 0; overflow: hidden; }
.country-photo figure { min-height: clamp(430px, 42vw, 650px); }
.country-photo figure img, .hero-photo-card img { width: 100%; height: 100%; object-fit: cover; }
.country-photo > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 90px); border-top: 1px solid var(--line-light); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.country-photo > div > p:last-child, .launch-panel > p:not(.eyebrow), .notice > p:not(.eyebrow), .packing-story > div:first-child > p:not(.eyebrow), .about-statement > p { color: #596265; font-size: 17px; line-height: 1.68; }
.hero-photo-card { aspect-ratio: 1; max-width: 420px; margin-left: auto; border: 1px solid var(--line-dark); }
.hero-photo-card.landscape { aspect-ratio: 1; }

.nuance-grid, .service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.nuance-grid article, .service-grid article { min-height: 330px; padding: 26px; }
.nuance-grid article + article, .service-grid article + article { border-left: 1px solid var(--line-dark); }
.route-summary { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(55px, 9vw, 145px); align-items: center; padding-top: clamp(80px, 9vw, 135px); padding-bottom: clamp(80px, 9vw, 135px); background: var(--paper); color: var(--ink); }
.route-summary > div > p:last-child { color: #596265; font-size: 17px; line-height: 1.65; }
.route-summary h2 { margin: 0; font-size: clamp(42px, 5.3vw, 78px); line-height: .98; letter-spacing: -.055em; }
.route-summary ol { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; border-top: 1px solid var(--line-light); list-style: none; counter-reset: route; }
.route-summary li { min-height: 86px; padding: 28px 20px; border-bottom: 1px solid var(--line-light); counter-increment: route; }
.route-summary li:nth-child(even) { border-left: 1px solid var(--line-light); }
.route-summary li::before { content: "0" counter(route) " / "; color: var(--orange); font: 10px var(--mono); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 1050px; border-top: 1px solid var(--line-dark); }
.check-grid span { min-height: 72px; padding: 23px 18px 20px 0; border-bottom: 1px solid var(--line-dark); color: #c5ccce; }
.check-grid span:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line-dark); }
.launch-panel, .notice { padding-top: clamp(85px, 10vw, 150px); padding-bottom: clamp(85px, 10vw, 150px); background: var(--paper); color: var(--ink); }
.launch-panel h2, .notice h2 { max-width: 1000px; }
.launch-panel > p:not(.eyebrow), .notice > p:not(.eyebrow) { max-width: 730px; margin-top: 28px; }
.launch-panel .button { margin-top: 24px; }

.catalog { padding-top: 25px; padding-bottom: 90px; background: var(--paper); color: var(--ink); }
.catalog article { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; min-height: 230px; padding: 38px 0; border-bottom: 1px solid var(--line-light); }
.catalog article span { color: var(--orange); font: 11px var(--mono); }
.catalog h2 { margin: 46px 0 0; font-size: clamp(36px, 4vw, 60px); letter-spacing: -.05em; }
.catalog article > p { margin: 0; color: #576063; font-size: 17px; line-height: 1.7; }

.timeline { padding-top: 25px; padding-bottom: 90px; background: var(--paper); color: var(--ink); }
.timeline article { display: grid; grid-template-columns: 120px 1fr; gap: 40px; min-height: 205px; padding: 42px 0; border-bottom: 1px solid var(--line-light); }
.timeline article > span { color: var(--orange); font: 12px var(--mono); }
.timeline h2 { margin: 0 0 15px; font-size: clamp(34px, 3.7vw, 52px); letter-spacing: -.045em; }
.timeline p { max-width: 780px; margin: 0; color: #566063; font-size: 17px; line-height: 1.65; }
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding-top: 0; padding-bottom: 0; background: var(--line-dark); }
.split-cards article { min-height: 360px; padding: clamp(38px, 5vw, 76px); background: var(--black); }
.split-cards article > p { margin: 0; color: var(--orange); font: 800 11px var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.split-cards h3 { margin: 95px 0 18px; font-size: clamp(34px, 3.8vw, 56px); line-height: 1; letter-spacing: -.05em; }
.split-cards a, .split-cards span { color: #929da0; line-height: 1.65; }

.packing-story { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(50px, 8vw, 120px); align-items: center; padding-top: clamp(85px, 10vw, 150px); padding-bottom: clamp(85px, 10vw, 150px); }
.packing-photos { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, minmax(235px, 1fr)); gap: 9px; min-height: 630px; }
.packing-photos figure { position: relative; margin: 0; overflow: hidden; }
.packing-photos figure.large { grid-row: 1 / 3; }
.light-surface { background: var(--paper); color: var(--ink); }
.packing-list { border-top: 1px solid var(--line-light); }
.packing-list article { display: grid; grid-template-columns: 90px minmax(240px, .6fr) 1fr; gap: 30px; align-items: center; min-height: 150px; border-bottom: 1px solid var(--line-light); }
.packing-list article > span { color: var(--orange); font: 11px var(--mono); }
.packing-list h3 { margin: 0; font-size: 28px; letter-spacing: -.035em; }
.packing-list p { max-width: 650px; margin: 0; color: #596265; line-height: 1.65; }

.calculator-section { display: grid; grid-template-columns: minmax(0, 1.38fr) minmax(300px, .62fr); gap: 1px; padding-top: clamp(75px, 9vw, 125px); padding-bottom: clamp(75px, 9vw, 125px); background: #181d20; }
.calculator, .calculator-notes { border: 1px solid var(--line-dark); background: #0d1113; }
.calculator { padding: clamp(28px, 4vw, 55px); }
.calculator-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--line-dark); }
.calculator-head p { margin: 0; font-size: 21px; font-weight: 800; }
.calculator-head span { color: #818c90; font: 11px var(--mono); text-transform: uppercase; }
.calculator-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.calculator-fields label { display: flex; flex-direction: column; gap: 10px; }
.calculator-fields label.full { grid-column: 1 / -1; }
.calculator-fields label > span { color: #aeb7ba; font-size: 14px; }
.calculator-fields input, .calculator-fields select { width: 100%; min-height: 56px; border: 1px solid rgba(255,255,255,.2); border-radius: 0; outline: 0; background: #151a1d; padding: 0 16px; color: white; }
.calculator-fields input:focus, .calculator-fields select:focus { border-color: var(--orange); }
.calculator-result { margin-top: 28px; padding: 28px; border-left: 3px solid var(--orange); background: rgba(255,255,255,.045); }
.calculator-result > div { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.calculator-result > div span { color: #96a0a3; font-size: 14px; }
.calculator-result strong { color: var(--orange-bright); font-size: clamp(48px, 5vw, 75px); line-height: .9; letter-spacing: -.06em; }
.calculator-result p { margin: 18px 0 9px; color: #c5cdcf; }
.calculator-result small { color: #7f898d; font-size: 13px; line-height: 1.55; }
.calculator-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.calculator-contact { margin-top: 38px; padding-top: 38px; border-top: 1px solid var(--line-dark); }
.calculator-contact > p { margin: 0 0 25px; font-size: 22px; font-weight: 800; }
.calculator-notes { padding: clamp(28px, 4vw, 50px); }
.calculator-notes ul { margin: 0 0 46px; padding: 0; list-style: none; }
.calculator-notes li { padding: 15px 0; border-bottom: 1px solid var(--line-dark); color: #b2bbbe; line-height: 1.45; }
.rate-cards { display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 0; padding-bottom: 0; background: var(--paper); color: var(--ink); }
.rate-cards article { min-height: 300px; border-top: 1px solid var(--line-light); }
.rate-cards article + article { border-left: 1px solid var(--line-light); }
.rate-cards article:last-child strong { font-size: clamp(54px, 6vw, 82px); }
.launch-rates { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding-top: 0; padding-bottom: 0; background: var(--line-dark); }
.launch-rates > div { min-height: 280px; padding: clamp(35px, 5vw, 70px); background: var(--black); }
.launch-rates span { color: var(--orange); font: 12px var(--mono); }
.launch-rates h3 { margin: 70px 0 12px; font-size: 36px; }
.launch-rates p { color: #8e999c; }

.location-grid { display: grid; grid-template-columns: 1fr 1fr; padding-top: 0; padding-bottom: 0; background: var(--paper); color: var(--ink); }
.location-grid article { min-height: 370px; padding: clamp(35px, 5vw, 72px); border-bottom: 1px solid var(--line-light); }
.location-grid article:nth-child(odd) { border-right: 1px solid var(--line-light); }
.location-grid article > span { color: var(--orange); font: 11px var(--mono); }
.location-grid h2 { margin: 92px 0 10px; font-size: clamp(40px, 5vw, 70px); letter-spacing: -.055em; }
.location-grid strong { color: #687174; font-size: 13px; text-transform: uppercase; }
.location-grid p { max-width: 520px; color: #596265; line-height: 1.65; }

.media-intro { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--paper); color: var(--ink); }
.media-intro article { min-height: 345px; padding: clamp(34px, 5vw, 68px); }
.media-intro article + article { border-left: 1px solid var(--line-light); }
.media-intro article > span { color: var(--orange); font: 11px var(--mono); }
.media-intro h2 { margin: 115px 0 14px; font-size: 34px; }
.media-intro p { color: #596265; line-height: 1.65; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; grid-auto-rows: clamp(220px, 23vw, 340px); gap: 9px; }
.gallery-card.wide { grid-column: span 8; }
.gallery-card.standard { grid-column: span 4; }
.gallery-card.tall { grid-column: span 4; grid-row: span 2; }
.gallery-card > span { display: flex; align-items: flex-end; gap: 13px; }
.gallery-card > span i { color: var(--orange-bright); font: 10px var(--mono); font-style: normal; }

.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 70px 24px 30px; background: rgba(0,0,0,.94); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1500px, 96vw); max-height: 82vh; object-fit: contain; }
.lightbox > button { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; background: transparent; color: white; cursor: pointer; font-size: 30px; line-height: 1; }
.lightbox p { margin: 16px 0 0; color: #ccd2d4; text-align: center; }

.about-statement { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(55px, 9vw, 150px); align-items: end; padding-top: clamp(90px, 11vw, 165px); padding-bottom: clamp(90px, 11vw, 165px); background: var(--paper); color: var(--ink); }
.company-numbers { display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 0; padding-bottom: 0; background: var(--paper); color: var(--ink); }
.company-numbers > div { display: flex; min-height: 280px; flex-direction: column; justify-content: center; gap: 13px; padding: 40px; border-top: 1px solid var(--line-light); }
.company-numbers > div + div { border-left: 1px solid var(--line-light); }
.company-numbers strong { color: var(--orange); font-size: clamp(66px, 8vw, 120px); line-height: .8; letter-spacing: -.075em; }
.company-numbers span { color: #616b6e; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 0; padding-bottom: 0; background: var(--paper); color: var(--ink); }
.contact-grid article { min-height: 410px; padding: clamp(35px, 5vw, 70px); }
.contact-grid article + article { border-left: 1px solid var(--line-light); }
.contact-grid article > span { color: var(--orange); font: 800 11px var(--mono); letter-spacing: .11em; text-transform: uppercase; }
.contact-grid h2 { margin: 100px 0 14px; overflow-wrap: anywhere; font-size: clamp(34px, 3.6vw, 54px); letter-spacing: -.05em; }
.contact-grid p { color: #596265; line-height: 1.65; }
.contact-grid .button { margin-top: 22px; }
.faq-section { padding-top: clamp(85px, 10vw, 150px); padding-bottom: clamp(85px, 10vw, 150px); background: white; color: var(--ink); }
.faq-list { max-width: 1050px; margin-left: auto; border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { display: flex; min-height: 90px; align-items: center; justify-content: space-between; gap: 25px; cursor: pointer; list-style: none; font-size: 19px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-size: 26px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > p { max-width: 800px; margin: 0; padding: 0 50px 30px 0; color: #596265; line-height: 1.7; }

.media-center-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, .7fr);
  gap: clamp(55px, 8vw, 130px);
  align-items: center;
  min-height: calc(100svh - 86px);
  padding-top: clamp(80px, 8vw, 125px);
  padding-bottom: clamp(80px, 8vw, 125px);
  overflow: hidden;
  background: #050607;
}
.media-center-hero::before { position: absolute; z-index: -2; inset: 0; background: url("https://i.ytimg.com/vi/0WxAEQxt8JM/maxresdefault.jpg") 64% center / cover no-repeat; filter: saturate(.75) contrast(1.12); transform: scale(1.025); content: ""; }
.media-center-hero::after { position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 78% 35%, rgba(255,0,51,.28), transparent 25%), linear-gradient(90deg, #050607 0%, rgba(5,6,7,.96) 25%, rgba(5,6,7,.7) 53%, rgba(5,6,7,.42) 100%), linear-gradient(0deg, rgba(5,6,7,.94) 0%, transparent 38%, rgba(5,6,7,.55) 100%), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: auto, auto, auto, 64px 64px, 64px 64px; content: ""; }
.media-center-hero > * { position: relative; z-index: 1; }
.media-center-hero-copy { max-width: 940px; }
.media-center-hero h1 { margin: 0; font-size: clamp(58px, 7.2vw, 118px); line-height: .9; letter-spacing: -.068em; }
.media-center-hero h1 em { color: var(--orange-bright); font-style: normal; }
.media-center-hero-copy > p:not(.eyebrow) { max-width: 760px; margin: 34px 0 0; color: #b2bcbf; font-size: clamp(18px, 1.4vw, 22px); line-height: 1.65; }
.media-channel-panel { position: relative; display: flex; aspect-ratio: 1; min-width: 0; max-width: 500px; flex-direction: column; justify-content: space-between; margin-left: auto; padding: clamp(26px, 3vw, 42px); overflow: hidden; border: 1px solid rgba(255,255,255,.2); background: linear-gradient(145deg, rgba(255,0,51,.96), rgba(150,0,30,.92)); box-shadow: 0 35px 100px rgba(0,0,0,.5), 0 0 80px rgba(255,0,51,.12); backdrop-filter: blur(8px); transition: transform .25s ease, box-shadow .25s ease; }
.media-channel-panel::before { position: absolute; right: -8%; bottom: -22%; color: rgba(255,255,255,.14); font-size: clamp(190px, 18vw, 330px); line-height: 1; content: "▶"; }
.media-channel-panel:hover { transform: translateY(-6px); box-shadow: 0 42px 110px rgba(255,0,51,.2); }
.media-channel-panel > * { position: relative; z-index: 1; }
.media-channel-panel span { font: 800 11px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.media-channel-panel strong { margin-top: auto; font-size: clamp(48px, 5.2vw, 82px); line-height: .9; letter-spacing: -.065em; }
.media-channel-panel small { max-width: 260px; margin-top: 16px; font-size: 13px; line-height: 1.5; }
.media-channel-panel > b { position: absolute; top: clamp(25px, 3vw, 40px); right: clamp(25px, 3vw, 40px); font-size: 22px; }

.video-feature { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr); gap: clamp(42px, 7vw, 110px); align-items: center; padding-top: clamp(90px, 10vw, 150px); padding-bottom: clamp(90px, 10vw, 150px); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: #0b0f11; }
.video-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(255,255,255,.17); background: #030405; box-shadow: 0 25px 70px rgba(0,0,0,.3); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame-main { box-shadow: 0 35px 100px rgba(0,0,0,.45); }
.video-feature-copy > span { display: block; margin-bottom: 20px; color: #6f7a7e; font: 700 11px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.video-feature-copy h2 { margin: 0; font-size: clamp(38px, 4.2vw, 66px); line-height: .98; letter-spacing: -.052em; }
.video-feature-copy > p:not(.eyebrow) { margin: 27px 0; color: #9da8ab; font-size: 17px; line-height: 1.7; }

.video-library { padding-top: clamp(90px, 10vw, 150px); padding-bottom: clamp(90px, 10vw, 150px); background: #111619; }
.media-heading h2 { max-width: 1100px; color: var(--white); }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.video-grid article { min-width: 0; background: #080b0c; }
.video-grid .video-frame { border: 0; box-shadow: none; }
.video-card-copy { min-height: 245px; padding: clamp(24px, 3vw, 36px); }
.video-card-copy span { color: var(--orange); font: 700 10px var(--mono); letter-spacing: .13em; }
.video-card-copy h3 { min-height: 86px; margin: 34px 0 26px; font-size: clamp(21px, 1.8vw, 28px); line-height: 1.16; letter-spacing: -.035em; }
.video-card-copy a { color: #aeb8bb; font-size: 13px; font-weight: 800; }
.video-card-copy a:hover { color: var(--white); }
.video-channel-cta { margin-top: 38px; }

.telegram-hub { padding-top: clamp(90px, 10vw, 150px); padding-bottom: clamp(90px, 10vw, 150px); background: radial-gradient(circle at 10% 80%, rgba(34,158,217,.14), transparent 25%), #07090a; }
.telegram-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.telegram-card { position: relative; display: flex; min-height: 470px; flex-direction: column; justify-content: space-between; padding: clamp(30px, 5vw, 70px); overflow: hidden; color: var(--white); transition: transform .25s ease, filter .25s ease; isolation: isolate; }
.telegram-card:hover { transform: translateY(-6px); filter: brightness(1.05); }
.telegram-channel { background: linear-gradient(145deg, #229ed9, #126ba9); }
.telegram-bot { background: linear-gradient(145deg, #ff5a31, #d62e0d); }
.telegram-card::after { position: absolute; z-index: -1; right: -3%; bottom: -13%; color: rgba(255,255,255,.13); font-size: clamp(150px, 17vw, 290px); font-weight: 800; line-height: .8; letter-spacing: -.08em; content: attr(data-mark); }
.telegram-card > span { position: relative; z-index: 1; padding-right: clamp(90px, 10vw, 145px); font: 800 11px var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.telegram-brand-icon { position: absolute; z-index: 0; top: clamp(28px, 4vw, 55px); right: clamp(28px, 4vw, 55px); width: clamp(70px, 7vw, 112px); height: clamp(70px, 7vw, 112px); padding: clamp(16px, 1.8vw, 24px); border: 1px solid rgba(255,255,255,.38); border-radius: 50%; color: #fff; background: rgba(255,255,255,.09); filter: drop-shadow(0 18px 30px rgba(0,0,0,.18)); transition: transform .25s ease, background .25s ease; }
.telegram-card:hover .telegram-brand-icon { background: rgba(255,255,255,.16); transform: translateY(-4px) rotate(-4deg); }
.telegram-card > div { max-width: 650px; margin-top: auto; }
.telegram-card strong { font-size: clamp(42px, 5vw, 78px); line-height: .95; letter-spacing: -.055em; }
.telegram-card p { max-width: 570px; margin: 23px 0 0; color: rgba(255,255,255,.88); font-size: 17px; line-height: 1.65; }
.telegram-card footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-top: 52px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.3); }
.telegram-card em { font-size: 14px; font-style: normal; font-weight: 700; }
.telegram-card b { font-size: 14px; }

.media-contact-strip { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding-top: clamp(80px, 8vw, 120px); padding-bottom: clamp(80px, 8vw, 120px); border-top: 1px solid var(--line-dark); background: #141a1d; }
.media-contact-strip p { margin: 0 0 18px; color: var(--orange); font: 800 11px var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.media-contact-strip h2 { max-width: 950px; margin: 0; font-size: clamp(42px, 5.3vw, 78px); line-height: .98; letter-spacing: -.055em; }

.site-footer { padding: clamp(70px, 8vw, 115px) clamp(22px, 5vw, 84px) 28px; border-top: 1px solid var(--line-dark); background: #040506; }
.footer-contact-hub { margin-bottom: clamp(75px, 8vw, 120px); padding-bottom: clamp(75px, 8vw, 120px); border-bottom: 1px solid var(--line-dark); }
.footer-contact-heading { display: grid; min-width: 0; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: clamp(45px, 8vw, 130px); align-items: end; margin-bottom: clamp(36px, 5vw, 65px); }
.footer-contact-heading > * { min-width: 0; }
.footer-contact-heading p { margin: 0 0 18px; color: var(--orange); font: 800 11px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.footer-contact-heading h2 { max-width: 900px; margin: 0; color: var(--white); font-size: clamp(42px, 5.2vw, 78px); line-height: .94; letter-spacing: -.058em; }
.footer-contact-heading > span { max-width: 480px; color: #8f999d; font-size: 16px; line-height: 1.65; }
.footer-contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.footer-contact-card { position: relative; display: flex; min-width: 0; min-height: 270px; flex-direction: column; padding: clamp(25px, 3vw, 40px); overflow: hidden; color: var(--white); background: #0a0d0f; transition: color .25s ease, background .25s ease, transform .25s ease; }
.footer-contact-card::before { position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--orange); content: ""; transform: scaleX(.22); transform-origin: left; transition: transform .3s ease; }
.footer-contact-card:hover { color: var(--white); background: #111619; transform: translateY(-4px); }
.footer-contact-card:hover::before { transform: scaleX(1); }
.footer-contact-card.contact-telegram::before { background: #229ed9; }
.footer-contact-card.contact-whatsapp::before { background: #25d366; }
.footer-contact-icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: auto; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; color: var(--orange-bright); }
.contact-telegram .footer-contact-icon { color: #41b6ee; }
.contact-whatsapp .footer-contact-icon { color: #38df78; }
.footer-contact-icon svg { width: 22px; height: 22px; }
.footer-contact-card small { display: block; margin-top: 48px; color: #758085; font: 800 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.footer-contact-card strong { display: block; margin-top: 13px; overflow-wrap: anywhere; font-size: clamp(26px, 2.5vw, 39px); line-height: 1; letter-spacing: -.045em; }
.footer-contact-card em { display: flex; justify-content: space-between; gap: 20px; margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: #aeb7ba; font-size: 13px; font-style: normal; font-weight: 800; }
.footer-location-heading { display: flex; justify-content: space-between; gap: 40px; align-items: flex-end; margin: clamp(42px, 5vw, 65px) 0 24px; }
.footer-location-heading strong { color: var(--white); font-size: clamp(23px, 2.4vw, 34px); letter-spacing: -.035em; }
.footer-location-heading span { max-width: 650px; color: #758085; font-size: 13px; line-height: 1.55; text-align: right; }
.footer-location-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.footer-location-grid article { min-width: 0; min-height: 150px; padding: 25px 20px 23px; }
.footer-location-grid article + article { border-left: 1px solid var(--line-dark); }
.footer-location-grid span { color: var(--orange); font: 800 10px var(--mono); letter-spacing: .14em; }
.footer-location-grid strong { display: block; margin-top: 28px; color: var(--white); font-size: clamp(20px, 1.8vw, 27px); letter-spacing: -.035em; }
.footer-location-grid small { display: block; margin-top: 8px; color: #737d80; font-size: 12px; line-height: 1.45; }
.footer-top { display: grid; min-width: 0; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(60px, 10vw, 150px); }
.footer-top > * { min-width: 0; }
.footer-brand { width: 100%; max-width: 330px; }
.footer-brand img { width: 260px; max-width: calc(100% - 70px); }
.footer-top > div:first-child > p { max-width: 390px; margin: 25px 0 0; color: #7f898d; line-height: 1.65; }
.footer-links { display: grid; min-width: 0; max-width: 100%; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.footer-links > div { display: flex; min-width: 0; flex-direction: column; gap: 13px; }
.footer-links strong { margin-bottom: 10px; color: #5f696d; font: 800 10px var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.footer-links a { color: #b2bbbe; overflow-wrap: anywhere; font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 80px; padding-top: 25px; border-top: 1px solid var(--line-dark); color: #5f696c; font: 11px var(--mono); }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 15px; }
  .desktop-nav { display: none; }
  .header-cta { margin-right: 8px; }
  .menu-button { display: grid; width: 46px; height: 46px; place-content: center; gap: 6px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: transparent; cursor: pointer; }
  .menu-button i { display: block; width: 18px; height: 1px; background: white; transition: transform .2s ease; }
  .menu-button.open i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button.open i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 90; top: 86px; right: 0; bottom: 0; left: 0; flex-direction: column; gap: 0; padding: 25px clamp(22px, 5vw, 84px) 50px; overflow-y: auto; background: #07090a; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 18px 0; border-bottom: 1px solid var(--line-dark); color: #e0e4e5; font-size: 22px; font-weight: 700; }
  .cargo-grid { grid-template-columns: repeat(3, 1fr); }
  .cargo-grid article:nth-child(4) { border-top: 1px solid var(--line-dark); border-left: 0; }
  .cargo-grid article:nth-child(5) { border-top: 1px solid var(--line-dark); }
  .nuance-grid, .service-grid { grid-template-columns: 1fr 1fr; }
  .nuance-grid article:nth-child(3), .service-grid article:nth-child(3) { border-top: 1px solid var(--line-dark); border-left: 0; }
  .nuance-grid article:nth-child(4), .service-grid article:nth-child(4) { border-top: 1px solid var(--line-dark); }
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,7,8,.94), rgba(5,7,8,.55)), linear-gradient(0deg, rgba(5,7,8,.92), transparent 70%); }
  .route-board { width: 100%; max-width: 720px; }
  .service-rail { grid-template-columns: 1fr 1fr; }
  .service-rail span { min-height: 75px; }
  .service-rail span:nth-child(3) { border-top: 1px solid var(--line-dark); border-left: 0; }
  .service-rail span:nth-child(4) { border-top: 1px solid var(--line-dark); }
  .intro, .photo-proof, .rate-teaser, .page-hero, .country-photo, .route-summary, .packing-story, .calculator-section, .about-statement, .order-section, .footer-top { grid-template-columns: minmax(0, 1fr); }
  .intro { background-position: 66% center; }
  .section-heading { grid-template-columns: minmax(0, 1fr); gap: 13px; }
  .section-heading > p { margin-top: 0; }
  .direction-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .direction-grid > a { min-height: 235px; }
  .direction-grid > a + a { border-top: 1px solid var(--line-dark); border-left: 0; }
  .photo-proof-grid { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(430px, 55vw) minmax(300px, 42vw); }
  .photo-card.main { grid-column: 1 / -1; grid-row: auto; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article:nth-child(3) { border-top: 0; }
  .process-grid article:nth-child(4) { border-left: 1px solid var(--line-dark); }
  .process-grid article:nth-child(odd) { border-left: 0; }
  .rate-pair { max-width: 760px; }
  .point-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .point-list a:nth-child(3) { border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .point-list a:nth-child(4) { border-top: 1px solid rgba(255,255,255,.18); }
  .founder-section { grid-template-columns: minmax(0, 1fr); }
  .founder-visual { min-height: 650px; }
  .founder-copy { max-width: 900px; }
  .contact-strip { grid-template-columns: 1fr; }
  .contact-strip .button { justify-self: start; }
  .order-intro { position: static; }
  .page-hero { min-height: auto; }
  .route-stamp, .page-icon-card, .rate-stamp, .country-stamp, .brand-card { aspect-ratio: auto; min-height: 230px; max-width: 100%; margin: 0; }
  .hero-photo-card, .hero-photo-card.landscape { aspect-ratio: 16 / 10; max-width: 100%; margin: 0; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-grid > div { min-height: 120px; }
  .fact-grid > div + div { padding-left: 0; border-left: 0; }
  .country-photo > div { padding-right: 0; padding-left: 0; border-right: 0; border-bottom: 0; }
  .direction-index > a { grid-template-columns: 100px 1fr 22px; }
  .catalog article { grid-template-columns: .7fr 1fr; }
  .split-cards, .location-grid, .launch-rates { grid-template-columns: 1fr; }
  .location-grid article:nth-child(odd) { border-right: 0; }
  .packing-list article { grid-template-columns: 55px .65fr 1fr; }
  .rate-cards { grid-template-columns: 1fr; }
  .rate-cards article { min-height: 230px; }
  .rate-cards article + article { border-left: 0; }
  .launch-rates > div + div { border-top: 1px solid var(--line-dark); }
  .media-intro, .company-numbers, .contact-grid { grid-template-columns: 1fr; }
  .media-intro article + article, .company-numbers > div + div, .contact-grid article + article { border-top: 1px solid var(--line-light); border-left: 0; }
  .gallery-card.wide { grid-column: span 12; }
  .gallery-card.standard, .gallery-card.tall { grid-column: span 6; }
  .media-center-hero, .video-feature { grid-template-columns: 1fr; }
  .media-center-hero { min-height: auto; }
  .media-center-hero::before { background-position: 67% center; }
  .media-center-hero::after { background: linear-gradient(90deg, rgba(5,6,7,.97), rgba(5,6,7,.67)), linear-gradient(0deg, rgba(5,6,7,.98) 0%, transparent 45%, rgba(5,6,7,.7) 100%), radial-gradient(circle at 76% 26%, rgba(255,0,51,.3), transparent 27%); }
  .media-channel-panel { width: min(100%, 520px); margin: 0; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card-copy { min-height: 0; }
  .video-card-copy h3 { min-height: 0; }
  .telegram-grid { grid-template-columns: 1fr; }
  .media-contact-strip { grid-template-columns: 1fr; }
  .media-contact-strip .button { justify-self: start; }
  .footer-contact-heading { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .footer-contact-grid { grid-template-columns: 1fr; }
  .footer-contact-card { min-height: 235px; }
  .footer-location-heading { align-items: flex-start; flex-direction: column; gap: 15px; }
  .footer-location-heading span { text-align: left; }
  .footer-location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line-dark); }
  .footer-location-grid article { border: 0; }
  .footer-location-grid article + article { border-left: 1px solid var(--line-dark); }
  .footer-location-grid article:nth-child(odd) { border-left: 0; }
  .footer-location-grid article:nth-child(n + 3) { border-top: 1px solid var(--line-dark); }
}

@media (max-width: 600px) {
  .site-header { height: 74px; padding: 0 18px; }
  .brand img { width: 126px; height: 48px; }
  .brand > span { display: none; }
  .header-cta { display: none; }
  .mobile-menu { top: 74px; padding-right: 18px; padding-left: 18px; }
  .hero { min-height: auto; padding: 65px 18px; }
  .hero-media img { object-position: 58% center; }
  .hero h1, .page-hero h1 { font-size: clamp(44px, 13.5vw, 66px); }
  .hero-lead, .page-lead { font-size: 17px; }
  .hero-service-note { align-items: flex-start; flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .hero-metrics div:nth-child(3) { grid-column: 1 / -1; padding-left: 0; border-left: 0; }
  .route-board > a { grid-template-columns: 32px 1fr 18px; }
  .route-board a em { display: none; }
  .service-rail { padding: 0 18px; }
  .service-rail span { padding-right: 10px; font-size: 12px; }
  .service-rail span + span { padding-left: 12px; }
  .section-pad { padding-right: 18px; padding-left: 18px; }
  .section-heading h2, .founder-copy h2, .footer-contact-heading h2 { overflow-wrap: anywhere; }
  .direction-section { background-position: 61% top; background-size: auto 58%; }
  .intro h2, .section-heading h2, .photo-proof-copy h2, .rate-teaser h2, .contact-strip h2, .country-photo h2, .launch-panel h2, .notice h2, .packing-story h2, .about-statement h2 { font-size: clamp(38px, 12vw, 54px); }
  .photo-proof-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .photo-card, .photo-card.main { grid-column: auto; grid-row: auto; min-height: 340px; }
  .cargo-grid, .process-grid, .nuance-grid, .service-grid { grid-template-columns: 1fr; }
  .format-card { min-height: 0; }
  .format-card .button { width: 100%; }
  .cargo-section::before, .cargo-section::after { right: 0; left: 0; width: 100%; height: 54%; }
  .cargo-section::before { top: 0; bottom: auto; }
  .cargo-section::after { top: auto; bottom: 0; }
  .cargo-grid article { min-height: 225px; }
  .cargo-grid article + article, .cargo-grid article:nth-child(4), .cargo-grid article:nth-child(5), .process-grid article + article, .nuance-grid article + article, .service-grid article + article, .nuance-grid article:nth-child(3), .service-grid article:nth-child(3) { border-top: 1px solid var(--line-dark); border-left: 0; }
  .process-grid article + article { border-color: var(--line-dark); }
  .cargo-grid h3 { margin-top: 58px; }
  .rate-pair { grid-template-columns: 1fr; }
  .rate-pair article { min-height: 235px; }
  .rate-pair article + article { border-top: 1px solid var(--line-dark); border-left: 0; }
  .points-section { background-position: 39% center; }
  .point-list { grid-template-columns: 1fr; }
  .point-list a { min-height: 215px; padding: 24px; }
  .point-list a + a, .point-list a:nth-child(4) { border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .point-list span { top: 24px; left: 24px; }
  .point-list b { top: 21px; right: 24px; }
  .founder-section { gap: 52px; }
  .founder-visual { min-height: 500px; }
  .founder-visual > img { height: 91%; }
  .founder-seal { top: 18px; left: 18px; min-width: 138px; padding: 14px; }
  .founder-copy h2 { font-size: clamp(38px, 12vw, 54px); }
  .founder-name { display: grid; gap: 9px; align-items: start; }
  .founder-actions { align-items: stretch; }
  .founder-actions .button { width: 100%; }
  .founder-social { grid-template-columns: 1fr; }
  .founder-social a { min-height: 70px; padding-right: 14px; padding-left: 14px; }
  .founder-social a + a { border-top: 1px solid var(--line-dark); border-left: 0; }
  .contact-strip { padding-right: 18px; padding-left: 18px; }
  .contact-strip .button { width: 100%; }
  .order-section { padding-right: 18px; padding-left: 18px; }
  .order-route { grid-template-columns: auto 1fr; }
  .order-route i { display: none; }
  .order-fields { grid-template-columns: 1fr; }
  .order-fields label.full { grid-column: auto; }
  .order-submit-row { align-items: stretch; flex-direction: column; }
  .order-submit-row .button { width: 100%; }
  .page-hero { padding: 75px 18px 65px; }
  .direction-index { padding: 0 18px; }
  .direction-index > a { grid-template-columns: 1fr 22px; gap: 20px; padding: 38px 0; }
  .direction-index > a > div:first-child { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }
  .direction-index > a > div:nth-child(2) > span { font-size: 15px; }
  .country-photo figure { min-height: 340px; }
  .route-summary ol, .check-grid { grid-template-columns: 1fr; }
  .route-summary li:nth-child(even), .check-grid span:nth-child(even) { padding-left: 0; border-left: 0; }
  .catalog article { grid-template-columns: 1fr; gap: 24px; }
  .catalog h2 { margin-top: 25px; }
  .timeline article { grid-template-columns: 50px 1fr; gap: 14px; }
  .split-cards h3 { margin-top: 65px; }
  .packing-photos { grid-template-columns: 1fr; grid-template-rows: none; min-height: 0; }
  .packing-photos figure, .packing-photos figure.large { grid-row: auto; min-height: 340px; }
  .packing-list article { grid-template-columns: 42px 1fr; gap: 15px; padding: 30px 0; }
  .packing-list article p { grid-column: 2; }
  .calculator-fields { grid-template-columns: 1fr; }
  .calculator-fields label.full { grid-column: auto; }
  .calculator-result > div { align-items: flex-start; flex-direction: column; }
  .calculator-actions > * { width: 100%; }
  .gallery-grid { grid-auto-rows: 360px; }
  .gallery-card.wide, .gallery-card.standard, .gallery-card.tall { grid-column: span 12; grid-row: span 1; }
  .contact-grid h2 { margin-top: 65px; }
  .media-center-hero { padding-top: 70px; padding-bottom: 70px; }
  .media-center-hero::before { background-position: 64% center; opacity: .8; }
  .media-center-hero::after { background: linear-gradient(90deg, rgba(5,6,7,.98), rgba(5,6,7,.72)), linear-gradient(0deg, rgba(5,6,7,.98) 0%, transparent 32%, rgba(5,6,7,.75) 100%), radial-gradient(circle at 72% 20%, rgba(255,0,51,.32), transparent 25%); }
  .media-center-hero h1 { font-size: clamp(47px, 14vw, 70px); }
  .media-channel-panel { aspect-ratio: auto; min-height: 380px; }
  .video-feature { padding-top: 75px; padding-bottom: 75px; }
  .video-library, .telegram-hub { padding-top: 80px; padding-bottom: 80px; }
  .telegram-card { min-height: 410px; padding: 28px; }
  .telegram-card > span { padding-right: 88px; }
  .telegram-brand-icon { top: 24px; right: 24px; width: 68px; height: 68px; padding: 15px; }
  .telegram-card footer { align-items: flex-start; flex-direction: column; gap: 12px; }
  .media-contact-strip { padding-top: 70px; padding-bottom: 70px; }
  .media-contact-strip .button { width: 100%; }
  .footer-contact-heading h2 { font-size: clamp(38px, 11.5vw, 52px); }
  .footer-contact-card { min-height: 220px; padding: 24px; }
  .footer-contact-card small { margin-top: 38px; }
  .footer-location-grid { grid-template-columns: 1fr; }
  .footer-location-grid article + article, .footer-location-grid article:nth-child(odd) { border-top: 1px solid var(--line-dark); border-left: 0; }
  .footer-location-grid article:first-child { border-top: 0; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 45px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; }
}

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