/* Meridian Courier — boring corporate carrier aesthetic.
   Palette: navy + cream + amber accent. Source Sans 3 body, Source Serif 4 heads.
   References: DHL.com structural rhythm, Amazon header anchoring, UPS info density. */

:root {
  --bg:        #f7f5ef;   /* warm cream */
  --bg2:       #ece7d8;
  --surface:   #ffffff;
  --border:    #e0dccd;
  --border2:   #c9c3aa;
  --text:      #1a1a23;
  --muted:     #5f6075;
  --muted2:    #8d8f9d;

  --navy:      #0b1e57;
  --navy2:     #08174a;
  --navy-soft: #142a6f;
  --amber:     #d18024;    /* CTAs */
  --amber2:    #b66c19;
  --ok:        #1a7f3b;
  --danger:    #b3261e;

  --shadow:    0 1px 2px rgba(11, 30, 87, 0.06), 0 2px 8px rgba(11, 30, 87, 0.04);
  --maxw:      1180px;
  --radius:    2px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 15px/1.55 'Source Sans 3', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; max-width: 100%; }
.mono { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Source Serif 4', Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #0d0f1a;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber2);
  margin-bottom: 6px;
}
.muted   { color: var(--muted); }
.tiny    { font-size: 11px; }

/* ── Header ───────────────────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  color: #fff;
  border-bottom: 4px solid var(--amber);
}
.site-header a { color: #fff; }
.header-inner {
  display: flex; align-items: center; gap: 28px;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none !important;
}
.brand-mark {
  background: #fff;
  color: var(--navy);
  padding: 5px 10px;
  font: 900 italic 17px/1 'Source Sans 3', system-ui;
  letter-spacing: -0.02em;
  border-radius: var(--radius);
}
.brand-sub {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.02em;
}
.main-nav {
  display: flex; gap: 4px;
  flex: 1;
}
.main-nav a {
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  border-radius: var(--radius);
  text-decoration: none !important;
}
.main-nav a:hover  { background: rgba(255,255,255,0.08); }
.main-nav a.on     { background: rgba(255,255,255,0.12); }
.header-actions {
  display: flex; align-items: center; gap: 14px;
}
.header-actions .phone {
  font-family: ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
}
.header-actions .phone:hover { background: rgba(255,255,255,0.06); text-decoration: none; }

/* ── Mobile nav toggle (CSS-only, checkbox hack — no JS so CSP-safe) ── */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

@media (max-width: 880px) {
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    min-height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 14px;
  }
  .brand { flex: 0 0 auto; }
  .header-actions { order: 2; margin-left: auto; }
  .nav-toggle-label {
    order: 3;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    padding: 4px 0;
    cursor: pointer;
    user-select: none;
  }
  .nav-toggle-label span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.18s ease, opacity 0.18s ease;
    transform-origin: center;
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .main-nav {
    order: 4;
    flex: 0 0 100%;
    flex-direction: column;
    gap: 2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 4px;
  }
  .nav-toggle:checked ~ .main-nav { max-height: 360px; }
  .main-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 15px;
  }
}
@media (max-width: 420px) {
  .brand-sub { display: none; }
  .header-actions .phone { padding: 6px 8px; font-size: 12px; }
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 11px 22px;
  font: 600 14px/1 'Source Sans 3', system-ui, sans-serif;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
  text-decoration: none !important;
}
.btn-primary {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}
.btn-primary:hover { background: var(--amber2); border-color: var(--amber2); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-ghost:hover { background: rgba(11,30,87,0.05); }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  padding: clamp(36px, 5.5vw, 64px) 0 clamp(42px, 6vw, 76px);
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-copy h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.04;
  margin: 4px 0 18px;
}
.hero-copy .lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 24px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--amber);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
}
.hero-card h2 {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 18px; font-weight: 600;
  margin-bottom: 4px;
}
.hero-card form {
  display: flex; gap: 0;
  margin: 14px 0 8px;
}
.hero-card input {
  flex: 1;
  padding: 12px 14px;
  font: 500 14px/1 ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid var(--border2);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  background: #fff;
  color: var(--text);
}
.hero-card input::placeholder { text-transform: none; color: var(--muted2); letter-spacing: 0; }
.hero-card input:focus { outline: 0; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,30,87,0.1); }
.hero-card .btn-track {
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 11px 18px;
}

