:root {
  --navy-950: #031022;
  --navy-900: #07172b;
  --navy-800: #0b2848;
  --navy-700: #16416c;
  --gold-600: #d58a06;
  --gold-500: #f1ae1f;
  --gold-400: #ffc94d;
  --gold-300: #ffdc83;
  --accent-text: #815000;
  --white: #ffffff;

  --bg: #f4f7f9;
  --bg-accent: #e9eff4;
  --surface: #ffffff;
  --surface-soft: #eef3f6;
  --surface-strong: #e3eaf0;
  --text: #152236;
  --text-strong: #07172b;
  --muted: #5c6978;
  --muted-strong: #3f4e60;
  --border: rgba(10, 37, 67, .14);
  --border-strong: rgba(10, 37, 67, .24);
  --gold-line: rgba(213, 138, 6, .38);
  --grid-line: rgba(10, 37, 67, .045);
  --shadow-sm: 0 8px 24px rgba(9, 31, 56, .07);
  --shadow: 0 18px 50px rgba(9, 31, 56, .11);
  --shadow-lg: 0 28px 80px rgba(3, 16, 34, .18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1480px;
  --page-gutter: clamp(1rem, 2.5vw, 2.5rem);
  --header-height: 78px;
  --ease: cubic-bezier(.2, .72, .25, 1);
}

[data-theme="dark"] {
  --accent-text: #ffc94d;
  --bg: #030b18;
  --bg-accent: #07162a;
  --surface: #081a30;
  --surface-soft: #0b213c;
  --surface-strong: #102b4c;
  --text: #f5f7fa;
  --text-strong: #ffffff;
  --muted: #b8c4d1;
  --muted-strong: #d8e0e8;
  --border: rgba(255, 255, 255, .11);
  --border-strong: rgba(255, 255, 255, .2);
  --gold-line: rgba(241, 174, 31, .4);
  --grid-line: rgba(255, 255, 255, .03);
  --shadow-sm: 0 10px 28px rgba(0, 0, 0, .22);
  --shadow: 0 22px 58px rgba(0, 0, 0, .3);
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, .44);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --accent-text: #ffc94d;
    --bg: #030b18;
    --bg-accent: #07162a;
    --surface: #081a30;
    --surface-soft: #0b213c;
    --surface-strong: #102b4c;
    --text: #f5f7fa;
    --text-strong: #ffffff;
    --muted: #b8c4d1;
    --muted-strong: #d8e0e8;
    --border: rgba(255, 255, 255, .11);
    --border-strong: rgba(255, 255, 255, .2);
    --gold-line: rgba(241, 174, 31, .4);
    --grid-line: rgba(255, 255, 255, .03);
    --shadow-sm: 0 10px 28px rgba(0, 0, 0, .22);
    --shadow: 0 22px 58px rgba(0, 0, 0, .3);
    --shadow-lg: 0 30px 90px rgba(0, 0, 0, .44);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.25rem);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(241, 174, 31, .085), transparent 24rem),
    radial-gradient(circle at 88% 38%, rgba(22, 65, 108, .08), transparent 30rem),
    var(--bg);
  font-family: "Segoe UI Variable", "Segoe UI", Inter, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: color .25s ease, background-color .25s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text-strong);
  font-weight: 800;
  text-wrap: balance;
}

h1 {
  max-width: 790px;
  margin-bottom: 1.15rem;
  font-size: clamp(3rem, 6.3vw, 5.8rem);
  line-height: .96;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: .9rem;
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

h3 {
  margin-bottom: .55rem;
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: -.012em;
}

::selection {
  color: var(--navy-950);
  background: var(--gold-300);
}

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  top: .75rem;
  left: 1rem;
  z-index: 200;
  padding: .7rem 1rem;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: var(--radius-sm);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  color: #f7f9fc;
  background: rgba(3, 16, 34, .93);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 1px 0 rgba(241, 174, 31, .08);
  backdrop-filter: blur(18px) saturate(130%);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 16, 34, .98);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .24);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
}

.brand img {
  width: 164px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .1rem;
}

