@charset "UTF-8";
/* ===========================================================================
   Jastan Logistics — design system
   Navy #1e3a8a / orange #f16821 brand palette, extended into an accessible
   scale. Every text colour below meets WCAG 2.1 AA against its own surface.
   =========================================================================== */

/* --- 1. Tokens ----------------------------------------------------------- */

:root {
  /* brand */
  --navy-900: #0b1533;
  --navy-800: #12224f;
  --navy-700: #17306f;
  --navy-600: #1e3a8a; /* brand navy */
  --navy-500: #2a4bb0;
  --navy-050: #eef2ff;

  --orange-700: #a63a0c;
  --orange-600: #c44912; /* accessible on white */
  --orange-500: #f16821; /* brand orange */
  --orange-400: #ff8a4c;
  --orange-050: #fff3ec;

  --wa-600: #0d7a5f; /* WhatsApp action, AA on white text */
  --wa-500: #128c7e;
  --wa-400: #25d366;

  /* neutrals */
  --ink: #0f172a;
  --body: #46536a;
  --muted: #5b6b7f;
  --line: #e3e8ef;
  --line-strong: #cbd5e1;
  --surface: #ffffff;
  --surface-2: #f7f9fc;
  --surface-3: #eef2f7;

  /* on dark */
  --on-dark: #ffffff;
  --on-dark-body: #cbd5e1;
  --on-dark-muted: #94a3b8;

  /* type */
  --font-display: 'Sora', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --step--1: clamp(0.83rem, 0.81rem + 0.1vw, 0.88rem);
  --step-0: clamp(1rem, 0.97rem + 0.15vw, 1.06rem);
  --step-1: clamp(1.15rem, 1.09rem + 0.3vw, 1.3rem);
  --step-2: clamp(1.35rem, 1.24rem + 0.55vw, 1.65rem);
  --step-3: clamp(1.6rem, 1.4rem + 1vw, 2.15rem);
  --step-4: clamp(1.95rem, 1.6rem + 1.7vw, 2.9rem);
  --step-5: clamp(2.3rem, 1.75rem + 2.6vw, 3.9rem);

  /* space */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);

  --shell: 1200px;
  --shell-wide: 1440px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 10px 30px -12px rgba(15, 23, 42, 0.18), 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 28px 60px -24px rgba(11, 21, 51, 0.35), 0 8px 20px -12px rgba(15, 23, 42, 0.14);

  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --- 2. Reset ------------------------------------------------------------ */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--sp-4);
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
h5 { font-size: var(--step-0); }

p { margin: 0 0 var(--sp-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-600); }

img, picture, video, svg { max-width: 100%; }
img, video { height: auto; display: block; }

ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.25rem; }
li { margin-bottom: 0.35rem; }

table { border-collapse: collapse; width: 100%; }

button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100%;
  z-index: 200;
  background: var(--navy-800);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 0; color: #fff; }

/* --- 3. Layout primitives ------------------------------------------------ */

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}
.shell--wide { width: min(100% - (var(--gutter) * 2), var(--shell-wide)); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--flush-top { padding-top: 0; }
.section--muted { background: var(--surface-2); }
.section--line { border-top: 1px solid var(--line); }
.section--dark {
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(241, 104, 33, 0.16), transparent 60%),
    linear-gradient(150deg, var(--navy-800) 0%, var(--navy-900) 70%);
  color: var(--on-dark-body);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--on-dark); }
/* Buttons carry their own --btn-fg against their own --btn-bg; letting the
   dark-section link colour cascade into them puts orange text on the green
   WhatsApp fill, which fails contrast at 2.26:1. */
.section--dark a:not(.btn) { color: var(--orange-400); }
.section--dark .section-head__lead { color: var(--on-dark-body); }
.section--dark .eyebrow { color: var(--orange-400); }

