:root {
  --bg: #f5f2eb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --surface-soft: #f8f7f3;
  --text: #17251d;
  --muted: #59685f;
  --line: rgba(23, 37, 29, 0.12);
  --primary: #1d5b39;
  --primary-dark: #15462b;
  --accent: #9c8450;
  --shadow-sm: 0 10px 30px rgba(12, 24, 17, 0.08);
  --shadow-md: 0 18px 45px rgba(12, 24, 17, 0.12);
  --shadow-lg: 0 28px 60px rgba(12, 24, 17, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1200px;
  --header-h: 88px;
  --transition: 240ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(29, 91, 57, 0.06), transparent 30%),
    linear-gradient(180deg, #f6f3ed 0%, #f1eee8 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
strong { color: var(--text); }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 12px; top: -52px; background: #fff; color: var(--text); padding: 10px 14px;
  border-radius: 12px; box-shadow: var(--shadow-sm); z-index: 2000;
}
.skip-link:focus { top: 12px; }

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1, h2, h3 { margin: 0 0 14px; line-height: 1.06; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 18px; color: var(--muted); font-size: 1.04rem; }
.lead { font-size: clamp(1.08rem, 1.9vw, 1.28rem); color: #45554b; }
.section { padding: 92px 0; }
.section--intro { padding-top: 80px; }
.section--trust { padding-top: 70px; }
.section--contact { padding-bottom: 120px; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head--compact { margin-bottom: 28px; }

.site-header {
  position: sticky; top: 0; z-index: 1200;
  background: rgba(245, 242, 235, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 37, 29, 0.08);
}
.site-header__inner {
  min-height: var(--header-h); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand img {
  width: 58px; height: 58px; object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(29, 91, 57, 0.14));
}
.brand__text { display: inline-flex; flex-direction: column; }
.brand__text strong { font-size: 1.15rem; }
.brand__text span { color: var(--muted); font-size: 0.95rem; }
.site-nav {
  display: flex; justify-content: center; gap: 28px; align-items: center;
}
.site-nav a {
  position: relative; font-weight: 650; color: #5c685f; padding: 6px 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; border-radius: 999px;
  background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { font-weight: 750; white-space: nowrap; }
.nav-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--line); background: rgba(255,255,255,0.8);
  border-radius: 14px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--text); transition: transform var(--transition), opacity var(--transition); }

.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px;
  border-radius: 999px; border: 1px solid transparent; font-weight: 750;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; box-shadow: 0 14px 28px rgba(21, 70, 43, 0.22); }
.button--primary:hover { box-shadow: 0 18px 34px rgba(21, 70, 43, 0.28); }
.button--secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.22); backdrop-filter: blur(12px); }
.button--secondary:hover { background: rgba(255,255,255,0.18); }
.button--ghost { background: rgba(29, 91, 57, 0.08); color: var(--primary); border-color: rgba(29, 91, 57, 0.14); }
.button--ghost:hover { background: rgba(29, 91, 57, 0.12); }

.hero {
  position: relative;
  padding: 52px 0 30px;
  background:
    radial-gradient(circle at top left, rgba(201, 220, 204, 0.55) 0%, rgba(245,242,235,0) 38%),
    linear-gradient(180deg, #f5f2eb 0%, #f8f5ef 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 36px 0;
}
.hero__lead {
  max-width: 18ch;
  font-size: clamp(1.25rem, 3vw, 2.05rem);
  color: var(--text);
}
.hero p { max-width: 58ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 0; list-style: none; }
.hero__facts li {
  padding: 10px 16px; border-radius: 999px;
  background: rgba(29,91,57,0.08);
  border: 1px solid rgba(29,91,57,0.13);
  color: var(--primary);
  font-weight: 680;
}
.hero__visual {
  position: relative;
}
.hero__frame {
  position: relative;
  overflow: hidden;
  border-radius: min(34px, 4vw);
  aspect-ratio: 5 / 4;
  background: #dfe5dd;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(23,37,29,0.08);
}
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,16,12,0.02) 0%, rgba(10,16,12,0.18) 100%);
  pointer-events: none;
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero__badge {
  position: absolute;
  left: -22px;
  bottom: 24px;
  display: inline-grid;
  gap: 4px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(23,37,29,0.08);
  box-shadow: var(--shadow-md);
  border-radius: 20px;
}
.hero__badge strong { font-size: 1rem; }
.hero__badge span { color: var(--muted); font-size: 0.92rem; }
.hero__ghost {
  background: #fff;
  color: var(--text);
  border-color: rgba(23,37,29,0.1);
}
.hero__ghost:hover { background: #fff; border-color: rgba(29,91,57,0.18); }

.intro-grid, .trust-grid, .about-box, .contact-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; align-items: start;
}
.intro-cards { display: grid; gap: 16px; }
.info-card, .service-card, .contact-card, .contact-side__box {
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.98) 100%);
  border: 1px solid rgba(23, 37, 29, 0.08); box-shadow: var(--shadow-sm); border-radius: var(--radius-md);
}
.info-card { padding: 24px; }
.card-hover { transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(29,91,57,0.16); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px;
}
.service-card { overflow: hidden; }
.service-card__image {
  aspect-ratio: 16/11; overflow: hidden; background: #e9ece8;
}
.service-card__image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  transition: transform 700ms ease;
}
.service-card:hover .service-card__image img { transform: scale(1.05); }
.service-card__body { padding: 24px; }