.main-nav a {
  position: relative;
  padding: .68rem .72rem;
  border-radius: var(--radius-sm);
  color: #c3ceda;
  font-size: .91rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: .72rem;
  bottom: .34rem;
  left: .72rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, .065);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  margin-left: .4rem;
  padding-inline: .95rem;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  box-shadow: 0 10px 24px rgba(241, 174, 31, .2);
}

.main-nav .nav-cta::after {
  display: none;
}

.main-nav .nav-cta:hover {
  color: var(--navy-950);
  background: var(--gold-400);
  transform: translateY(-1px);
}

.header-tools {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .55rem;
}

.theme-picker {
  position: relative;
  flex: 0 0 auto;
}

.theme-trigger {
  display: flex;
  align-items: center;
  gap: .42rem;
  min-height: 44px;
  padding: 0 .8rem;
  color: #dbe3eb;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  cursor: pointer;
  font-size: .83rem;
  font-weight: 750;
  transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.theme-trigger:hover,
.theme-trigger[aria-expanded="true"] {
  color: #ffffff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(241, 174, 31, .6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.theme-control-icon {
  position: relative;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border: 2px solid var(--gold-400);
  border-radius: 50%;
  box-shadow: inset -4px 0 0 var(--gold-400);
}

.theme-trigger[data-theme-value="light"] .theme-control-icon {
  background: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(255, 201, 77, .16);
}

.theme-trigger[data-theme-value="dark"] .theme-control-icon {
  background: transparent;
  border-color: transparent;
  box-shadow: inset -5px -2px 0 var(--gold-400);
}

.theme-current {
  min-width: 68px;
  text-align: left;
}

.theme-chevron {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}

.theme-trigger[aria-expanded="true"] .theme-chevron {
  transform: translateY(2px) rotate(225deg);
}

.theme-menu {
  position: absolute;
  top: calc(100% + .7rem);
  right: 0;
  z-index: 130;
  width: 278px;
  padding: .55rem;
  color: #e8eef5;
  background: rgba(3, 16, 34, .985);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 17px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .42), 0 0 0 1px rgba(241, 174, 31, .06);
  backdrop-filter: blur(18px) saturate(130%);
  transform-origin: top right;
  animation: themeMenuIn .18s var(--ease) both;
}

.theme-menu[hidden] {
  display: none;
}

.theme-menu-label {
  margin: 0;
  padding: .42rem .62rem .5rem;
  color: #8998a9;
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.theme-option {
  width: 100%;
  display: grid;
  grid-template-columns: 38px 1fr 18px;
  gap: .7rem;
  align-items: center;
  padding: .7rem;
  color: #d9e2eb;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: color .16s ease, background .16s ease, border-color .16s ease, transform .16s ease;
}

.theme-option:hover,
.theme-option:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .1);
}

.theme-option[aria-checked="true"] {
  color: #ffffff;
  background: rgba(241, 174, 31, .12);
  border-color: rgba(241, 174, 31, .34);
}

.theme-option > span:nth-child(2) {
  display: grid;
  line-height: 1.2;
}

.theme-option strong {
  font-size: .88rem;
}

.theme-option small {
  margin-top: .2rem;
  color: #95a4b4;
  font-size: .72rem;
}

.theme-option-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 11px;
}

.theme-option-icon::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold-400);
  border-radius: 50%;
}

.theme-option-icon-system::before {
  box-shadow: inset -4px 0 0 var(--gold-400);
}

.theme-option-icon-light::before {
  background: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(255, 201, 77, .13);
}

.theme-option-icon-dark::before {
  background: transparent;
  border-color: transparent;
  box-shadow: inset -5px -2px 0 var(--gold-400);
}

