/* ============================================================
   Cross Roads Transportation — Design System
   Palette: Red #C92C29 · Black · White  |  Font: IBM Plex Sans Arabic
   Signature motif: the brand's crossing-roads icon, tiled as a diagonal
   watermark pattern inside dark "control-room" bands (stats / CTA).
   ============================================================ */

:root {
  /* Brand */
  --red: #C92C29;
  --red-dark: #A11F1D;
  --red-light: #E9524E;

  /* Light theme surfaces */
  --bg: #FCFBF9;
  --surface: #FFFFFF;
  --surface-2: #F4F2EF;
  --ink: #16161A;
  --ink-soft: #4B4C52;
  --border: #E7E4DF;
  --border-strong: #D8D4CD;

  /* Dark "control room" band (used in both themes for hero/stats/cta) */
  --band-bg: #101012;
  --band-bg-2: #1A1A1D;
  --band-text: #F4F3F0;
  --band-text-soft: #B7B6B2;
  --band-border: #2A2A2E;

  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 14px;

  --shadow-s: 0 1px 2px rgba(16,16,18,.06), 0 1px 1px rgba(16,16,18,.04);
  --shadow-m: 0 8px 24px rgba(16,16,18,.10);
  --shadow-l: 0 20px 48px rgba(16,16,18,.16);

  --container: 1240px;
  --font-display: 'IBM Plex Sans Arabic', 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #0E0E10;
  --surface: #17171A;
  --surface-2: #1D1D20;
  --ink: #F4F3F0;
  --ink-soft: #ABA9A4;
  --border: #2B2B2F;
  --border-strong: #38383D;

  --band-bg: #000000;
  --band-bg-2: #131315;
  --band-border: #26262A;

  --shadow-s: 0 1px 2px rgba(0,0,0,.4);
  --shadow-m: 0 8px 24px rgba(0,0,0,.5);
  --shadow-l: 0 20px 48px rgba(0,0,0,.6);
  color-scheme: dark;
}

/* ---------------- Base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background-color .25s ease, color .25s ease;
  overflow-x: hidden;
}
html[dir="rtl"] body { letter-spacing: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }
h1,h2,h3,h4,p { margin: 0; }
:focus-visible { outline: 2.5px solid var(--red); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

.container { max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
@media (min-width: 780px) { .container { padding-inline: 32px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--red); border-radius: 2px; }

h1, .h1 { font-size: clamp(30px, 6vw, 54px); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; }
h2, .h2 { font-size: clamp(26px, 4.4vw, 38px); font-weight: 700; line-height: 1.22; }
h3, .h3 { font-size: clamp(19px, 2.6vw, 23px); font-weight: 600; line-height: 1.35; }
.lead { font-size: clamp(16px, 2vw, 19px); color: var(--ink-soft); line-height: 1.75; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }

section { padding-block: clamp(52px, 8vw, 100px); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--radius-s);
  font-weight: 600; font-size: 15px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .18s ease; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
html[dir="rtl"] .btn svg.arrow { transform: scaleX(-1); }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--band-text); border-color: rgba(244,243,240,.35); }
.btn-ghost:hover { background: rgba(244,243,240,.1); border-color: rgba(244,243,240,.6); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------------- Header ---------------- */
.topbar {
  background: var(--band-bg); color: var(--band-text-soft);
  font-size: 12.5px; padding-block: 7px; border-bottom: 1px solid var(--band-border);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.topbar-badge { display: flex; align-items: center; gap: 7px; color: var(--band-text); font-weight: 600; }
.topbar-badge svg { width: 14px; height: 14px; color: var(--red-light); }
.topbar-contacts { display: none; align-items: center; gap: 18px; }
.topbar-contacts a { display: flex; align-items: center; gap: 6px; }
.topbar-contacts svg { width: 13px; height: 13px; }
@media (min-width: 700px) { .topbar-contacts { display: flex; } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 38px; width: auto; }
[data-theme="dark"] .brand img.logo-dark { display: none; }
[data-theme="dark"] .brand img.logo-light { display: block; }
.brand img.logo-light { display: none; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: block; padding: 10px 14px; border-radius: var(--radius-s);
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  transition: color .15s ease, background .15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--red); background: color-mix(in srgb, var(--red) 8%, transparent); }
@media (min-width: 1080px) { .main-nav { display: block; } }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius-s);
  border: 1px solid var(--border); background: var(--surface); color: var(--ink-soft);
  cursor: pointer; transition: all .15s ease;
}
.icon-btn:hover { color: var(--red); border-color: var(--red); }
.icon-btn svg { width: 18px; height: 18px; }
.lang-switch { position: relative; }
.lang-menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-m);
  box-shadow: var(--shadow-m); padding: 6px; min-width: 130px; display: none; z-index: 70;
}
.lang-menu.open { display: block; }
.lang-menu a { display: block; padding: 8px 12px; border-radius: var(--radius-s); font-size: 14px; }
.lang-menu a:hover { background: var(--surface-2); color: var(--red); }
.lang-menu a.active { color: var(--red); font-weight: 600; }
.header-cta { display: none; }
@media (min-width: 1080px) { .header-cta { display: inline-flex; } }

