/* ==========================================================================
   EL-ROI Shipping Services
   Luxury logistics theme: marine navy, brass gold, steel blue, ivory.
   Fonts (Fraunces + Inter) are loaded in each page <head>.
   ========================================================================== */

:root {
  --navy: #0B1F35;
  --navy-deep: #071526;
  --navy-2: #12304F;
  --ink: #0A0A0A;
  --gold: #C9A227;
  --gold-soft: #E0C468;
  --gold-deep: #9A7318;
  --steel: #3E6D9C;
  --steel-soft: #8FB0D1;
  --ivory: #F6F4EE;
  --ivory-2: #ECE8DC;
  --white: #FFFEFB;

  --text: #0A0A0A;
  --text-2: rgba(10, 10, 10, .66);
  --text-3: rgba(10, 10, 10, .48);
  --on-dark: #F6F4EE;
  --on-dark-2: rgba(246, 244, 238, .72);
  --on-dark-3: rgba(246, 244, 238, .5);
  --line: rgba(10, 10, 10, .12);
  --line-light: rgba(246, 244, 238, .16);
  --wa: #25D366;

  --f-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --f-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --max: 1240px;
  --gut: clamp(16px, 4vw, 40px);
  --r: 2px;
  --ease: cubic-bezier(.22, .7, .2, 1);
  --header-h: 80px;
  --topbar-h: 36px;

  /* Gradients: always within the brand palette */
  --grad-gold: linear-gradient(100deg, #F4DE92 0%, #E0C468 28%, #C9A227 58%, #EAD08A 100%);
  --grad-gold-deep: linear-gradient(100deg, #B48C1E 0%, #8C6512 55%, #A8791C 100%);
  --grad-btn: linear-gradient(135deg, #EDD585 0%, #C9A227 50%, #A8791C 100%);
  --grad-navy: linear-gradient(160deg, #0B1F35 0%, #0D2643 55%, #11335A 100%);
  --grad-ivory: linear-gradient(180deg, #EFEBE0 0%, #E8E3D5 100%);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 500;
  font-variation-settings: 'opsz' 144;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0 0 .45em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); font-weight: 400; }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 400; }
h1, h2 { text-wrap: balance; }
h3 { font-size: clamp(1.35rem, 1.8vw, 1.6rem); letter-spacing: -.005em; font-variation-settings: normal; }
h4 { font-size: 1.25rem; letter-spacing: 0; font-variation-settings: normal; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--gold-deep); }
.dark h1 em, .dark h2 em, .dark h3 em { color: var(--gold-soft); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  h1 em, h2 em, h3 em, .grad-text {
    background: var(--grad-gold-deep);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding-right: .06em;
  }
  .dark h1 em, .dark h2 em, .dark h3 em, .page-hero h1 em, .hero h1 .accent, .statement blockquote em,
  .values span:nth-child(even), .logo-name em, .pl-mark em, .calc-amount {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero h1 .accent { background-size: 220% 100%; animation: sheen 8s ease-in-out infinite alternate; padding-right: .06em; }
  .hero .stat-num { background: linear-gradient(180deg, #FFFFFF 0%, #EADFB8 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
}
@keyframes sheen { from { background-position: 0% 0; } to { background-position: 100% 0; } }

::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }
section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 500; background: var(--gold); color: var(--ink); padding: 10px 16px; font-weight: 600; }
.skip:focus { top: 12px; }
.ico { width: 16px; height: 16px; flex: none; }
.wa-ico { width: 18px; height: 18px; flex: none; }

/* Colour contexts */
.dark { background: var(--navy); background-image: var(--grad-navy); color: var(--on-dark); }
.dark p { color: var(--on-dark-2); }
.section-alt { background: var(--ivory-2); background-image: var(--grad-ivory); }

/* ---------- Labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; flex: none; }
.dark .eyebrow { color: var(--gold-soft); }
.num-label { display: block; font-family: var(--f-serif); font-style: italic; font-size: 1rem; color: var(--text-3); margin-bottom: 10px; }
.dark .num-label { color: var(--on-dark-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 54px;
  padding: 0 28px;
  font-family: var(--f-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn .ico { transition: transform .3s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }
.btn-primary { background: var(--gold); background-image: var(--grad-btn); background-size: 160% 160%; background-position: 0% 0%; color: var(--ink); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 12px 26px -14px rgba(201, 162, 39, .8); transition: background-position .5s var(--ease), box-shadow .3s var(--ease), color .3s; }
.btn-primary:hover { background-position: 100% 100%; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 16px 32px -14px rgba(201, 162, 39, .95); }
.btn-ghost { border-color: var(--line-light); color: var(--on-dark); }
.btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn-dark { background: var(--navy); background-image: linear-gradient(135deg, #12304F, #0B1F35 60%, #071526); color: var(--on-dark); }
.btn-dark:hover { background-image: linear-gradient(135deg, #1A4470, #0F2A48 60%, #0B1F35); }
.btn-outline { border-color: rgba(10, 10, 10, .25); color: var(--navy); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--on-dark); }
.btn-sm { height: 44px; padding: 0 20px; font-size: .72rem; }
.btn-block { width: 100%; }
.btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  transition: gap .3s var(--ease), color .3s;
}
.link-arrow:hover { gap: 16px; color: var(--gold-deep); }
.dark .link-arrow { color: var(--on-dark); }
.dark .link-arrow:hover { color: var(--gold-soft); }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--navy-deep);
  display: grid;
  place-items: center;
  transition: opacity .6s var(--ease), visibility 0s .6s;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.pl-mark { font-family: var(--f-serif); font-size: 1.6rem; color: var(--on-dark); display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pl-mark em { color: var(--gold-soft); }
.pl-bar { width: 120px; height: 1px; background: var(--line-light); overflow: hidden; position: relative; }
.pl-bar::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translateX(-100%); animation: plbar 1s var(--ease) infinite; }
@keyframes plbar { to { transform: translateX(100%); } }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-deep); color: var(--on-dark-3); font-size: .74rem; letter-spacing: .04em; border-bottom: 1px solid var(--line-light); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: var(--topbar-h); gap: 20px; }
.tb-left, .tb-right { display: flex; align-items: center; gap: 22px; }
.topbar a { transition: color .2s; }
.topbar a:hover { color: var(--gold-soft); }
.tb-wa { color: var(--on-dark-2); display: inline-flex; align-items: center; gap: 7px; }
.tb-wa::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--wa); }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  background-image: linear-gradient(90deg, #0A1C31 0%, #0B1F35 50%, #0E2744 100%);
  color: var(--on-dark);
  border-bottom: 1px solid var(--line-light);
  transition: box-shadow .3s;
}
header.site.scrolled { box-shadow: 0 10px 30px -12px rgba(7, 21, 38, .6); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; flex: none; }
.logo-mark { width: 42px; height: 42px; flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--f-serif); font-size: 1.5rem; font-weight: 500; letter-spacing: .01em; }
.logo-name em { font-style: italic; font-weight: 400; color: var(--gold-soft); }
.logo-sub { font-size: .56rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--on-dark-3); margin-top: 6px; }

nav.primary { display: flex; align-items: center; gap: 4px; }
nav.primary a {
  position: relative;
  font-size: .84rem;
  font-weight: 500;
  padding: 10px 12px;
  color: var(--on-dark-2);
  transition: color .2s;
}
nav.primary a::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
nav.primary a:hover, nav.primary a.active { color: var(--on-dark); }
nav.primary a:hover::after, nav.primary a.active::after { transform: scaleX(1); }
.nav-end { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  position: relative;
  width: 46px; height: 46px;
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  background: transparent;
  color: var(--on-dark);
  cursor: pointer;
}
.nav-toggle span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: currentColor; transition: transform .35s var(--ease), top .35s var(--ease); }
.nav-toggle span:nth-child(1) { top: 18px; }
.nav-toggle span:nth-child(2) { top: 26px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--navy);
  color: var(--on-dark);
  padding: calc(var(--header-h) + var(--topbar-h) + 20px) var(--gut) 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility 0s .4s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transition: opacity .4s var(--ease); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--f-serif);
  font-size: clamp(1.7rem, 7vw, 2.4rem);
  line-height: 1.15;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-light);
  transition: color .2s, padding .3s var(--ease);
}
.mobile-menu nav a span { font-family: var(--f-sans); font-size: .7rem; letter-spacing: .1em; color: var(--gold-soft); }
.mobile-menu nav a:hover, .mobile-menu nav a.active { color: var(--gold-soft); padding-left: 6px; }
.mm-foot { display: grid; gap: 10px; margin-top: 28px; }
.mm-foot small { color: var(--on-dark-3); font-size: .78rem; letter-spacing: .06em; }

/* ---------- Home hero ---------- */
.hero { padding: clamp(56px, 7vw, 110px) 0 clamp(48px, 6vw, 80px); overflow: hidden; isolation: isolate; min-height: calc(100svh - var(--header-h) - var(--topbar-h)); display: flex; flex-direction: column; justify-content: center; background: var(--navy-deep); }
.hero > .container { width: 100%; }
.hero-media { position: absolute; inset: -12% 0 -12% 0; z-index: -3; overflow: hidden; transform: translate3d(0, var(--parallax, 0px), 0); will-change: transform; }
.hero-photo, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 30% 55%; }
.hero-photo { object-position: 40% 60%; transform-origin: 60% 60%; animation: kenburns 28s ease-in-out infinite alternate; filter: saturate(.8) contrast(1.08) brightness(.9); }
@keyframes kenburns { from { transform: scale(1.06) translate3d(1.5%, 0, 0); } to { transform: scale(1.2) translate3d(-2.5%, -1.5%, 0); } }
.hero-video { opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-video.is-playing { opacity: 1; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 21, 38, .96) 0%, rgba(8, 25, 44, .92) 38%, rgba(11, 31, 53, .74) 56%, rgba(14, 40, 68, .6) 72%, rgba(16, 45, 76, .56) 100%),
    linear-gradient(180deg, rgba(7, 21, 38, .45) 0%, rgba(7, 21, 38, 0) 28%, rgba(7, 21, 38, 0) 60%, rgba(7, 21, 38, .92) 100%);
}
.hero-aurora {
  position: absolute;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(38% 48% at 74% 38%, rgba(62, 109, 156, .42), transparent 70%),
    radial-gradient(30% 36% at 62% 82%, rgba(201, 162, 39, .14), transparent 70%),
    radial-gradient(28% 34% at 12% 18%, rgba(62, 109, 156, .2), transparent 70%);
  animation: aurora 22s ease-in-out infinite alternate;
}
@keyframes aurora { from { transform: translate3d(-3%, -2%, 0) rotate(0deg); } to { transform: translate3d(3%, 3%, 0) rotate(6deg); } }
.hero-sweep { position: absolute; inset: 0; z-index: -2; pointer-events: none; background: linear-gradient(105deg, transparent 42%, rgba(224, 196, 104, .08) 50%, transparent 58%); background-size: 260% 100%; animation: sweep 10s ease-in-out infinite; }
@keyframes sweep { 0% { background-position: 130% 0; } 55%, 100% { background-position: -30% 0; } }

/* 3D globe */
.hero-globe-wrap { position: relative; width: 100%; max-width: 620px; margin-left: auto; }
.hero-globe { position: relative; aspect-ratio: 1 / 1; width: 100%; cursor: grab; touch-action: pan-y; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-globe.is-ready { opacity: 1; }
.hero-globe.is-dragging { cursor: grabbing; }
.globe-canvas { display: block; width: 100%; height: 100%; }
.globe-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: -3%; font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-2); }
.globe-legend span { display: inline-flex; align-items: center; gap: 9px; }
.globe-legend i { width: 20px; height: 2px; background: linear-gradient(90deg, var(--gold-soft), var(--gold)); }
.globe-legend i.eu { background: var(--steel-soft); }
.globe-legend i.ww { background: repeating-linear-gradient(90deg, rgba(246, 244, 238, .6) 0 2px, transparent 2px 5px); }
.globe-hint { text-align: center; font-family: var(--f-serif); font-style: italic; font-size: .88rem; color: var(--on-dark-3); margin: 10px 0 0; }
.hero-network { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; opacity: .55; }
.hn-line { fill: none; stroke: var(--steel); stroke-width: 1; opacity: .45; stroke-dasharray: 1600; stroke-dashoffset: 1600; animation: draw 3.2s var(--ease) forwards; }
.hn-line:nth-child(2) { animation-delay: .4s; stroke: var(--gold); opacity: .3; }
.hn-line:nth-child(3) { animation-delay: .8s; }
.hn-dot { fill: var(--gold-soft); opacity: .7; animation: twinkle 3.6s ease-in-out infinite; }
.hn-dot:nth-of-type(2n) { animation-delay: -1.2s; fill: var(--steel-soft); }
.hn-dot:nth-of-type(3n) { animation-delay: -2.1s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes twinkle { 50% { opacity: .15; } }

.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.hero h1 { font-size: clamp(2.9rem, 5.4vw, 5rem); margin-bottom: 28px; }
.hero h1 .line { display: block; }
.hero h1 .accent { display: block; font-style: italic; color: var(--gold-soft); }
.hero-lede { font-size: clamp(1.02rem, 1.3vw, 1.15rem); color: var(--on-dark-2); max-width: 50ch; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-wa { display: inline-flex; align-items: center; gap: 10px; font-size: .86rem; color: var(--on-dark-2); margin-left: 8px; transition: color .2s; }
.hero-wa:hover { color: var(--gold-soft); }
.hero-wa .wa-ico { color: var(--wa); }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--line-light); }
.hero-stats > div { padding: 24px 20px 0 0; }
.hero-stats > div + div { padding-left: 20px; border-left: 1px solid var(--line-light); }
.stat-num { font-family: var(--f-serif); font-size: clamp(2rem, 3.2vw, 2.8rem); line-height: 1; color: var(--on-dark); font-variation-settings: 'opsz' 144; }
.stat-num .plus { color: var(--gold-soft); margin-left: 2px; }
.stat-num small { font-size: .62em; color: var(--gold-soft); font-style: italic; margin-left: 2px; }
.stat-label { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-3); margin-top: 10px; }

