:root {
  --ink: #20231f;
  --muted: #5d625a;
  --line: #dfe5d8;
  --lime: #aee000;
  --lime-strong: #8fc400;
  --paper: #f7faf2;
  --white: #ffffff;
  --graphite: #30342f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 250, 242, 0.9);
  border-bottom: 1px solid rgba(32, 35, 31, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
}

.brand-mark {
  display: inline-flex;
  width: clamp(44px, 4.6vw, 62px);
  color: var(--lime-strong);
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.mark-frame,
.mark-notch,
.mark-slat {
  fill: none;
  stroke-linecap: butt;
  stroke-linejoin: miter;
}

.mark-frame {
  stroke: currentColor;
  stroke-width: 9;
}

.mark-notch {
  stroke: currentColor;
  stroke-width: 9;
}

.mark-slat {
  stroke: #111c27;
  stroke-width: 9;
}

.mark-slat-top {
  transform: rotate(-7deg);
  transform-origin: 38px 34px;
}

.mark-slat-bottom {
  transform: rotate(6deg);
  transform-origin: 38px 56px;
}

.brand-type {
  display: inline-flex;
  align-items: baseline;
  color: #111c27;
  font-size: clamp(32px, 3.35vw, 48px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: lowercase;
  white-space: nowrap;
}

.brand-expo {
  color: var(--lime-strong);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--graphite);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark-a {
  color: var(--lime-strong);
  font-size: 1.34em;
  line-height: 0.78;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime-strong);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 3px;
  background: #e9efdf;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #111c27;
  background: #e9efdf;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: color 160ms ease, transform 160ms ease, background 160ms ease;
}

.social-links a:hover {
  color: #17200d;
  background: var(--lime);
  transform: translateY(-1px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a[aria-label="LinkedIn"] svg {
  fill: currentColor;
  stroke: none;
}

.language-switch button {
  min-width: 42px;
  min-height: 34px;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
}

.language-switch button.active {
  color: var(--ink);
  background: var(--lime);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

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

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 23, 20, 0.88) 0%, rgba(20, 23, 20, 0.7) 38%, rgba(20, 23, 20, 0.18) 72%),
    linear-gradient(180deg, rgba(20, 23, 20, 0.3), rgba(20, 23, 20, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  padding: 132px 0 54px;
  margin-left: clamp(18px, 6vw, 88px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 14px 0 10px;
  font-size: 23px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  padding: 0;
  margin: 34px 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.hero-facts div {
  padding: 14px 16px;
  background: rgba(20, 23, 20, 0.58);
}

.hero-facts dt,
.hero-facts dd {
  margin: 0;
}

.hero-facts dt {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

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

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

.button.primary {
  color: #18200f;
  background: var(--lime);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.intro {
  padding: 62px 0;
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.intro p:not(.section-kicker),
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.services,
.process,
.projects,
.coverage {
  padding: 92px 0;
}

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

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

.service-grid article {
  min-height: 264px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(44, 52, 35, 0.07);
}

.service-grid span {
  color: var(--lime-strong);
  font-weight: 900;
}

.service-grid p,
.timeline p {
  margin: 0;
  color: var(--muted);
}

.why {
  padding: 88px 0;
}

.why-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.why-lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefit-list article,
.location-groups article {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-list h3,
.location-groups h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.benefit-list p,
.location-groups p {
  margin: 0;
  color: var(--muted);
}

.projects .section-head p:not(.section-kicker) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #4f7000;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--lime-strong);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

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

.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(44, 52, 35, 0.07);
}

.project-card img,
.project-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(174, 224, 0, 0.22), rgba(17, 28, 39, 0.08)),
    repeating-linear-gradient(90deg, #eef4e7 0, #eef4e7 12px, #f7faf2 12px, #f7faf2 24px);
}

.project-card div:last-child {
  padding: 18px;
}

.project-card h3 {
  margin: 5px 0 0;
  font-size: 21px;
}

.project-service {
  display: inline-flex;
  padding: 5px 8px;
  margin: 0 8px 10px 0;
  color: #17200d;
  font-size: 11px;
  font-weight: 900;
  background: var(--lime);
  border-radius: 6px;
  text-transform: uppercase;
}

.project-description {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.project-view {
  width: 100%;
  min-height: 40px;
  margin-top: 14px;
  color: #17200d;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  background: var(--lime);
  border: 0;
  border-radius: 7px;
}

.project-meta {
  margin: 0;
  color: var(--lime-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 24px;
}

.project-modal.open {
  display: grid;
  place-items: center;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 28, 39, 0.72);
}

.project-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  padding: 18px;
  overflow: auto;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.project-modal-main {
  width: 100%;
  height: min(70vh, 760px);
  object-fit: contain;
  background: #111c27;
  border-radius: 8px;
}

.project-modal-copy {
  align-self: start;
}

.project-modal-copy h3 {
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 38px);
}

.project-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 36px;
  padding: 0 12px;
  color: var(--white);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  background: #111c27;
  border: 0;
  border-radius: 7px;
}

.project-modal-thumbs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
}

.project-modal-thumbs button {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  border: 3px solid transparent;
  border-radius: 8px;
}

.project-modal-thumbs button.active {
  border-color: var(--lime-strong);
}

.project-modal-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  min-height: 210px;
  padding: 58px 22px 22px;
  background: #eef4e7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline li::before {
  position: absolute;
  top: 18px;
  left: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #17200d;
  font-size: 13px;
  font-weight: 900;
  content: counter(step);
  counter-increment: step;
  background: var(--lime);
  border-radius: 50%;
}

.timeline strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

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

.coverage .section-head p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.location-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.location-groups article:last-child {
  grid-column: 1 / -1;
}

.faq {
  padding: 88px 0;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-list details {
  align-self: start;
  padding: 0 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  position: relative;
  padding: 20px 34px 20px 0;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 0;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #17200d;
  content: "+";
  background: var(--lime);
  border-radius: 50%;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 0 20px;
  margin: -2px 0 0;
  color: var(--muted);
}

.contact {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(174, 224, 0, 0.18), transparent 30%),
    linear-gradient(145deg, #edf4e4 0%, #f8faf5 55%, #eef4e7 100%);
}

.contact::before {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(143, 196, 0, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(143, 196, 0, 0.06),
    0 0 0 84px rgba(143, 196, 0, 0.035);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(32, 35, 31, 0.08);
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(44, 52, 35, 0.14);
}

.contact-intro {
  position: relative;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 100%, rgba(174, 224, 0, 0.18), transparent 38%),
    linear-gradient(145deg, #111c27, #273128);
}

.contact-intro::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 250px;
  height: 250px;
  content: "";
  border: 42px solid rgba(174, 224, 0, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.contact .contact-intro .section-kicker {
  color: var(--lime);
}

.contact-intro h2 {
  max-width: 580px;
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 58px);
}

.contact .contact-copy {
  max-width: 570px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.contact-details {
  display: grid;
  gap: 10px;
  padding: 0;
  margin-top: 36px;
  font-style: normal;
}

.contact-detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  min-height: 72px;
  padding: 12px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a.contact-detail:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(174, 224, 0, 0.5);
  transform: translateX(3px);
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #18200f;
  background: var(--lime);
  border-radius: 12px;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-whatsapp {
  color: var(--white);
  background: #25d366;
}

.contact-detail-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.contact-details .contact-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail-copy > span:last-child {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.contact-arrow {
  color: var(--lime);
  font-size: 19px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(34px, 5vw, 64px);
  background: var(--white);
}

.form-heading {
  margin-bottom: 6px;
}

.contact .form-heading .form-kicker {
  margin: 0 0 8px;
  color: var(--lime-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -0.03em;
}

.contact .form-heading p:last-child {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  background: #f8faf5;
  border: 1px solid #d8e0d0;
  border-radius: 11px;
  outline: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input {
  min-height: 52px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #92998e;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #bfcab4;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--lime-strong);
  box-shadow: 0 0 0 4px rgba(174, 224, 0, 0.16);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .contact-submit {
  gap: 12px;
  width: 100%;
  min-height: 54px;
  margin-top: 2px;
  cursor: pointer;
  border-radius: 11px;
  box-shadow: 0 12px 28px rgba(143, 196, 0, 0.22);
}

.contact-submit span:last-child {
  font-size: 20px;
  transition: transform 160ms ease;
}

.contact-submit:hover span:last-child {
  transform: translateX(4px);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 0 18px 0 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: #20b858;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(18, 112, 52, 0.35);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.whatsapp-float:hover {
  color: var(--white);
  background: #159947;
  box-shadow: 0 18px 44px rgba(18, 112, 52, 0.42);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact .form-status {
  color: var(--muted);
  font-size: 13px;
}

.contact .form-status.success {
  color: #4f7f00;
}

.contact .form-status.error {
  color: #9c2f20;
}

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

  .contact-intro,
  .contact-form {
    padding: clamp(30px, 7vw, 52px);
  }
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: #eef4e7;
  border-top: 1px solid var(--line);
}

.footer-brand {
  min-height: 42px;
}

.footer-brand .brand-mark {
  width: 38px;
}

.footer-brand .brand-type {
  font-size: 31px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  margin-left: auto;
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

  .language-switch {
    margin-left: auto;
  }

  .social-links {
    margin-left: auto;
  }

  .hero-content {
    width: min(680px, calc(100% - 36px));
    padding-top: 168px;
    margin-inline: auto;
  }

  .intro-grid,
  .why-grid,
  .coverage-grid,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 42px;
  }

  .brand-type {
    font-size: clamp(27px, 7.4vw, 34px);
  }

  .wordmark {
    gap: 6px;
    font-size: clamp(25px, 8vw, 32px);
  }

  .site-nav {
    font-size: 13px;
  }

  .social-links a {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(20, 23, 20, 0.92) 0%, rgba(20, 23, 20, 0.72) 58%, rgba(20, 23, 20, 0.42) 100%);
  }

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

  .contact-grid {
    border-radius: 18px;
  }

  .contact-intro,
  .contact-form {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-detail {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    min-height: 68px;
    padding: 11px 12px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .intro-grid,
  .contact-grid,
  .benefit-list,
  .location-groups,
  .faq-list,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .services,
  .process,
  .projects,
  .coverage,
  .why,
  .faq,
  .contact {
    padding: 66px 0;
  }

  .location-groups article:last-child {
    grid-column: auto;
  }

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

  .project-modal {
    padding: 12px;
  }

  .project-modal-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
  }

  .project-modal-main {
    height: min(62vh, 620px);
  }

  .site-footer a {
    width: 100%;
    margin-left: 0;
  }
}