.nav-toggle { display: inline-flex; }
@media (min-width: 1080px) { .nav-toggle { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 90; display: none;
}
.mobile-drawer.open { display: block; }
.mobile-drawer .backdrop { position: absolute; inset: 0; background: rgba(10,10,10,.55); }
.mobile-drawer .panel {
  position: absolute; inset-block: 0; inset-inline-start: 0; width: min(320px, 84vw);
  background: var(--surface); box-shadow: var(--shadow-l);
  padding: 20px; overflow-y: auto;
  transform: translateX(-100%); transition: transform .25s ease;
}
html[dir="rtl"] .mobile-drawer .panel { inset-inline-start: auto; inset-inline-end: 0; transform: translateX(100%); }
.mobile-drawer.open .panel { transform: translateX(0); }
.mobile-drawer .panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mobile-drawer nav a { display: block; padding: 13px 8px; font-size: 16px; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--ink); }
.mobile-drawer nav a.active { color: var(--red); }
.mobile-drawer .drawer-cta { margin-top: 20px; display: grid; gap: 10px; }

/* ---------------- Hero ---------------- */
.hero { position: relative; color: var(--band-text); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.75) 55%, rgba(10,10,11,.94) 100%);
}
.hero-inner { position: relative; z-index: 1; padding-block: clamp(90px, 16vw, 168px) clamp(60px, 10vw, 90px); }
.hero-inner .eyebrow { color: var(--red-light); }
.hero-inner .eyebrow::before { background: var(--red-light); }
.hero-inner h1 { max-width: 820px; }
.hero-inner .lead { max-width: 620px; color: var(--band-text-soft); margin-top: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Stats bar — floats over hero bottom edge, carries the icon-pattern signature */
.stats-band {
  position: relative; z-index: 2;
  background: var(--band-bg-2); color: var(--band-text);
  border-radius: var(--radius-l);
  margin-inline: 20px; margin-top: -56px;
  box-shadow: var(--shadow-l);
  overflow: hidden;
  border: 1px solid var(--band-border);
}
.container.stats-wrap { max-width: calc(var(--container) - 40px); margin-inline: auto; padding-inline: 0; }
.stats-band .pattern { position: absolute; inset: 0; opacity: .07; background-repeat: repeat; background-size: 64px 64px; pointer-events: none; }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { padding: 26px 20px; text-align: center; border-inline-end: 1px solid var(--band-border); border-top: 1px solid var(--band-border); }
.stats-grid .stat-item:nth-child(1), .stats-grid .stat-item:nth-child(2) { border-top: none; }
@media (min-width: 720px) { .stats-grid .stat-item { border-top: none; } }
.stats-grid .stat-item:last-child { border-inline-end: none; }
.stat-item svg { width: 24px; height: 24px; color: var(--red-light); margin-bottom: 10px; }
.stat-value { font-family: var(--font-mono); font-size: clamp(19px, 2.6vw, 25px); font-weight: 600; }
.stat-label { font-size: 12.5px; color: var(--band-text-soft); margin-top: 6px; line-height: 1.5; }

/* Badges strip (ISO / Aramco / ZATCA marquee) */
.badges-strip { background: var(--surface-2); border-block: 1px solid var(--border); overflow: hidden; padding-block: 16px; }
.badges-track { display: flex; gap: 44px; width: max-content; animation: scrollX 28s linear infinite; }
html[dir="rtl"] .badges-track { animation-name: scrollXRtl; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollXRtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
.badge-chip { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.badge-chip svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* ---------------- Cards ---------------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: 1fr; } @media (min-width: 720px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { grid-template-columns: 1fr; } @media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(2,1fr); } } @media (min-width: 1040px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }
.grid-4 { grid-template-columns: repeat(2,1fr); } @media (min-width: 1040px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-m);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: var(--border-strong); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-icon {
  width: 46px; height: 46px; border-radius: var(--radius-s);
  background: color-mix(in srgb, var(--red) 10%, transparent); color: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.card-body h3 a { color: inherit; }
.card-body p { color: var(--ink-soft); font-size: 14.5px; }
.card-link { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 600; font-size: 14px; padding-top: 6px; }
.card-link svg { width: 15px; height: 15px; }
html[dir="rtl"] .card-link svg { transform: scaleX(-1); }
.card-border-accent { border-bottom: 3px solid var(--red); }

/* Feature/list rows with check icon */
.check-list { display: grid; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; }
.check-list .ico {
  width: 26px; height: 26px; border-radius: 50%; background: color-mix(in srgb, var(--red) 12%, transparent);
  color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.check-list .ico svg { width: 14px; height: 14px; }
.check-list .txt strong { display: block; font-weight: 600; margin-bottom: 2px; }
.check-list .txt span { color: var(--ink-soft); font-size: 14px; }

/* ---------------- Split section (image + text) ---------------- */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 60px; } }
.split.reverse { direction: ltr; } .split.reverse > * { direction: initial; }
@media (min-width: 900px) { .split.reverse { grid-template-columns: 1fr 1fr; } .split.reverse .split-media { order: 2; } }
.split-media { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m); position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 6/5; }
.split-media .tag {
  position: absolute; bottom: 16px; inset-inline-start: 16px;
  background: var(--band-bg); color: var(--band-text); padding: 8px 14px; border-radius: var(--radius-s);
  font-size: 12.5px; font-weight: 600; display: flex; align-items: center; gap: 8px;
}
.split-media .tag svg { width: 14px; height: 14px; color: var(--red-light); }

