:root {
  --bg: #f7f8f6;
  --surface: #ffffff;
  --surface-2: #f1f3ef;
  --text: #18201b;
  --muted: #56615a;
  --line: #dfe5df;
  --brand: #29543a;
  --brand-2: #9f6d2c;
  --dark: #162033613;
  --shadow: 0 10px 30px rgba(17, 22, 19, 0.08);
  --radius: 18px;
  --container: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 4.5rem 0; }
.section-sm { padding: 3rem 0; }
.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(41,84,58,.08);
  color: var(--brand);
  font-weight: 700;
  letter-spacing: .02em;
  font-size: .9rem;
}
.h1, h1 { font-size: clamp(2.3rem, 5vw, 4.5rem); line-height: 1.05; margin: 0 0 1rem; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.1; margin: 0 0 1rem; }
h3 { font-size: 1.2rem; margin: 0 0 .7rem; }
p.lead, .lead { font-size: 1.1rem; color: var(--muted); max-width: 65ch; }
.btn-row { display: flex; gap: .9rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.3rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: .2s ease;
}
.btn-primary { background: var(--brand); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary { background: transparent; border-color: var(--line); }
.btn-secondary:hover { background: var(--surface); }
.topbar {
  background: var(--dark); color: #e9efe9; font-size: .92rem;
}
.topbar .container {
  display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; flex-wrap: wrap;
}
header.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247,248,246,.88);
  border-bottom: 1px solid rgba(223,229,223,.8);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 1rem; }
.brand {
  display: inline-flex; align-items: center; flex: 0 0 auto;
}
.brand-logo {
  height: 76px;
  width: auto;
  max-width: min(48vw, 340px);
  object-fit: contain;
}