.grid { display: grid; gap: clamp(1.15rem, 2.2vw, 1.85rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 62rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-right .split__media { order: 2; }
  .split--narrow-media { grid-template-columns: 1.15fr 0.85fr; }
}

.prose { max-width: 46rem; }
.prose > * + h2 { margin-top: var(--sp-7); }
.prose > * + h3 { margin-top: var(--sp-6); }
.prose h2 { font-size: var(--step-3); }
.prose h3 { font-size: var(--step-1); }
.prose li { margin-bottom: 0.5rem; }
.prose blockquote {
  margin: var(--sp-6) 0;
  padding: var(--sp-5) var(--sp-6);
  border-left: 4px solid var(--orange-500);
  background: var(--surface-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--step-1);
  color: var(--ink);
}
.prose blockquote p { font-style: italic; }

/* --- 4. Typographic helpers --------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin: 0 0 var(--sp-3);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { text-align: center; max-width: 46rem; margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-head__title { margin-bottom: var(--sp-3); }
.section-head__lead { font-size: var(--step-1); color: var(--muted); margin: 0; }
.section-head--center .section-head__lead { margin-inline: auto; }

.lead { font-size: var(--step-1); color: var(--muted); }

/* --- 5. Buttons ---------------------------------------------------------- */

.btn {
  --btn-bg: var(--navy-600);
  --btn-fg: #fff;
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.82rem 1.5rem;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s var(--ease), color 0.18s var(--ease);
  box-shadow: var(--shadow-xs);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn__icon { width: 1.15em; height: 1.15em; flex: none; }
.btn > span { white-space: nowrap; }

.btn--primary { --btn-bg: var(--navy-600); }
.btn--primary:hover { --btn-bg: var(--navy-700); }

.btn--accent { --btn-bg: var(--orange-600); }
.btn--accent:hover { --btn-bg: var(--orange-700); }

.btn--wa { --btn-bg: var(--wa-600); }
.btn--wa:hover { --btn-bg: #0a6650; }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy-600); --btn-bd: var(--line-strong); }
.btn--outline:hover { --btn-bg: var(--navy-050); --btn-bd: var(--navy-600); }

.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, 0.55); }
.btn--outline-light:hover { --btn-bg: rgba(255, 255, 255, 0.12); --btn-bd: #fff; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--navy-600); --btn-bd: transparent;
  box-shadow: none; padding-inline: 0.35rem;
}
.btn--ghost:hover { --btn-fg: var(--orange-600); box-shadow: none; }

.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.9rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.03rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* --- 6. Header ----------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
  min-height: var(--header-h);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

/* transparent over the home hero, solid once scrolled */
.site-header--overlay {
  position: fixed;
  inset-inline: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header--overlay .nav__link,
.site-header--overlay .site-header__tel { color: #fff; }
.site-header--overlay .burger__bars,
.site-header--overlay .burger__bars::before,
.site-header--overlay .burger__bars::after { background: #fff; }
.site-header--overlay.is-stuck {
  position: sticky;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}
.site-header--overlay.is-stuck .nav__link,
.site-header--overlay.is-stuck .site-header__tel { color: var(--ink); }
.site-header--overlay.is-stuck .burger__bars,
.site-header--overlay.is-stuck .burger__bars::before,
.site-header--overlay.is-stuck .burger__bars::after { background: var(--ink); }
.site-header--overlay .brand img { filter: brightness(0) invert(1); }
.site-header--overlay.is-stuck .brand img { filter: none; }

.brand { display: block; flex: none; line-height: 0; }
.brand img { width: 176px; height: auto; }

.nav { margin-left: auto; }
.nav__list {
  display: none;
  gap: clamp(0.4rem, 1.3vw, 1.1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 68rem) { .nav__list { display: flex; align-items: center; } }

.nav__item { position: relative; margin: 0; display: flex; align-items: center; }

.nav__link {
  display: inline-block;
  padding: 0.55rem 0.55rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0.55rem; right: 0.55rem; bottom: 0.15rem;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { font-weight: 600; }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem;
  margin-left: -0.35rem;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}
.nav__toggle svg { width: 10px; height: 6px; transition: transform 0.2s var(--ease); }
.nav__toggle[aria-expanded='true'] svg { transform: rotate(180deg); }

.nav__menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 16rem;
  padding: 0.5rem;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu,
.nav__menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu li { margin: 0; }
.nav__sublink {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
}
.nav__sublink:hover,
.nav__sublink.is-active { background: var(--navy-050); color: var(--navy-700); }

.site-header__actions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
@media (min-width: 68rem) { .site-header__actions { margin-left: 0; } }

.site-header__tel {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.site-header__tel svg { width: 1.05em; height: 1.05em; color: var(--orange-500); }
@media (min-width: 80rem) { .site-header__tel { display: inline-flex; } }

.site-header__cta { display: none; white-space: nowrap; }
@media (min-width: 48rem) { .site-header__cta { display: inline-flex; } }

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
@media (min-width: 68rem) { .burger { display: none; } }
.burger__bars, .burger__bars::before, .burger__bars::after {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s var(--ease);
}
.burger__bars { position: relative; }
.burger__bars::before, .burger__bars::after { content: ''; position: absolute; left: 0; }
.burger__bars::before { top: -7px; }
.burger__bars::after { top: 7px; }

/* --- 7. Mobile drawer ---------------------------------------------------- */

.drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(11, 21, 51, 0.55);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.drawer[hidden] { display: none; }
.drawer.is-open { opacity: 1; }

.drawer__panel {
  position: absolute;
  inset-block: 0;
  right: 0;
  width: min(24rem, 92vw);
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: var(--sp-5) var(--sp-5) calc(var(--sp-5) + env(safe-area-inset-bottom));
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-4); }
.drawer__title { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.drawer__close {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer;
}
.drawer__close svg { width: 18px; height: 18px; }

.drawer__nav ul { list-style: none; margin: 0; padding: 0; }
.drawer__nav > ul > li { border-bottom: 1px solid var(--line); }
.drawer__nav > ul > li > a {
  display: block;
  padding: 0.9rem 0.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.drawer__nav > ul > li > a.is-active { color: var(--orange-600); }
.drawer__sub { padding: 0 0 0.9rem 0.75rem !important; }
.drawer__sub li { margin: 0; }
.drawer__sub a {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.94rem;
  color: var(--muted);
  text-decoration: none;
}
.drawer__sub a:hover, .drawer__sub a[aria-current] { color: var(--navy-600); }

.drawer__foot { margin-top: auto; padding-top: var(--sp-5); }
.drawer__tel {
  display: block;
  text-align: center;
  margin-top: var(--sp-4);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

/* --- 8. Hero ------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: min(100svh, 1040px);
  padding-block: calc(var(--header-h) + 9rem) clamp(3rem, 5.5vw, 4.5rem);
  color: #fff;
  isolation: isolate;
  background: var(--navy-900);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media video { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s var(--ease); }
.hero__media video.is-ready { opacity: 1; }
/* Weighted to the bottom-left so the copy sits on the darkest part of the frame
   and the top-right of the photograph stays visible. */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 21, 51, 0.5) 0%, rgba(11, 21, 51, 0.1) 24%, rgba(11, 21, 51, 0.1) 44%, rgba(11, 21, 51, 0.78) 82%, rgba(11, 21, 51, 0.94) 100%),
    linear-gradient(75deg, rgba(11, 21, 51, 0.82) 0%, rgba(11, 21, 51, 0.4) 44%, rgba(11, 21, 51, 0) 78%);
}
.hero .shell { max-width: min(100% - (var(--gutter) * 2), var(--shell)); }
.hero__copy { max-width: 46rem; }
.hero h1 { color: #fff; max-width: 16ch; margin-bottom: var(--sp-4); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-5);
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-400); box-shadow: 0 0 0 4px rgba(255, 138, 76, 0.25); }
.hero__lead { font-size: var(--step-1); color: #e6ebf5; max-width: 54ch; margin-bottom: var(--sp-6); }
.hero__actions { margin-bottom: var(--sp-7); }
.hero__facts > div { display: flex; flex-direction: column; }
.hero__facts dd { margin: 0; order: 1; }
.hero__facts dt { order: 2; }
.hero__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: var(--sp-4) var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 46rem;
}
.hero__fact-value {
  font-family: var(--font-display); font-size: var(--step-3); font-weight: 700; color: #fff; line-height: 1.1;
}
.hero__fact-label { font-size: 0.85rem; color: #c3cddf; }

/* inner page hero */
.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding-block: clamp(6rem, 14vw, 12rem) clamp(3rem, 5vw, 4.5rem);
  color: #fff;
  isolation: isolate;
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(241, 104, 33, 0.22), transparent 60%),
    linear-gradient(140deg, var(--navy-700) 0%, var(--navy-900) 78%);
  overflow: hidden;
}
.page-hero--image {
  background: var(--navy-900);
  min-height: clamp(520px, 80svh, 820px);
}
.page-hero:not(.page-hero--image) { min-height: clamp(360px, 54svh, 560px); }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--image::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(75deg, rgba(11, 21, 51, 0.9) 0%, rgba(11, 21, 51, 0.55) 45%, rgba(11, 21, 51, 0.1) 82%),
    linear-gradient(180deg, rgba(11, 21, 51, 0.5) 0%, rgba(11, 21, 51, 0.12) 32%, rgba(11, 21, 51, 0.78) 88%);
}
.page-hero h1 { color: #fff; max-width: 18ch; margin-bottom: var(--sp-4); }
.page-hero__lead { font-size: var(--step-1); color: #d7dfee; max-width: 58ch; }
.page-hero .eyebrow { color: var(--orange-400); }
.page-hero__inner { max-width: 46rem; }

/* --- 9. Breadcrumbs ------------------------------------------------------ */

.breadcrumbs { background: var(--surface-2); border-bottom: 1px solid var(--line); }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  list-style: none; margin: 0; padding: 0.85rem 0;
  font-size: 0.85rem; color: var(--muted);
}
.breadcrumbs li { margin: 0; display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li + li::before { content: '/'; color: var(--line-strong); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--navy-600); text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--ink); font-weight: 500; }

/* --- 10. Cards ----------------------------------------------------------- */

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.card__media { display: block; position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-3); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }

.card__body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.25rem, 2.2vw, 1.75rem); }
.card__title { font-size: var(--step-1); margin-bottom: var(--sp-3); }
.card__title a { color: var(--ink); text-decoration: none; }
.card__title a::after { content: ''; position: absolute; inset: 0; }
.card--service { position: relative; }
.card__text { color: var(--muted); font-size: 0.97rem; margin-bottom: var(--sp-4); }
.card__more {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-600);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.card:hover .card__more { color: var(--orange-600); }
.card__more .arrow { transition: transform 0.25s var(--ease); }
.card:hover .card__more .arrow { transform: translateX(4px); }