.theme-check {
  width: 8px;
  height: 8px;
  justify-self: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.theme-option[aria-checked="true"] .theme-check {
  background: var(--gold-400);
  border-color: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(241, 174, 31, .12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--gold-400);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - var(--header-height)));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(5rem, 9vw, 8rem) max(var(--page-gutter), calc((100vw - var(--max)) / 2)) 2rem;
  color: #ffffff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("../assets/images/hero-truck.jpg") center right / cover no-repeat;
  filter: saturate(.92) contrast(1.04);
  transform: scale(1.015);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 16, 34, .98) 0%, rgba(3, 16, 34, .91) 40%, rgba(3, 16, 34, .34) 76%, rgba(3, 16, 34, .2) 100%),
    linear-gradient(0deg, rgba(3, 16, 34, .98) 0%, transparent 46%, rgba(3, 16, 34, .2) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400) 38%, transparent 82%);
}

.hero-content {
  width: min(840px, 100%);
  animation: fadeIn .7s var(--ease) both;
}

.hero h1,
.hero h2,
.hero h3 {
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .85rem;
  color: var(--accent-text);
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero .eyebrow,
.feature-band .eyebrow,
.commitment .eyebrow,
.contact-section .eyebrow {
  color: var(--gold-400);
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 0;
  color: #d4dce6;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1.55rem 0 1.8rem;
}

.hero-metrics span {
  display: inline-flex;
  align-items: baseline;
  gap: .42rem;
  min-height: 44px;
  padding: .58rem .88rem;
  color: #cbd5df;
  background: rgba(5, 20, 40, .58);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  color: var(--gold-400);
  font-size: 1.2rem;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .78rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .58rem;
  min-height: 52px;
  padding: .85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  box-shadow: 0 14px 34px rgba(241, 174, 31, .24);
}

.btn-primary:hover {
  background: var(--gold-400);
  box-shadow: 0 18px 42px rgba(241, 174, 31, .3);
}

.btn-secondary {
  color: #f7f9fc;
  background: rgba(7, 23, 43, .64);
  border-color: rgba(255, 255, 255, .25);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(15, 42, 72, .88);
  border-color: rgba(241, 174, 31, .6);
}

.btn.full {
  width: 100%;
}

.hero-pillars {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin: clamp(3rem, 7vh, 5rem) auto 0;
}

.hero-pillars article {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-height: 70px;
  padding: 1rem 1.1rem;
  color: #ffffff;
  background: rgba(3, 16, 34, .64);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
}

.hero-pillars svg {
  width: 1.55rem;
  height: 1.55rem;
  color: var(--gold-400);
  flex: 0 0 auto;
}

.section,
.feature-band,
.commitment,
.contact-section {
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 7.5rem);
}

.section {
  padding-right: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  padding-left: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
}

.section > *,
.commitment > * {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.feature-band,
.contact-section {
  padding-right: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  padding-left: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
}

.section-intro {
  position: relative;
}

.section-intro::before {
  content: "";
  position: absolute;
  top: 12%;
  right: 0;
  width: min(420px, 40vw);
  height: 420px;
  z-index: -1;
  background: radial-gradient(circle, rgba(241, 174, 31, .1), transparent 68%);
}

.compact,
.structure-section,
.notes-section {
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.compact {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.section-heading {
  display: grid;
  gap: .25rem;
  max-width: 940px;
  margin-bottom: clamp(2.4rem, 4vw, 3.4rem);
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-self: center;
}

.section-heading p:not(.eyebrow),
.prose p,
.media-copy > p,
.contact-section > div > p,
.feature-band > div > p {
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: clamp(1.25rem, 2.2vw, 2rem);
  align-items: stretch;
}

.prose,
.operation-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.prose {
  position: relative;
  padding: clamp(1.5rem, 3.5vw, 2.35rem);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.prose::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(var(--gold-400), var(--gold-600));
}

.prose p:last-child {
  margin-bottom: 0;
}

.operation-panel {
  display: grid;
  align-content: center;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #d1dae4;
  background:
    radial-gradient(circle at 100% 0, rgba(241, 174, 31, .17), transparent 42%),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  border: 1px solid rgba(241, 174, 31, .3);
}

.operation-panel h3 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.45rem;
}

.operation-panel .check-list li {
  color: #cbd5df;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 1.7vw, 1.5rem);
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.service-card,
.fleet-card,
.location-card,
.contact-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.info-card,
.service-card,
.fleet-card {
  padding: 1.5rem;
}

.info-card::before,
.service-card::before,
.fleet-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), transparent 85%);
}

