
:root {
  --green: #0d5f3d;
  --green-2: #138a55;
  --dark: #0d1f18;
  --gold: #d5b45b;
  --bg: #f7f6f1;
  --white: #ffffff;
  --text: #22342c;
  --muted: #60756a;
  --line: rgba(13,95,61,.12);
  --shadow: 0 18px 40px rgba(8, 35, 24, .08);
  --radius: 22px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfaf6 0%, #f4f2eb 100%);
  line-height: 1.65;
}
img { max-width: 100%; display: block; border-radius: 18px; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.narrow { width: min(calc(100% - 32px), 840px); margin: 0 auto; }
.skip-link {
  position: absolute; left: -9999px; top: auto;
}
.skip-link:focus {
  left: 12px; top: 12px; background: #fff; padding: 10px 14px; z-index: 1000; border-radius: 12px;
}
.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px);
  background: rgba(247,246,241,.88); border-bottom: 1px solid var(--line);
}
.header-wrap { display:flex; align-items:center; justify-content:space-between; gap:18px; min-height: 82px; }
.brand { display:flex; align-items:center; gap:12px; color: var(--dark); text-decoration:none; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  color: #fff; display:grid; place-items:center; font-weight:800; letter-spacing:.04em;
  box-shadow: var(--shadow);
}
.brand-text strong { display:block; font-size: 1rem; }
.brand-text small { color: var(--muted); }
.site-nav { display:flex; align-items:center; gap:18px; }
.site-nav a { color: var(--dark); font-weight: 600; font-size: .96rem; }
.site-nav .nav-cta {
  padding: 12px 16px; border-radius: 999px; background: var(--green); color:#fff;
}
.menu-toggle {
  display:none; border:none; background: var(--green); color:#fff; border-radius: 999px;
  padding: 10px 14px; font-weight:700;
}