/* ── Stats strip ─────────────────────────────────────────────────────── */
.strip-stats {
  background: var(--navy);
  color: #fff;
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stats-grid > div { display: flex; flex-direction: column; gap: 2px; }
.stat-n {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 32px; font-weight: 700;
  color: #fff;
}
.stat-l {
  font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

/* ── Sections ────────────────────────────────────────────────────────── */
.section { padding: clamp(44px, 6vw, 72px) 0; }
.section.bg-cream { background: var(--bg2); }
.section-h {
  font-size: clamp(24px, 3.4vw, 32px);
  margin-bottom: 8px;
}
.section-sub {
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 16px);
  max-width: 60ch;
  margin: 0 0 clamp(20px, 3vw, 32px);
}

/* ── Services grid (homepage) ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }
.service-tile {
  display: block;
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none !important;
  color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.service-tile:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(11,30,87,0.08);
}
.service-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  font-size: 18px;
  margin-bottom: 14px;
}
.service-tile h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px; font-weight: 700;
  margin-bottom: 4px;
}
.service-tile p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.link-arrow {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
}

/* ── Why us grid ──────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: clamp(20px, 3vw, 32px);
}
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(16px, 2.4vw, 26px);
  padding-top: clamp(18px, 2.6vw, 26px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius);
}
svg.why-icon {
  width: clamp(22px, 2.2vw, 28px);
  height: clamp(22px, 2.2vw, 28px);
  color: var(--amber);
  margin-bottom: 4px;
  flex: 0 0 auto;
}
.why-grid h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px; font-weight: 700;
}
.why-grid p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ── News grid ───────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.news-grid.news-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-left: auto; margin-right: auto; }
@media (max-width: 880px) { .news-grid, .news-grid.news-grid-2 { grid-template-columns: 1fr; } }
.news-card {
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  background: #ece7d8;
  border-bottom: 1px solid var(--border);
}
.news-body { padding: 18px 22px 20px; }
.news-date {
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 10px;
}
.news-card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 19px; line-height: 1.25;
  margin-bottom: 8px;
}
.news-card p {
  color: var(--muted);
  font-size: 14px;
}

/* ── Image bands ─────────────────────────────────────────────────────── */
.hero-strip,
.about-hero {
  width: 100%;
  background: #ece7d8;
  overflow: hidden;
}
.hero-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 500;
  max-height: 500px;
  object-fit: cover;
}
.about-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  max-height: 420px;
  object-fit: cover;
}

/* ── Leadership grid ─────────────────────────────────────────────────── */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
  margin: 18px 0 24px;
}
@media (max-width: 760px) { .leader-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) {
  .leader-grid { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
}
.leader {
  margin: 0;
  text-align: center;
}
.leader img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #ece7d8;
  border-radius: 4px;
  margin-bottom: 10px;
}
.leader figcaption strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
.leader figcaption span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy2);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 24px;
  margin-top: 60px;
}
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-col h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; font-size: 13.5px; }
.footer-tag {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin: 14px 0;
}
.footer-addr {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 38px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
}
.footer-legal a { margin: 0 4px; }
.footer-legal .sep { color: rgba(255,255,255,0.3); margin: 0 4px; }
.footer-fineprint a { color: rgba(255,255,255,0.7); text-decoration: underline; text-underline-offset: 2px; }

/* ── Page head (sub-pages) ───────────────────────────────────────────── */
.page-head {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: clamp(36px, 5vw, 56px) 0 clamp(28px, 4vw, 44px);
}
.page-head h1 {
  font-size: clamp(28px, 4.4vw, 42px);
  line-height: 1.08;
  margin: 4px 0 12px;
}
.page-head .lede {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--muted);
  max-width: 70ch;
}

/* ── Long-form content (services, about, help) ───────────────────────── */
.narrative {
  max-width: 760px;
  margin: 0 auto;
}
.narrative h2 {
  font-size: 26px;
  margin: 36px 0 12px;
  padding-top: 10px;
}
.narrative h2:first-child { margin-top: 0; }
.narrative h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 6px;
}
.narrative p { color: var(--text); margin-bottom: 12px; font-size: 15.5px; }
.narrative ul.bullets {
  padding-left: 20px;
  color: var(--text);
  margin-bottom: 14px;
}
.narrative ul.bullets li { padding: 3px 0; font-size: 15px; }
.leaders {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 18px;
}
.leaders td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.leaders td:last-child { color: var(--muted); }