/* Route card (hero visual) */
.route-card {
  position: relative;
  background: linear-gradient(160deg, rgba(18, 48, 79, .9), rgba(7, 21, 38, .95));
  border: 1px solid var(--line-light);
  padding: clamp(22px, 2.6vw, 32px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
}
.route-card::before { content: ""; position: absolute; top: -1px; left: 32px; right: 32px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.route-card::after, .testimonial::after {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(224, 196, 104, .65), rgba(143, 176, 209, .12) 45%, rgba(224, 196, 104, .3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
}
.rc-head { display: flex; justify-content: space-between; gap: 12px; font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-3); padding-bottom: 16px; border-bottom: 1px solid var(--line-light); }
.rc-head .live { color: var(--gold-soft); display: inline-flex; align-items: center; gap: 8px; }
.rc-head .live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft); animation: twinkle 1.8s ease-in-out infinite; }
.rc-svg { width: 100%; height: auto; display: block; margin: 10px 0 2px; overflow: visible; }
.rc-arc { fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-dasharray: 520; stroke-dashoffset: 520; animation: draw 2.4s var(--ease) .5s forwards; }
.rc-arc-2 { fill: none; stroke: var(--steel-soft); stroke-width: 1; stroke-dasharray: 3 6; opacity: .55; }
.rc-node { fill: var(--navy-deep); stroke: var(--gold-soft); stroke-width: 2; }
.rc-glow { fill: var(--gold-soft); animation: pulse 2.4s var(--ease) infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(2.4); opacity: 0; } }
.rc-ship { fill: var(--gold-soft); }
.rc-points { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 12px; }
.rc-points small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-3); }
.rc-points strong { display: block; font-family: var(--f-serif); font-weight: 400; font-size: clamp(1.7rem, 2.6vw, 2.2rem); line-height: 1.1; color: var(--on-dark); }
.rc-points span { font-size: .8rem; color: var(--on-dark-2); }
.rc-points > div:last-child { text-align: right; }
.rc-mid { font-family: var(--f-serif); font-style: italic; font-size: .92rem; color: var(--gold-soft); text-align: center; padding-bottom: 8px; }
.rc-list { margin-top: 22px; border-top: 1px solid var(--line-light); }
.rc-list li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line-light); font-size: .88rem; color: var(--on-dark-2); }
.rc-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.rc-list li span:first-child { color: var(--on-dark); }
.rc-list li span:first-child::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; border: 1px solid var(--gold-soft); margin-right: 12px; vertical-align: middle; transform: translateY(-1px); }

