﻿:root {
  --green-900: #0b2d22;
  --green-800: #123c2e;
  --green-700: #1f5a40;
  --grass: #78a941;
  --stone: #d3c2a3;
  --paper: #f5f1e8;
  --paper-2: #ebe3d4;
  --ink: #17211c;
  --muted: #5c675f;
  --white: #ffffff;
  --line: #d8cfbe;
  --shadow: 0 18px 40px rgba(11, 45, 34, .16);
  --max: 1180px;
}

* { 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;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--green-900);
  color: var(--white);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 45, 34, .96);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
}
.brand {
  display: inline-grid;
  grid-template-columns: 58px auto;
  align-items: center;
  gap: .7rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-logo,
.footer-logo {
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 8px 18px rgba(0,0,0,.16);
}
.brand-logo {
  width: 58px;
  height: 58px;
  padding: .35rem;
  border-radius: 6px;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand small {
  display: block;
  margin-top: .1rem;
  color: #bada72;
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.nav-menu {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav-menu a {
  padding: .7rem .75rem;
  color: #f7fbf4;
  font-weight: 700;
  font-size: .95rem;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #d6f08c;
  box-shadow: inset 0 -3px 0 var(--grass);
}
.header-phone,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  padding: .78rem 1rem;
  border: 2px solid var(--green-700);
  background: var(--green-700);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}
.header-phone {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}
.btn:hover,
.header-phone:hover {
  background: var(--grass);
  border-color: var(--grass);
  color: var(--green-900);
}
.btn.light {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}
.btn.light:hover { background: var(--white); border-color: var(--white); color: var(--green-900); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 690px;
  background: var(--green-900);
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,25,19,.9), rgba(6,25,19,.62) 42%, rgba(6,25,19,.1) 78%),
    linear-gradient(0deg, rgba(6,25,19,.78), transparent 58%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(260px, 420px);
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 8vw, 6.3rem);
  line-height: .92;
  letter-spacing: 0;
}
.hero h1 span {
  display: block;
  color: #b8dc62;
}
.hero-lead {
  margin: 1.1rem 0 0;
  max-width: 540px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
}
.hero-lead em {
  display: block;
  margin-top: .35rem;
  color: #c6e87c;
}
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  align-self: center;
}
.proof-item {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(6,25,19,.42);
  padding: 1rem;
  min-height: 104px;
  display: grid;
  align-content: center;
}
.proof-item i {
  color: #b8dc62;
  font-size: 1.85rem;
  margin-bottom: .45rem;
}
.proof-item strong { display: block; line-height: 1.2; }

.section { padding: clamp(3rem, 7vw, 5.4rem) 1rem; }
.wrap { width: min(var(--max), 100%); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 3.9rem);
  line-height: 1;
  font-weight: 700;
}
h3 { margin: 0 0 .55rem; font-size: 1.25rem; line-height: 1.2; }
.lead { color: var(--muted); font-size: 1.08rem; }
.eyeline {
  width: 64px;
  height: 4px;
  margin: .9rem 0 0;
  background: var(--grass);
}

.about-band {
  padding: 0;
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(420px, .48fr) minmax(0, .52fr);
  min-height: 0;
  height: clamp(430px, 58vh, 560px);
}
.about-copy {
  padding: clamp(1.5rem, 3.4vw, 3rem) clamp(1.25rem, 3.3vw, 3.2rem);
  align-self: center;
  justify-self: center;
  max-width: 640px;
  max-height: 100%;
  overflow: hidden;
}
.about-copy p { color: #26322b; }
.about-copy em { color: #334239; }
.about-points {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.about-point {
  border-left: 4px solid var(--grass);
  background: rgba(255,255,255,.45);
  padding: .75rem .85rem;
}
.about-point strong {
  display: block;
  color: var(--green-900);
  font-size: 1.02rem;
}
.about-point span {
  color: var(--muted);
  font-size: .92rem;
}
.about-photo {
  width: 100%;
  height: 100%;
  max-height: clamp(430px, 58vh, 560px);
  object-fit: cover;
}

.dark-band {
  background:
    radial-gradient(circle at 15% 0%, rgba(120,169,65,.12), transparent 24rem),
    linear-gradient(180deg, #08291f, #061d16);
  color: var(--white);
}
.dark-band .lead { color: #dbe7d2; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.04);
  color: var(--white);
}
.service-card img {
  width: 100%;
  aspect-ratio: 1.18 / .86;
  object-fit: cover;
}
.service-card div {
  padding: 1rem;
}
.service-card h3 i {
  color: #b8dc62;
  margin-right: .35rem;
}
.service-card p { color: #e2ecda; }
.service-card a {
  display: inline-block;
  margin-top: .25rem;
  color: #c6e87c;
  font-weight: 800;
}

.gallery-preview {
  background: var(--paper);
}
.gallery-strip,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.gallery-strip img,
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: cover;
  border: 1px solid var(--line);
}
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-grid button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.center { text-align: center; margin-top: 1.5rem; }
.center .eyeline { margin-left: auto; margin-right: auto; }

.contact-band {
  padding: 0;
  background: var(--green-900);
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .45fr) minmax(260px, .35fr) minmax(320px, .55fr);
}
.contact-info,
.contact-form {
  padding: clamp(1.5rem, 4vw, 3rem);
}
.contact-image {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}
.map-band {
  width: 100%;
  background: var(--paper);
}
.map-head {
  padding: 1rem;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--green-900);
  font-weight: 800;
  text-align: center;
}
.map-head i {
  color: var(--grass);
  margin-right: .45rem;
}
.map-band iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  border: 0;
  filter: saturate(.9) contrast(1.04);
}
.info-list,
.pay-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  display: grid;
  gap: .8rem;
}
.info-list li,
.pay-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: .65rem;
}
.info-list i,
.pay-list i { color: #b8dc62; }

form { display: grid; gap: .8rem; }
label { display: grid; gap: .35rem; font-weight: 700; }
input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: .8rem;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(255,255,255,.06);
  color: var(--white);
  font: inherit;
}
select option { color: var(--ink); }
textarea { min-height: 132px; resize: vertical; }
::placeholder { color: rgba(255,255,255,.76); }

