:root {
  --forest: #1d5f2a;
  --forest-dark: #143f1d;
  --forest-soft: #2e7b39;
  --cream: #f4edd7;
  --sand: #d8c296;
  --text: #182118;
  --muted: #5c655c;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(9, 22, 11, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fbfaf5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1150px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(251, 250, 245, 0.88);
  border-bottom: 1px solid rgba(20, 63, 29, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.brand strong {
  display: block;
  font-size: 1rem;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
}

.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.main-nav a {
  font-weight: 600;
  color: var(--forest-dark);
}

.lang-switch {
  display: flex;
  gap: 8px;
}
.lang-btn {
  border: 1px solid rgba(20, 63, 29, 0.15);
  background: #fff;
  color: var(--forest-dark);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
}
.lang-btn.active {
  background: var(--forest);
  color: white;
}

.hero {
  min-height: 86vh;
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: center;
}
.hero-content {
  padding: 90px 0 80px;
  color: white;
  max-width: 760px;
}
.eyebrow, .section-tag {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: .78rem;
}
.hero h1, h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.04;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  margin: 14px 0 18px;
}
.hero-text {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 650px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--forest);
  color: white;
}
.btn-secondary {
  background: rgba(255,255,255,.14);
  color: white;
  border: 1px solid rgba(255,255,255,.35);
}

.section {
  padding: 86px 0;
}
.alt-bg {
  background: linear-gradient(180deg, #f3f6ed 0%, #fbfaf5 100%);
}
.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}
.intro-card {
  margin-top: -44px;
  position: relative;
  z-index: 2;
}
.intro-card .grid-two {
  background: white;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 36px;
}
.highlight-box {
  background: linear-gradient(160deg, var(--forest-dark), var(--forest));
  border-radius: 24px;
  padding: 28px;
  color: white;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.mini-grid article {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 18px;
}
.mini-grid strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-heading h2, .grid-two h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 12px 0 16px;
}
.section-heading p, .grid-two p {
  color: var(--muted);
  line-height: 1.8;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.feature-card, .social-card {
  background: white;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.feature-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.feature-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.gallery-item {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.video-wrap { align-items: stretch; }
.video-frame,
.map-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}
.video-frame iframe,
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.social-card {
  border: 1px solid rgba(29,95,42,.08);
}
.social-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}
.social-card strong {
  color: var(--forest-dark);
  font-size: 1.1rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.contact-list a {
  color: var(--forest);
  font-weight: 700;
}
.contact-form {
  display: grid;
  gap: 16px;
  background: white;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form span { font-weight: 700; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(20,63,29,.12);
  background: #fcfcf8;
}

.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,.94);
  padding: 24px 0;
}
.footer-inner {
  text-align: center;
}
.footer-inner a { color: var(--cream); }

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 10px;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  padding: 14px 18px;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.float-btn.whatsapp { background: #20b455; }
.float-btn.call { background: var(--forest); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 8, .9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 60;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1000px, 100%);
  max-height: 86vh;
  border-radius: 18px;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav-wrap,
  .grid-two,
  .cards-grid,
  .gallery-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }
  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .main-nav {
    width: 100%;
  }
  .cards-grid { display: grid; }
  .gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .hero-content { padding: 72px 0 62px; }
  .hero h1 { font-size: 2.35rem; }
  .section { padding: 68px 0; }
  .intro-card .grid-two,
  .contact-form,
  .feature-card,
  .social-card { padding: 22px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .float-btn { min-width: 112px; padding: 12px 14px; }
}