/* ---------- Marquee ---------- */
.marquee { background: var(--navy-deep); color: var(--on-dark); border-block: 1px solid var(--line-light); overflow: hidden; padding: 22px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee { position: relative; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 12%; z-index: 1; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--navy-deep), rgba(7, 21, 38, 0)); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--navy-deep), rgba(7, 21, 38, 0)); }
.marquee-track span { display: inline-flex; align-items: center; gap: 36px; padding-left: 36px; font-family: var(--f-serif); font-style: italic; font-size: clamp(1.25rem, 2.2vw, 1.8rem); white-space: nowrap; color: var(--on-dark-2); }
.marquee-track span::after { content: ""; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section heads ---------- */
.section-head { display: grid; grid-template-columns: 1fr minmax(0, 440px); align-items: end; gap: 28px 64px; margin-bottom: clamp(44px, 5vw, 72px); }
.section-head h2 { margin: 0; }
.section-head p { color: var(--text-2); margin: 0 0 18px; }
.dark .section-head p { color: var(--on-dark-2); }

/* ---------- Cargo cards ---------- */
.cargo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.cargo-card { display: flex; flex-direction: column; }
.cargo-img { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--ivory-2); margin-bottom: 22px; }
.cargo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.cargo-img::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(224, 196, 104, 0); transition: border-color .5s var(--ease), inset .5s var(--ease); pointer-events: none; }
.cargo-card:hover .cargo-img img { transform: scale(1.05); }
.cargo-card:hover .cargo-img::after { border-color: rgba(224, 196, 104, .9); inset: 16px; }
.cargo-idx { font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.cargo-card h3 { margin-bottom: 8px; color: var(--navy); }
.cargo-card p { color: var(--text-2); font-size: .94rem; margin: 0; }
.also { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; margin-top: clamp(40px, 5vw, 64px); padding-top: 28px; border-top: 1px solid var(--line); }
.also-label { font-family: var(--f-serif); font-style: italic; color: var(--text-3); }
.also li { font-size: .9rem; font-weight: 500; color: var(--navy); display: inline-flex; align-items: center; gap: 10px; }
.also li::before { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.also .link-arrow { margin-left: auto; }

/* ---------- Globe + coverage ---------- */
.coverage-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.route-visual { max-width: 520px; margin: 0 auto; width: 100%; }
.route-svg { width: 100%; height: auto; overflow: visible; }
.globe-meridian { transform-origin: 180px 160px; animation: meridian 9s linear infinite; }
.gm-2 { animation-delay: -3s; }
.gm-3 { animation-delay: -6s; }
@keyframes meridian { 0% { transform: scaleX(1); } 50% { transform: scaleX(.05); } 100% { transform: scaleX(1); } }
.globe-route { stroke-dasharray: 4 5; animation: flow 1.6s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -18; } }
.globe-marker-anim { animation: twinkle 2.4s ease-in-out infinite; }
.route-node-label { font-family: var(--f-sans); font-size: 8.5px; font-weight: 600; letter-spacing: .14em; fill: var(--on-dark-2); }
.route-node-label.origin { fill: var(--gold-soft); }

.route-table { width: 100%; border-collapse: collapse; }
.route-table th { text-align: left; font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--text-3); padding: 0 16px 14px 0; border-bottom: 1px solid var(--line); }
.route-table td { padding: 20px 16px 20px 0; border-bottom: 1px solid var(--line); vertical-align: middle; font-size: .95rem; color: var(--text-2); }
.route-table td:first-child { font-family: var(--f-serif); font-size: 1.35rem; color: var(--navy); }
.route-table td:first-child small { display: block; font-family: var(--f-sans); font-size: .76rem; color: var(--text-3); margin-top: 2px; }
.route-table .pill { display: inline-block; font-size: .64rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 6px 10px; border: 1px solid var(--gold); color: var(--gold-deep); white-space: nowrap; }
.route-table .pill.soft { border-color: var(--line); color: var(--text-3); }
.dark .route-table th { color: var(--on-dark-3); border-color: var(--line-light); }
.dark .route-table td { color: var(--on-dark-2); border-color: var(--line-light); }
.dark .route-table td:first-child { color: var(--on-dark); }
.dark .route-table td:first-child small { color: var(--on-dark-3); }
.dark .route-table .pill { color: var(--gold-soft); border-color: rgba(224, 196, 104, .6); }
.dark .route-table .pill.soft { border-color: var(--line-light); color: var(--on-dark-3); }
.table-note { font-size: .82rem; color: var(--text-3); margin: 18px 0 0; }
.dark .table-note { color: var(--on-dark-3); }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process-item { position: relative; padding-top: 30px; border-top: 1px solid var(--line); }
.process-item::before { content: ""; position: absolute; top: -1px; left: 0; height: 1px; width: 0; background: var(--gold); transition: width 1.2s var(--ease) calc(var(--i, 0) * .2s); }
.process-item.in::before, .no-io .process-item::before { width: 100%; }
.process-num { font-family: var(--f-serif); font-style: italic; font-size: 2.6rem; line-height: 1; color: var(--gold-deep); margin-bottom: 20px; }
.process-item h4 { margin-bottom: 10px; color: var(--navy); }
.process-item p { color: var(--text-2); font-size: .95rem; margin: 0; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 300; pointer-events: none; background: linear-gradient(90deg, #A8791C, #E0C468 60%, #F4DE92); transform-origin: 0 50%; transform: scaleX(var(--scroll, 0)); }

/* ---------- Journey: pinned scroll animation ---------- */
.journey { padding: 0; height: 380vh; }
.journey-sticky { position: sticky; top: var(--header-h); height: calc(100vh - var(--header-h)); height: calc(100svh - var(--header-h)); display: flex; align-items: center; overflow: hidden; }
.journey-inner { width: 100%; display: grid; gap: clamp(18px, 3vh, 32px); }
.journey-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.journey-head h2 { margin: 0; font-size: clamp(2rem, 3.6vw, 3.1rem); }
.journey-head .num-label, .journey-head .eyebrow { margin-bottom: 8px; }
.journey-head .eyebrow { margin-bottom: 14px; }
.journey-status { text-align: right; display: grid; gap: 4px; min-width: 220px; }
.js-label { font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--text-3); }
.journey-status strong { font-family: var(--f-serif); font-weight: 400; font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--navy); line-height: 1.1; }
.js-day { font-size: .82rem; color: var(--text-2); }
.js-day b { font-family: var(--f-serif); font-weight: 500; font-size: 1.05rem; color: var(--gold-deep); font-variant-numeric: tabular-nums; }

