:root {
  --ink: #17231f;
  --muted: #607069;
  --line: #dce7e1;
  --green: #166b43;
  --green-dark: #0e4f33;
  --steel: #596365;
  --paper: #f7faf6;
  --white: #ffffff;
  --accent: #d9f06e;
  --shadow: 0 18px 45px rgba(21, 45, 34, .12);
}

* {
  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;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 250, 246, .94);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 140px;
  height: auto;
  border-radius: 4px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(34px, 7vw, 82px) clamp(18px, 4vw, 56px) 34px;
}

.hero-copy {
  max-width: 760px;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .96;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.lead {
  max-width: 640px;
  color: #34423d;
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  border: 1px solid var(--green);
  color: var(--green);
  background: var(--white);
}

.button.full {
  width: 100%;
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: clamp(330px, 48vw, 560px);
  object-fit: cover;
}

.hero-media figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 14px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-band div {
  padding: 20px;
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 980px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

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

.services-grid article {
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 6px;
  color: var(--green-dark);
  background: #e1f2e8;
  font-weight: 900;
}

.prices-section {
  background: var(--white);
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--green-dark);
  background: #edf6ef;
  font-size: 14px;
  text-transform: uppercase;
}

td:last-child {
  width: 190px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
}

.gallery-section {
  background: #eef4ee;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 265px;
  padding: 0;
  border: 1px solid rgba(15, 68, 44, .15);
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 265px;
  object-fit: cover;
  transition: transform .25s ease;
}

.gallery-item span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 800;
  text-align: left;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  gap: 24px;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--green-dark);
}

.contact-section .eyebrow,
.contact-section p {
  color: #d8eadf;
}

.contact-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #d8eadf;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .62);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.contact-form input[type="file"] {
  padding: 10px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-note {
  margin: -2px 0 0;
  color: #d8eadf;
  font-size: 13px;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 6px;
  color: #d8eadf;
  font-weight: 800;
}

.contact-line {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-line.muted {
  color: #d8eadf;
  font-weight: 600;
}

footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--white);
  font-size: 14px;
}

footer strong,
footer span,
footer a {
  display: block;
}

footer strong {
  margin-bottom: 8px;
  color: var(--ink);
}

footer a {
  margin-bottom: 4px;
  text-decoration: none;
}

footer a:hover {
  color: var(--green);
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 84px) clamp(18px, 4vw, 56px);
}

.legal-page h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-page p {
  color: #34423d;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.cookie-actions a {
  color: var(--green);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 108px;
  z-index: 29;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 32px rgba(20, 90, 52, .28);
  font-weight: 900;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1db954;
}

.response-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--paper);
}

.response-card {
  max-width: 560px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.response-card img {
  width: 150px;
  margin: 0 auto 22px;
}

.response-card h1 {
  font-size: clamp(30px, 5vw, 44px);
}

.response-card.error {
  border-color: #f0b7ad;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .82);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  border-radius: 8px;
  background: var(--white);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .trust-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 650px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 28px;
  }

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

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

  .gallery-item,
  .gallery-item img {
    min-height: 330px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 126px;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .cookie-actions {
    justify-content: space-between;
  }
}