.hero {
  padding: 72px 0 32px;
  background:
    radial-gradient(circle at top right, rgba(213,180,91,.18), transparent 30%),
    radial-gradient(circle at top left, rgba(19,138,85,.14), transparent 28%);
}
.hero-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap: 36px; align-items:center; }
.hero-copy h1, .inner-hero h1 { font-size: clamp(2.2rem, 4vw, 4.3rem); line-height: 1.06; letter-spacing:-.03em; margin: 10px 0 18px; color: var(--dark); }
.lead { font-size: 1.14rem; color: #355046; max-width: 70ch; }
.eyebrow {
  display:inline-flex; align-items:center; gap:8px; padding: 8px 14px;
  background: rgba(19,138,85,.08); border:1px solid rgba(19,138,85,.16); color: var(--green);
  border-radius: 999px; font-size: .84rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.hero-actions, .center { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.hero-actions { margin: 28px 0 18px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 800; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration:none;
}
.btn:hover { transform: translateY(-2px); text-decoration:none; box-shadow: var(--shadow); }
.btn-primary { background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%); color:#fff; }
.btn-secondary { background: #fff; color: var(--dark); border-color: var(--line); }
.btn-block { width:100%; }
.trust-points {
  list-style:none; padding:0; margin: 14px 0 0; display:grid; gap:10px;
}
.trust-points li::before { content:"•"; color: var(--gold); margin-right: 8px; }
.card, .media-card, .cta-box, .city-grid li a, .story-card {
  background: rgba(255,255,255,.86); border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.card { padding: 24px; }
.card h3, .story-card h3 { margin-top:0; margin-bottom:10px; font-size: 1.2rem; color: var(--dark); }
.card p, .story-card p { margin:0; color: #4d6158; }
.card-media img, .media-card img, .story-card img { width:100%; height:auto; }
.card-media.large img { min-height: 320px; object-fit: cover; }
.section { padding: 78px 0; }
.section-alt { background: rgba(13,95,61,.035); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-head { margin-bottom: 26px; }
.section-head h2 { font-size: clamp(1.7rem, 2.4vw, 2.8rem); line-height: 1.15; letter-spacing:-.02em; margin: 12px 0 0; color: var(--dark); }
.grid { display:grid; gap:20px; }
.grid.two { grid-template-columns: repeat(2,1fr); }
.grid.three { grid-template-columns: repeat(3,1fr); }
.grid.four { grid-template-columns: repeat(4,1fr); }
.grid.two.compact .card, .grid.four .card { min-height: 100%; }
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items:center; }
.stack { display:grid; gap:20px; }
.media-card { overflow:hidden; }
.media-card-copy { padding: 20px; }
.media-card-copy h3 { margin:0 0 8px; color: var(--dark); }
.media-card-copy p { margin:0; color:#50665d; }
.tag-cloud { display:flex; flex-wrap:wrap; gap:12px; }
.tag-cloud span {
  background: #fff; border:1px solid var(--line); border-radius:999px; padding: 10px 14px; font-weight: 700; color:#345247;
}
.section-note { margin-top: 18px; color: var(--muted); }
.check-list { padding-left: 20px; }
.check-list li { margin-bottom: 10px; }
.icon-card .icon {
  width: 42px; height: 42px; border-radius: 12px; background: rgba(213,180,91,.18); color: var(--green);
  display:grid; place-items:center; font-weight:800; margin-bottom: 14px;
}
.cities-layout { display:grid; gap:18px; }
.city-grid {
  list-style:none; padding:0; margin:0;
  display:grid; grid-template-columns: repeat(5,1fr); gap:16px;
}
.city-grid li a {
  display:flex; flex-direction:column; gap:8px; height:100%; padding:18px; color:inherit; text-decoration:none;
}
.city-grid li a strong { color: var(--dark); }
.city-grid li a span { color: #537066; font-size:.95rem; }
.city-inline-links { display:flex; flex-wrap:wrap; gap:12px; padding:0; list-style:none; }
.city-inline-links li a { display:inline-block; background:#fff; border:1px solid var(--line); padding: 10px 14px; border-radius:999px; }
.cta-band {
  margin-top: 22px; padding: 20px 24px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--dark) 0%, #14392a 100%); color:#fff;
  display:flex; gap:18px; justify-content:space-between; align-items:center; flex-wrap:wrap;
}
.story-card { overflow:hidden; }
.story-card h3, .story-card p { padding: 0 18px; }
.story-card h3 { margin: 18px 0 8px; }
.story-card p { margin:0 0 18px; }
.faq-list { display:grid; gap:14px; }
.faq-list details {
  background:#fff; border:1px solid var(--line); border-radius:18px; padding: 16px 18px;
}
.faq-list summary { cursor:pointer; font-weight:800; color: var(--dark); }
.faq-list p { color:#50665d; }
.inner-hero {
  padding: 68px 0 30px;
  background: linear-gradient(180deg, rgba(19,138,85,.08) 0%, rgba(255,255,255,0) 100%);
  border-bottom:1px solid var(--line);
}
.breadcrumb {
  margin-top: 18px; display:flex; gap:10px; flex-wrap:wrap; color: var(--muted); font-size:.95rem;
}
.site-footer {
  margin-top: 0; background: #10241b; color:#e9f0eb;
}
.footer-grid {
  padding: 58px 0 30px; display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:28px;
}
.site-footer h3 { color:#fff; margin-top:0; }
.site-footer a { color:#cde9dc; }
.footer-list { list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.small { font-size:.95rem; color:#bdd2c7; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); }
.footer-bottom-wrap { min-height:62px; display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; }
.cta-final {
  background: linear-gradient(135deg, rgba(213,180,91,.10) 0%, rgba(19,138,85,.08) 100%);
}
.cta-final-wrap {
  display:grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items:center;
}
.cta-box { padding: 22px; }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  padding: 14px 18px; border-radius: 999px; background: #18b960; color:#fff; font-weight:800; box-shadow: var(--shadow);
}
.whatsapp-float:hover { text-decoration:none; }
.center { justify-content:center; margin-top: 24px; }
@media (max-width: 1080px) {
  .grid.four { grid-template-columns: repeat(2,1fr); }
  .city-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid, .cta-final-wrap, .hero-grid, .split { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .site-nav {
    position:absolute; top:82px; left:0; right:0; background: rgba(247,246,241,.98);
    display:none; flex-direction:column; align-items:flex-start; padding: 18px 16px; border-bottom:1px solid var(--line);
  }
  .site-nav.is-open { display:flex; }
  .menu-toggle { display:inline-flex; }
  .grid.three, .grid.two { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .section { padding: 58px 0; }
  .city-grid { grid-template-columns: 1fr; }
  .grid.four { grid-template-columns: 1fr; }
  .hero-copy h1, .inner-hero h1 { font-size: 2rem; }
  .brand-text small { display:none; }
}


.brand-logo-wrap { background: #fff; border: 1px solid var(--line); overflow: hidden; }
.brand-logo { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.hero-gallery { display:grid; grid-template-columns: 1.25fr .75fr; gap: 14px; align-items: stretch; }
.hero-gallery figure { margin:0; }
.hero-gallery-main img, .hero-gallery-side img { width:100%; height:100%; object-fit: cover; }
.hero-gallery-main img { min-height: 510px; }
.hero-gallery-side { display:grid; gap:14px; grid-template-rows: repeat(3, 1fr); }
.visual-proof .gallery-grid { display:grid; grid-template-columns: 1.1fr 1fr 1fr; gap:18px; }
.gallery-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); margin:0; }
.gallery-card img { width:100%; height:100%; object-fit: cover; }
.gallery-card figcaption { padding: 14px 16px; color:#4d6158; font-weight:600; }
.gallery-tall { grid-row: span 2; }
.gallery-tall img { min-height: 520px; }
.gallery-wide { grid-column: span 2; }
.gallery-wide img { min-height: 260px; }
.compact-gallery { grid-template-columns: repeat(3, 1fr) !important; }
.compact-gallery .gallery-card img { min-height: 260px; }
@media (max-width:1080px) {
  .hero-gallery, .visual-proof .gallery-grid { grid-template-columns: 1fr; }
  .hero-gallery-side { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; }
  .gallery-tall, .gallery-wide { grid-row:auto; grid-column:auto; }
  .compact-gallery { grid-template-columns: 1fr !important; }
}
@media (max-width:820px) {
  .hero-gallery-side { grid-template-columns: 1fr; }
  .hero-gallery-main img { min-height: 340px; }
  .gallery-tall img, .gallery-wide img, .compact-gallery .gallery-card img { min-height: 220px; }
}