.journey-map {
  position: relative;
  height: clamp(180px, 42vh, 400px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #DCE6EE 0%, #E8EEF1 55%, #F1F2EE 100%);
  box-shadow: 0 30px 60px -40px rgba(11, 31, 53, .45);
}
.journey-map::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5), inset 0 0 60px rgba(62, 109, 156, .12); }
.journey-map svg { display: block; width: 100%; height: 100%; }
.jm-grid { fill: none; stroke: rgba(62, 109, 156, .13); stroke-width: 1; }
.jm-land { fill: #F7F4EC; stroke: rgba(154, 115, 24, .45); stroke-width: .8; vector-effect: non-scaling-stroke; }
.jm-route { fill: none; stroke: rgba(11, 31, 53, .28); stroke-width: 1.3; stroke-dasharray: 3 5; stroke-linecap: round; }
.jm-sea { stroke: rgba(62, 109, 156, .5); }
.jm-gold { fill: none; stroke: var(--gold); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.jm-mark .jm-dot { fill: var(--white); stroke: var(--navy); stroke-width: 2; }
.jm-hub .jm-dot { fill: var(--gold); stroke: var(--navy); stroke-width: 2.5; }
.jm-dest .jm-dot { fill: var(--gold-soft); stroke: var(--navy); }
.jm-eu .jm-dot { stroke: var(--steel); }
.jm-ring { fill: none; stroke: var(--gold); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; animation: pulse 2.4s var(--ease) infinite; }
.jm-label { font-family: var(--f-sans); font-size: 12.5px; font-weight: 600; letter-spacing: .06em; fill: var(--navy); paint-order: stroke; stroke: rgba(247, 244, 236, .9); stroke-width: 4px; stroke-linejoin: round; }
.jm-hub .jm-label { font-family: var(--f-serif); font-size: 17px; font-weight: 500; letter-spacing: 0; }
.jm-dest .jm-label { fill: var(--gold-deep); }
.jm-vehicle { filter: drop-shadow(0 4px 4px rgba(11, 31, 53, .3)); }

.journey-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.journey-step { position: relative; padding-top: 22px; border-top: 1px solid var(--line); opacity: .42; transition: opacity .5s var(--ease); }
.journey-step::before { content: ""; position: absolute; top: -1px; left: 0; height: 2px; width: 100%; background: var(--grad-btn); transform-origin: 0 50%; transform: scaleX(var(--fill, 0)); }
.journey-step.is-active, .journey-step.is-done { opacity: 1; }
.journey-step.is-done { opacity: .7; }
.journey-step .process-num { display: block; font-size: 1.9rem; margin-bottom: 10px; }
.journey-step h4 { margin-bottom: 6px; color: var(--navy); }
.journey-step p { color: var(--text-2); font-size: .92rem; margin: 0; }
.journey-dots { display: none; }

/* ---------- Statement band (duotone photo) ---------- */
.statement { background: var(--navy); color: var(--on-dark); overflow: hidden; isolation: isolate; padding: clamp(100px, 13vw, 180px) 0; text-align: center; }
.statement .bg, .page-hero .bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; filter: grayscale(1) contrast(1.1); mix-blend-mode: luminosity; opacity: .3; }
.statement::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 80% at 50% 50%, rgba(11, 31, 53, .3), rgba(11, 31, 53, .9)), linear-gradient(120deg, rgba(7, 21, 38, .6), rgba(28, 70, 112, .35)); }
.statement blockquote { margin: 0 auto; max-width: 22ch; font-family: var(--f-serif); font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: 1.08; letter-spacing: -.02em; font-weight: 300; }
.statement blockquote em { color: var(--gold-soft); }
.statement cite { display: block; margin-top: 28px; font-style: normal; font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--on-dark-3); }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.why-sticky { position: sticky; top: calc(var(--header-h) + 40px); }
.why-sticky p { color: var(--text-2); max-width: 42ch; }
.why-photo { position: relative; margin-top: 32px; aspect-ratio: 4 / 3; overflow: hidden; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-photo figcaption { position: absolute; left: 0; bottom: 0; background: var(--navy); color: var(--on-dark); font-family: var(--f-serif); font-style: italic; font-size: .95rem; padding: 10px 16px; }
.why-item { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: 0; }
.why-num { font-family: var(--f-serif); font-style: italic; font-size: 1.9rem; line-height: 1; color: var(--gold-deep); }
.why-item h4 { font-size: clamp(1.3rem, 1.8vw, 1.55rem); margin-bottom: 8px; color: var(--navy); }
.why-item p { color: var(--text-2); margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial { position: relative; border: 1px solid var(--line-light); padding: clamp(28px, 3.4vw, 44px); background: rgba(255, 255, 255, .02); margin: 0; }
.testimonial::before { content: "\201C"; position: absolute; top: 6px; right: 26px; font-family: var(--f-serif); font-size: 7rem; line-height: 1; color: var(--gold); opacity: .35; }
.testimonial p { font-family: var(--f-serif); font-size: clamp(1.3rem, 2vw, 1.65rem); line-height: 1.35; color: var(--on-dark); font-weight: 300; margin: 0 0 26px; max-width: 30ch; }
.testimonial cite { display: flex; align-items: center; gap: 14px; font-style: normal; font-size: .8rem; color: var(--on-dark-3); }
.testimonial cite::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
.stars { display: flex; gap: 4px; color: var(--gold-soft); margin-bottom: 18px; }
.stars svg { width: 14px; height: 14px; }

/* ---------- Photo strip ---------- */
.strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 max(var(--gut), calc((100% - var(--max)) / 2 + var(--gut))) 18px;
  scroll-padding-inline: max(var(--gut), calc((100% - var(--max)) / 2 + var(--gut)));
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--ivory-2);
}
.strip::-webkit-scrollbar { height: 4px; }
.strip::-webkit-scrollbar-track { background: var(--ivory-2); }
.strip::-webkit-scrollbar-thumb { background: var(--gold); }
.strip a { flex: 0 0 clamp(260px, 32vw, 440px); scroll-snap-align: start; }
.strip .strip-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ivory-2); }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.strip a:hover img { transform: scale(1.05); }
.strip .cap { display: block; margin-top: 12px; font-family: var(--f-serif); font-style: italic; color: var(--text-2); }
.strip-ctrl { display: flex; gap: 10px; }
.round-btn { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--navy); display: grid; place-items: center; cursor: pointer; transition: .3s var(--ease); }
.round-btn:hover { background: var(--navy); color: var(--on-dark); border-color: var(--navy); }
.round-btn.prev .ico { transform: rotate(180deg); }
.head-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta.section-alt { background-image: radial-gradient(60% 90% at 50% 0%, rgba(201, 162, 39, .13), transparent 70%), var(--grad-ivory); }
.cta h2 { max-width: 18ch; margin: 0 auto 18px; font-size: clamp(2.4rem, 5vw, 4.2rem); }
.cta p { max-width: 52ch; margin: 0 auto 34px; color: var(--text-2); }
.cta .hero-actions { justify-content: center; }
.cta-phone { display: inline-block; margin-top: 30px; font-family: var(--f-serif); font-size: 1.2rem; color: var(--navy); border-bottom: 1px solid var(--gold); }
.cta-phone:hover { color: var(--gold-deep); }
.cta.dark p { color: var(--on-dark-2); }
.cta.dark .cta-phone { color: var(--on-dark); }

/* ---------- Footer ---------- */
footer.site { background: var(--navy-deep); background-image: linear-gradient(180deg, #071526 0%, #040C17 100%); color: var(--on-dark-2); padding: clamp(64px, 8vw, 100px) 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line-light); }
.footer-grid .logo { color: var(--on-dark); margin-bottom: 20px; }
.footer-grid p { max-width: 34ch; color: var(--on-dark-3); }
footer h5 { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 18px; }
footer ul { display: grid; gap: 10px; }
footer a { transition: color .2s; }
footer a:hover { color: var(--gold-soft); }
footer strong { color: var(--on-dark); font-weight: 500; }
.break { word-break: break-all; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 24px 0 32px; font-size: .76rem; color: var(--on-dark-3); }
.footer-bottom em { font-family: var(--f-serif); color: var(--gold-soft); }

/* WhatsApp float */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 80; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(0, 0, 0, .35); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; }
body.menu-open .wa-float { opacity: 0; pointer-events: none; }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 400; max-width: calc(100% - 32px); background: var(--navy); color: var(--on-dark); padding: 14px 20px; font-size: .92rem; box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .4); border-left: 3px solid var(--gold); transform: translate(-50%, calc(100% + 40px)); visibility: hidden; transition: transform .45s var(--ease), visibility 0s .45s; }
.toast.show { transform: translate(-50%, 0); visibility: visible; transition: transform .45s var(--ease); }