/* flat feature card */
.feature {
  padding: clamp(1.4rem, 2.4vw, 2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  height: 100%;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--orange-050);
  color: var(--orange-600);
  margin-bottom: var(--sp-4);
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--step-1); margin-bottom: var(--sp-2); }
.feature p { color: var(--muted); font-size: 0.96rem; margin: 0; }

.section--dark .feature {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.section--dark .feature p { color: var(--on-dark-body); }
.section--dark .feature__icon { background: rgba(255, 138, 76, 0.15); color: var(--orange-400); }

/* --- 11. Stats ----------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin: 0;
  padding: 0;
}
.stats__item { text-align: center; }
.stats__value {
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 700;
  color: var(--navy-600);
  line-height: 1;
  margin: 0 0 0.35rem;
}
.stats__label { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); order: 2; }
.stats__item { display: flex; flex-direction: column; }
.section--dark .stats__value { color: #fff; }
.section--dark .stats__label { color: var(--on-dark-muted); }

/* --- 12. Process timeline ------------------------------------------------ */

.process { display: grid; gap: clamp(1.15rem, 2.4vw, 1.75rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); counter-reset: step; }
.process__item {
  position: relative;
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}
.process__num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
  color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  margin-bottom: var(--sp-4);
}
.process__item h3 { font-size: var(--step-1); margin-bottom: var(--sp-2); }
.process__item p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* --- 13. Fleet table ----------------------------------------------------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.table { min-width: 40rem; font-size: 0.96rem; }
.table caption { text-align: left; padding: 1rem 1.25rem 0; color: var(--muted); font-size: 0.9rem; }
.table th, .table td { padding: 0.95rem 1.25rem; text-align: left; vertical-align: top; }
.table thead th {
  background: var(--navy-800);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.table tbody tr + tr { border-top: 1px solid var(--line); }
.table tbody tr:nth-child(even) { background: var(--surface-2); }
.table tbody th { font-weight: 600; color: var(--ink); }

@media (max-width: 45rem) {
  .table-wrap { border: 0; box-shadow: none; background: transparent; overflow: visible; }
  .table { min-width: 0; }
  .table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .table tbody tr {
    display: block;
    background: #fff !important;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 0.85rem;
    padding: 0.35rem 0;
    box-shadow: var(--shadow-xs);
  }
  .table tbody th, .table td { display: block; padding: 0.5rem 1.1rem; }
  .table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.15rem;
  }
}

