/* ═══════════════════════════════════════════════════════════
   GRIZZLI ASPHALTE — Premium Redesign
   ═══════════════════════════════════════════════════════════ */

/* --- Tokens ------------------------------------------------ */
:root {
  --c-bg:        #0b0d11;
  --c-surface:   #111419;
  --c-surface2:  #171c24;
  --c-surface3:  #1d2330;
  --c-border:    rgba(255,255,255,.08);
  --c-text:      #f0f2f8;
  --c-muted:     #8892a8;
  --c-red:       #d10000;
  --c-red-dk:    #8f0000;
  --c-gold:      #f5c518;
  --c-gold-lt:   #ffd760;
  --r-card:      18px;
  --r-btn:       50px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.4);
  --shadow-md:   0 8px 32px rgba(0,0,0,.5);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.6);
  --transition:  .2s cubic-bezier(.25,.46,.45,.94);
  --nav-h:       74px;
}

/* --- Accessibility: visually hidden (for SEO text) --------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a  { text-decoration: none; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-red); border-radius: 9px; }

/* --- Container -------------------------------------------- */
.container {
  width: min(1160px, 94%);
  margin: 0 auto;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.5rem;
  border-radius: var(--r-btn);
  font-weight: 700;
  font-size: .93rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-red {
  background: linear-gradient(135deg, var(--c-red), var(--c-red-dk));
  color: #fff;
  box-shadow: 0 4px 20px rgba(209,0,0,.35);
}
.btn-red:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(209,0,0,.45); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: var(--c-gold); color: var(--c-gold); transform: translateY(-2px); }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }

/* ═══════════════════════════════ HEADER ══════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(11,13,17,.85);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--c-border);
  transition: transform .3s ease, background .3s ease;
}
.site-header.hidden  { transform: translateY(-100%); }
.site-header.visible { transform: translateY(0); }
.site-header.scrolled { background: rgba(11,13,17,.96); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1.2rem;
  padding: 0 max(1rem, calc(50% - 580px));
}

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

.desk-nav {
  display: flex;
  gap: 0;
}
.desk-nav a {
  color: var(--c-muted);
  font-size: .9rem;
  font-weight: 600;
  padding: .5rem .9rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.desk-nav a:hover { color: #fff; background: rgba(255,255,255,.06); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: nowrap;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--c-gold);
  font-weight: 700;
  font-size: .93rem;
  padding: .45rem .8rem;
  border-radius: 99px;
  border: 1.5px solid var(--c-gold);
  transition: var(--transition);
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  flex-shrink: 0;
}
.btn-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-phone:hover { background: var(--c-gold); color: #000; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,12,16,.97);
  backdrop-filter: blur(16px);
  padding: 1.5rem 1.5rem 2rem;
  flex-direction: column;
  gap: .25rem;
  border-bottom: 1px solid var(--c-border);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 99;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mnav-link {
  display: block;
  color: var(--c-muted);
  font-weight: 600;
  padding: .8rem 1rem;
  border-radius: 10px;
  transition: var(--transition);
}
.mnav-link:hover { background: var(--c-surface3); color: #fff; }
.mnav-cta { background: var(--c-red); color: #fff !important; text-align: center; margin-top: .75rem; }
.mnav-cta:hover { filter: brightness(1.1); }

/* ═══════════════════════════════ HERO ════════════════════ */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    url("./images/texture.png") center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 12s linear;
  filter: brightness(.55) contrast(1.1);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 90% at 60% 50%,
    transparent 0%,
    rgba(11,13,17,.6) 55%,
    rgba(11,13,17,.98) 100%);
  z-index: 1;
}
.hero-layout {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 2.2rem;
  align-items: center;
  padding: 2.1rem 0 2.2rem;
}
.hero-text { max-width: 620px; }

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0 0 .9rem;
  color: #ffe27a;
  font-weight: 700;
  font-size: .95rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(245,197,24,.12);
  border: 1px solid rgba(245,197,24,.3);
  color: var(--c-gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 99px;
  margin-bottom: 1.4rem;
}

.h1-brand img { width: min(520px, 100%); margin-bottom: 1.2rem; }

.hero-desc {
  color: #c8d0e4;
  font-size: 1.05rem;
  max-width: 56ch;
  margin-bottom: 1rem;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.2rem;
}
.pill-list li {
  background: rgba(255,255,255,.07);
  border: 1px solid var(--c-border);
  color: #c8d0e4;
  font-size: .83rem;
  font-weight: 600;
  padding: .35rem .8rem;
  border-radius: 99px;
}
.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: .4rem; }

