/* ═══════════════════════════════════════════════════════════════
   TAABO CARGO — Premium Design System
   Fonts loaded via <link> in HTML for performance
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Light theme — cool slate neutrals + gold brand */
  --bg-deep: #f3f5f8;
  --bg-surface: #ffffff;
  --bg-elevated: #e9eef3;
  --bg-glass: rgba(255, 255, 255, 0.88);
  --ink: #121820;
  --gold: #a8872e;
  --gold-light: #c4a24a;
  --gold-dim: rgba(168, 135, 46, 0.12);
  --gold-glow: rgba(168, 135, 46, 0.28);
  --text-primary: #121820;
  --text-secondary: rgba(18, 24, 32, 0.68);
  --text-muted: rgba(18, 24, 32, 0.45);
  --text-on-media: #121820;
  --text-on-media-muted: rgba(18, 24, 32, 0.68);
  --border: rgba(18, 24, 32, 0.1);
  --border-strong: rgba(168, 135, 46, 0.38);
  --overlay-scrim: rgba(243, 245, 248, 0.35);
  --overlay-heavy: rgba(243, 245, 248, 0.82);
  --overlay-solid: rgba(243, 245, 248, 0.94);
  --shadow-sm: 0 8px 24px rgba(18, 24, 32, 0.06);
  --shadow-md: 0 20px 40px rgba(18, 24, 32, 0.1);
  --shadow-lg: 0 32px 64px rgba(18, 24, 32, 0.14);
  --success: #15803d;
  --success-bg: rgba(21, 128, 61, 0.1);
  --warning: #b45309;
  --warning-bg: rgba(180, 83, 9, 0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-accent: 'Syne', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-height: 80px;
  --section-pad: clamp(5rem, 12vh, 9rem);
  --container: min(1280px, calc(100% - 3rem));
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-deep);
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: #fff;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ─── Grain overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Typography ─── */
.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 52ch;
}

.text-gold { color: var(--gold-light); }
.text-muted { color: var(--text-muted); }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

/* Transparent nav over dark media heroes */
.nav:not(.scrolled) .nav__name,
.nav:not(.scrolled) .nav__links a {
  color: var(--text-on-media-muted);
}

.nav:not(.scrolled) .nav__links a:hover,
.nav:not(.scrolled) .nav__links a.active {
  color: var(--text-on-media);
}

.nav:not(.scrolled) .nav__toggle span {
  background: var(--text-on-media);
}

.nav:not(.scrolled) .btn--ghost {
  color: var(--text-primary);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.nav__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: var(--gold-dim);
}

.nav__name {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.nav__links a:hover {
  color: var(--gold-light);
  transform: translateY(-1px);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav__links a:hover,
.nav__links a.active { color: var(--text-primary); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: #fff;
}

.btn--primary:hover {
  background: var(--gold-light);
  color: var(--ink);
  box-shadow: 0 8px 32px var(--gold-glow);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  background: var(--bg-surface);
}

.btn--ghost:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.btn--text {
  padding: 0.5rem 0;
  color: var(--gold-light);
  position: relative;
}

.btn--text::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s var(--ease-out);
  display: inline-block;
}

.btn--text:hover::after { transform: translateX(4px); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 10vh, 7rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(243, 245, 248, 0.55) 0%, rgba(243, 245, 248, 0.22) 42%, rgba(243, 245, 248, 0.88) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.08) 55%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  color: var(--text-on-media);
}

.hero__content .lead {
  color: var(--text-on-media-muted);
}

.hero__content .eyebrow {
  color: var(--gold-light);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  margin-bottom: 2rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74,222,128,0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title {
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: max(1.5rem, calc((100vw - 1280px) / 2));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-media-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Marquee ─── */
.marquee {
  padding: 1.25rem 0;
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee__track span::before {
  content: '◆';
  margin-right: 3rem;
  color: var(--gold);
  font-size: 0.5rem;
  vertical-align: middle;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Stats ─── */
.stats {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  padding: 2rem;
  border-left: 1px solid var(--border);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ─── Section headers ─── */
.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .lead {
  margin-inline: auto;
}

.section-header .eyebrow { margin-bottom: 1rem; }
.section-header .display-lg { margin-bottom: 1.25rem; }

/* ─── Services showcase ─── */
.services-showcase {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
}

.service-panel {
  position: relative;
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2px;
  overflow: hidden;
}

.service-panel:nth-child(even) { direction: rtl; }
.service-panel:nth-child(even) > * { direction: ltr; }

.service-panel__visual {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.service-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}

.service-panel:hover .service-panel__visual img {
  transform: scale(1.06);
}

.service-panel__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-surface) 0%, transparent 35%);
}

.service-panel:nth-child(even) .service-panel__visual::after {
  background: linear-gradient(270deg, var(--bg-surface) 0%, transparent 35%);
}

.service-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem);
  background: var(--bg-surface);
}

.service-panel__icon {
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-panel__icon .icon {
  width: 32px;
  height: 32px;
}

/* Icon utility — shared across all pages */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 1.25em;
  height: 1.25em;
}

.feature-list__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-strong);
  flex-shrink: 0;
}