/* --- 14. Coverage -------------------------------------------------------- */

.coverage-grid { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.coverage-card {
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.coverage-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.09); }
.coverage-card__flag { font-size: 1.9rem; line-height: 1; margin-bottom: 0.6rem; }
.coverage-card h3 { font-size: var(--step-1); margin-bottom: 0.25rem; color: #fff; }
.coverage-card__scope {
  display: inline-block;
  font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange-400); font-weight: 600; margin-bottom: 0.75rem;
}
.coverage-card p { color: var(--on-dark-body); font-size: 0.93rem; margin: 0; }

/* --- 15. Partners marquee ------------------------------------------------ */

.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee__item {
  flex: none;
  display: grid;
  place-items: center;
  width: clamp(9rem, 14vw, 12rem);
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
}
.marquee__item img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 0.25s var(--ease), opacity 0.25s var(--ease);
}
.marquee__item:hover img { filter: grayscale(0); opacity: 1; }

/* --- 16. Testimonials ---------------------------------------------------- */

.quote {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}
.quote__mark { font-family: var(--font-display); font-size: 2.6rem; line-height: 0.7; color: var(--orange-500); margin-bottom: var(--sp-3); }
.quote__text { font-size: 1.02rem; color: var(--ink); margin-bottom: var(--sp-5); }
.quote__cite { margin-top: auto; font-style: normal; font-size: 0.9rem; color: var(--muted); }
.quote__cite strong { display: block; color: var(--ink); font-size: 0.95rem; }