.nav-links { display: flex; align-items: center; gap: 1.1rem; }
.nav-links a { color: var(--muted); font-weight: 600; }
.nav-links a.active, .nav-links a:hover { color: var(--text); }
.menu-toggle { display: none; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(159,109,44,.18), transparent 30%),
    radial-gradient(circle at left center, rgba(41,84,58,.16), transparent 30%),
    linear-gradient(180deg, #fafbf9, #f2f4f1);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center;
}
.hero-card, .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 1.1rem; }
.hero-media {
  min-height: 420px; border-radius: 16px; overflow: hidden;
  display: grid; align-items: end;
  background: #d8ddd8;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.2rem 0 1.8rem; }
.hero-badges span {
  background: white; border: 1px solid var(--line); padding: .55rem .8rem; border-radius: 999px; font-weight: 700; box-shadow: var(--shadow);
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.stat { padding: 1.1rem; }
.stat strong { display: block; font-size: 1.4rem; }
.grid-3, .grid-2, .grid-4 {
  display: grid; gap: 1.2rem;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card, .feature-card, .gallery-card, .quote-panel, .map-card, .fleet-card, .area-card {
  padding: 1.3rem;
}
.service-card p, .feature-card p, .fleet-card p, .area-card p { color: var(--muted); margin: 0; }
.icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 1rem;
  background: rgba(41,84,58,.08); color: var(--brand); font-weight: 900;
}
.alt-section { background: linear-gradient(180deg, #f0f3ef, #f7f8f6); }
.checklist { list-style: none; padding: 0; margin: 1rem 0 0; }
.checklist li { padding-left: 1.8rem; position: relative; margin: .75rem 0; color: var(--muted); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0; font-weight: 800; color: var(--brand);
}
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem;
}
.gallery-card { padding: .75rem; }
.gallery-card img { border-radius: 14px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.gallery-card p { color: var(--muted); margin: .75rem .35rem .3rem; font-size: .95rem; }
.cta-band {
  padding: 2rem; background: linear-gradient(135deg, var(--brand), #173223); color: white; border-radius: 24px;
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
}
.cta-band p { color: rgba(255,255,255,.82); max-width: 60ch; margin: 0; }
.page-hero { padding: 4rem 0 2.5rem; background: linear-gradient(180deg, #fafbf9, #f1f4f0); }
.breadcrumbs { color: var(--muted); font-size: .95rem; margin-bottom: .75rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: .95rem; font-weight: 700; margin-bottom: .45rem; }
input, select, textarea {
  width: 100%; padding: .95rem 1rem; border-radius: 14px; border: 1px solid var(--line); background: #ffffff; font: inherit; color: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--muted); font-size: .95rem; }
.kpi-list { display: grid; gap: 1rem; }
.kpi-item { padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.kpi-item strong { display: block; font-size: 1.2rem; margin-bottom: .2rem; }
footer {
  background: var(--dark); color: #eef2ee; padding: 3rem 0 1.5rem; margin-top: 3rem;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 1.5rem; }
footer a { color: #d7e2d9; }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); color: #c8d1ca; font-size: .92rem; }
.sticky-call {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 30;
  display: none; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.2rem; background: var(--brand); color: white; border-radius: 999px; box-shadow: 0 18px 40px rgba(17,22,19,.25); font-weight: 800;
}
.notice {
  padding: .9rem 1rem; border-radius: 14px; margin-top: 1rem; display: none;
}
.notice.success { background: #e8f5ec; color: #205533; border: 1px solid #cce8d4; }
.notice.error { background: #ffffff1f1; color: #7e2323; border: 1px solid #f2cccc; }
@media (max-width: 980px) {
  .hero-grid, .split, .grid-4, .grid-3, .grid-2, .cta-band, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; top: 78px; left: 1rem; right: 1rem; background: rgba(255,255,255,.98);
    border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 1rem; flex-direction: column; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid var(--line); background: white; border-radius: 14px;
  }
}
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .hero { padding-top: 3rem; }
  .gallery-grid, .form-grid { grid-template-columns: 1fr; }
  .sticky-call { display: inline-flex; }
  body { padding-bottom: 5rem; }
}

@media (max-width: 640px) {
  .brand-logo { height: 56px; max-width: 56vw; }
}


/* Layout cleanup */
.topbar {
  background: #ffffff !important;
  border-bottom: 1px solid #d9dfec !important;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
}
.topbar p {
  margin: 0;
  color: #1f2a44 !important;
  font-size: 0.95rem;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}
.topbar-links a {
  color: #1f2a44 !important;
  font-weight: 700;
  text-decoration: none;
  background: none !important;
  padding: 0 !important;
}

.site-header {
  background: #ffffff !important;
  border-bottom: 1px solid #d9dfec;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 92px;
}
.brand img,
.logo img {
  display: block;
  max-height: 72px;
  width: auto;
}
.nav-wrap,
.main-nav,
nav {
  margin-left: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: #1f2a44 !important;
  padding: 1rem 1.3rem;
  border-radius: 0;
}
.nav-links a {
  color: #ffffff !important;
}
.nav-links a.active,
.nav-links a:hover {
  color: #dbe3ff !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 3rem;
  align-items: center;
}
.hero-card {
  padding: 0 !important;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff !important;
  box-shadow: 0 14px 34px rgba(19, 32, 63, 0.10);
  border: 1px solid #d9dfec;
}
.hero-media,
.hero-media-photo {
  min-height: 560px !important;
  height: 560px !important;
  position: relative;
  background: #ffffff !important;
}
.hero-media img,
.hero-media-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}
.hero-media::before,
.hero-media::after {
  content: none !important;
}
.hero-overlay-copy {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  max-width: 340px;
  color: #ffffff;
}
.hero-media-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,42,68,0.05) 20%, rgba(31,42,68,0.78) 100%);
}
.hero-overlay-copy span {
  display: inline-block;
  margin-bottom: .55rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .85rem;
  font-weight: 700;
}
.hero-overlay-copy strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.15;
}

@media (max-width: 1024px) {
  .topbar-inner,
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .topbar-links {
    white-space: normal;
    flex-wrap: wrap;
  }
  .nav-links {
    flex-wrap: wrap;
    width: 100%;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-media,
  .hero-media-photo {
    min-height: 380px !important;
    height: 380px !important;
  }
}


/* ===== FINAL POLISH ===== */

/* tighten header spacing */
.header-inner {
  min-height: 80px;
}

/* cleaner nav block */
.nav-links {
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
}

/* improve hero text spacing */
.hero-copy h1 {
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.hero-copy p {
  margin-top: 1rem;
  max-width: 560px;
}

/* better button spacing */
.hero-actions {
  margin-top: 1.5rem;
  gap: 0.9rem;
}

/* refine overlay text */
.hero-overlay-copy {
  max-width: 300px;
}

.hero-overlay-copy strong {
  font-size: 1.25rem;
  font-weight: 600;
}

/* soften cards */
.card,
.feature-card {
  border-radius: 16px;
  border: 1px solid #e2e6f0;
}

/* better section spacing */
section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* mobile polish */
@media (max-width: 768px) {
  .hero-copy h1 {
    font-size: 2.4rem;
  }
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.gallery-card {
  background: #fff;
  border: 1px solid #e2e6f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(19, 32, 63, 0.08);
}
.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.gallery-card__body {
  padding: 1rem 1rem 1.1rem;
}
.gallery-card__body h3 {
  margin: 0 0 .35rem;
  color: #1f2a44;
  font-size: 1.05rem;
}
.gallery-card__body p {
  margin: 0;
  color: #4b5877;
  font-size: .95rem;
  line-height: 1.5;
}
/* Reviews / trust section */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.review-cards { margin-top: 0.5rem; }
.review-card {
  border: 1px solid #d9dfec;
  box-shadow: 0 10px 24px rgba(19, 32, 63, 0.08);
}
.review-badge {
  display: inline-block;
  margin-bottom: .75rem;
  padding: .32rem .7rem;
  border-radius: 999px;
  background: rgba(49, 55, 125, .08);
  color: #31377d;
  font-size: .85rem;
  font-weight: 700;
}

/* Gallery lightbox */
.lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(18, 26, 45, 0.88);
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: min(1100px, 94vw);
  max-height: 90vh;
}
.lightbox-image {
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.lightbox-caption {
  margin: .9rem 0 0;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
body.lightbox-open { overflow: hidden; }

/* Quote form notices */
.notice {
  padding: .9rem 1rem;
  border-radius: 14px;
  font-weight: 600;
}
.notice.success {
  background: rgba(49, 55, 125, .08);
  color: #1f2a44;
  border: 1px solid rgba(49, 55, 125, .14);
}
.notice.error {
  background: rgba(156, 28, 28, .08);
  color: #7d2020;
  border: 1px solid rgba(156, 28, 28, .16);
}

@media (max-width: 768px) {
  .lightbox {
    padding: 1rem;
  }
  .lightbox-image {
    max-height: 72vh;
  }
}/* Publish polish */
.review-badge,
.icon,
.service-number,
.number {
  display: none !important;
}

/* Home/gallery image formatting */
.gallery-card {
  padding: 1rem;
}
.gallery-card img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  border-radius: 14px;
  display: block;
}
.homepage-gallery-grid {
  align-items: stretch;
}
.homepage-gallery-grid .gallery-card p {
  margin: .85rem .15rem .15rem;
  color: #4b5877;
  font-size: .97rem;
}

/* Hero image card cleanup */
.hero-card {
  overflow: hidden;
}
.hero-media,
.hero-media-photo {
  position: relative;
  min-height: 470px !important;
  height: 470px !important;
  border-radius: 16px;
  overflow: hidden;
}
.hero-media img,
.hero-media-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}
.hero-overlay-copy {
  position: absolute !important;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  max-width: 320px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.hero-overlay-copy span {
  display: inline-block;
  margin-bottom: .45rem;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
}
.hero-overlay-copy strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}

/* Stronger navy CTA band */
.cta-band {
  background: linear-gradient(135deg, #1f2a44, #31377d) !important;
  color: #fff !important;
}
.cta-band p {
  color: rgba(255,255,255,.88) !important;
}
.cta-band .btn-secondary {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.7) !important;
}
.cta-band .btn-secondary:hover {
  background: rgba(255,255,255,.08) !important;
}

/* Service cards cleaner without markers */
.service-card h3 {
  margin-top: .35rem;
}

/* Reviews cleaner */
.review-card h3 {
  margin-top: 0;
}

/* Responsive image heights */
@media (max-width: 900px) {
  .hero-media,
  .hero-media-photo {
    min-height: 340px !important;
    height: 340px !important;
  }
  .gallery-card img {
    height: 220px !important;
  }
}

/* Fleet page image fix */
.split-media img,
.fleet-media img {
  width: 100% !important;
  min-height: 320px;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  border-radius: 16px;
}

/* Service area cards without descriptions */
.service-area-grid .card,
.region-grid .card {
  min-height: 0 !important;
}
.service-area-grid .card h3,
.region-grid .card h3 {
  margin-bottom: 0 !important;
}