/* ---------------- Dark band (why-us / CTA / safety-teaser) with icon pattern ---------------- */
.band {
  position: relative; background: var(--band-bg); color: var(--band-text); overflow: hidden;
}
.band .pattern { position: absolute; inset: 0; opacity: .06; background-repeat: repeat; background-size: 72px 72px; }
.band .container { position: relative; z-index: 1; }
.band .lead { color: var(--band-text-soft); }
.band .section-head .eyebrow { color: var(--red-light); }
.band .section-head .eyebrow::before { background: var(--red-light); }

.cta-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------------- Sectors grid tiles ---------------- */
.sector-tile { position: relative; border-radius: var(--radius-m); overflow: hidden; aspect-ratio: 4/5; }
.sector-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sector-tile:hover img { transform: scale(1.08); }
.sector-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,11,.88) 10%, rgba(10,10,11,.15) 60%, transparent 100%); }
.sector-tile .tile-body { position: absolute; inset-inline: 0; bottom: 0; padding: 20px; z-index: 1; color: #fff; }
.sector-tile .tile-body svg { width: 24px; height: 24px; color: var(--red-light); margin-bottom: 8px; }
.sector-tile .tile-body p { font-size: 13px; color: rgba(255,255,255,.78); margin-top: 6px; }

/* ---------------- Timeline / connected-system grid ---------------- */
.feature-item { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--border); }
.feature-item:first-child { border-top: none; }
.feature-item .ico { width: 44px; height: 44px; border-radius: var(--radius-s); background: color-mix(in srgb, var(--red) 10%, transparent); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item h4 { font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.feature-item p { color: var(--ink-soft); font-size: 14px; }

/* ---------------- Tables (insurance carries/excludes) ---------------- */
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { padding: 7px 13px; border-radius: 999px; border: 1px solid var(--border-strong); font-size: 13px; color: var(--ink-soft); }
.pill.no { color: var(--red); border-color: color-mix(in srgb, var(--red) 40%, var(--border-strong)); background: color-mix(in srgb, var(--red) 6%, transparent); }

/* ---------------- Certification cards ---------------- */
.cert-card { display: flex; align-items: center; gap: 16px; padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-m); transition: border-color .2s ease, transform .2s ease; }
.cert-card:hover { border-color: var(--red); transform: translateY(-2px); }
.cert-card .ico { width: 48px; height: 48px; border-radius: var(--radius-s); background: color-mix(in srgb, var(--red) 10%, transparent); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cert-card .body { flex: 1; min-width: 0; }
.cert-card .body h4 { font-weight: 600; font-size: 15px; }
.cert-card .body span { font-size: 13px; color: var(--ink-soft); }
.cert-card .dl { flex-shrink: 0; }

/* ---------------- Forms ---------------- */
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1/-1; }
.field label { font-size: 14px; font-weight: 600; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; padding: 12px 14px;
  border: 1.5px solid var(--border-strong); border-radius: var(--radius-s);
  background: var(--surface); color: var(--ink); transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); }