/* --- 17. FAQ ------------------------------------------------------------- */

.faq { max-width: 52rem; margin-inline: auto; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__marker { position: relative; flex: none; width: 20px; height: 20px; margin-top: 0.3rem; }
.faq__marker::before, .faq__marker::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 14px; height: 2px; background: var(--orange-600);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease);
  border-radius: 2px;
}
.faq__marker::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__marker::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__a { padding: 0 0 1.35rem; max-width: 62ch; color: var(--muted); }
.faq__item[open] .faq__a { animation: fadeUp 0.3s var(--ease) both; }

/* --- 18. CTA band -------------------------------------------------------- */

.cta-band {
  background:
    radial-gradient(700px 380px at 90% 20%, rgba(241, 104, 33, 0.28), transparent 62%),
    linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 75%);
  color: #fff;
  padding-block: clamp(3rem, 5vw, 4.75rem);
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.cta-band__copy { flex: 1 1 26rem; }
.cta-band__title { color: #fff; font-size: var(--step-3); margin-bottom: var(--sp-3); }
.cta-band__lead { color: #d3dbeb; margin: 0; max-width: 52ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* --- 19. Media panels ---------------------------------------------------- */

.media-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface-3);
  aspect-ratio: 4 / 3;
}
.media-panel img, .media-panel video { width: 100%; height: 100%; object-fit: cover; }
.media-panel video { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s var(--ease); }
.media-panel video.is-ready { opacity: 1; }

