:root {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --border: #e2e6ec;
  --text: #16202e;
  --text-muted: #5b6779;
  --navy: #0f2b52;
  --navy-light: #1f4fa3;
  --accent: #e8830c;
  --accent-hover: #cf7307;
  --success: #1c8a5a;
  --warn: #b4770f;
  --danger: #c23b30;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(15, 43, 82, 0.06), 0 10px 30px rgba(15, 43, 82, 0.08);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0f1420;
    --surface: #171e2c;
    --border: #2b3345;
    --text: #eef1f6;
    --text-muted: #98a2b5;
    --navy: #16345f;
    --navy-light: #3a6bc4;
    --accent: #f2a03d;
    --accent-hover: #f7b25c;
    --shadow: 0 1px 2px rgba(0,0,0,0.4), 0 10px 30px rgba(0,0,0,0.35);
  }
}
:root[data-theme="dark"] {
  --bg: #0f1420;
  --surface: #171e2c;
  --border: #2b3345;
  --text: #eef1f6;
  --text-muted: #98a2b5;
  --navy: #16345f;
  --navy-light: #3a6bc4;
  --accent: #f2a03d;
  --accent-hover: #f7b25c;
  --shadow: 0 1px 2px rgba(0,0,0,0.4), 0 10px 30px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

.site-header {
  background: var(--navy);
  color: #fff;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; color: #fff; text-decoration: none; }
.brand-mark { border-radius: 8px; display: block; }
.header-nav { display: flex; gap: 20px; flex-wrap: wrap; justify-content: flex-end; }
.nav-link { color: rgba(255,255,255,0.75); text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.nav-link.active, .nav-link:hover { color: #fff; }

.hero {
  position: relative;
  color: #fff;
  padding: 84px 20px 76px;
  text-align: center;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--navy);
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,43,82,0.82) 0%, rgba(15,43,82,0.46) 45%, rgba(15,43,82,0.85) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.hero h1 { font-size: 2.4rem; margin: 0 0 14px; line-height: 1.15; }
.hero p { color: rgba(255,255,255,0.88); margin: 0 0 30px; font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(232, 131, 12, 0.15);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 34px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-trust .dot { color: rgba(255,255,255,0.4); }

.features {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature { text-align: center; padding: 10px; }
.feature-icon { font-size: 1.8rem; margin-bottom: 10px; }
.feature h3 { margin: 0 0 6px; font-size: 1.02rem; }
.feature p { margin: 0; color: var(--text-muted); font-size: 0.88rem; }

@media (max-width: 860px) {
  .features-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { min-height: 0; padding: 32px 20px 40px; flex-direction: column; }
  .hero-bg-photo {
    position: static;
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 35%;
    border-radius: var(--radius);
    display: block;
    margin: 0 auto 22px;
    box-shadow: var(--shadow);
  }
  .hero-scrim { display: none; }
}

@media (max-width: 560px) {
  .header-inner { flex-direction: column; gap: 10px; padding: 14px 20px; }
  .header-nav { gap: 8px 14px; justify-content: center; }
}

.track-form {
  display: flex;
  gap: 10px;
  background: #fff;
  padding: 6px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.track-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 18px;
  font-size: 1rem;
  color: var(--text);
  outline: none;
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.05s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }

.btn-large { padding: 16px 34px; font-size: 1.05rem; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-neutral { background: var(--border); color: var(--text); }
.btn-neutral:hover { background: var(--text-muted); color: #fff; }

.container {
  max-width: 1100px;
  margin: 40px auto 60px;
  padding: 0 20px;
  position: relative;
}

.not-found {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--text-muted);
  box-shadow: var(--shadow);
  margin-top: 34px;
}

.summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  display: flex;
  gap: 20px;
}
.summary-photo {
  width: 110px; height: 110px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.summary-info { flex: 1; min-width: 0; }
.summary-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; flex-wrap: wrap; }
.summary-info h2 { margin: 0 0 2px; font-size: 1.3rem; }
.summary-meta { color: var(--text-muted); font-size: 0.9rem; }

.status-pill {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  white-space: nowrap;
}
.status-Booked { background: #6b7280; }
.status-Picked-Up { background: var(--navy-light); }
.status-In-Transit { background: var(--warn); }
.status-Out-for-Delivery { background: var(--accent); }
.status-Delivered { background: var(--success); }

.route-line { display: flex; align-items: center; gap: 14px; margin: 14px 0 10px; }
.route-label { font-size: 0.72rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.04em; }
.route-place { font-weight: 600; }
.route-arrow { color: var(--text-muted); }

.tracking-number { font-size: 0.85rem; color: var(--text-muted); }
.tracking-number strong { color: var(--text); letter-spacing: 0.02em; }

.stage-tracker {
  display: flex;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px 20px;
  margin-top: 20px;
  position: relative;
}
.stage {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 6px;
}
.stage::before {
  content: "";
  position: absolute;
  top: 15px; left: -50%; width: 100%;
  height: 3px;
  background: var(--border);
  z-index: 0;
}
.stage:first-child::before { display: none; }
.stage.done::before { background: var(--accent); }

.stage-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
}
.stage.done .stage-dot { background: var(--accent); color: #fff; }
.stage.current .stage-dot { box-shadow: 0 0 0 5px rgba(232, 131, 12, 0.2); }

.stage-label { font-weight: 700; font-size: 0.85rem; }
.stage-date { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; min-height: 1.2em; }

.map-and-log {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.map-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
#map { height: 380px; width: 100%; }

.map-pin {
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.map-pin-origin { background: var(--navy-light); }
.map-pin-dest { background: var(--success); }

.pulse-dot {
  display: block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgba(232, 131, 12, 0.6);
  animation: pulseRing 1.8s ease-out infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(232, 131, 12, 0.6); }
  100% { box-shadow: 0 0 0 12px rgba(232, 131, 12, 0); }
}

.story { background: var(--navy); color: #fff; }
.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.story-photo { width: 100%; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.35); object-fit: cover; max-height: 420px; }
.story-copy h2 { font-size: 1.7rem; margin: 0 0 14px; line-height: 1.25; }
.story-copy p { color: rgba(255,255,255,0.85); margin: 0; }
.eyebrow-dark { background: rgba(255,255,255,0.12); }

.gallery { background: var(--surface); padding: 60px 20px; text-align: center; }
.gallery-inner { max-width: 900px; margin: 0 auto; }
.gallery h2 { font-size: 1.6rem; margin: 8px 0 28px; }
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.carousel-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.carousel-slide.active { opacity: 1; }

@media (max-width: 760px) {
  .story-inner { grid-template-columns: 1fr; text-align: center; }
}

.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 140%);
  color: #fff;
  padding: 56px 20px 70px;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.page-hero-copy h1 { font-size: 2rem; margin: 0 0 14px; line-height: 1.2; }
.page-hero-copy p { color: rgba(255,255,255,0.85); margin: 0 0 14px; }
.page-hero-photo { width: 100%; border-radius: 18px; object-fit: cover; max-height: 460px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }

.reviews-section { background: var(--surface); padding: 56px 20px; }
.reviews-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.review {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.review p { margin: 0 0 10px; font-size: 1rem; line-height: 1.5; }
.review cite { font-style: normal; font-weight: 600; color: var(--text-muted); font-size: 0.85rem; }

.share-experience {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
  padding: 30px;
  border-top: 1px solid var(--border);
}
.share-experience h3 { margin: 0 0 4px; }
.share-experience p { margin: 0 0 18px; color: var(--text-muted); }

.track-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 140%);
  color: #fff;
  padding: 56px 20px 60px;
  text-align: center;
}
.track-hero-inner { max-width: 720px; margin: 0 auto; }
.track-hero h1 { font-size: 2rem; margin: 0 0 12px; line-height: 1.2; }
.track-hero p { color: rgba(255,255,255,0.85); margin: 0 0 24px; }
.track-hero .track-form { max-width: 560px; margin: 0 auto; }

.info-callouts { background: var(--bg); border-bottom: 1px solid var(--border); }
.info-callouts-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-callout h3 { margin: 0 0 6px; font-size: 0.95rem; }
.info-callout p { margin: 0; color: var(--text-muted); font-size: 0.86rem; }
@media (max-width: 760px) {
  .info-callouts-inner { grid-template-columns: 1fr; }
}

.admin-login {
  max-width: 380px;
  margin: 60px auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  text-align: center;
}
.admin-login h1 { margin: 0 0 4px; font-size: 1.4rem; }
.admin-sub { color: var(--text-muted); margin: 0 0 20px; font-size: 0.88rem; }
.admin-login form { text-align: left; }
.login-error { color: var(--danger); font-size: 0.85rem; margin: 0 0 12px; }
.admin-login .btn { width: 100%; }

.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.admin-header h1 { margin: 0; font-size: 1.4rem; }

.field { display: block; margin-bottom: 16px; }
.field span { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(31, 79, 163, 0.15);
}
.field textarea { resize: vertical; }

.field-row { display: flex; gap: 16px; }
.field-row .field { flex: 1; }

@media (max-width: 560px) {
  .field-row { flex-direction: column; gap: 0; }
}

.admin-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 560px;
}

.btn-small { padding: 7px 16px; font-size: 0.82rem; }

.create-result {
  max-width: 560px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 18px;
  text-align: center;
}
.create-result p { margin: 0 0 6px; color: var(--text-muted); }
.tracking-number-big { font-size: 1.4rem; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 14px; }

.admin-subheading { margin: 36px 0 14px; font-size: 1.05rem; }

.form-section-heading { margin: 24px 0 4px; font-size: 1rem; border-top: 1px solid var(--border); padding-top: 20px; }
.form-section-note { margin: 0 0 14px; color: var(--text-muted); font-size: 0.8rem; }

.admin-row-wrap { max-width: 720px; margin-bottom: 10px; }
.admin-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  flex-wrap: wrap;
}
.admin-row-details {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 12px 16px;
  margin-top: -1px;
  font-size: 0.86rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
}
.admin-row img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.admin-row-noimg { width: 44px; height: 44px; border-radius: 8px; background: var(--border); flex-shrink: 0; }
.admin-row-info { flex: 1; min-width: 160px; }
.admin-row-name { font-weight: 700; }
.admin-row-tn { font-weight: 400; color: var(--text-muted); font-size: 0.78rem; margin-left: 6px; }
.admin-row-meta { font-size: 0.82rem; color: var(--text-muted); }
.admin-row-actions { display: flex; gap: 8px; }

.policies-section { background: var(--surface); padding: 50px 20px; }
.policies-inner { max-width: 780px; margin: 0 auto; }
.policies-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-bottom: 24px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.policies-toc a { color: var(--navy-light); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.policies-toc a:hover { text-decoration: underline; }

.policy-block { margin-bottom: 40px; scroll-margin-top: 20px; }
.policy-block h2 { margin: 0 0 10px; font-size: 1.25rem; }
.policy-block p { margin: 0; color: var(--text-muted); }

.faq-item { margin-bottom: 18px; }
.faq-item h3 { margin: 0 0 4px; font-size: 1rem; }
.faq-item p { margin: 0; color: var(--text-muted); }

.crates-section { background: var(--surface); padding: 56px 20px; }
.crates-inner { max-width: 1100px; margin: 0 auto; }
.crates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}
.crate-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.crate-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.crate-body { padding: 16px; }
.crate-body h3 { margin: 6px 0 6px; font-size: 1rem; }
.crate-body p { margin: 0 0 12px; color: var(--text-muted); font-size: 0.86rem; }
.crate-price { font-weight: 700; font-size: 1.1rem; }

.tier {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
}
.tier-economy { background: #6b7280; }
.tier-standard { background: var(--navy-light); }
.tier-deluxe { background: var(--warn); }
.tier-premium { background: var(--accent); }

.process-section { background: var(--surface); padding: 56px 20px; }
.process-inner { max-width: 760px; margin: 0 auto; }
.process-step { display: flex; gap: 22px; position: relative; padding-bottom: 34px; }
.process-step::before {
  content: "";
  position: absolute;
  left: 21px; top: 46px; bottom: 0;
  width: 2px;
  background: var(--border);
}
.process-step:last-child::before { display: none; }
.process-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 1;
}
.process-body h3 { margin: 4px 0 8px; }
.process-body p { margin: 0; color: var(--text-muted); }

.services-grid-section { background: var(--surface); padding: 56px 20px; }
.services-grid-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.service-card h3 { margin: 4px 0 8px; font-size: 1.02rem; }
.service-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 860px) {
  .services-grid-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services-grid-inner { grid-template-columns: 1fr; }
}

.values {
  background: var(--surface);
  padding: 50px 20px;
}
.values-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value { padding: 10px; }
.value h3 { margin: 0 0 6px; }
.value p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

.contact-form { margin-top: 20px; max-width: 420px; }
.contact-form .field { margin-bottom: 14px; }
.contact-form label span { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: rgba(255,255,255,0.85); }
.contact-form input, .contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.92rem;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.6); }
.contact-choice { margin-top: 16px; }
.contact-choice p { margin: 0 0 10px; font-weight: 600; }
.contact-choice-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.contact-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}
.contact-info strong { color: #fff; }

@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; text-align: center; }
  .contact-form { margin-left: auto; margin-right: auto; text-align: left; }
  .values-inner { grid-template-columns: 1fr; }
}