.hero-truck {
  border-radius: 20px;
  border: 1px solid var(--c-border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-truck::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(209,0,0,.08), transparent);
  pointer-events: none;
}
.hero-truck img { width: 100%; height: 340px; object-fit: cover; }

.hero-chevron {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3;
  line-height: 0;
}
.hero-chevron svg { fill: var(--c-bg); width: 100%; height: 50px; }

/* ═══════════════════════════════ STATS ═══════════════════ */
.stats-band {
  background: linear-gradient(180deg, #0d1018 0%, var(--c-surface) 100%);
  border-bottom: 1px solid var(--c-border);
  padding: 1.9rem 0;
}
.stats-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: 1rem 0;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--c-gold);
  line-height: 1;
  letter-spacing: -.01em;
}
.stat-stars {
  letter-spacing: .08em;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.1;
}
.stat-label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
}
.stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--c-border);
  margin: .5rem 0;
}

/* ═══════════════════════════════ SECTIONS ════════════════ */
.section { padding: 4.5rem 0; }
.sec-header { margin-bottom: 2.2rem; }
.sec-header-light { color: #fff; }

.sec-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .7rem;
  padding: .3rem .8rem;
  border-radius: 99px;
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.25);
}
.sec-eyebrow-light { background: rgba(245,197,24,.15); border-color: rgba(245,197,24,.35); }

.sec-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: .8rem;
}
.sec-header p {
  color: var(--c-muted);
  max-width: 68ch;
  font-size: 1.01rem;
}

/* ═══════════════════════════════ SERVICES ════════════════ */
.sec-services { background: var(--c-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.svc-card {
  background: linear-gradient(145deg, var(--c-surface2), var(--c-surface));
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 1.8rem 1.6rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-red), var(--c-gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,197,24,.2);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(245,197,24,.1);
}
.svc-card:hover::before { opacity: 1; }

.svc-large {
  grid-column: span 2;
  background: linear-gradient(145deg, #1a0505, var(--c-surface));
  border-color: rgba(209,0,0,.2);
}
.svc-large::before { opacity: 1; }

.svc-icon {
  width: 48px; height: 48px;
  background: rgba(245,197,24,.08);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--c-gold);
}
.svc-icon svg { width: 26px; height: 26px; flex-shrink: 0; }

.svc-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: #fff;
  margin-bottom: .6rem;
}
.svc-card p { color: #9aa3b8; font-size: .92rem; margin-bottom: 1rem; }

.svc-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .22rem .65rem;
  border-radius: 99px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  margin-right: .35rem;
}

/* ═══════════════════════════════ GALLERY ═════════════════ */
.sec-gallery {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: .75rem;
}
.g-hidden { display: none !important; }

.gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.gallery-more-btn {
  display: inline-flex !important;
}
.g-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  display: block;
  background: var(--c-surface2);
}
.g-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .4s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-item.g-wide { grid-column: span 2; }
.g-item.g-wide img { height: 260px; }

.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex; align-items: flex-end;
  padding: 1rem;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  font-size: .78rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .07em;
  background: var(--c-red);
  padding: .28rem .75rem;
  border-radius: 99px;
  box-shadow: 0 2px 8px rgba(0,0,0,.45);
  line-height: 1.4;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1200;
}
.gallery-modal.open { display: flex; }

.gallery-modal img {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
  background: #0d1118;
}

.gallery-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(14,18,24,.9);
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal-close:hover {
  background: var(--c-red);
  border-color: transparent;
}

/* ═══════════════════════════════ CTA BAND ════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--c-red-dk) 0%, #1a0000 60%, #0d0d0d 100%);
  padding: 2.8rem 0;
  border-top: 1px solid rgba(209,0,0,.3);
  border-bottom: 1px solid rgba(209,0,0,.3);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: url("./images/texture.png") center/cover;
  opacity: .04;
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: .3rem;
}
.cta-inner p { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════ CONTACT ═════════════════ */
.sec-contact {
  background: var(--c-bg);
}
.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-info .sec-eyebrow { margin-bottom: .6rem; }