.info-card:hover,
.service-card:hover,
.fleet-card:hover,
.location-card:hover {
  transform: translateY(-6px);
  background: var(--surface);
  border-color: var(--gold-line);
  box-shadow: var(--shadow);
}

.info-card > svg,
.service-card > svg,
.fleet-card > svg {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.15rem;
  padding: .65rem;
  color: var(--gold-600);
  background: rgba(241, 174, 31, .12);
  border: 1px solid rgba(241, 174, 31, .2);
  border-radius: 12px;
}

[data-theme="dark"] .info-card > svg,
[data-theme="dark"] .service-card > svg,
[data-theme="dark"] .fleet-card > svg {
  color: var(--gold-400);
}

.info-card p,
.service-card p,
.fleet-card p {
  color: var(--muted);
}

.info-card p:last-child,
.service-card p:last-child,
.fleet-card p:last-child {
  margin-bottom: 0;
}

.service-card.wide {
  grid-column: span 2;
}

.services-grid .service-card {
  min-height: 245px;
}

.client-fit {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.7vw, 1.5rem);
  margin-top: clamp(1rem, 1.7vw, 1.5rem);
}

.client-fit article {
  position: relative;
  min-height: 205px;
  padding: 1.5rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .22s var(--ease), border-color .22s ease, background .22s ease;
}

.client-fit article:hover {
  transform: translateY(-4px);
  background: var(--surface);
  border-color: var(--gold-line);
}

.client-fit span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--gold-400), var(--gold-500));
  border-radius: 12px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(241, 174, 31, .2);
}

.client-fit p {
  margin-bottom: 0;
  color: var(--muted);
}

.check-list,
.feature-list,
.notes-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.feature-list li,
.notes-list li {
  position: relative;
  padding-left: 1.55rem;
  margin: .55rem 0;
  color: var(--muted);
}

.check-list li::before,
.feature-list li::before,
.notes-list li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: .1rem;
  width: .5rem;
  height: .5rem;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(241, 174, 31, .1);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(3, 16, 34, .98), rgba(7, 31, 58, .92)),
    url("../assets/images/hero-truck.jpg") center / cover;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 4px solid var(--gold-500);
}

.feature-band h2,
.feature-band h3 {
  color: #ffffff;
}

.feature-band > div > p {
  color: #c6d0dc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.8rem, 1.3vw, 1.15rem);
}

.process-grid article {
  position: relative;
  min-height: 225px;
  padding: 1.35rem;
  background: rgba(3, 16, 34, .5);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform .22s var(--ease), border-color .22s ease, background .22s ease;
}

.process-grid article:hover {
  transform: translateY(-5px);
  background: rgba(8, 37, 68, .75);
  border-color: rgba(241, 174, 31, .55);
}

.process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -.8rem;
  width: .8rem;
  height: 1px;
  background: rgba(241, 174, 31, .55);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1.15rem;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 12px;
  font-weight: 900;
}

.process-grid p {
  margin: 0;
  color: #bdc9d5;
  font-size: .94rem;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(250px, .5fr) minmax(0, 1.5fr);
  gap: clamp(1rem, 1.7vw, 1.5rem);
  align-items: start;
}

.coverage-summary {
  display: grid;
  gap: .75rem;
}

.coverage-summary article {
  min-height: 122px;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 100% 0, rgba(241, 174, 31, .14), transparent 48%),
    var(--surface);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s ease;
}

.coverage-summary article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.coverage-summary strong {
  display: block;
  margin-bottom: .45rem;
  color: var(--accent-text);
  font-size: 2.1rem;
  line-height: 1;
}

[data-theme="dark"] .coverage-summary strong {
  color: var(--gold-400);
}

.coverage-summary span {
  color: var(--muted-strong);
  font-weight: 700;
}

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .58rem;
  min-height: 100%;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.city-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 39px;
  padding: .5rem .78rem;
  color: var(--muted-strong);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .91rem;
  font-weight: 650;
  transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease;
}