/* ---------- Sub-page hero ---------- */
.page-hero { background: var(--navy); background-image: var(--grad-navy); color: var(--on-dark); padding: clamp(80px, 11vw, 150px) 0 clamp(72px, 9vw, 120px); overflow: hidden; isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(11, 31, 53, .97) 0%, rgba(11, 31, 53, .82) 50%, rgba(11, 31, 53, .4) 100%); }
.page-hero .route-line { position: absolute; left: 0; bottom: 0; height: 90px; z-index: -1; width: 100%; }
.page-hero .route-line path { fill: none; stroke: var(--gold); stroke-width: 1; opacity: .6; stroke-dasharray: 2000; stroke-dashoffset: 2000; animation: draw 3s var(--ease) .2s forwards; }
.page-hero .route-line circle { fill: var(--gold-soft); }
.page-hero h1 { max-width: 16ch; margin-bottom: 22px; }
.page-hero h1 em { color: var(--gold-soft); }
.page-hero .lede { font-size: clamp(1.02rem, 1.3vw, 1.15rem); color: var(--on-dark-2); max-width: 56ch; margin: 0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-3); margin-bottom: 30px; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb [aria-current] { color: var(--on-dark-2); }

/* ---------- Generic grids & cards ---------- */
.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.card { position: relative; background: var(--white); border: 1px solid var(--line); padding: clamp(28px, 3vw, 40px); transition: border-color .4s var(--ease), box-shadow .4s var(--ease); }
.card:hover { border-color: rgba(201, 162, 39, .55); box-shadow: 0 24px 50px -30px rgba(11, 31, 53, .35); }
.card h3 { margin-bottom: 12px; color: var(--navy); }
.card p { color: var(--text-2); margin: 0; }
.card-kicker { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 20px; }
.card-ico { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(201, 162, 39, .5); color: var(--gold-deep); margin-bottom: 26px; }
.card-ico svg { width: 24px; height: 24px; }
.card-navy { background: var(--navy); background-image: var(--grad-navy); border-color: var(--navy); color: var(--on-dark); }
.card-navy h3 { color: var(--on-dark); }
.card-navy p { color: var(--on-dark-2); }
.card-navy .card-kicker { color: var(--gold-soft); }
.card-navy.cta-card { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; }
.card-navy .link-arrow { color: var(--on-dark); align-self: flex-start; }
.card-navy .link-arrow:hover { color: var(--gold-soft); }

.checklist { display: grid; gap: 12px; margin-top: 18px; }
.checklist li { display: grid; grid-template-columns: 18px 1fr; gap: 14px; align-items: start; color: var(--text); }
.checklist li::before { content: ""; width: 18px; height: 18px; margin-top: 4px; border: 1px solid var(--gold); background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A7318' stroke-width='2.6'%3E%3Cpath d='M6 12.5l4 4L18 8'/%3E%3C/svg%3E") center / 12px no-repeat; }

/* Feature rows (services) */
.feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 96px); align-items: center; padding: clamp(36px, 5vw, 64px) 0; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 20px); }
.feature:last-child { border-bottom: 1px solid var(--line); }
.feature:nth-child(even) .feature-img { order: 2; }
.feature-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ivory-2); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.feature:hover .feature-img img { transform: scale(1.04); }
.feature-num { display: block; font-family: var(--f-serif); font-style: italic; color: var(--gold-deep); font-size: 1.1rem; margin-bottom: 12px; }
.feature h3 { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 400; color: var(--navy); }
.feature p { color: var(--text-2); max-width: 48ch; }

/* About */
.lead-p { font-family: var(--f-serif); font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.45; color: var(--navy); font-weight: 300; }
.glance { background: var(--white); border: 1px solid var(--line); padding: clamp(28px, 3.4vw, 44px); position: relative; }
.glance::before { content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 2px; background: var(--gold); }
.glance h3 { font-size: 1.7rem; color: var(--navy); margin-bottom: 10px; }
.glance-row { display: grid; grid-template-columns: 140px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.glance-row:last-child { border-bottom: 0; padding-bottom: 0; }
.glance-row span { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); padding-top: 3px; }
.values { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; margin: 0; font-family: var(--f-serif); font-weight: 300; font-size: clamp(2.2rem, 5.4vw, 4.8rem); line-height: 1.1; letter-spacing: -.02em; }
.values span:nth-child(even) { font-style: italic; color: var(--gold-soft); }
.photo-trio { display: grid; grid-template-columns: 1.3fr .8fr 1fr; gap: 20px; height: clamp(300px, 34vw, 460px); }
.photo-trio a { overflow: hidden; background: var(--ivory-2); }
.photo-trio img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.photo-trio a:hover img { transform: scale(1.05); }

/* Routes page */
.map-wrap { position: relative; border: 1px solid var(--line-light); padding: clamp(10px, 2vw, 24px); background: rgba(255, 255, 255, .02); }
.route-map { width: 100%; height: auto; display: block; }
.route-map .ln { fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.route-map .ln-main { stroke: var(--gold); }
.route-map .ln-eu { stroke: var(--steel-soft); }
.route-map .ln-world { stroke: var(--on-dark-3); stroke-dasharray: 2 10; }
.route-map .flow { fill: none; stroke: var(--gold-soft); stroke-width: 3; stroke-dasharray: 2 22; stroke-linecap: round; animation: flow2 1.4s linear infinite; }
@keyframes flow2 { to { stroke-dashoffset: -24; } }
.route-map .stn { fill: var(--navy); stroke: var(--steel-soft); stroke-width: 2.5; }
.route-map .stn-main { fill: var(--navy); stroke: var(--gold); stroke-width: 3; }
.route-map .hub { fill: var(--gold); stroke: var(--navy); stroke-width: 4; }
.route-map .hub-ring { fill: none; stroke: var(--gold); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; animation: pulse 2.4s var(--ease) infinite; }
.route-map text { font-family: var(--f-serif); font-size: 24px; fill: var(--on-dark); }
.route-map .sub { font-family: var(--f-sans); font-size: 10.5px; font-weight: 600; letter-spacing: .14em; fill: var(--on-dark-3); }
.route-map .t-gold { fill: var(--gold-soft); font-style: italic; }
.map-legend { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 18px; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-3); }
.map-legend span { display: inline-flex; align-items: center; gap: 10px; }
.map-legend i { width: 22px; height: 2px; background: var(--gold); }
.map-legend i.eu { background: var(--steel-soft); }
.map-legend i.ww { background: repeating-linear-gradient(90deg, var(--on-dark-3) 0 2px, transparent 2px 7px); }
.lanes { display: grid; margin-top: 8px; }
.lane { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; padding: 22px 0; border-bottom: 1px solid var(--line-light); }
.lane:last-child { border-bottom: 0; }
.lane-code { font-family: var(--f-serif); font-style: italic; font-size: 1.1rem; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--gold-soft); border-radius: 50%; }
.lane-code.eu { border-color: var(--steel-soft); color: var(--steel-soft); }
.lane-code.ww { border-color: var(--line-light); color: var(--on-dark-2); }
.lane h4 { margin-bottom: 6px; color: var(--on-dark); }
.lane p { margin: 0; font-size: .95rem; }

/* Gallery */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filters button { height: 42px; padding: 0 20px; border: 1px solid var(--line); background: transparent; color: var(--text-2); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: .3s var(--ease); }
.filters button:hover { color: var(--navy); border-color: var(--navy); }
.filters button.active { background: var(--navy); border-color: var(--navy); color: var(--on-dark); }
.masonry { columns: 3 300px; column-gap: 24px; }
.masonry figure { break-inside: avoid; margin: 0 0 32px; }
.masonry figure[hidden] { display: none; }
.masonry a { display: block; position: relative; overflow: hidden; cursor: zoom-in; background: var(--ivory-2); }
.masonry img { width: 100%; height: auto; transition: transform 1.2s var(--ease); }
.masonry a::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(224, 196, 104, 0); transition: border-color .5s var(--ease), inset .5s var(--ease); }
.masonry a:hover img { transform: scale(1.04); }
.masonry a:hover::after { border-color: rgba(224, 196, 104, .9); inset: 16px; }
.masonry figcaption { padding-top: 14px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.masonry figcaption strong { font-family: var(--f-serif); font-weight: 400; font-size: 1.2rem; color: var(--navy); }
.masonry figcaption span { font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); text-align: right; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(7, 21, 38, .96); display: none; align-items: center; justify-content: center; padding: 72px 16px 80px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1280px, 100%); max-height: 100%; object-fit: contain; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.lb-cap { position: absolute; left: 16px; right: 16px; bottom: 26px; text-align: center; font-family: var(--f-serif); font-style: italic; color: var(--on-dark-2); }
.lb-btn { position: absolute; width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line-light); background: rgba(11, 31, 53, .7); color: var(--on-dark); display: grid; place-items: center; cursor: pointer; transition: .3s var(--ease); }
.lb-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 16px; top: 50%; margin-top: -25px; }
.lb-prev .ico { transform: rotate(180deg); }
.lb-next { right: 16px; top: 50%; margin-top: -25px; }

