:root {
  --ink: #191b1f;
  --muted: #626972;
  --red: #c8101a;
  --red-dark: #861015;
  --blue: #30308f;
  --gold: #d2a333;
  --paper: #f6f4ef;
  --panel: #ffffff;
  --line: #e7e1d8;
  --shadow: 0 20px 70px rgba(20, 22, 24, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

img { max-width: 100%; }

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px 48px;
  background: rgba(255, 255, 252, 0.96);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 10px 35px rgba(23, 23, 23, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(210px, 20vw, 330px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #2e3133;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: white;
  background: var(--red);
}

.nav-toggle {
  display: none;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  font: inherit;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.96) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 13, 0.9) 0%, rgba(10, 12, 13, 0.72) 38%, rgba(10, 12, 13, 0.18) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.02) 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  margin: 24px 0 0 7vw;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  font-size: 4.8rem;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  max-width: 660px;
  margin: 22px 0 0;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(15, 16, 18, 0.55);
  border-left: 4px solid var(--gold);
  list-style: none;
  font-size: clamp(0.86rem, 1.2vw, 1rem);
  font-weight: 700;
  line-height: 1.34;
  backdrop-filter: blur(10px);
}

.hero-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.hero-service-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--gold);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: white;
  background: linear-gradient(145deg, #d91c23, #a81016);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(185, 20, 26, 0.28);
}

.button.ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.page-one-feature {
  width: min(1120px, calc(100% - 48px));
  margin: -48px auto 70px;
  position: relative;
  z-index: 2;
}