.payments {
  background: var(--paper-2);
  padding: 1.6rem 1rem;
  border-top: 1px solid var(--line);
}
.payment-wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}
.payment-title {
  margin: 0 0 .75rem;
  color: var(--green-900);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.payment-icons {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}
.payment-logo {
  width: 132px;
  height: 64px;
  object-fit: contain;
  padding: .45rem .65rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(11,45,34,.08);
}
.seal {
  display: grid;
  grid-template-columns: 82px auto;
  gap: 1rem;
  align-items: center;
}
.seal-mark {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 4px double var(--green-800);
  display: grid;
  place-items: center;
  color: var(--green-800);
  font-size: 2.25rem;
  background: rgba(255,255,255,.45);
}
.seal strong { display: block; color: var(--green-900); font-size: 1.2rem; }
.seal span { color: var(--muted); }

.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--green-900);
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,25,19,.88), rgba(6,25,19,.4));
}
.page-hero .wrap {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: .98;
  font-weight: 700;
}
.page-hero .lead {
  color: #edf5e8;
  max-width: 640px;
}
.breadcrumb { color: #c6e87c; font-weight: 800; margin-bottom: .8rem; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: start;
}
.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .7rem;
}
.check-list li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
}
.check-list i { color: var(--grass); margin-top: .2rem; }
.side-panel {
  position: sticky;
  top: 96px;
  padding: 1.2rem;
  background: var(--green-900);
  color: var(--white);
  box-shadow: var(--shadow);
}
.side-panel p { color: #dbe7d2; }
.feature-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(5,17,13,.9);
}
.lightbox.open { display: grid; }
.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  border: 4px solid var(--paper);
}
.lightbox button {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border: 1px solid var(--white);
  background: var(--green-900);
  color: var(--white);
  font-size: 1.1rem;
}

.site-footer {
  background:
    linear-gradient(90deg, rgba(120,169,65,.08), transparent 38%),
    #061812;
  color: var(--white);
  padding: 2.6rem 1rem;
}
.footer-wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, .65fr) minmax(220px, .75fr);
  gap: 2rem;
  align-items: start;
}
.footer-brand {
  display: grid;
  gap: .55rem;
  justify-items: start;
}
.footer-logo {
  width: 88px;
  height: 88px;
  padding: .5rem;
  border-radius: 6px;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}
.footer-brand p,
.footer-list,
.footer-contact {
  margin: 0;
  color: #dce8d5;
}
.footer-heading {
  margin: 0 0 .75rem;
  color: #b8dc62;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .82rem;
}
.footer-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .42rem;
}
.footer-list a:hover,
.footer-contact a:hover { color: #b8dc62; }
.footer-contact {
  display: grid;
  gap: .55rem;
}
.footer-contact a,
.footer-contact span {
  overflow-wrap: anywhere;
}
.footer-contact i {
  width: 1.25rem;
  color: #b8dc62;
}
.footer-bottom {
  width: min(var(--max), 100%);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #c9d8ce;
  font-size: .92rem;
  text-align: center;
}
.socials {
  display: flex;
  gap: .6rem;
  margin-top: .9rem;
}
.socials a,
.whatsapp {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
}
.socials a:hover {
  background: var(--grass);
  color: var(--green-900);
}
.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  border: 0;
  background: #168d4b;
  box-shadow: 0 12px 26px rgba(0,0,0,.24);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .75s ease,
    transform .75s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .reveal:nth-child(2) { transition-delay: .06s; }
.js .reveal:nth-child(3) { transition-delay: .12s; }
.js .reveal:nth-child(4) { transition-delay: .18s; }
.js .reveal:nth-child(5) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

@media (max-width: 960px) {
  .nav-wrap { grid-template-columns: auto auto; }
  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.28);
    background: transparent;
    color: var(--white);
  }
  .nav-menu,
  .header-phone { display: none; }
  .nav-menu.open {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    background: #08271e;
    padding: .6rem;
  }
  .hero,
  .hero-content { min-height: 700px; }
  .hero-content,
  .section-head,
  .about-grid,
  .contact-grid,
  .content-grid,
  .footer-wrap,
  .payment-wrap {
    grid-template-columns: 1fr;
  }
  .about-grid {
    height: auto;
  }
  .about-photo {
    height: 360px;
    max-height: 360px;
  }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
  .about-copy { justify-self: start; max-width: none; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .side-panel { position: static; }
}

@media (max-width: 560px) {
  .brand { grid-template-columns: 46px auto; font-size: .92rem; }
  .brand-logo { width: 46px; height: 46px; }
  .brand small { letter-spacing: .18em; }
  .hero,
  .hero-content { min-height: 760px; }
  .hero-content { padding: 3rem 0 2.4rem; }
  .hero h1 {
    font-size: clamp(2.7rem, 13.5vw, 3.65rem);
    line-height: .98;
  }
  .hero-proof,
  .services-grid,
  .gallery-strip,
  .gallery-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}