/* News */
.posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px 28px; }
.post { display: flex; flex-direction: column; }
.post-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ivory-2); margin-bottom: 24px; }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.post:hover .post-img img { transform: scale(1.04); }
.post h3 { color: var(--navy); }
.post p { color: var(--text-2); margin: 0; }
.post.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.post.featured .post-img { margin: 0; aspect-ratio: 16 / 11; }
.post.featured h3 { font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 400; }
.badge { display: inline-block; font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq-aside { position: sticky; top: calc(var(--header-h) + 40px); }
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 0; background: none; border: 0; color: var(--navy); font-family: var(--f-serif); font-size: clamp(1.2rem, 1.8vw, 1.45rem); text-align: left; line-height: 1.25; cursor: pointer; transition: color .2s; }
.faq-q:hover { color: var(--gold-deep); }
.faq-icon { position: relative; flex: none; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; transition: transform .4s var(--ease), background .3s, border-color .3s, color .3s; color: var(--navy); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon { background: var(--navy); border-color: var(--navy); color: var(--gold-soft); transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { color: var(--text-2); margin: 0; padding: 0 60px 28px 0; max-width: 64ch; }

/* Forms */
.form-layout { display: grid; grid-template-columns: 1.45fr .85fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.form-panel { position: relative; background: var(--white); border: 1px solid var(--line); padding: clamp(26px, 4vw, 48px); }
.form-panel::before { content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 2px; background: var(--gold); }
.form-title { font-size: clamp(1.8rem, 2.6vw, 2.3rem); color: var(--navy); margin-bottom: 8px; }
.form-intro { color: var(--text-2); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; min-width: 0; }
.field label { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); }
.field label b { color: var(--gold-deep); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--ivory);
  border: 1px solid rgba(10, 10, 10, .16);
  border-radius: var(--r);
  padding: 14px 16px;
  min-height: 54px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(10, 10, 10, .3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201, 162, 39, .18); }
.field input::placeholder, .field textarea::placeholder { color: rgba(10, 10, 10, .35); }
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A7318' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
}
.field input[type="file"] { padding: 10px 12px; cursor: pointer; }
.field input[type="file"]::file-selector-button { font-family: var(--f-sans); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; background: var(--navy); color: var(--on-dark); border: 0; padding: 10px 14px; margin-right: 14px; border-radius: var(--r); cursor: pointer; }
.field-note { font-size: .82rem; color: var(--text-3); }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; padding-top: 24px; border-top: 1px solid var(--line); }
.form-foot small { color: var(--text-3); font-size: .82rem; max-width: 42ch; }
.form-foot small a { color: var(--gold-deep); border-bottom: 1px solid currentColor; }

.aside-stack { display: grid; gap: 20px; position: sticky; top: calc(var(--header-h) + 28px); }
.next-steps { counter-reset: ns; display: grid; gap: 20px; margin-top: 4px; }
.next-steps li { counter-increment: ns; display: grid; grid-template-columns: 36px 1fr; gap: 14px; }
.next-steps li::before { content: "0" counter(ns); font-family: var(--f-serif); font-style: italic; font-size: 1.4rem; line-height: 1.1; color: var(--gold-soft); }
.next-steps strong { display: block; color: var(--on-dark); font-weight: 500; margin-bottom: 2px; }
.next-steps span { color: var(--on-dark-2); font-size: .92rem; }
.contact-lines { display: grid; gap: 12px; margin-top: 18px; }
.contact-lines a { display: flex; align-items: center; gap: 12px; font-weight: 500; transition: color .2s; }
.contact-lines a:hover { color: var(--gold-deep); }
.card-navy .contact-lines a:hover { color: var(--gold-soft); }
.contact-lines svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.contact-lines .wa-ico { color: var(--wa); }

/* Contact */
.office address { font-style: normal; color: var(--text-2); line-height: 1.7; }
.office .link-arrow { margin-top: 22px; }
.map-block { margin-top: clamp(56px, 7vw, 96px); }
.map-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.map-tabs button { height: 42px; padding: 0 20px; border: 1px solid var(--line); background: transparent; color: var(--text-2); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: .3s var(--ease); }
.map-tabs button.active { background: var(--navy); color: var(--on-dark); border-color: var(--navy); }
.map-frame { position: relative; aspect-ratio: 21 / 8; min-height: 320px; border: 1px solid var(--line); background: var(--ivory-2); overflow: hidden; }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }

/* Calculator */
.calc { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: stretch; }
.calc-panel { background: var(--white); border: 1px solid var(--line); padding: clamp(26px, 4vw, 48px); }
.calc-step { padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.calc-step:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.calc-step .label { display: flex; gap: 14px; align-items: baseline; margin-bottom: 18px; font-family: var(--f-serif); font-size: 1.45rem; color: var(--navy); line-height: 1.1; }
.calc-step .label i { font-size: 1rem; color: var(--gold-deep); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; border: 0; padding: 0; margin: 0; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border: 1px solid rgba(10, 10, 10, .18); font-size: .9rem; cursor: pointer; transition: .25s var(--ease); user-select: none; background: var(--ivory); }
.chip span:hover { border-color: var(--navy); }
.chip input:checked + span { background: var(--navy); border-color: var(--navy); color: var(--on-dark); }
.chip input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 3px; }
.weight-row { display: grid; grid-template-columns: 1fr 180px; gap: 20px; align-items: center; }
.weight-input { position: relative; }
.weight-input input { width: 100%; font-family: var(--f-serif); font-size: 1.7rem; color: var(--navy); background: var(--ivory); border: 1px solid rgba(10, 10, 10, .16); border-radius: var(--r); padding: 8px 50px 8px 16px; min-height: 58px; }
.weight-input input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 39, .18); }
.weight-input span { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: .72rem; font-weight: 600; letter-spacing: .12em; color: var(--text-3); }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold) var(--p, 30%), rgba(10, 10, 10, .15) var(--p, 30%)); cursor: pointer; margin: 0; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--white); border: 2px solid var(--gold); box-shadow: 0 4px 10px rgba(0, 0, 0, .15); }
input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--white); border: 2px solid var(--gold); }
.presets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.presets button { height: 34px; padding: 0 14px; border: 1px dashed rgba(10, 10, 10, .22); background: none; color: var(--text-2); font-size: .76rem; cursor: pointer; transition: .25s; }
.presets button:hover { color: var(--gold-deep); border-color: var(--gold); }
.calc-result { position: relative; overflow: hidden; background: var(--navy); background-image: var(--grad-navy); color: var(--on-dark); padding: clamp(26px, 4vw, 48px); display: flex; flex-direction: column; gap: 26px; justify-content: space-between; isolation: isolate; }
.calc-result::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); }
.calc-result::after { content: "\20AC"; position: absolute; right: -10px; bottom: -80px; z-index: -1; font-family: var(--f-serif); font-style: italic; font-size: 20rem; line-height: 1; color: rgba(224, 196, 104, .06); }
.calc-result .eyebrow { margin-bottom: 14px; }
.calc-amount { font-family: var(--f-serif); font-weight: 300; font-size: clamp(3.2rem, 6vw, 5.4rem); line-height: 1; color: var(--gold-soft); letter-spacing: -.02em; word-break: break-word; }
.calc-amount.bump { animation: bump .4s var(--ease); }
@keyframes bump { 40% { transform: translateY(-4px); } }
.calc-breakdown { display: grid; gap: 8px; border-top: 1px solid var(--line-light); padding-top: 18px; font-size: .86rem; }
.calc-breakdown div { display: flex; justify-content: space-between; gap: 12px; }
.calc-breakdown span { color: var(--on-dark-3); }
.calc-breakdown strong { font-weight: 500; color: var(--on-dark); }
.calc-caveat { font-size: .84rem; color: var(--on-dark-3) !important; margin: 0; }

