:root {
  color-scheme: light;
  --accent: #e25541;
  --ink: #222724;
  --muted: #606661;
  --border: #e2e5df;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
}
* { box-sizing: border-box; }
body { margin: 0; font-weight: 400; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid #a73525; outline-offset: 5px; }
.container { width: min(1200px, calc(100% - 96px)); margin-inline: auto; }
.skip-link { position: absolute; top: 12px; left: 16px; z-index: 10; padding: 14px 20px; background: #fff; border: 1px solid var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.site-header { border-bottom: 1px solid var(--border); }
.header-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { font-size: 25px; font-weight: 800; letter-spacing: -.9px; white-space: nowrap; }
.brand span { color: #b63d2c; }
/* The supplied logo has generous transparent space; retain its complete canvas. */
.site-header .brand, .site-footer .brand { display: flex; align-items: center; }
.site-header .site-logo, .site-footer .site-logo { display: block; width: 220px; max-width: 100%; height: auto; object-fit: contain; margin-block: -78px; }
@media (max-width: 1100px) {
  .site-header .site-logo, .site-footer .site-logo { width: 180px; margin-block: -64px; }
}
@media (max-width: 760px) {
  .site-header .site-logo, .site-footer .site-logo { width: 160px; margin-block: -56px; }
}
nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 38px); }
/* WordPress menu wrappers inherit the approved navigation layout. */
#primary-navigation .primary-menu { display: flex; flex-direction: inherit; align-items: inherit; gap: inherit; list-style: none; padding: 0; margin: 0; }
#primary-navigation .primary-menu > li { margin: 0; padding: 0; }
nav a { position: relative; display: flex; align-items: center; min-height: 48px; font-size: 12px; font-weight: 600; letter-spacing: .06em; }
nav a[aria-current="page"]::after { content: ""; position: absolute; bottom: 3px; left: 0; right: 0; height: 3px; background: var(--accent); }
.menu-toggle { display: none; }
.hero { padding-block: clamp(64px, 7.5vw, 108px) clamp(64px, 7vw, 100px); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 25px; font-size: 13px; font-weight: 600; letter-spacing: .06em; line-height: 1.5; }
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--accent); }
h1 { max-width: 1020px; margin: 0; font-size: clamp(38px, 4.6vw, 66px); font-weight: 600; letter-spacing: -.035em; line-height: 1.12; text-wrap: balance; }
.hero-description { max-width: 720px; margin: 28px 0 0; font-size: clamp(16px, 1.5vw, 18px); font-weight: 400; line-height: 1.75; color: var(--muted); }
.hero-statement { margin: 24px 0 0; font-size: clamp(15px, 1.4vw, 17px); font-weight: 600; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; min-height: 58px; min-width: 200px; padding: 16px 24px; border: 1px solid transparent; border-radius: 4px; font-size: 15px; font-weight: 600; line-height: 1.4; transition: transform .2s, background-color .2s, box-shadow .2s; }
.button span { font-size: 21px; line-height: 1; }
.button-primary { background: var(--accent); color: #191d1a; }
.button-secondary { border-color: #a7ada7; background: #fff; }
.button:focus-visible { box-shadow: 0 0 0 2px white; }
.how-it-works { padding-block: 54px 72px; border-top: 1px solid var(--border); background: #f8f9f6; }
h2 { margin: 0 0 30px; font-size: clamp(28px, 2.6vw, 36px); font-weight: 600; letter-spacing: -.025em; line-height: 1.25; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; padding: 0; margin: 0; list-style: none; }
.step { padding: 28px 24px 30px; border: 1px solid var(--border); border-radius: 5px; background: #fff; transition: transform .25s, box-shadow .25s, opacity .5s; }
.step-number { display: block; margin-bottom: 30px; font-size: 14px; font-weight: 700; color: #b63d2c; letter-spacing: 1px; }
h3 { margin: 0 0 12px; font-size: 20px; font-weight: 600; letter-spacing: -.015em; line-height: 1.35; }
.step p { margin: 0; color: var(--muted); font-size: 15px; font-weight: 400; line-height: 1.75; }
.step.reveal-pending { opacity: 0; transform: translateY(16px); }
@media (hover: hover) and (pointer: fine) {
  nav a:hover { color: #a73525; }
  .button:hover { transform: translateY(-2px); box-shadow: 0 4px 12px #22272412; }
  .button-primary:hover { background: #ed6b59; }
  .button-secondary:hover { background: #f8f9f6; }
  .step:hover { transform: translateY(-4px); box-shadow: 0 8px 20px #22272408; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero > * { animation: enter .65s both; }
  .hero-description { animation-delay: .08s; }
  .hero-statement { animation-delay: .14s; }
  .hero-actions { animation-delay: .2s; }
  @keyframes enter { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
}
@media (max-width: 1100px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) {
  .container { width: calc(100% - 48px); }
  .header-inner { min-height: 80px; flex-wrap: wrap; gap: 0; padding-block: 15px; }
  .brand { font-size: 23px; }
  .menu-toggle:not([hidden]) { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 10px 12px; background: #fff; color: var(--ink); border: 1px solid var(--border); border-radius: 4px; cursor: pointer; font-size: 14px; }
  .menu-icon { display: grid; gap: 5px; width: 18px; }
  .menu-icon span { height: 2px; background: currentColor; }
  nav { flex-basis: 100%; flex-direction: column; align-items: stretch; gap: 0; padding-top: 14px; }
  nav a { padding: 14px 8px; }
  nav a[aria-current="page"] { color: #a73525; }
  nav a[aria-current="page"]::after { left: 8px; right: auto; width: 28px; }
  .hero { padding-block: 56px 64px; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .how-it-works { padding-block: 40px 48px; }
  .step-number { margin-bottom: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .step.reveal-pending { opacity: 1; transform: none; }
}

/* Home Hero only: a full background with readable text and separate app roles. */
.home-hero { padding-inline: max(48px, calc((100% - 1200px) / 2)); background-image: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.90) 42%, rgba(255,255,255,.55) 70%, rgba(255,255,255,.12) 100%), url('../images/landing-png.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; }
.home-hero > * { min-width: 0; max-width: 720px; }
.home-hero { background-position: left 70%; }
.home-hero .eyebrow { color: #000; font-size: clamp(14px, 2.3vw, 32px); animation: none; }
.home-hero .eyebrow > span { display: inline-flex; align-items: baseline; flex-wrap: wrap; gap: .35em; min-width: 0; }
.home-hero h1, .home-hero .hero-statement { font-size: clamp(22px, 2.2vw, 30px); animation: none; }
.home-hero .hero-statement { color: #F15B47; font-weight: 700; }
.home-hero .eyebrow::before { content: none; }
.home-hero .eyebrow .hero-eyebrow-brand { position: relative; display: inline-block; color: #F15B47; font-size: clamp(23px, 4.6vw, 66px); font-weight: 700; line-height: 1.12; letter-spacing: -.035em; white-space: nowrap; }
.home-hero .hero-eyebrow-shine { display: none; }
@supports (background-clip: text) or (-webkit-background-clip: text) {
  @media (prefers-reduced-motion: no-preference) {
    .home-hero .hero-eyebrow-shine { display: block; position: absolute; inset: 0; pointer-events: none; color: transparent; -webkit-text-fill-color: transparent; background: linear-gradient(110deg, transparent 40%, #000 50%, transparent 60%) 150% 0 / 200% 100% no-repeat; -webkit-background-clip: text; background-clip: text; animation: home-brand-shine 4.8s linear infinite; }
    @keyframes home-brand-shine { 0% { background-position: 150% 0; } 85%, 100% { background-position: -150% 0; } }
  }
}
.home-hero .hero-downloads { margin-top: 32px; animation-delay: .2s; }
.home-hero .hero-downloads h2 { font-size: 20px; margin-bottom: 16px; }
.home-hero .hero-download-roles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 32px; max-width: 644px; }
.home-hero .hero-download-role { min-width: 0; }
.home-hero .hero-download-role h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 15px; letter-spacing: .04em; }
.home-hero .hero-download-role h3::before { content: ""; width: 18px; height: 2px; background: var(--accent); }
.home-hero .hero-store-links { display: grid; grid-template-columns: repeat(auto-fit, 148px); gap: 10px; }
.home-hero .hero-store-links a { display: inline-flex; align-items: center; gap: 9px; width: 148px; min-height: 54px; padding: 9px 11px; border: 1px solid var(--ink); border-radius: 6px; background: var(--ink); color: #fff; line-height: 1; transition: background-color .2s, border-color .2s, box-shadow .2s; }
.home-hero .hero-store-icon { flex: 0 0 22px; width: 22px; height: 26px; }
.home-hero .hero-store-copy { display: flex; flex-direction: column; gap: 4px; }
.home-hero .hero-store-kicker { font-size: 9px; font-weight: 400; letter-spacing: .02em; white-space: nowrap; }
.home-hero .hero-store-name { font-size: 16px; font-weight: 600; letter-spacing: -.02em; white-space: nowrap; }
.home-hero .hero-store-links a:focus-visible { outline: 3px solid #a73525; outline-offset: 4px; box-shadow: 0 0 0 2px #fff; }
@media (hover: hover) and (pointer: fine) {
  .home-hero .hero-store-links a:hover { background: #191d1a; border-color: var(--accent); box-shadow: 0 4px 12px #22272420; }
}
@media (max-width: 760px) {
  .home-hero { padding-inline: 24px; background-image: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82) 55%, rgba(255,255,255,.90)), url('../images/landing-png.webp'); background-position: right center; }
}
@media (max-width: 560px) {
  .home-hero .hero-download-roles { grid-template-columns: minmax(0, 1fr); }
}
.how-it-works .step { min-width: 0; border-color: transparent; background: #F15B47; }
.how-it-works .step h3 { color: #fff; text-align: center; }
.how-it-works .step p { color: #fff; }
.how-it-works .step-image { display: block; width: 100%; max-width: 100%; height: 180px; object-fit: contain; margin-bottom: 24px; }

/* Tracking only: neutral stages never imply live progress. */
.tracking-page .tracking-app { max-width: 720px; margin-top: 40px; }
.tracking-page .tracking-app h2 { margin-bottom: 16px; }
.tracking-page .tracking-app p { margin: 0; color: var(--muted); line-height: 1.75; }
.tracking-page .tracking-app .button { justify-content: center; }
.tracking-page .tracking-status { padding-block: 54px 72px; border-top: 1px solid var(--border); background: #f8f9f6; }
.tracking-page .tracking-status-description { margin: 0 0 36px; max-width: 720px; color: var(--muted); }
.tracking-page .tracking-timeline { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); list-style: none; margin: 0; padding: 0; }
.tracking-page .tracking-timeline li { position: relative; padding: 36px 10px 0; text-align: center; font-size: 15px; font-weight: 600; overflow-wrap: anywhere; }
.tracking-page .tracking-timeline li::before { content: ""; position: absolute; top: 5px; left: calc(50% - 7px); width: 14px; height: 14px; border: 2px solid #a7ada7; border-radius: 50%; background: #f8f9f6; z-index: 1; }
.tracking-page .tracking-timeline li:not(:last-child)::after { content: ""; position: absolute; top: 11px; left: 50%; width: 100%; height: 2px; background: var(--border); }
@media (max-width: 900px) {
  .tracking-page .tracking-timeline { grid-template-columns: minmax(0, 1fr); }
  .tracking-page .tracking-timeline li { padding: 0 0 30px 36px; text-align: left; }
  .tracking-page .tracking-timeline li:last-child { padding-bottom: 0; }
  .tracking-page .tracking-timeline li::before { left: 0; }
  .tracking-page .tracking-timeline li:not(:last-child)::after { left: 6px; top: 12px; width: 2px; height: 100%; }
}
@media (max-width: 560px) {
  .tracking-page .tracking-status { padding-block: 40px 48px; }
}

/* Services only: shared typography, spacing tokens and neutral card treatment. */
.services-page .services-catalog { padding-bottom: clamp(48px, 5vw, 72px); }
.services-page .hero .eyebrow { font-size: clamp(20px, 2vw, 26px); }
.services-page .hero .eyebrow::before { content: none; }
.services-page .services-card-image { display: block; width: 100%; max-width: 100%; height: 180px; object-fit: contain; object-position: center; margin: 0 auto 24px; }
.services-page .services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; padding: 0; margin: 0; list-style: none; }
.services-page .services-card { min-width: 0; padding: 28px 24px 30px; border: 1px solid var(--border); border-radius: 5px; background: #fff; overflow-wrap: anywhere; }
.services-page .services-card h2 { margin: 0 0 12px; font-size: 20px; font-weight: 600; letter-spacing: -.015em; line-height: 1.35; }
.services-page .services-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.services-page .services-vehicles { padding-block: 54px 72px; border-block: 1px solid var(--border); background: #f8f9f6; }
.services-page .services-note { margin: 24px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.services-page .services-cargo { padding-block: 54px 72px; }
.services-page .services-cargo-intro { margin: 0 0 24px; color: var(--muted); line-height: 1.75; }
.services-page .services-cargo-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px 32px; margin: 0; padding-left: 20px; }
.services-page .services-cargo-list li { padding-left: 4px; overflow-wrap: anywhere; }
.services-page .services-cargo-list li::marker { color: var(--accent); }
.services-page .services-cargo-warning { margin: 32px 0 0; padding: 12px 18px; border-left: 3px solid var(--accent); }
.services-page .services-cargo-warning strong { font-weight: 600; }
@media (max-width: 1100px) {
  .services-page .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-page .services-cargo-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .services-page .services-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .services-page .services-cargo-list { grid-template-columns: minmax(0, 1fr); }
  .services-page .services-vehicles,
  .services-page .services-cargo { padding-block: 40px 48px; }
}

/* Booking app gateway only. */
.booking-page .booking-app { max-width: 720px; margin-top: 40px; }
.booking-page .booking-app h2 { margin-bottom: 16px; }
.booking-page .booking-app p { margin: 0; color: var(--muted); line-height: 1.75; }
.booking-page .booking-app .button { justify-content: center; }
.booking-page .booking-journey { padding-block: 54px 72px; border-top: 1px solid var(--border); background: #f8f9f6; }
.booking-page .booking-journey-items { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; list-style: none; padding: 0; margin: 0; }
.booking-page .booking-journey-items li { min-width: 0; padding: 28px 24px 30px; border: 1px solid var(--border); border-radius: 5px; background: #fff; overflow-wrap: anywhere; }
.booking-page .booking-journey-items h2 { margin: 0 0 12px; font-size: 20px; font-weight: 600; letter-spacing: -.015em; line-height: 1.35; }
.booking-page .booking-journey-items p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
@media (max-width: 1100px) {
  .booking-page .booking-journey-items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .booking-page .booking-journey-items { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .booking-page .booking-journey { padding-block: 40px 48px; }
}

/* Contact-only cards and direct contact actions. */
.contact-page .contact-intro { margin: 16px 0 0; color: var(--muted); font-size: clamp(16px, 1.5vw, 18px); line-height: 1.75; }
.contact-page .contact-sections { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-bottom: 72px; }
.contact-page .contact-card { min-width: 0; padding: clamp(24px, 3vw, 36px); border: 1px solid var(--border); border-radius: 5px; background: #fff; }
.contact-page .contact-card h2 { font-size: clamp(24px, 2.3vw, 30px); margin-bottom: 24px; }
.contact-page .contact-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.contact-page .contact-details { margin: 0; }
.contact-page .contact-card p + .contact-details { margin-top: 24px; }
.contact-page .contact-details dt { color: var(--muted); font-size: 14px; }
.contact-page .contact-details dd { margin: 0 0 16px; }
.contact-page .contact-details dd:last-child { margin-bottom: 0; }
.contact-page .contact-details a { display: inline-flex; align-items: center; min-height: 44px; max-width: 100%; font-weight: 600; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 5px; overflow-wrap: anywhere; }
.contact-page .contact-driver .button { justify-content: center; min-width: 0; max-width: 100%; }
.contact-page .contact-card address { font-style: normal; line-height: 1.75; }
@media (max-width: 760px) {
  .contact-page .contact-sections { grid-template-columns: minmax(0, 1fr); padding-bottom: 48px; }
}

/* Shared footer; override generic navigation layout only inside the footer. */
.site-footer { padding-block: 40px 24px; border-top: 1px solid var(--border); background: #fff; }
.site-footer .footer-main { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 24px 40px; }
.site-footer .brand { margin: 0; }
.site-footer .footer-tagline { margin: 8px 0 0; color: var(--muted); font-size: 15px; }
.site-footer .footer-links { min-width: 0; max-width: 100%; }
.site-footer .footer-link-columns { display: grid; grid-template-areas: "quick legal"; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); align-items: start; gap: 24px 32px; width: 400px; min-width: 0; max-width: 100%; flex-shrink: 0; }
.site-footer .footer-link-columns > .footer-links:not(.footer-legal-column) { grid-area: quick; }
.site-footer .footer-link-columns > .footer-legal-column { grid-area: legal; }
.site-footer .footer-legal-column .footer-legal { margin-top: 0; }
@media (max-width: 560px) {
  .site-footer .footer-link-columns { grid-template-areas: "quick" "legal"; grid-template-columns: minmax(0, 1fr); }
}
.site-footer .footer-links h2 { margin: 0 0 12px; color: var(--accent); font-size: 20px; }
.site-footer .footer-nav { display: flex; flex-direction: column; flex-basis: auto; align-items: flex-start; gap: 0; padding: 0; }
.site-footer .footer-nav ul { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-nav a { min-height: 44px; padding: 8px 0; font-size: 14px; font-weight: 600; letter-spacing: normal; }
.site-footer .footer-legal { margin-top: 12px; font-size: 14px; font-weight: 600; }
.site-footer .footer-legal a { display: flex; align-items: center; min-height: 44px; padding-block: 8px; overflow-wrap: anywhere; }
.site-footer .footer-terms summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 44px; padding-block: 8px; list-style: none; cursor: pointer; }
.site-footer .footer-terms summary::-webkit-details-marker { display: none; }
.site-footer .footer-terms summary::after { content: ""; flex: 0 0 6px; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); }
.site-footer .footer-terms[open] summary::after { transform: rotate(225deg); }
.site-footer .footer-terms-links { padding-left: 14px; border-left: 2px solid var(--border); margin: 4px 0 8px; }
.site-footer .footer-links a:focus-visible,
.site-footer .footer-terms summary:focus-visible { outline: 3px solid #a73525; outline-offset: 3px; }
@media (hover: hover) and (pointer: fine) {
  .site-footer .footer-legal a:hover,
  .site-footer .footer-terms summary:hover { color: #a73525; }
}
.site-footer .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 32px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; line-height: 1.75; }
.site-footer .footer-bottom p { margin: 0; }
@media (max-width: 760px) {
  .site-footer .footer-main { flex-direction: column; align-items: flex-start; gap: 20px; }
  .site-footer .footer-bottom { flex-direction: column; }
}
