:root {
  --red: #b12f2f;
  --red-deep: #8b3333;
  --red-soft: #f7ecec;
  --silver: #c5c5c5;
  --gray: #5c5c5c;
  --black: #141414;
  --white: #fff;
  --off: #f5f5f6;
  --line: #ececec;
  --shadow: 0 22px 70px rgba(16, 16, 16, 0.16);
  --stick-h: 119px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: Manrope, sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: clip;
  padding-top: var(--stick-h);
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.ico { display: inline-block; vertical-align: -3px; flex-shrink: 0; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: var(--black);
  color: #d8d8d8;
  font-size: 13px;
  font-weight: 600;
}
.topbar-inner { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; align-items: center; }
.topbar a { color: #fff; font-weight: 800; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-phones { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

.site-stick {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  overflow: visible;
}
.site-header {
  position: relative;
  z-index: 50;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
  overflow: visible;
}
.site-stick.is-scrolled {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.site-stick.is-scrolled .site-header {
  border-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  position: relative;
}
.logo {
  text-decoration: none;
  line-height: 0.8;
  color: var(--red-deep);
  margin-right: auto;
}
.logo .oz {
  display: block;
  font-family: "Alfa Slab One", Georgia, serif;
  font-size: 13px;
  -webkit-text-stroke: 1px #d0d0d0;
}
.logo .rest {
  display: block;
  font-family: "Alfa Slab One", Georgia, serif;
  font-size: 22px;
  -webkit-text-stroke: 1px #d4d4d4;
}
.logo.light { color: #fff; }
.logo.light .oz, .logo.light .rest { -webkit-text-stroke: 0; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav > a, .has-mega > button {
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 11px;
  cursor: pointer;
  text-decoration: none;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 10px;
}
.nav > a.is-active, .nav > a:hover, .has-mega > button:hover { color: var(--red); background: var(--red-soft); }
.has-mega { position: relative; }

.mega-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  width: min(1200px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  transform: translateX(-50%);
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, .9fr);
  z-index: 60;
  border: 1px solid #f0f0f0;
}
.mega-wide,
.mega-sm { width: min(1200px, calc(100vw - 32px)); max-width: calc(100vw - 32px); }
.mega-list {
  padding: 16px;
  display: grid;
  gap: 4px;
  max-height: min(440px, calc(100vh - var(--stick-h) - 32px));
  overflow: auto;
  align-content: start;
  min-width: 0;
}
.mega-list-2 { grid-template-columns: 1fr 1fr; }
.mega-list-3 { grid-template-columns: 1fr 1fr 1fr; }
.mega-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  text-decoration: none;
  position: relative;
  min-width: 0;
}
.mega-item.compact { padding: 8px; }
.mega-item:hover, .mega-item.is-hot { background: var(--red-soft); }
.mega-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
}
.mega-item:hover .mega-ico { background: #fff; }
.mega-txt { min-width: 0; overflow: hidden; }
.mega-txt strong { display: block; font-size: 14px; line-height: 1.25; }
.mega-txt small { display: block; color: #777; font-size: 12px; font-weight: 600; margin-top: 2px; }
.mega-tag {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 3px 7px;
  letter-spacing: .4px;
}
.mega-thumb {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
  background: #eee;
}
.mega-vehicle { grid-template-columns: 72px 1fr; }
.mega-aside {
  background: #141414;
  color: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  min-width: 0;
}
.mega-brand { font-family: Outfit, sans-serif; font-size: 22px; font-weight: 800; margin: 0; }
.mega-brand span { color: var(--red); }
.mega-aside-text { color: #cfcfcf; line-height: 1.6; margin: 0; font-size: 14px; }
.mega-mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: auto; }
.mega-mini-stats b { display: block; font-size: 18px; }
.mega-mini-stats span { font-size: 11px; color: #aaa; }
.mega-aside-cta { margin-top: 12px; align-self: start; }

@media (min-width: 981px) {
  .header-inner { position: relative; overflow: visible; }
  .has-mega {
    position: static;
    padding-bottom: 48px;
    margin-bottom: -48px;
  }
  .mega-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .has-mega:hover .mega-panel,
  .has-mega:focus-within .mega-panel,
  .has-mega.is-mega-open .mega-panel { display: grid; }
}

@media (max-width: 1280px) {
  .nav > a, .has-mega > button { font-size: 13px; padding: 10px 8px; }
  .header-cta { min-height: 40px !important; padding: 0 12px !important; }
}

.header-cta { margin-left: 8px; min-height: 42px !important; padding: 0 16px !important; gap: 8px; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
}
.nav-toggle span { display: block; height: 2px; background: #111; margin: 6px 10px; }

.breadcrumb { background: var(--off); border-bottom: 1px solid var(--line); font-size: 13px; }
.breadcrumb .container { display: flex; gap: 8px; flex-wrap: wrap; padding: 12px 0; }
.breadcrumb a { color: var(--red); text-decoration: none; font-weight: 700; }

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  background: #111;
  color: #fff;
  overflow: hidden;
}
.hero-track {
  display: flex;
  height: 100%;
  min-height: min(88vh, 760px);
  transition: transform .7s cubic-bezier(.22, .7, .3, 1);
  will-change: transform;
  touch-action: pan-y;
}
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: min(88vh, 760px);
  overflow: hidden;
  background: #111;
}
.hero-fill {
  position: absolute;
  inset: -48px;
  background-color: #111;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(26px) brightness(.42) saturate(.85);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: right 4% center;
  background-size: contain;
  transform: none;
}
.hero-slide .hero-bg { animation: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,.90) 0%, rgba(10,10,10,.62) 36%, rgba(10,10,10,.18) 70%, rgba(10,10,10,.10) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(88vh, 760px);
  padding: 90px 0 80px;
}
.hero .kicker {
  color: #ffd4d4;
  background: rgba(177,47,47,.28);
  display: inline-flex;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: Outfit, sans-serif;
  font-size: clamp(38px, 6.2vw, 72px);
  line-height: 1.02;
  margin: 0 0 14px;
  max-width: 760px;
  letter-spacing: -.5px;
}
.hero h1 em { font-style: normal; color: #ff6b6b; }
.hero p { max-width: 560px; color: #eee; font-size: 18px; line-height: 1.65; margin: 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.28);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.hero-prev { left: 18px; }
.hero-next { right: 18px; }
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.hero-dots button {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}
.hero-dots button.is-on { background: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(177,47,47,.28); }
.btn-dark { background: #111; color: #fff; }
.btn-line { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.7); }
.btn-line-dark { border: 1px solid #111; color: #111; background: #fff; }

.section { padding: 84px 0; }
.section.alt { background: var(--off); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 32px;
}
.kicker {
  color: var(--red);
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-size: 12px;
}
h2.sec-title, .sec-title {
  font-family: Outfit, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  margin: 8px 0 12px;
  letter-spacing: -.3px;
}
.lead { color: var(--gray); line-height: 1.7; max-width: 640px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.stat {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 18px;
}
.stat b { display: block; font-size: 30px; color: var(--red); font-family: Outfit, sans-serif; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px 24px 22px;
  text-decoration: none;
  border: 1px solid #efefef;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-num {
  font-family: Outfit, sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #ececec;
  line-height: 1;
}
.svc-ico {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
}
.svc-card h3 { margin: 18px 0 8px; font-size: 20px; font-family: Outfit, sans-serif; }
.svc-card p { color: var(--gray); font-size: 14px; line-height: 1.6; margin: 0 0 auto; }
.svc-link { color: var(--red); font-weight: 800; font-size: 14px; margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; }

.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fleet-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 340px;
  text-decoration: none;
  color: #fff;
  display: block;
}
.fleet-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  object-position: center;
  background: #1a1a1a;
  transform: none;
  transition: transform .5s ease;
}
.fleet-card:hover img { transform: scale(1.03); }
.fleet-card .cap {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
}
.fleet-card h3 { margin: 0 0 4px; font-family: Outfit, sans-serif; }
.fleet-card p { margin: 0; color: #ddd; font-size: 13px; font-weight: 700; }

.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.loc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  text-decoration: none;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: border-color .2s ease, transform .2s ease;
}
.loc-card:hover { border-color: #e2b4b4; transform: translateY(-2px); }
.loc-card .mega-ico { width: 40px; height: 40px; }
.loc-card strong { display: block; font-size: 14px; }
.loc-card small { color: var(--gray); font-size: 12px; }

.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px 16px;
  border: 1px solid var(--line);
  text-align: left;
}
.why-card .mega-ico { margin-bottom: 12px; }
.why-card h3 { margin: 0 0 6px; font-size: 16px; }
.why-card p { margin: 0; color: var(--gray); font-size: 13px; line-height: 1.5; }

.cta-band {
  position: relative;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
  background: #111;
}
.cta-band .bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: .32;
}
.cta-band .container { position: relative; z-index: 1; }

.page-hero {
  position: relative;
  color: #fff;
  padding: 56px 0;
  overflow: hidden;
  background: #161616;
}
.page-hero .bg {
  position: absolute;
  inset: 0;
  background: center / contain no-repeat;
  opacity: .42;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: Outfit, sans-serif; margin: 0 0 8px; font-size: clamp(28px, 5vw, 48px); }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.03);
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { color: var(--gray); font-size: 14px; line-height: 1.6; margin: 0; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }

.content { line-height: 1.8; }
.content p { margin: 0 0 14px; }
.content img { border-radius: 16px; margin: 8px 0 18px; }

.history {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: start;
}
.history-photo {
  position: sticky;
  top: 96px;
  margin: 0;
}
.history-photo img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(0,0,0,.16);
  margin: 0;
  background: #eee;
}
.history-photo figcaption {
  margin-top: 12px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.history-copy h2 {
  font-family: Outfit, sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  margin: 6px 0 18px;
}
.timeline {
  list-style: none;
  margin: 28px 0;
  padding: 0 0 0 22px;
  border-left: 2px solid #efd3d3;
}
.timeline li {
  position: relative;
  margin: 0 0 22px;
  padding: 0 0 2px 8px;
}
.timeline li::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  left: -28px;
  top: 7px;
  box-shadow: 0 0 0 4px #f7ecec;
}
.timeline strong {
  display: block;
  color: var(--red);
  font-size: 14px;
  letter-spacing: .4px;
  margin-bottom: 4px;
}
.sign-block {
  margin-top: 36px;
  padding: 28px 28px 22px;
  background: linear-gradient(180deg, #fff, #faf6f5);
  border: 1px solid #efe4e4;
  border-radius: 20px;
}
.sign-quote {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 18px;
  font-style: italic;
}
.sign-name {
  font-family: "Great Vibes", cursive;
  font-size: 42px;
  line-height: 1;
  margin: 0;
  color: var(--red-deep);
}
.sign-role {
  margin: 6px 0 0;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
}

@media (max-width: 980px) {
  .history { grid-template-columns: 1fr; gap: 24px; }
  .history-photo { position: static; }
}
.specs { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.specs span { background: var(--off); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 700; }
.photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 24px; }
.photo-row img { height: 180px; width: 100%; object-fit: cover; border-radius: 14px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.contact-grid .card { display: flex; flex-direction: column; gap: 12px; }
.contact-grid .card h2 { margin: 0 0 4px; font-size: 22px; }
.contact-grid .btn { width: 100%; justify-content: center; }
.form label { display: block; font-weight: 700; margin: 12px 0 6px; font-size: 13px; }
.form input, .form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}
.form textarea { min-height: 140px; }
.map iframe { width: 100%; height: 280px; border: 0; border-radius: 16px; }
.ok { background: #eaf7ea; padding: 12px; border-radius: 8px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-grid a, .gallery-grid img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  background: #eee;
}
.gallery-grid a { overflow: hidden; }
.gallery-grid a img { height: 100%; transition: transform .4s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.video-grid iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: 12px; }

.lb {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  place-items: center;
  z-index: 90;
  padding: 56px 64px 48px;
}
.lb.is-on { display: grid; }
.lb-stage {
  width: min(1100px, 92vw);
  height: min(82vh, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.lb-img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 12px;
  transform: translateX(40px);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}
.lb-img.is-in { transform: translateX(0); opacity: 1; }
.lb-img.to-left { transform: translateX(-50px); opacity: 0; }
.lb-img.to-right { transform: translateX(50px); opacity: 0; }
.lb-nav {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.lb-close { top: 14px; right: 14px; font-size: 32px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-prev::before { content: "‹"; }
.lb-next::before { content: "›"; }
.lb-count {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  color: #ddd;
  font-weight: 700;
  margin: 0;
}
.contact-rail {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 70;
  animation: railIn .7s ease both;
}
.rail-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  animation: railPulse 2.2s ease-in-out infinite;
}
.rail-phone { background: var(--red); box-shadow: 0 10px 22px rgba(177,47,47,.35); }
.rail-wa { background: #25d366; box-shadow: 0 10px 22px rgba(37,211,102,.4); animation: railPulseGreen 2.2s ease-in-out infinite; }

@keyframes kenburns {
  from { transform: scale(1.14) translate3d(0,0,0); }
  to { transform: scale(1) translate3d(0,0,0); }
}
@keyframes railIn {
  from { opacity: 0; transform: translate(24px, -50%); }
  to { opacity: 1; transform: translate(0, -50%); }
}
@keyframes railPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(177,47,47,.35); }
  70% { box-shadow: 0 0 0 12px rgba(177,47,47,0); }
}
@keyframes railPulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

.site-footer { background: #111; color: #ddd; padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; padding-bottom: 32px; }
.site-footer a { display: flex; align-items: center; gap: 6px; color: #ccc; text-decoration: none; margin: 6px 0; font-size: 14px; }
.site-footer h3 { color: #fff; font-size: 16px; }
.copy { border-top: 1px solid #2a2a2a; text-align: center; padding: 16px; font-size: 13px; color: #888; }
.muted { color: #999; }

@media (max-width: 1100px) {
  .why-grid, .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .fleet-grid { grid-template-columns: 1fr 1fr; }
  .mega-list-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  :root { --stick-h: 107px; }
  .has-mega { padding-bottom: 0; margin-bottom: 0; }
  .nav-toggle { display: block; }
  .header-inner { min-height: 70px; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 20px;
    border-bottom: 1px solid var(--line);
    max-height: calc(100dvh - var(--stick-h));
    overflow: auto;
    z-index: 80;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
  }
  .nav.is-open { display: flex; }
  .header-cta { margin: 10px 0 0; width: 100%; }
  .has-mega > button { width: 100%; justify-content: space-between; }
  .mega-panel, .mega-wide, .mega-sm {
    position: static;
    display: none;
    width: 100%;
    max-width: none;
    transform: none;
    left: auto;
    border-radius: 14px;
    box-shadow: none;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    margin: 6px 0 10px;
  }
  .has-mega.open .mega-panel { display: grid; }
  .mega-list, .mega-list-2, .mega-list-3 { grid-template-columns: 1fr; max-height: none; }
  .mega-aside { min-height: 0; }
  .hero-nav { width: 38px; height: 38px; }
  .hero-prev { left: 8px; }
  .hero-next { right: 8px; }
  .hero h1 { font-size: clamp(28px, 9vw, 42px); }
  .hero-copy { padding: 64px 0 72px; }
  .hero-bg { background-position: center 18%; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(10,10,10,.22) 0%, rgba(10,10,10,.78) 72%);
  }
  .lb { padding: 52px 8px 40px; }
  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
  .contact-rail {
    top: auto;
    bottom: 16px;
    transform: none;
    animation: none;
  }
  .rail-btn { width: 48px; height: 48px; }
  .section-head, .cards, .cards-3, .stats, .contact-grid, .footer-grid, .gallery-grid, .video-grid, .svc-grid, .fleet-grid, .why-grid, .loc-grid, .photo-row {
    grid-template-columns: 1fr;
  }
  .gallery-grid a, .gallery-grid img { height: 200px; }
  .section-head { align-items: start; flex-direction: column; }
}

@media (max-width: 640px) {
  .topbar-tag { display: none; }
  .topbar-inner { justify-content: center; }
}