/* 404 */
.lost { min-height: 64vh; display: flex; align-items: center; }

/* ---------- Scroll animations ----------
   Browsers with scroll-driven animations get scroll-linked fades (in AND out) and image wipes.
   Others fall back to IntersectionObserver classes toggled in both directions. */
.js [data-reveal] { opacity: 0; transform: translate3d(0, 48px, 0); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); transition-delay: calc(var(--d, 0) * 110ms); }
.js [data-reveal].in { opacity: 1; transform: none; }
@keyframes sd-fade { 0% { opacity: 0; transform: translate3d(0, 80px, 0) scale(.96); } 24% { opacity: 1; transform: none; } 78% { opacity: 1; transform: none; } 100% { opacity: 0; transform: translate3d(0, -60px, 0) scale(.97); } }
@keyframes sd-fade-in { 0% { opacity: 0; transform: translate3d(0, 80px, 0) scale(.97); } 24%, 100% { opacity: 1; transform: none; } }
@keyframes sd-wipe { from { clip-path: inset(24% 0 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes sd-wipe-x { from { clip-path: inset(0 0 0 35%); } to { clip-path: inset(0 0 0 0); } }
@keyframes sd-zoom { from { scale: 1.28; } to { scale: 1; } }
@keyframes sd-parallax { from { translate: 0 -10%; } to { translate: 0 10%; } }
@keyframes hero-out { to { opacity: 0; transform: translate3d(0, -14vh, 0) scale(.96); } }
@supports (animation-timeline: view()) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
    animation: sd-fade linear both;
    animation-timeline: view();
    animation-range: entry calc(var(--d, 0) * 12%) exit 100%;
  }
  .js [data-reveal="in"] { animation-name: sd-fade-in; }
  .cargo-img, .feature-img, .why-photo, .post-img, .photo-trio a {
    animation: sd-wipe linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 42%;
  }
  .cargo-img img, .feature-img img, .why-photo img, .post-img img, .photo-trio img {
    animation: sd-zoom linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 60%;
  }
  .strip-img { animation: sd-wipe-x linear both; animation-timeline: view(inline); animation-range: entry 0% cover 35%; }
  .statement .bg { scale: 1.2; animation: sd-parallax linear both; animation-timeline: view(); }
  .hero > .container { animation: hero-out linear both; animation-timeline: scroll(root block); animation-range: 0 90vh; }
}

/* Headline word reveal (replays whenever the heading scrolls back into view) */
.wsplit .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding: 0 .07em .1em 0; margin: 0 -.07em -.1em 0; }
.wsplit .wi { display: inline-block; transform: translate3d(0, 108%, 0); opacity: 0; transition: transform 1s var(--ease), opacity .8s var(--ease); transition-delay: calc(var(--wi, 0) * 60ms); }
.wsplit.words-in .wi { transform: none; opacity: 1; }
.wsplit em { background: none !important; color: inherit !important; }
.wsplit em .wi { background-image: var(--grad-gold-deep); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; padding-right: .04em; }
.dark .wsplit em .wi, .page-hero .wsplit em .wi, .statement .wsplit em .wi { background-image: var(--grad-gold); }
.js .hero-copy > * { opacity: 0; transform: translateY(18px); animation: rise 1s var(--ease) forwards; }
.js .hero-copy > :nth-child(2) { animation-delay: .1s; }
.js .hero-copy > :nth-child(3) { animation-delay: .2s; }
.js .hero-copy > :nth-child(4) { animation-delay: .3s; }
.js .hero-copy > :nth-child(5) { animation-delay: .4s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1160px) {
  nav.primary { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 1024px) {
  .hero-grid, .coverage-grid, .why-grid, .split, .faq-layout, .form-layout, .calc { grid-template-columns: 1fr; }
  .route-card { max-width: 560px; }
  .hero-globe-wrap { margin: 8px auto 0; max-width: 520px; }
  .hero { min-height: 0; }
  .why-sticky, .faq-aside, .aside-stack { position: static; }
  .cargo-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature, .feature:nth-child(even) { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature-img { order: 0; }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .post.featured { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  :root { --header-h: 70px; }
  body { font-size: 15.5px; }
  .hide-sm { display: none !important; }
  .tb-left { display: none; }
  .topbar .container { justify-content: center; }
  .section-head { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero-stats > div:nth-child(n+3) { border-top: 1px solid var(--line-light); margin-top: 24px; }
  .hero-wa { margin-left: 0; }
  .hero-media::after { background: linear-gradient(180deg, rgba(7, 21, 38, .9) 0%, rgba(8, 25, 44, .82) 45%, rgba(11, 31, 53, .7) 70%, rgba(7, 21, 38, .95) 100%); }
  .hero-photo { object-position: 35% 50%; }
  .cargo-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .cargo-img { aspect-ratio: 4 / 5; }
  .process { grid-template-columns: 1fr; }
  .g-2, .g-3, .posts, .form-row, .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .photo-trio { grid-template-columns: 1fr 1fr; height: auto; }
  .photo-trio a { aspect-ratio: 4 / 5; }
  .photo-trio a:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .weight-row { grid-template-columns: 1fr; }
  .faq-a p { padding-right: 0; }
  .glance-row { grid-template-columns: 1fr; gap: 4px; }
  .route-table thead { display: none; }
  .route-table tr { display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
  .route-table td { padding: 0; border: 0; }
  .route-table td:first-child { grid-column: 1 / -1; }
  .dark .route-table tr { border-color: var(--line-light); }
  .map-frame { aspect-ratio: 4 / 3; min-height: 0; }
  .also .link-arrow { margin-left: 0; }
  .hero-actions .btn { flex: 1 1 auto; }
}
@media (max-width: 760px) {
  .journey { height: 320vh; }
  .journey-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .journey-head .num-label { display: none; }
  .journey-status { text-align: left; min-width: 0; grid-template-columns: auto 1fr; align-items: baseline; column-gap: 12px; }
  .journey-status .js-label { grid-column: 1 / -1; }
  .journey-map { height: clamp(220px, 36vh, 300px); }
  .jm-label { font-size: 11px; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-step { grid-area: 1 / 1; opacity: 0; transform: translateY(10px); transition: opacity .4s var(--ease), transform .4s var(--ease); pointer-events: none; }
  .journey-step.is-done { opacity: 0; }
  .journey-step.is-active { opacity: 1; transform: none; pointer-events: auto; }
  .journey-dots { display: flex; gap: 8px; }
  .journey-dots i { width: 22px; height: 2px; background: var(--line); transition: background .3s; }
  .journey-dots i.on { background: var(--gold); }
}
@media (max-width: 420px) {
  .nav-end .btn { display: none; }
  .cargo-grid { grid-template-columns: 1fr; }
  .cargo-img { aspect-ratio: 4 / 3; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .js [data-reveal], .js .hero-copy > * { opacity: 1; transform: none; animation: none !important; }
  .cargo-img, .feature-img, .why-photo, .post-img, .photo-trio a, .strip-img, .hero > .container, .statement .bg,
  .cargo-img img, .feature-img img, .why-photo img, .post-img img, .photo-trio img { animation: none !important; }
  .wsplit .wi { transform: none; opacity: 1; }
  .journey { height: auto; padding: clamp(80px, 10vw, 140px) 0; }
  .journey-sticky { position: static; height: auto; }
  .journey-step, .journey-step.is-done { opacity: 1; transform: none; grid-area: auto; }
  .journey-steps { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .journey-dots { display: none; }
}
.also .also-label::before { display: none; }

/* Privacy policy */
.policy { display: grid; grid-template-columns: 260px 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.policy-toc { position: sticky; top: calc(var(--header-h) + 32px); }
.policy-toc ol { display: grid; gap: 10px; counter-reset: toc; }
.policy-toc li { counter-increment: toc; display: flex; gap: 10px; font-size: .92rem; }
.policy-toc li::before { content: "0" counter(toc); font-family: var(--f-serif); font-style: italic; color: var(--gold-deep); }
.policy-toc a { color: var(--text-2); transition: color .2s; }
.policy-toc a:hover { color: var(--navy); }
.policy-body { max-width: 72ch; }
.policy-sec { padding: 0 0 36px; margin-bottom: 36px; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 24px); }
.policy-sec h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); color: var(--navy); }
.policy-sec p, .policy-sec li { color: var(--text-2); }
.policy-sec a, .form-foot small a, .footer-bottom a { color: var(--gold-deep); border-bottom: 1px solid currentColor; }
.footer-bottom a { color: var(--on-dark-2); }
.policy-date { font-size: .85rem; color: var(--text-3); }
@media (max-width: 860px) { .policy { grid-template-columns: 1fr; } .policy-toc { position: static; } }
.policy-sec .checklist li { display: block; position: relative; padding-left: 32px; }
.policy-sec .checklist li::before { position: absolute; left: 0; top: 2px; margin: 0; }
.policy-sec .checklist { margin-bottom: 16px; }
/* Map under the CTA */
.cta-map { margin-top: clamp(48px, 6vw, 72px); text-align: left; }
.cta-map .map-frame { width: 100%; height: clamp(280px, 34vw, 420px); aspect-ratio: auto; min-height: 0; }
/* (unused) click-to-load placeholder */
.map-consent { position: absolute; inset: 0; display: grid; place-items: center; padding: 24px; text-align: center; color: var(--on-dark);
  background: radial-gradient(60% 70% at 50% 45%, rgba(62, 109, 156, .35), transparent 70%), linear-gradient(rgba(143, 176, 209, .08) 1px, transparent 1px) 0 0 / 40px 40px, linear-gradient(90deg, rgba(143, 176, 209, .08) 1px, transparent 1px) 0 0 / 40px 40px, var(--grad-navy); }
.mc-inner { max-width: 460px; display: grid; justify-items: center; gap: 12px; }
.mc-pin { width: 40px; height: 40px; filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .4)); }
.mc-place { font-family: var(--f-serif); font-weight: 400; font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.map-consent p { margin: 0; font-size: .86rem; color: var(--on-dark-2); }
.map-consent p a { color: var(--gold-soft); border-bottom: 1px solid currentColor; }
.mc-remember { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--on-dark-3); cursor: pointer; }
.mc-remember input { accent-color: var(--gold); }

/* Truck photos behind navy blocks (tint is baked into each .photo-bg) */
.has-photo { position: relative; isolation: isolate; overflow: hidden; }
.has-photo > .photo-bg { position: absolute; inset: -6% 0; z-index: -1; background-size: cover, cover; background-repeat: no-repeat; pointer-events: none; }
.card.has-photo > .photo-bg, .calc-result.has-photo > .photo-bg { inset: 0; }
.card-navy.has-photo { border-color: rgba(224, 196, 104, .35); }
@supports (animation-timeline: view()) {
  section.has-photo > .photo-bg, footer.has-photo > .photo-bg { animation: sd-parallax linear both; animation-timeline: view(); }
}
@media (prefers-reduced-motion: reduce) { .has-photo > .photo-bg { animation: none !important; } }
.inline-link { color: var(--gold-deep); border-bottom: 1px solid currentColor; }

/* Guides / articles */
.prose { max-width: 74ch; margin: 0 auto; }
.prose h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); color: var(--navy); margin: 1.8em 0 .5em; }
.prose p, .prose li { color: var(--text-2); font-size: 1.04rem; }
.prose .lead-p { color: var(--navy); }
.prose a:not(.btn), .note a { color: var(--gold-deep); border-bottom: 1px solid currentColor; }
.prose .checklist { margin: 14px 0 22px; }
.prose .checklist li { display: block; position: relative; padding-left: 32px; }
.prose .checklist li::before { position: absolute; left: 0; top: 3px; margin: 0; }
.note { margin: 32px 0; padding: 20px 24px; background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold); color: var(--text-2); font-size: .95rem; }
.note strong { color: var(--navy); }
.small-note { font-size: .86rem !important; color: var(--text-3) !important; }
.table-wrap { overflow-x: auto; margin: 18px 0 8px; border: 1px solid var(--line); background: var(--white); }
.data-table { width: 100%; border-collapse: collapse; min-width: 620px; font-size: .95rem; }
.data-table th { text-align: left; font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); padding: 14px 16px; border-bottom: 1px solid var(--line); background: var(--ivory); }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); color: var(--text-2); }
.data-table td:first-child { font-family: var(--f-serif); font-size: 1.1rem; color: var(--navy); white-space: nowrap; }
.data-table tr:last-child td { border-bottom: 0; }
a.post { color: inherit; }
a.post:hover h3, .rel-card:hover h3 { color: var(--gold-deep); }
.rel-card { display: block; }
.rel-card .post-img { margin-bottom: 18px; }
.rel-card h3 { color: var(--navy); font-size: 1.3rem; transition: color .2s; }