.page-one-stats {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(20, 22, 24, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(20, 22, 24, 0.16);
}

.page-one-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 0;
  margin-top: 24px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(20, 22, 24, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-one-work-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.trust-section {
  display: grid;
  gap: 14px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 54px;
}

.trust-panel {
  padding: clamp(18px, 2.8vw, 28px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 22, 24, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(20, 22, 24, 0.08);
}

.clients-copy {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
}

.clients-copy .eyebrow {
  display: grid;
  grid-template-columns: 34px auto 34px;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: var(--red-dark);
  font-size: 0.68rem;
}

.clients-copy .eyebrow::before,
.clients-copy .eyebrow::after {
  content: "";
  height: 2px;
  background: var(--red);
}

.clients-copy h2 {
  margin: 0;
  color: #22262b;
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.client-logo-grid,
.partner-logo-grid {
  display: grid;
  gap: 12px;
}

.client-logo-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.partner-logo-grid {
  grid-template-columns: repeat(3, minmax(160px, 240px));
  justify-content: center;
}

.client-logo-grid div,
.partner-logo-grid div {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 14px;
  background: linear-gradient(180deg, #fff, #fbfaf6);
  border: 1px solid #ece8df;
  border-radius: 8px;
}

.client-logo-grid img,
.partner-logo-grid img {
  width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.gallery-intro {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 24px;
  text-align: center;
}

.gallery-intro h2 {
  margin: 0 auto;
  color: #22262b;
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-intro p:last-child {
  max-width: 580px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 700;
  line-height: 1.45;
}

.portfolio-sections {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.portfolio-section {
  padding-top: clamp(16px, 2.4vw, 26px);
  border-top: 1px solid rgba(20, 22, 24, 0.12);
}

.portfolio-section__header {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto clamp(14px, 2.4vw, 24px);
  text-align: center;
}

.portfolio-section__header .eyebrow {
  display: grid;
  grid-template-columns: 36px auto 36px;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: var(--red-dark);
  font-size: 0.68rem;
}

.portfolio-section__header .eyebrow::before,
.portfolio-section__header .eyebrow::after {
  content: "";
  height: 2px;
  background: var(--red);
}

.portfolio-section__header h3 {
  margin: 0;
  color: #22262b;
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.7vw, 2.35rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portfolio-section__groups {
  display: grid;
  gap: clamp(16px, 2.4vw, 26px);
}

.photo-cluster {
  display: block;
  margin: 0;
  padding: clamp(10px, 1.5vw, 14px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 22, 24, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(20, 22, 24, 0.09);
}

.photo-cluster h4 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(14px, 2vw, 18px);
}

.product-feature > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: #f1eee8;
  border-radius: 6px;
}

.product-feature__copy {
  padding: clamp(8px, 2vw, 20px) clamp(4px, 1vw, 10px);
}

.product-feature__copy .eyebrow {
  margin-bottom: 10px;
}

.product-feature__copy h4 {
  margin: 0;
  color: #22262b;
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: clamp(2.1rem, 4.3vw, 4rem);
  line-height: 0.96;
}

.product-feature__subtitle {
  margin: 8px 0 18px;
  color: var(--red-dark);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 800;
  line-height: 1.25;
}

.product-feature__copy p:not(.eyebrow):not(.product-feature__subtitle) {
  margin: 0 0 12px;
  color: #3f454b;
  font-size: clamp(0.94rem, 1.25vw, 1.05rem);
  font-weight: 600;
  line-height: 1.58;
}

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

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 14px);
  align-items: start;
}

.photo-cluster--single .photo-grid {
  grid-template-columns: 1fr;
}

.photo-cluster--feature-left .photo-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: stretch;
}

.photo-cluster--feature-left .photo-card:first-child {
  display: flex;
  grid-row: span 2;
  height: 100%;
  flex-direction: column;
}

.photo-cluster--feature-left .photo-card:first-child img {
  flex: 1;
  min-height: 0;
  height: 0;
  object-fit: cover;
}

.photo-cluster--caption-in-feature .photo-card:first-child figcaption {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
}

.photo-cluster--mosaic .photo-grid {
  display: block;
  columns: 3 220px;
  column-gap: clamp(10px, 1.5vw, 14px);
}

.photo-cluster--stack .photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.photo-card {
  display: grid;
  grid-template-rows: auto auto;
  margin: 0;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(20, 22, 24, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(20, 22, 24, 0.12);
}

.photo-cluster--pair .photo-grid {
  align-items: stretch;
}

.photo-cluster--pair .photo-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.photo-cluster--mosaic .photo-card {
  display: inline-grid;
  width: 100%;
  margin: 0 0 clamp(10px, 1.5vw, 14px);
  break-inside: avoid;
}

.photo-cluster--stack .photo-card {
  display: flex;
  height: 100%;
  min-height: 100%;
  flex-direction: column;
}

.photo-card--featured {
  grid-column: 1 / -1;
}

.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #f1eee8;
}

.photo-cluster--pair .photo-card img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.photo-cluster--stack .photo-card img {
  flex: 1;
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 16px 18px 18px;
  color: #3d4248;
  border-top: 1px solid rgba(20, 22, 24, 0.08);
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  font-weight: 800;
  line-height: 1.32;
  text-align: center;
}

.photo-cluster--pair .photo-card figcaption {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.cluster-caption {
  margin: 10px 0 0;
  padding: 12px 14px;
  color: #42474d;
  background: #f3f0ea;
  border-left: 4px solid var(--red);
  border-radius: 6px;
  font-size: clamp(0.82rem, 1.12vw, 0.98rem);
  font-weight: 800;
  line-height: 1.35;
}

.site-footer {
  display: block;
  margin-top: 72px;
  padding: 54px 0 26px;
  color: white;
  background:
    linear-gradient(135deg, rgba(19, 27, 26, 0.98), rgba(18, 19, 21, 0.98)),
    url("images/hero-fleet.jpg?v=20260805-2120") center / cover;
}

.footer-overview {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  column-gap: 24px;
  align-items: start;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  grid-row: span 3;
  width: 106px;
  height: 106px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.26));
}

.footer-overview h2 {
  max-width: 900px;
  margin: 0 0 14px;
  color: white;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.12;
}

.footer-overview p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-contact article {
  min-height: 185px;
  padding: 22px;
  color: #555c63;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.footer-contact h2 {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 1rem;
  line-height: 1.2;
}

.footer-contact p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.48;
}

.footer-contact a {
  color: inherit;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 48px));
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 78px;
    padding: 16px 20px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    display: none;
    min-width: 220px;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid rgba(20, 22, 24, 0.1);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .footer-overview {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .footer-logo {
    width: 82px;
    height: 82px;
  }

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

  .photo-cluster--stack .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-cluster--stack .photo-card {
    height: auto;
    min-height: 0;
  }

  .photo-cluster--stack .photo-card img {
    flex: initial;
    aspect-ratio: auto;
    height: auto;
  }
}

@media (max-width: 580px) {
  .brand { min-width: auto; }

  .brand-logo { width: min(64vw, 230px); }

  .hero {
    min-height: auto;
    align-items: end;
    padding: clamp(170px, 34vh, 280px) 0 50px;
  }

  .hero-copy {
    width: calc(100% - 36px);
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9.5vw, 2.55rem);
    line-height: 1.02;
  }

  .hero-service-list {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 18px;
    padding: 14px;
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .gallery-intro,
  .page-one-feature,
  .trust-section,
  .portfolio-sections,
  .footer-contact,
  .footer-bottom {
    width: min(100% - 24px, 1120px);
  }

  .page-one-feature {
    margin-top: 18px;
    margin-bottom: 44px;
  }

  .page-one-work-grid {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .page-one-work-grid img {
    min-height: auto;
    height: auto;
  }

  .gallery-intro {
    margin-top: 42px;
  }

  .trust-section {
    margin-bottom: 38px;
  }

  .trust-panel {
    padding: 18px 12px;
  }

  .clients-copy {
    max-width: 94%;
    margin-bottom: 14px;
  }

  .clients-copy h2 {
    font-size: clamp(1.2rem, 6.8vw, 1.65rem);
  }

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

  .partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .client-logo-grid div,
  .partner-logo-grid div {
    min-height: 88px;
    padding: 12px;
  }

  .client-logo-grid img,
  .partner-logo-grid img {
    max-height: 62px;
  }

  .portfolio-sections {
    gap: 34px;
  }

  .portfolio-section__header {
    max-width: 92%;
  }

  .product-feature {
    grid-template-columns: 1fr;
  }

  .product-feature > img {
    aspect-ratio: 16 / 11;
  }

  .product-feature__copy {
    padding: 4px 2px 2px;
  }

  .product-feature__copy h4 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-cluster--mosaic .photo-grid {
    columns: 1;
  }

  .photo-card--featured {
    grid-column: auto;
  }

  .photo-cluster--feature-left .photo-card:first-child img {
    flex: initial;
    height: auto;
  }

  .photo-card {
    border-radius: 6px;
  }

  .photo-cluster--pair .photo-card img {
    aspect-ratio: auto;
  }

  .photo-card figcaption {
    padding: 13px 14px 15px;
  }

  .footer-overview {
    display: block;
    width: min(100% - 28px, 1180px);
  }

  .footer-logo {
    margin-bottom: 18px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}
