:root {
  --green-950: #062d17;
  --green-900: #0a421f;
  --green-700: #176b2c;
  --green-500: #4d9a31;
  --gold: #dba90f;
  --cream: #f7f5ec;
  --paper: #fffdfa;
  --ink: #102016;
  --muted: #5d695f;
  --line: rgba(16, 32, 22, 0.14);
  --shadow: 0 20px 50px rgba(6, 45, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
}

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

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

.topbar {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  padding: 0.55rem 1rem;
  background: var(--green-950);
  color: white;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 253, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 138px;
  aspect-ratio: 1.15;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 4px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.3rem);
  color: #1d2c22;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: white;
  box-shadow: 0 12px 24px rgba(23, 107, 44, 0.22);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: white;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 45, 23, 0.94) 0%, rgba(6, 45, 23, 0.82) 31%, rgba(6, 45, 23, 0.26) 62%),
    url("images/hero.jpg") center top / cover;
  transform: scale(1.03);
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: clamp(4rem, 10vw, 9rem) clamp(1.1rem, 7vw, 5rem);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 1.2rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.25rem, 8vw, 6.9rem);
  line-height: 0.91;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions {
  margin: 2rem 0;
}

.trust-strip span {
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading.inverted {
  color: white;
}

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

.service-grid article {
  min-height: 225px;
  padding: 1.45rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-grid article:nth-child(even) {
  transform: translateY(1.2rem);
}

.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 1.2rem;
  place-items: center;
  background: #e7f0df;
  border-radius: 50%;
  color: var(--green-700);
  font-weight: 800;
}

.service-grid p,
.why p,
.footer p {
  color: var(--muted);
  line-height: 1.6;
}

.projects {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background:
    radial-gradient(circle at top left, rgba(219, 169, 15, 0.16), transparent 34%),
    linear-gradient(135deg, var(--green-950), var(--green-700));
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
}

figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: white;
}

figure img {
  width: 100%;
  height: 410px;
  object-fit: cover;
}

figcaption {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.8rem;
  background: rgba(6, 45, 23, 0.9);
  border-radius: 4px;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  max-width: 1160px;
  margin: 1rem auto 0;
}

.gallery-row img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.stats div {
  padding: 2rem 1.2rem;
  text-align: center;
}

.stats div + div {
  border-left: 1px solid var(--line);
}

.stats strong {
  display: block;
  color: var(--green-700);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.stats span {
  color: var(--muted);
  font-weight: 700;
}

.quote {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 0;
  align-items: stretch;
}

.quote-panel {
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(6, 45, 23, 0.95), rgba(23, 107, 44, 0.88)),
    url("images/after2.jpg") center / cover;
  color: white;
  border-radius: 8px 0 0 8px;
}

.quote-panel ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  list-style: none;
}

.quote-panel li::before {
  margin-right: 0.5rem;
  color: var(--gold);
  content: "✓";
}

.whatsapp {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.9rem 1.2rem;
  background: white;
  border-radius: 999px;
  color: var(--green-900);
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

label {
  display: grid;
  gap: 0.45rem;
  color: #2d3b31;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.full,
.quote-form button {
  grid-column: 1 / -1;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  background: var(--green-950);
  color: white;
}

.footer img {
  width: 120px;
  height: 86px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 4px;
}

address {
  display: grid;
  gap: 0.5rem;
  font-style: normal;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9;
  display: inline-grid;
  width: 82px;
  height: 82px;
  place-items: center;
  background: #18a84f;
  border: 4px solid white;
  border-radius: 50%;
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

@media (max-width: 1040px) {
  .topbar {
    flex-wrap: wrap;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 44px;
    padding: 0.7rem 1rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: white;
    color: var(--green-900);
    font: inherit;
    font-weight: 800;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
  }

  .site-header.nav-open .site-nav a {
    padding: 1rem 0;
    border-top: 1px solid var(--line);
  }

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

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

  .quote-panel,
  .quote-form {
    border-radius: 8px;
    border: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .topbar span {
    display: none;
  }

  .brand img {
    width: 104px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(6, 45, 23, 0.92), rgba(6, 45, 23, 0.66)),
      url("images/hero.jpg") center top / cover;
  }

  .service-grid,
  .comparison-grid,
  .gallery-row,
  .stats,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .service-grid article:nth-child(even) {
    transform: none;
  }

  figure img,
  .gallery-row img {
    height: 270px;
  }

  .stats div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  address {
    text-align: left;
  }

  .floating-whatsapp {
    width: 68px;
    height: 68px;
  }
}