.checks { display: grid; gap: 16px; }
.check-item {
  display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: start;
  padding: 22px; border-radius: var(--radius-md); background: rgba(255,255,255,0.92); border: 1px solid rgba(23,37,29,0.08); box-shadow: var(--shadow-sm);
}
.check-item span {
  width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px;
  background: rgba(29,91,57,0.1); color: var(--primary); font-weight: 800;
}
.check-item p { margin-top: 6px; }

.region-box {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center;
  padding: 34px; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(250,248,244,0.95) 100%);
  border: 1px solid rgba(23,37,29,0.08); box-shadow: var(--shadow-md);
}
.region-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start; }
.region-tags span {
  min-height: 46px; padding: 0 16px; display: inline-flex; align-items: center; border-radius: 999px;
  background: rgba(29,91,57,0.08); color: var(--primary); border: 1px solid rgba(29,91,57,0.15); font-weight: 750;
}

.gallery-grid {
  display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-auto-rows: 260px; gap: 16px;
}
.gallery-item {
  margin: 0; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-sm); position: relative;
}
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.22) 100%);
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms ease; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--large { grid-row: span 2; }

.about-box__image {
  overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); min-height: 100%;
}
.about-box__image img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; }
.about-box__content { padding-top: 18px; }
.about-box__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.faq-layout { display: grid; gap: 18px; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: rgba(255,255,255,0.95); border: 1px solid rgba(23,37,29,0.08); border-radius: 20px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-item summary {
  list-style: none; padding: 22px 24px; cursor: pointer; font-weight: 720; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--primary);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item div { padding: 0 24px 22px; }

.contact-panel, .contact-side {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(250,248,244,0.96) 100%);
  border: 1px solid rgba(23,37,29,0.08); box-shadow: var(--shadow-md); border-radius: var(--radius-lg); padding: 30px;
}
.contact-cards { display: grid; gap: 16px; margin-top: 24px; }
.contact-card {
  display: grid; gap: 6px; padding: 18px 20px;
}
.contact-card span, .contact-card small { color: var(--muted); }
.contact-card strong { font-size: 1.15rem; }
.contact-side { display: grid; gap: 16px; }
.contact-side__box { padding: 22px; }
.contact-side__box h3 { margin-bottom: 8px; }
.contact-side__box p { margin-bottom: 0; }

.site-footer {
  padding: 34px 0 100px; background: #14211a; color: rgba(255,255,255,0.86);
}
.site-footer__inner { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.site-footer p { color: rgba(255,255,255,0.72); margin-top: 6px; margin-bottom: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: rgba(255,255,255,0.84); }
.footer-links a:hover { color: #fff; }

.floating-actions {
  position: fixed; right: 16px; bottom: 16px; display: flex; flex-direction: column; gap: 10px; z-index: 1300;
}
.floating-actions a {
  min-width: 150px; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 760;
  box-shadow: var(--shadow-md); transition: transform var(--transition), box-shadow var(--transition);
}
.floating-actions a:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.floating-actions__call { background: #20382a; color: #fff; }
.floating-actions__whatsapp { background: #25D366; color: #fff; }

.legal-page { padding: 80px 0; }
.legal-card {
  max-width: 920px; margin: 0 auto; padding: 36px; background: rgba(255,255,255,0.96); border: 1px solid rgba(23,37,29,0.08);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.legal-card h1 { font-size: clamp(2rem, 4vw, 3rem); }
.legal-card h2 { font-size: 1.3rem; margin-top: 30px; }
.legal-card ul { padding-left: 20px; }
.legal-card li, .legal-card p { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-header__inner { grid-template-columns: auto auto auto; }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-item--large { grid-row: span 1; }
  .intro-grid, .trust-grid, .about-box, .contact-grid, .region-box { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  :root { --header-h: 76px; }
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding: 12px 0;
  }
  .brand__text strong { font-size: 1.05rem; }
  .brand__text span { font-size: 0.88rem; }
  .nav-toggle { display: inline-flex; justify-self: end; order: 3; }
  .site-nav {
    position: absolute; top: calc(100% + 8px); left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; gap: 6px;
    background: rgba(255,255,255,0.98); border: 1px solid rgba(23,37,29,0.08); box-shadow: var(--shadow-md); border-radius: 20px; padding: 12px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; border-radius: 14px; }
  .site-nav a:hover { background: rgba(29,91,57,0.06); }
  .site-nav a::after { display: none; }
  .header-actions { justify-self: end; }
  .header-phone { display: none; }
  .hero { padding: 32px 0 18px; }
  .hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .hero__content { order: 2; padding: 0; max-width: none; }
  .hero__visual { order: 1; }
  .hero__lead { max-width: none; }
  .hero__badge { left: 16px; bottom: 16px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 22px, var(--container)); }
  .section { padding: 74px 0; }
  .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 240px; }
  .hero__actions, .about-box__cta { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero__facts { gap: 10px; }
  .hero__facts li { width: fit-content; }
  .hero__frame { aspect-ratio: 4 / 3; }
  .hero__badge { position: static; margin-top: 14px; }
  .contact-panel, .contact-side, .legal-card, .region-box { padding: 24px; }
  .about-box__image img { min-height: 360px; }
}

@media (max-width: 560px) {
  .brand { gap: 10px; }
  .brand img { width: 50px; height: 50px; }
  .brand__text span { display: none; }
  .brand__text strong { font-size: 0.98rem; }
  .header-actions .button { min-height: 46px; padding: 0 16px; }
  .hero__frame { aspect-ratio: 1 / 1; border-radius: 26px; }
  .hero__content h1 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .floating-actions { left: 12px; right: 12px; bottom: 12px; }
  .floating-actions a { min-width: 0; width: 100%; }
  .site-footer { padding-bottom: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
