
:root {
  --green: #087c19;
  --green-dark: #075f14;
  --yellow: #f7c400;
  --ink: #121212;
  --muted: #5f665f;
  --line: #dfe7df;
  --soft: #f6faf6;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(0,0,0,.10);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus {
  left: 16px; top: 16px; z-index: 1000;
  background: #fff; padding: 10px 14px; border-radius: 8px;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 26px;
  align-items: center;
  padding-block: 20px;
}
.brand img {
  width: 100%;
  max-width: 390px;
  border-radius: 50%;
}
.identity {
  text-align: center;
  text-transform: uppercase;
}
.identity strong {
  display: block;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.1;
}
.identity span {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 800;
}
.header-contact {
  display: grid;
  gap: 8px;
}
.phone {
  text-decoration: none;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  text-align: center;
}
.address {
  display: block;
  background: var(--yellow);
  padding: 7px 12px;
  text-align: center;
  font-weight: 800;
  border-radius: 8px;
}
.service-area {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 14px 0;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 800;
}
.service-area strong { color: var(--yellow); }

.primary-cta, .secondary-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.primary-cta {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(8,124,25,.22);
}
.secondary-cta {
  background: #fff;
  border: 2px solid var(--green);
  color: var(--green-dark);
}
.primary-cta:hover, .secondary-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero {
  padding: 64px 0;
  background: linear-gradient(180deg, #fff, var(--soft));
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}
h1, h2, h3 {
  margin-top: 0;
  line-height: 1.12;
}
h1 { font-size: clamp(2.1rem, 5vw, 4rem); margin-bottom: 20px; }
h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); }
h3 { font-size: 1.55rem; }
.lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 60ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.trust-line {
  margin-top: 22px;
  font-size: 1.1rem;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.services, .gallery, .location, .reviews {
  padding: 72px 0;
}
.section-heading {
  max-width: 700px;
  margin-bottom: 32px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-body h3 { color: var(--green-dark); }
.card-body ul {
  margin: 0;
  padding-left: 20px;
}
.card-body li { margin: 6px 0; }

.trust {
  padding: 28px 0;
  background: var(--green-dark);
  color: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-grid div {
  padding: 12px 18px;
  border-left: 3px solid var(--yellow);
}
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 1.15rem; }
.trust-grid span { opacity: .9; }

.gallery { background: var(--soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.reviews-grid, .location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.reviews {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.location iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  background: #101510;
  color: #fff;
  padding: 28px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-grid strong, .footer-grid span { display: block; }
.footer-grid a { margin-left: 16px; color: #fff; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  background: #18a937;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
}

@media (max-width: 900px) {
  .header-grid,
  .hero-grid,
  .reviews-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .header-grid { text-align: center; }
  .brand img { margin-inline: auto; max-width: 470px; }
  .service-cards, .gallery-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 38px; }
  .hero-copy { text-align: center; }
  .hero-actions { justify-content: center; }
  .lead { margin-inline: auto; }
  .hero-image { order: -1; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 22px, 1180px); }
  .header-grid { gap: 18px; padding-block: 12px; }
  .brand img { max-width: 100%; }
  .phone { font-size: 2rem; }
  .identity strong { font-size: 1.55rem; }
  .identity span { font-size: 1.05rem; }
  .service-area { font-size: .98rem; padding: 11px 0; }
  .hero, .services, .gallery, .location, .reviews { padding: 48px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; text-align: center; }
  .footer-grid a { display: block; margin: 8px 0 0; }
  .floating-whatsapp { left: 12px; right: 12px; text-align: center; }
  body { padding-bottom: 70px; }
}