/* Language switch */
.lang-switch { display: inline-flex; border: 1px solid var(--line-light); border-radius: var(--r); overflow: hidden; flex: none; }
.lang-switch a { font-size: .7rem; font-weight: 600; letter-spacing: .12em; padding: 8px 10px; color: var(--on-dark-3); transition: color .2s, background .2s; }
.lang-switch a:hover { color: var(--on-dark); }
.lang-switch a.on { background: rgba(224, 196, 104, .16); color: var(--gold-soft); }
.mm-foot .lang-switch { justify-self: start; margin-bottom: 6px; }
.mm-foot .lang-switch a { padding: 10px 16px; font-size: .8rem; }
@media (max-width: 1160px) { .nav-end > .lang-switch { display: none; } }

/* Longer German labels in the header */
nav.primary a { white-space: nowrap; }
html[lang="de"] nav.primary a { padding: 10px 8px; }
html[lang="de"] nav.primary a::after { left: 8px; right: 8px; }
html[lang="de"] .nav-end .btn { padding: 0 16px; letter-spacing: .1em; }
@media (max-width: 1320px) {
  html[lang="de"] nav.primary { display: none; }
  html[lang="de"] .nav-toggle { display: block; }
  html[lang="de"] .nav-end > .lang-switch { display: inline-flex; }
}
@media (max-width: 1440px) { .nav-end { gap: 10px; } }
@media (max-width: 760px) { .nav-end > .lang-switch { display: none !important; } }

/* Consent banner */
.consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 450; max-width: 760px; margin: 0 auto; display: flex; align-items: center; gap: 20px 28px; padding: 20px 24px; background: var(--navy); background-image: var(--grad-navy); color: var(--on-dark); border: 1px solid rgba(224, 196, 104, .35); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .55); }
.consent[hidden] { display: none; }
.consent::before { content: ""; position: absolute; top: -1px; left: 24px; right: 24px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.consent-body strong { display: block; font-family: var(--f-serif); font-weight: 500; font-size: 1.2rem; margin-bottom: 4px; }
.consent-body p { margin: 0; font-size: .86rem; color: var(--on-dark-2); }
.consent-body a { color: var(--gold-soft); border-bottom: 1px solid currentColor; }
.consent-actions { display: flex; gap: 10px; flex: none; }
.consent-actions .btn { min-width: 110px; }
.linklike { background: none; border: 0; padding: 0; font: inherit; color: var(--on-dark-2); border-bottom: 1px solid currentColor; cursor: pointer; }
.linklike:hover { color: var(--gold-soft); }
.map-frame iframe[hidden], .map-consent[hidden] { display: none; }
body:has(.consent:not([hidden])) .wa-float { bottom: 150px; }
@media (max-width: 640px) {
  .consent { flex-direction: column; align-items: stretch; left: 10px; right: 10px; bottom: 10px; padding: 18px; }
  .consent-actions .btn { flex: 1; }
  body:has(.consent:not([hidden])) .wa-float { bottom: 250px; }
}
.btn-ghost { background: transparent; }
.consent .btn-ghost { color: var(--on-dark); border-color: rgba(246, 244, 238, .55); }
.consent .btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
@media (max-width: 640px) { body:has(.consent:not([hidden])) .wa-float { bottom: 310px; } }
