:root {
  --ink: #161616;
  --muted: #62666b;
  --line: #ded9d0;
  --paper: #f7f3eb;
  --panel: #fffdf8;
  --steel: #20252a;
  --steel-2: #2f383d;
  --yellow: #f5b51f;
  --red: #c72920;
  --green: #1f9d55;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 20, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(247, 243, 235, 0.94);
  border-bottom: 1px solid rgba(32, 37, 42, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--yellow);
  color: #1a1711;
  font-weight: 900;
  border: 2px solid #1a1711;
  border-radius: 7px;
}

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

.brand strong {
  font-size: 17px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #25282b;
  font-size: 15px;
  font-weight: 700;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.whatsapp {
  background: var(--green);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 7px;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 75px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.hero picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 92px clamp(20px, 6vw, 80px) 126px;
  color: var(--white);
}

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

.hero .eyebrow,
.dark .eyebrow,
.quote-section .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-strip {
  position: absolute;
  left: clamp(20px, 6vw, 80px);
  right: clamp(20px, 6vw, 80px);
  bottom: 28px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.hero-strip span {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(10px);
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-contact a,
.quick-contact div {
  display: block;
  padding: 24px clamp(18px, 4vw, 54px);
  background: var(--panel);
}

.quick-contact strong,
.quick-contact span {
  display: block;
}

.quick-contact strong {
  font-size: clamp(20px, 2vw, 28px);
}

.quick-contact span {
  color: var(--muted);
}

.section,
.gallery-section,
.quote-section {
  padding: 82px clamp(20px, 6vw, 80px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head p,
.service-card p,
.fleet-layout p,
.steps p,
.quote-section p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(30, 30, 30, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.dark {
  background: var(--steel);
  color: var(--white);
}

.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.fleet-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.fleet-list {
  display: grid;
  gap: 14px;
}

.fleet-list div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
}

.fleet-list strong,
.fleet-list span {
  display: block;
}

.fleet-list span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-section {
  background: var(--panel);
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.gallery-head .section-head {
  margin-bottom: 0;
}

.gallery-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 7px;
  background: var(--steel);
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.55fr);
  gap: 16px;
}

.feature-photo,
.gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: #ddd;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(24, 24, 24, 0.11);
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}

.feature-photo {
  height: 100%;
  min-height: 656px;
}

.feature-photo img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease, filter 200ms ease;
}

.feature-photo::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 48%);
  pointer-events: none;
}

.feature-photo:hover img,
.gallery-card:hover img {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.photo-caption,
.gallery-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
}

.photo-caption strong,
.photo-caption small,
.gallery-card strong,
.gallery-card small {
  display: block;
}

.photo-caption strong,
.gallery-card strong {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.15;
}

.photo-caption small,
.gallery-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(208px, 1fr);
  gap: 16px;
}

.gallery-card {
  min-height: 208px;
}

.gallery-card.wide {
  grid-column: span 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px 78px;
  background: rgba(12, 14, 16, 0.92);
}

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

.lightbox-frame {
  display: grid;
  gap: 12px;
  width: min(1120px, 100%);
  max-height: 92vh;
  margin: 0;
}

.lightbox-image {
  width: 100%;
  max-height: calc(92vh - 58px);
  object-fit: contain;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.48);
}

.lightbox-caption {
  min-height: 24px;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 72px;
  font-size: 52px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.process {
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article {
  min-height: 235px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 900;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
  background: var(--steel-2);
  color: var(--white);
}

.quote-section p {
  color: rgba(255, 255, 255, 0.76);
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: var(--panel);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfc8bc;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--red);
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 6vw, 80px);
  background: #111416;
  color: var(--white);
}

.site-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(20, 20, 20, 0.12);
  }

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

  .main-nav a {
    padding: 10px 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.38)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 48%);
  }

  .quick-contact,
  .service-grid,
  .fleet-layout,
  .steps,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .gallery-head,
  .gallery-showcase {
    display: grid;
  }

  .gallery-showcase {
    grid-template-columns: 1fr;
  }

  .feature-photo {
    min-height: 420px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }

  .gallery-card {
    min-height: 210px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 38px;
  }

  .hero-content {
    padding-top: 70px;
    padding-bottom: 154px;
  }

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

  .hero-strip {
    grid-template-columns: 1fr 1fr;
    bottom: 18px;
  }

  .hero-strip span {
    padding: 12px;
    font-size: 14px;
  }

  .section,
  .gallery-section,
  .quote-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .gallery-head {
    align-items: start;
  }

  .gallery-call {
    width: 100%;
  }

  .feature-photo {
    min-height: 430px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-card.wide {
    grid-column: span 1;
  }

  .gallery-card {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .lightbox {
    padding: 62px 14px 22px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    font-size: 42px;
    transform: none;
  }

  .lightbox-prev {
    left: 18px;
  }

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