.media-badge {
  position: absolute;
  left: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(11, 21, 51, 0.72);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.media-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa-400); }

.stat-float {
  position: absolute;
  right: clamp(-0.5rem, 1vw, 0.5rem);
  bottom: clamp(-1rem, -0.5vw, 0rem);
  padding: 1.15rem 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.stat-float__value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.stat-float__label { font-size: 0.78rem; opacity: 0.95; }

.figure-frame { position: relative; }

/* --- 20. Gallery --------------------------------------------------------- */

.gallery { display: grid; gap: clamp(0.75rem, 1.6vw, 1.15rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--surface-3); aspect-ratio: 3 / 2; box-shadow: var(--shadow-xs); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }

/* --- 21. Checklists ------------------------------------------------------ */

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.checklist li { position: relative; padding-left: 2rem; margin: 0; color: var(--body); }
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.35em;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: var(--orange-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.3 4.7 8.5 9.5 3.7' fill='none' stroke='%23c44912' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}
.checklist--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); column-gap: 1.75rem; }
.section--dark .checklist li { color: var(--on-dark-body); }

/* --- 22. Contact --------------------------------------------------------- */

.contact-panel {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  color: #fff;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 58rem) { .contact-panel { grid-template-columns: 1.1fr 0.9fr; align-items: center; } }
.contact-panel h2 { color: #fff; }
.contact-panel p { color: #d3dbeb; }

.contact-methods { display: grid; gap: 0.9rem; }
.contact-method {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 1.05rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
a.contact-method:hover { background: rgba(255, 255, 255, 0.12); transform: translateX(3px); color: #fff; }
.contact-method__icon { flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255, 138, 76, 0.18); color: var(--orange-400); }
.contact-method__icon svg { width: 19px; height: 19px; }
.contact-method > span:last-child { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.contact-method__label { display: block; font-size: 0.72rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--on-dark-muted); }
.contact-method__value { display: block; font-weight: 600; overflow-wrap: anywhere; }

.wa-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}
.wa-card__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-pill);
  background: rgba(13, 122, 95, 0.1); color: var(--wa-600);
  font-size: 0.8rem; font-weight: 600; margin-bottom: var(--sp-4);
}
.wa-card__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa-400); }
.wa-card h3 { font-size: var(--step-2); }
.wa-card p { color: var(--muted); }
.wa-card__preview {
  margin: var(--sp-5) 0;
  padding: 0.9rem 1.1rem;
  border-radius: 14px 14px 14px 4px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  text-align: left;
  font-size: 0.94rem;
  color: var(--ink);
}
.wa-card__preview span { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.3rem; }

/* --- 23. Blog ------------------------------------------------------------ */

