:root {
  --text: #16181d;
  --muted: #5a626f;
  --line: #dde2e8;
  --paper: #ffffff;
  --soft: #f4f0e8;
  --ink: #101215;
  --teal: #08796f;
  --teal-dark: #045950;
  --amber: #f0a51f;
  --brick: #a94122;
  --green: #2f7d4b;
  --shadow: 0 18px 45px rgba(10, 16, 24, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 24, 39, 0.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 42px;
  color: #fff;
  background: var(--teal);
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand span:last-child {
  min-width: 0;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.header-action {
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 12px;
  color: #2b3038;
}

.main-nav a:hover {
  background: #f0f3f5;
}

.header-action {
  justify-self: end;
  padding: 11px 16px;
  color: #fff;
  background: var(--teal);
}

.header-action:hover,
.button-primary:hover {
  background: var(--teal-dark);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 70px));
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("images/45.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 72px 0 46px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-text {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--teal);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.13);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.button-ghost {
  color: var(--teal-dark);
  border-color: var(--line);
  background: #fff;
}

.button-ghost:hover {
  border-color: var(--teal);
  background: #f3fbfa;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin: 48px 0 0;
}

.hero-facts div {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.hero-facts dt {
  font-size: 25px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: clamp(54px, 8vw, 92px) 0;
}

.container {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.section h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.section p {
  color: var(--muted);
  font-size: 17px;
}

.section-intro {
  background: var(--soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intro-grid article {
  padding: 24px;
  border: 1px solid rgba(22, 24, 29, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(82, 70, 52, 0.08);
}

.intro-grid h2 {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.card-kicker {
  color: var(--brick);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 96px;
}

.section-heading p {
  max-width: 520px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-item {
  min-height: 182px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-item:nth-child(2) {
  border-top: 4px solid var(--amber);
}

.service-item:nth-child(3) {
  border-top: 4px solid var(--green);
}

.service-item:nth-child(4) {
  border-top: 4px solid var(--brick);
}

.fleet-band {
  color: #fff;
  background: var(--ink);
}

.fleet-band .eyebrow {
  color: var(--amber);
}

.fleet-band p {
  color: rgba(255, 255, 255, 0.72);
}

.fleet-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.height-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.height-grid div {
  min-height: 142px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.height-grid strong {
  display: block;
  color: #fff;
  font-size: 38px;
  line-height: 1;
}

.height-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.locations {
  background: #f7f8f8;
}

.locations-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: 32px;
  align-items: start;
}

.districts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.districts li {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #333942;
  font-weight: 700;
}

.gallery-section {
  background: #fff;
}

.section-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.section-row p {
  margin-bottom: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #dfe5e8;
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 6px 9px;
  border-radius: 5px;
  color: #fff;
  background: rgba(0, 0, 0, 0.56);
  font-size: 13px;
  font-weight: 700;
}

.gallery-actions {
  justify-content: center;
  margin-top: 24px;
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 18, 21, 0.94), rgba(16, 18, 21, 0.78)),
    url("images/14.jpg") center / cover;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
}

.contact-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-panel span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-placeholder {
  display: block;
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.05;
}

.contact-panel .button {
  width: 100%;
  margin-top: 12px;
}

.site-footer {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #0b0c0e;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-layout p {
  margin: 0;
}

.footer-layout a {
  color: #fff;
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1180px);
  max-height: 88vh;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .intro-grid,
  .split,
  .fleet-layout,
  .locations-layout,
  .section-row,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

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

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 10px 14px;
  }

  .header-action {
    display: none;
  }

  .brand-mark {
    width: 44px;
    height: 38px;
    font-size: 14px;
  }

  .brand strong {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .header-action {
    padding: 10px 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 690px;
  }

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

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.25)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.18));
  }

  .hero-content {
    padding: 64px 0 28px;
    justify-content: flex-end;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 28px;
  }

  .hero-facts div {
    padding: 12px 10px;
  }

  .hero-facts dt {
    font-size: 22px;
  }

  .hero-facts dd {
    font-size: 13px;
    line-height: 1.25;
  }

  .service-list,
  .height-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-card {
    aspect-ratio: 1 / 1;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}