.feature-list__check .icon {
  width: 12px;
  height: 12px;
  color: var(--gold);
}

.service-panel__title {
  margin-bottom: 1rem;
}

.service-panel__desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 42ch;
}

.service-panel__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.service-panel__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-panel__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.service-panel__meta {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.service-panel__meta dt {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.service-panel__meta dd {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
}

/* ─── Routes ─── */
.routes {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.routes__bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}

.routes__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.routes__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(243, 245, 248, 0.92) 50%, var(--bg-deep) 100%);
}

.routes .container { position: relative; z-index: 1; }

.routes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.route-card {
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.route-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.route-card__type {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.route-card__path {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.route-card__time {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ─── Trust / Platforms ─── */
.platforms {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
}

.platforms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.platform-chip {
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  transition: all 0.35s var(--ease-out);
}

.platform-chip:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--gold-dim);
}

/* ─── CTA band ─── */
.cta-band {
  position: relative;
  padding: clamp(5rem, 12vh, 8rem) 0;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
}

.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-heavy);
}

.cta-band .container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-on-media);
}

.cta-band .lead {
  color: var(--text-on-media-muted);
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.cta-band .eyebrow {
  color: var(--gold-light);
}

.cta-band .display-lg { margin-bottom: 1rem; }

.cta-band .btn--ghost {
  color: var(--text-on-media);
  border-color: rgba(247, 248, 250, 0.35);
  background: rgba(15, 20, 28, 0.3);
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── Footer ─── */
.footer {
  padding: 5rem 0 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 28ch;
}

.footer__col h4 {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--text-primary); }

.footer__contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── Page hero (inner pages) ─── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 6rem) 0 5rem;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(243, 245, 248, 0.55) 0%, rgba(243, 245, 248, 0.28) 45%, var(--bg-deep) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  color: var(--text-on-media);
}

.page-hero .eyebrow {
  margin-bottom: 1rem;
  color: var(--gold);
}

.page-hero .display-lg { max-width: 16ch; }

.page-hero .lead {
  color: var(--text-on-media-muted);
}

/* ─── About page ─── */
.story {
  padding: var(--section-pad) 0;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.story__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.timeline-item__year {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
}

.timeline-item__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.timeline-item__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.values {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.4s, box-shadow 0.4s;
  background: var(--bg-surface);
}

.value-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.value-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(168, 135, 46, 0.28);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.mission-block {
  padding: var(--section-pad) 0;
  text-align: center;
}

.mission-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  max-width: 28ch;
  margin: 2rem auto 0;
  line-height: 1.4;
  color: var(--text-secondary);
}

.mission-block blockquote strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* ─── Contact page ─── */
.contact-layout {
  padding: var(--section-pad) 0;
}

.contact-layout__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.office-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.office-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
  background: var(--bg-surface);
}

.office-item.open { border-color: var(--border-strong); }

.office-item__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  text-align: left;
  color: var(--text-primary);
  transition: background 0.3s;
}

.office-item__header:hover { background: var(--gold-dim); }

.office-item__region {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.office-item__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.office-item__toggle {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
  line-height: 1;
}

.office-item.open .office-item__toggle { transform: rotate(45deg); }

.office-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.office-item.open .office-item__body { max-height: 500px; }

.office-item__details {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.office-item__details a {
  color: var(--gold-light);
  transition: opacity 0.3s;
}
.office-item__details a:hover { opacity: 0.8; }

.contact-form-wrap {
  padding: 2.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.channel-pill:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ─── Track page ─── */
.track-section {
  padding: var(--section-pad) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.track-card {
  max-width: 560px;
  margin-inline: auto;
  padding: 3rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.track-card .display-md { margin-bottom: 0.75rem; }
.track-card > p { color: var(--text-muted); margin-bottom: 2rem; }

.shipment-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-surface);
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.shipment-toggle label {
  padding: 0.6rem 1.5rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.3s;
}

.shipment-toggle input { display: none; }
.shipment-toggle input:checked + label {
  background: var(--gold);
  color: #fff;
}

.track-input-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.track-input-group input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
}

.track-input-group input:focus {
  outline: none;
  border-color: var(--gold);
}

.track-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── Services detail page ─── */
.service-detail {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail__inner {
  direction: rtl;
}
.service-detail:nth-child(even) .service-detail__inner > * {
  direction: ltr;
}

.service-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__content .eyebrow { margin-bottom: 0.75rem; }
.service-detail__content .display-md { margin-bottom: 1rem; }

.feature-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.feature-list__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--gold);
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Mobile nav overlay ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold-light); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel:nth-child(even) { direction: ltr; }
  .service-panel__visual { min-height: 300px; }
  .service-panel__visual::after,
  .service-panel:nth-child(even) .service-panel__visual::after {
    background: linear-gradient(180deg, transparent 50%, var(--bg-deep) 100%);
  }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .story__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout__grid { grid-template-columns: 1fr; }
  .service-detail__inner { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail__inner { direction: ltr; }
  .values__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: flex; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .routes__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .track-input-group { flex-direction: column; }
  .stat { padding: 1.25rem; }
}