.post-card { position: relative; }
.post-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 0.85rem; font-size: 0.82rem; color: var(--muted); margin-bottom: var(--sp-3); }
.post-card__tag { color: var(--orange-600); font-weight: 600; }
.post-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.15rem; font-size: 0.88rem; color: #c3cddf; }
.post-body { max-width: 44rem; margin-inline: auto; }
.post-body h2 { font-size: var(--step-3); margin-top: var(--sp-7); }
.post-body h3 { font-size: var(--step-1); margin-top: var(--sp-6); }
.post-body ul, .post-body ol { padding-left: 1.35rem; }
.post-body li { margin-bottom: 0.55rem; }
.key-takeaways {
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  border-radius: var(--radius);
  background: var(--navy-050);
  border: 1px solid #dbe3ff;
  margin-bottom: var(--sp-6);
}
.key-takeaways h2 { font-size: var(--step-1); margin-top: 0 !important; margin-bottom: var(--sp-3); }
.key-takeaways ul { margin: 0; }

.author-box {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem;
  margin-top: var(--sp-7);
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
}
.author-box img { width: 64px; height: auto; }
.author-box p { margin: 0; font-size: 0.94rem; color: var(--muted); }

/* --- 24. WhatsApp floating action --------------------------------------- */

.wa-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-pill);
  background: var(--wa-600);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 12px 30px -10px rgba(13, 122, 95, 0.75);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), background-color 0.2s var(--ease);
}
.wa-fab.is-visible { transform: translateY(0); opacity: 1; }
.wa-fab:hover { background: #0a6650; color: #fff; }
.wa-fab svg { width: 22px; height: 22px; flex: none; }
@media (max-width: 30rem) {
  .wa-fab__label { display: none; }
  .wa-fab { padding: 0.9rem; }
}

/* --- 25. Motion ---------------------------------------------------------- */

/* Reveal-on-scroll only engages when scripting is available, so content can
   never be left invisible if JS fails to run. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.js [data-reveal].is-revealed { opacity: 1; transform: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .wa-fab { transform: none; opacity: 1; }
}

/* --- 26. Footer ---------------------------------------------------------- */

.site-footer {
  background: var(--navy-900);
  color: var(--on-dark-body);
  padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
  font-size: 0.94rem;
}
.site-footer__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}
.site-footer__brand { grid-column: span 1; max-width: 24rem; }
@media (min-width: 62rem) { .site-footer__brand { grid-column: span 1; } }
.site-footer__brand img { width: 176px; margin-bottom: var(--sp-4); filter: brightness(0) invert(1); }
.site-footer__brand p { color: var(--on-dark-muted); margin-bottom: var(--sp-5); }
.site-footer__heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-4);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.6rem; }
.site-footer a:not(.btn) { color: var(--on-dark-body); text-decoration: none; }
.site-footer a:not(.btn):hover { color: var(--orange-400); text-decoration: underline; }

.contact-list li { display: flex; flex-direction: column; gap: 0.1rem; margin-bottom: 0.9rem; color: var(--on-dark-body); }
.contact-list span { font-size: 0.74rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--on-dark-muted); }

.site-footer__coverage {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.65rem 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__coverage-label { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-muted); }
.site-footer__coverage ul { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
.site-footer__coverage li { margin: 0; }

.site-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 1.5rem;
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: var(--on-dark-muted);
}
.site-footer__bottom p { margin: 0; }

/* Studio credit sits on its own row under the copyright, not competing with it. */
.site-footer__credit { flex-basis: 100%; font-size: 0.8rem; opacity: 0.85; }
/* Underlined, not just tinted: at 1.66:1 against the surrounding credit text
   the link colour alone is not enough to tell it apart from the sentence. */
/* :not(.btn) here only to match the specificity of `.site-footer a:not(.btn)`
   above, which would otherwise win and strip the underline back off. */
.site-footer__credit a:not(.btn) { color: var(--on-dark-body); text-decoration: underline; text-underline-offset: 2px; }
.site-footer__credit a:not(.btn):hover { color: var(--orange-400); }

/* --- 27. Utilities ------------------------------------------------------- */

.text-center { text-align: center; }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mb-0 { margin-bottom: 0; }
.tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--navy-050);
  color: var(--navy-700);
  font-size: 0.78rem;
  font-weight: 600;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.note {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--orange-500);
  background: var(--orange-050);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: var(--ink);
}