.city-grid span:hover {
  color: var(--text-strong);
  background: rgba(241, 174, 31, .1);
  border-color: var(--gold-line);
  transform: translateY(-2px);
}

.fleet-section {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(360px, 1.3fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.media-copy,
.fleet-grid {
  max-width: none;
}

.mini-grid {
  display: grid;
  gap: .75rem;
  margin-top: 1.5rem;
}

.mini-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .15rem .8rem;
  align-items: start;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.mini-grid svg {
  grid-row: 1 / span 2;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: .2rem;
  color: var(--gold-600);
}

.mini-grid span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.7vw, 1.5rem);
}

.fleet-card {
  min-height: 220px;
}

.fleet-card h3 {
  font-size: 1.18rem;
}

.wide-image {
  position: relative;
  max-height: 470px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.wide-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), transparent 70%);
}

.wide-image img {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 1.1s var(--ease);
}

.wide-image:hover img,
.location-card:hover img {
  transform: scale(1.035);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.7vw, 1.5rem);
}

.location-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.location-card > div {
  padding: 1.35rem;
}

.location-card h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
}

.check-list.inline {
  display: flex;
  flex-wrap: wrap;
  gap: .05rem .9rem;
}

.commitment {
  padding-right: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  padding-left: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(3, 16, 34, .97), rgba(8, 38, 69, .92)),
    url("../assets/images/galpao-hero.jpg") center / cover;
}

.commitment h2,
.commitment h3 {
  color: #ffffff;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.8rem, 1.3vw, 1.15rem);
}

.commitment-grid article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .1rem .9rem;
  align-items: center;
  min-height: 130px;
  padding: 1.25rem;
  text-align: left;
  background: rgba(3, 16, 34, .52);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform .22s var(--ease), border-color .22s ease, background .22s ease;
}

.commitment-grid article:hover {
  transform: translateY(-4px);
  background: rgba(9, 38, 68, .72);
  border-color: rgba(241, 174, 31, .55);
}

.commitment-grid svg {
  grid-row: 1 / span 2;
  width: 2.45rem;
  height: 2.45rem;
  padding: .55rem;
  color: var(--gold-400);
  background: rgba(241, 174, 31, .11);
  border-radius: 12px;
}

.commitment-grid h3,
.commitment-grid p {
  margin-bottom: 0;
}

.commitment-grid p {
  color: #bdc9d5;
  font-size: .92rem;
}

.notes-section {
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

.notes-section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
}

.notes-list {
  padding: clamp(1.25rem, 3vw, 1.8rem);
  background: var(--surface);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  columns: 2;
  column-gap: 2.5rem;
}

.notes-list li {
  break-inside: avoid;
  margin-top: 0;
  margin-bottom: .75rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, .66fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(3, 16, 34, .98), rgba(3, 16, 34, .76)),
    url("../assets/images/galpao-hero.jpg") center / cover;
}

.contact-section h2,
.contact-section h3 {
  color: #ffffff;
}

.contact-section > div > p {
  max-width: 720px;
  color: #c5d0dc;
}

.contact-card {
  padding: 1.35rem;
  background: rgba(3, 16, 34, .68);
  border-color: rgba(241, 174, 31, .42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
  backdrop-filter: blur(14px);
}

.contact-card dl {
  margin: 1rem 0 0;
}

.contact-card dl > div {
  display: grid;
  grid-template-columns: minmax(110px, .65fr) 1fr;
  gap: .75rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.contact-card dl > div:last-child {
  border-bottom: 0;
}

.contact-card dt {
  color: var(--gold-400);
  font-weight: 800;
}

.contact-card dd {
  margin: 0;
  color: #cbd5df;
  overflow-wrap: anywhere;
}

.contact-card dd a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 94px;
  padding: 1.25rem max(5.75rem, calc((100vw - var(--max)) / 2 + 5rem)) 1.25rem max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  color: #aebbc9;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer img {
  width: 128px;
}

.site-footer p {
  margin: 0;
  font-size: .9rem;
}

.site-footer a {
  color: var(--gold-400);
  font-weight: 800;
}

.site-footer a:hover {
  color: #ffffff;
}

.whatsapp-float {
  position: fixed;
  right: clamp(.9rem, 1.5vw, 1.4rem);
  bottom: clamp(.9rem, 1.5vw, 1.4rem);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--gold-400), var(--gold-500));
  border: 2px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(3, 16, 34, .3);
  animation: pulseGlow 3s ease-in-out infinite;
  transition: transform .2s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 1.5rem;
  height: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from { transform: scale(1.015); }
  to { transform: scale(1.065); }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 16px 36px rgba(3, 16, 34, .3), 0 0 0 0 rgba(241, 174, 31, .22);
  }
  50% {
    box-shadow: 0 18px 40px rgba(3, 16, 34, .34), 0 0 0 10px rgba(241, 174, 31, 0);
  }
}