.field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 12.5px; color: var(--ink-soft); }
.alert { padding: 16px 18px; border-radius: var(--radius-m); font-size: 14.5px; margin-bottom: 20px; display: flex; gap: 12px; align-items: flex-start; }
.alert.success { background: color-mix(in srgb, #1f9d55 12%, transparent); color: #1f9d55; border: 1px solid color-mix(in srgb, #1f9d55 35%, transparent); }
.alert.error { background: color-mix(in srgb, var(--red) 10%, transparent); color: var(--red); border: 1px solid color-mix(in srgb, var(--red) 35%, transparent); }
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

.contact-card { background: var(--surface-2); border-radius: var(--radius-l); padding: 30px; display: grid; gap: 20px; align-content: start; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .ico { width: 40px; height: 40px; border-radius: var(--radius-s); background: var(--surface); border: 1px solid var(--border); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row strong { display: block; font-size: 13px; color: var(--ink-soft); font-weight: 600; margin-bottom: 2px; }
.contact-row span, .contact-row a { font-size: 15px; font-weight: 500; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--band-bg); color: var(--band-text-soft); padding-block: 64px 0; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px; } }
.footer-grid img { height: 36px; margin-bottom: 16px; }
.footer-grid p { font-size: 14px; line-height: 1.8; max-width: 320px; }
.footer-col h5 { color: var(--band-text); font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: var(--red-light); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: var(--radius-s); background: rgba(244,243,240,.06); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-bottom { border-top: 1px solid var(--band-border); margin-top: 50px; padding-block: 20px; text-align: center; font-size: 13px; }
.footer-bottom .container { display: flex; flex-direction: column; gap: 8px; align-items: center; justify-content: space-between; }
@media (min-width: 700px) { .footer-bottom .container { flex-direction: row; } }

/* ---------------- Sitemap page ---------------- */
.sitemap-list { columns: 1; gap: 40px; } @media (min-width: 700px) { .sitemap-list { columns: 2; } }
.sitemap-list li { break-inside: avoid; margin-bottom: 10px; }
.sitemap-list a { font-size: 16px; padding: 6px 0; display: inline-block; }
.sitemap-list a:hover { color: var(--red); }

/* ---------------- 404 ---------------- */
.page-404 { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-block: 80px; }

/* ---------------- Utilities ---------------- */
.mt-0{margin-top:0}.mt-1{margin-top:10px}.mt-2{margin-top:20px}.mt-3{margin-top:32px}.mt-4{margin-top:48px}
.text-center{text-align:center}
.hidden{display:none!important}
.pdf-frame { width: 100%; height: 78vh; border: 1px solid var(--border); border-radius: var(--radius-m); background: var(--surface-2); }
.breadcrumb { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--red); }
.page-hero { background: var(--band-bg); color: var(--band-text); padding-block: 54px 68px; position: relative; overflow: hidden; }
.page-hero .pattern { position: absolute; inset: 0; opacity: .05; background-repeat: repeat; background-size: 64px 64px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .lead { color: var(--band-text-soft); max-width: 640px; margin-top: 12px; }