.ci-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  margin-bottom: .7rem;
  transition: border-color var(--transition);
}
.ci-block:hover { border-color: rgba(245,197,24,.25); }
.ci-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; width: 32px; text-align: center; }
.ci-block strong { display: block; font-weight: 700; color: #fff; font-size: .88rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .2rem; }
.ci-block p { margin: 0; color: var(--c-muted); font-size: .92rem; }
.ci-block a { color: var(--c-gold); }
.ci-block a:hover { text-decoration: underline; }

.ci-social { margin-top: 1.2rem; }
.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #1877f2;
  color: #fff;
  padding: .75rem 1.4rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: .9rem;
  transition: filter var(--transition);
}
.fb-btn svg { width: 18px; height: 18px; }
.fb-btn:hover { filter: brightness(1.1); }

.map-wrap {
  margin-top: 1rem;
}
.map-wrap iframe {
  width: 100%; height: 260px;
  border: 1px solid var(--c-border);
  border-radius: 14px;
}

/* ─── FORM ─── */
.form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 22px;
  padding: 2rem 1.8rem;
}
.form-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: .3rem;
}
.form-sub {
  color: var(--c-muted);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-full { grid-column: span 2; }

.form-group label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--c-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.req { color: var(--c-red); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: .7rem 1rem;
  color: var(--c-text);
  font-family: inherit;
  font-size: .93rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #4a5268; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(245,197,24,.12);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238892a8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  background-size: 18px;
  padding-right: 2.2rem;
  cursor: pointer;
}
.form-group select option { background: var(--c-surface2); }

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  margin-top: .5rem;
  gap: .6rem;
}

/* ═══════════════════════════════ FOOTER ══════════════════ */
.site-footer {
  background: #07080b;
  border-top: 1px solid var(--c-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0 2.5rem;
}
.footer-brand img { width: 190px; margin-bottom: 1rem; }
.footer-brand p { color: var(--c-muted); font-size: .9rem; }

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.footer-links h4, .footer-contact h4 {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-gold);
  margin-bottom: .5rem;
}
.footer-links a, .footer-contact a {
  color: var(--c-muted);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 1.2rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--c-muted); font-size: .83rem; }
.back-top {
  color: var(--c-muted);
  font-size: .83rem;
  font-weight: 600;
  transition: color var(--transition);
}
.back-top:hover { color: var(--c-gold); }

/* ═══════════════════════════════ MOBILE CTA ══════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(12,14,18,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--c-border);
  padding: .6rem 1rem;
  gap: .5rem;
}
.mobile-cta-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: .7rem .4rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .83rem;
  background: var(--c-surface2);
  color: #fff;
  border: 1px solid var(--c-border);
  transition: var(--transition);
}
.mobile-cta-bar a:hover { background: var(--c-surface3); }
.mobile-cta-bar .mcta-main {
  background: linear-gradient(135deg, var(--c-red), var(--c-red-dk));
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(209,0,0,.3);
  flex: 2;
}

/* ═══════════════════════════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════ RESPONSIVE ══════════════ */
@media (max-width: 1060px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-truck { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-large { grid-column: span 1; }
}

@media (max-width: 820px) {
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .desk-nav { display: none; }
  .btn:not(.btn-phone) { display: none; }
  .form-submit { display: inline-flex !important; }
  .btn.nav-hide { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .g-item.g-wide { grid-column: span 1; }
  .g-item.g-wide img { height: 220px; }
  .gallery-more-wrap { margin-top: .8rem; }
  .stats-row { display: grid; grid-template-columns: 1fr; gap: 0; }
  .stat-divider { display: none; }
  .stat-item { border: 1px solid var(--c-border); border-radius: 12px; margin: 4px; }
  .cta-inner { flex-direction: column; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { padding-bottom: 80px; }
  .mobile-cta-bar { display: flex; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-more-btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-layout { padding: 1.6rem 0 1.8rem; }
  .section { padding: 3rem 0; }
  :root { --nav-h: 64px; }
  .brand img { width: 175px; }
  .form-row { grid-template-columns: 1fr; }
  .form-full { grid-column: span 1; }
  .gallery-modal { padding: 1rem; }
  .gallery-modal-close { top: 10px; right: 12px; }
}

/* ═══════════════════════════════ FORM STATUS ═════════════ */
.form-status {
  display: none;
  padding: .85rem 1.1rem;
  border-radius: 10px;
  font-size: .93rem;
  font-weight: 600;
}
.form-status.success {
  display: block;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.35);
  color: #4ade80;
}
.form-status.error {
  display: block;
  background: rgba(209,0,0,.1);
  border: 1px solid rgba(209,0,0,.3);
  color: #f87171;
}