.log-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  max-height: 380px;
  overflow-y: auto;
}
.log-card h3 { margin: 0 0 12px; font-size: 1rem; }
.event-log { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--border); }
.event-item { padding: 0 0 16px 16px; position: relative; }
.event-item::before {
  content: "";
  position: absolute; left: -6px; top: 4px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--navy-light);
}
.event-item:first-child::before { background: var(--accent); }
.event-date { font-size: 0.75rem; color: var(--text-muted); }
.event-desc { font-size: 0.9rem; margin-top: 2px; }

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 48px 20px 24px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}
.footer-brand .brand { color: #fff; margin-bottom: 10px; }
.footer-brand p { margin: 0; max-width: 320px; line-height: 1.5; }
.footer-links h4, .footer-network h4 {
  color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.footer-links { display: flex; flex-direction: column; }
.footer-links a { color: rgba(255,255,255,0.75); text-decoration: none; margin-bottom: 8px; font-size: 0.88rem; }
.footer-links a:hover { color: #fff; }

.network-icons { display: flex; gap: 22px; }
.network-icon { display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.8); font-size: 0.75rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom p { margin: 0; }
.staff-link { color: rgba(255,255,255,0.5); text-decoration: none; }
.staff-link:hover { color: rgba(255,255,255,0.8); text-decoration: underline; }

@media (max-width: 700px) {
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-brand .brand { justify-content: center; }
  .footer-brand p { margin: 0 auto; }
  .network-icons { justify-content: center; }
}

@media (max-width: 760px) {
  .map-and-log { grid-template-columns: 1fr; }
  .summary-card { flex-direction: column; }
  .stage-tracker { flex-wrap: wrap; row-gap: 20px; }
  .stage { flex: 1 1 33%; }
  .stage::before { display: none; }
  .hero h1 { font-size: 1.5rem; }
  .track-form { flex-direction: column; border-radius: var(--radius); }
}

/* Scroll-triggered reveal animations */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-56px); }
[data-reveal="right"] { transform: translateX(56px); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