.service-detail {
  max-width: 820px;
  margin: 0 auto;
}
.service-detail article {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail article:last-child { border-bottom: 0; }
.service-detail h2 {
  font-size: 26px;
  margin-bottom: 8px;
}
.service-detail p { color: var(--muted); margin-bottom: 12px; font-size: 15px; }
.service-detail ul.bullets li { font-size: 14.5px; color: var(--text); }

/* ── Contact page ────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.contact-block h2 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}
.contact-block .big-line {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-block .addr {
  font-size: 14.5px; line-height: 1.6;
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 4px 0; font-size: 14px; }
.contact-form-block label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 10px 0 0;
}
.contact-form-block input,
.contact-form-block textarea,
.contact-form-block select {
  width: 100%; padding: 9px 12px;
  margin-top: 4px;
  border: 1px solid var(--border2); border-radius: var(--radius);
  font: inherit;
  background: #fff; color: var(--text);
}
.contact-form-block textarea { font-family: inherit; resize: vertical; min-height: 80px; }
.contact-form-block input:focus,
.contact-form-block textarea:focus,
.contact-form-block select:focus {
  outline: 0; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,30,87,0.1);
}
.contact-form-block button { margin-top: 14px; }
.form-ok {
  background: #e2f1e7;
  color: var(--ok);
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13.5px;
  margin-bottom: 12px;
}
.form-err {
  background: #fbecea;
  color: var(--danger);
  border: 1px solid #e8b5b1;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13.5px;
  margin-bottom: 18px;
}

/* ── Tracking ────────────────────────────────────────────────────────── */
.track-entry {
  max-width: 560px;
  margin: 0 auto;
}
.track-form {
  display: flex; gap: 0; margin-top: 16px;
}
.track-form input {
  flex: 1;
  padding: 14px 16px;
  font: 600 16px/1 ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid var(--border2);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  background: #fff;
}
.track-form input::placeholder { text-transform: none; color: var(--muted2); letter-spacing: 0; }
.track-form input:focus { outline: 0; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,30,87,0.1); }
.track-form button {
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 22px;
}

.progress {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-bottom: 18px;
}
.progress-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.progress-track::before {
  content: ""; position: absolute;
  left: 6%; right: 6%; top: 13px; height: 4px;
  background: var(--border);
  border-radius: 2px;
}
.progress-track::after {
  content: ""; position: absolute;
  left: 6%; top: 13px; height: 4px;
  background: var(--navy);
  border-radius: 2px;
  width: calc(var(--progress, 25%) - 6%);
  transition: width 0.4s ease;
}
.stage { position: relative; text-align: center; z-index: 1; }
.stage .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--border);
  margin: 0 auto 8px;
}
.stage.done .dot { background: var(--navy); border-color: var(--navy); }
.stage.current .dot {
  background: var(--navy); border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(11,30,87,0.15);
}
.stage .label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.stage.done .label, .stage.current .label { color: var(--text); }

.track-detail-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 18px;
}
@media (max-width: 880px) { .track-detail-grid { grid-template-columns: 1fr; } }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.map-card { padding: 0; overflow: hidden; }
#map { height: 460px; width: 100%; background: #ece9df; }
.leaflet-control-attribution { font-size: 9px !important; opacity: 0.7; }
.timeline {
  padding: 22px 22px 18px;
  max-height: 460px;
  overflow-y: auto;
}
.timeline h2 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
}
.event {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.event:last-child { border-bottom: 0; }
.event .pip { position: relative; margin-top: 6px; }
.event .pip::before {
  content: ""; display: block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--navy); margin-left: 3px;
}
.event:first-child .pip::before { box-shadow: 0 0 0 3px rgba(11,30,87,0.2); }
.event .when {
  font-size: 11px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.02em;
}
.event .where { font-size: 14.5px; font-weight: 600; margin-top: 1px; }
.event .what { font-size: 12.5px; color: var(--muted); margin-top: 1px; }

.track-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
@media (max-width: 700px) { .track-meta-row { grid-template-columns: 1fr; } }
.track-meta {
  display: flex; flex-direction: column; gap: 2px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.track-meta .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}
.track-meta .value { font-size: 14.5px; }