@keyframes themeMenuIn {
  from {
    opacity: 0;
    transform: translateY(-7px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: calc(var(--header-height) + .75rem) max(var(--page-gutter), calc((100vw - var(--max)) / 2)) auto;
    display: grid;
    gap: .2rem;
    max-height: calc(100svh - var(--header-height) - 2rem);
    padding: .75rem;
    overflow-y: auto;
    background: rgba(3, 16, 34, .98);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px) scale(.98);
    transform-origin: top;
    transition: opacity .2s ease, transform .2s var(--ease), visibility 0s linear .2s;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .main-nav a {
    padding: .85rem 1rem;
    font-size: 1rem;
  }

  .main-nav .nav-cta {
    margin: .25rem 0 0;
    text-align: center;
  }

  .main-nav a::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .intro-grid,
  .feature-band,
  .fleet-section,
  .contact-section,
  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .location-grid,
  .client-fit {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid article:nth-child(2)::after {
    display: none;
  }

  .commitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coverage-summary article {
    min-height: 140px;
  }

  .fleet-section {
    gap: 2rem;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
    --radius: 16px;
    --radius-lg: 22px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.25rem);
    line-height: .98;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .site-header {
    padding-top: .48rem;
    padding-bottom: .48rem;
  }

  .brand img {
    width: 134px;
  }

  .theme-trigger {
    width: 44px;
    min-width: 44px;
    padding: 0;
    justify-content: center;
  }

  .theme-current,
  .theme-chevron {
    display: none;
  }

  .theme-menu {
    position: fixed;
    top: calc(var(--header-height) + .55rem);
    right: 1rem;
    width: min(278px, calc(100vw - 2rem));
  }

  .hero {
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 1.25rem;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 16, 34, .76) 0%, rgba(3, 16, 34, .95) 54%, rgba(3, 16, 34, .99) 100%),
      linear-gradient(90deg, rgba(3, 16, 34, .78), rgba(3, 16, 34, .18));
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-metrics span {
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-pillars,
  .services-grid,
  .fleet-grid,
  .process-grid,
  .commitment-grid,
  .coverage-summary {
    grid-template-columns: 1fr;
  }

  .hero-pillars {
    margin-top: 2.5rem;
  }

  .hero-pillars article {
    min-height: 60px;
  }

  .service-card.wide {
    grid-column: auto;
  }

  .services-grid .service-card,
  .fleet-card {
    min-height: auto;
  }

  .process-grid article {
    min-height: 185px;
  }

  .process-grid article::after {
    display: none;
  }

  .city-grid {
    padding: .9rem;
    gap: .45rem;
  }

  .city-grid span {
    width: 100%;
    justify-content: center;
  }

  .location-card > div,
  .info-card,
  .service-card,
  .fleet-card {
    padding: 1.25rem;
  }

  .commitment-grid article {
    min-height: 116px;
  }

  .notes-list {
    columns: 1;
  }

  .contact-card dl > div {
    grid-template-columns: 1fr;
    gap: .15rem;
  }

  .site-footer {
    justify-content: center;
    padding-right: 1rem;
    padding-bottom: 5.5rem;
    padding-left: 1rem;
    text-align: center;
  }

  .site-footer p {
    width: 100%;
  }

  .whatsapp-float {
    right: 1rem;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 120px;
  }

  .header-tools {
    gap: .35rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
