:root {
  --green-900: #1d5c41;
  --green-800: #2b6d4c;
  --green-700: #3b7f5b;
  --green-100: #eef6f0;
  --gold-500: #c3ae57;
  --gold-300: #dccb89;
  --cream: #fcfbf7;
  --text: #193126;
  --muted: #62756a;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(14, 46, 33, 0.13);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.skip-link {
  position: absolute; left: -9999px; top: auto;
}
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 999;
  background: var(--white); padding: .7rem 1rem; border-radius: 12px;
}
.container { width: min(100% - 2rem, var(--container)); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.soft-bg { background: linear-gradient(180deg, #f7fbf8 0%, #eef6f0 100%); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252, 251, 247, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(29, 92, 65, 0.08);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 82px; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .9rem; min-width: 0; }
.brand-logo {
  width: 58px; height: 58px; object-fit: cover; border-radius: 50%;
  border: 3px solid rgba(195, 174, 87, 0.4);
}
.brand-title { display: block; font-weight: 800; letter-spacing: .02em; }
.brand-subtitle { display: block; font-size: .92rem; color: var(--muted); }
.site-nav { display: flex; align-items: center; gap: 1.2rem; }
.site-nav a { color: var(--text); font-weight: 600; }
.menu-toggle {
  display: none; border: 0; background: var(--green-900); color: white;
  width: 46px; height: 46px; border-radius: 14px; font-size: 1.2rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.35rem; border-radius: 999px; font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--green-900), var(--green-700)); color: var(--white); box-shadow: var(--shadow); }
.btn-secondary { background: var(--white); color: var(--green-900); border: 1px solid rgba(29, 92, 65, 0.12); }
.btn-nav { padding: .8rem 1.1rem; background: var(--green-100); }
.btn-block { width: 100%; }

.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg, .hero-overlay {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(14, 33, 24, 0.82) 0%, rgba(14, 33, 24, 0.64) 38%, rgba(14, 33, 24, 0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: end;
  padding: 6rem 0;
}
.hero-copy { color: var(--white); max-width: 700px; }
.eyebrow {
  display: inline-block; padding: .45rem .8rem; border-radius: 999px;
  background: rgba(255,255,255,.14); color: #eff8ef; backdrop-filter: blur(10px);
  margin-bottom: 1rem; font-size: .95rem; font-weight: 700;
}
.hero h1 {
  margin: 0 0 1rem; font-size: clamp(2.7rem, 6vw, 5rem); line-height: .96;
  letter-spacing: -.04em;
}
.hero h1 span { display: block; color: #d9f0de; }
.hero p { font-size: 1.08rem; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.5rem; }
.glass {
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(18px); box-shadow: var(--shadow);
}
.hero-card {
  color: var(--white); padding: 1rem; border-radius: var(--radius-xl);
  align-self: end; display: flex; align-items: center; gap: 1rem; max-width: 360px; justify-self: end;
}
.hero-card img {
  width: 88px; height: 88px; border-radius: 20px; object-fit: cover;
  border: 2px solid rgba(255,255,255,.5);
}
.hero-card h2 { margin: 0 0 .2rem; font-size: 1.1rem; }
.hero-card p { margin: 0; font-size: .95rem; }

.intro-strip { margin-top: -2.5rem; position: relative; z-index: 5; }
.intro-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.intro-grid article {
  background: var(--white); border-radius: var(--radius-xl); padding: 1.4rem;
  box-shadow: var(--shadow);
}
.intro-grid strong { display: block; margin-bottom: .4rem; color: var(--green-900); }
.intro-grid p { margin: 0; color: var(--muted); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.image-stack { position: relative; }
.main-image {
  border-radius: 32px; box-shadow: var(--shadow); aspect-ratio: 1 / 1; object-fit: cover; width: 100%;
}
.floating-badge {
  position: absolute; right: -2rem; bottom: -2rem; width: 190px; border-radius: 50%;
  box-shadow: 0 12px 28px rgba(29, 92, 65, 0.18); background: var(--white); padding: .35rem;
}
.section-tag {
  display: inline-block; color: var(--green-800); font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; font-size: .82rem; margin-bottom: .9rem;
}
.section-copy h2, .section-heading h2 {
  margin: 0 0 1rem; font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05;
}
.section-copy p, .section-heading p { color: var(--muted); }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; margin-top: 1.5rem;
}
.stat-card {
  background: var(--white); border: 1px solid rgba(29,92,65,.08); padding: 1rem; border-radius: var(--radius-lg);
}
.stat-number { display: block; font-weight: 800; color: var(--green-900); font-size: 1.15rem; }
.stat-label { display: block; color: var(--muted); font-size: .92rem; }

.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.info-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 1.6rem;
  box-shadow: var(--shadow); border-top: 5px solid var(--gold-500);
}
.info-card h3 { margin-top: 0; color: var(--green-900); }
.info-card p { margin-bottom: 0; color: var(--muted); }

.callout-grid, .video-grid, .contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.highlight-card {
  background: var(--white); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow);
}
.highlight-card img { width: 100%; aspect-ratio: 1.1 / 1; object-fit: cover; }
.highlight-card-body { padding: 1.4rem; }
.highlight-card h3 { margin-top: 0; }
.check-list {
  padding: 0; list-style: none; display: grid; gap: .7rem; margin: 1.4rem 0 0;
}
.check-list li {
  padding-left: 1.6rem; position: relative; font-weight: 600;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--green-700); font-weight: 800;
}

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

.video-frame {
  position: relative; padding-top: 177.78%; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow);
}
.video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

.social-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.social-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 1.4rem;
  box-shadow: var(--shadow); min-height: 145px; display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(29, 92, 65, 0.06);
}
.social-card span { color: var(--muted); }
.social-card strong { font-size: 1.05rem; color: var(--green-900); }

.contact-list { display: grid; gap: .7rem; margin-top: 1.4rem; }
.contact-list a, .contact-list span {
  font-size: 1.08rem; font-weight: 600; color: var(--green-900);
}
.contact-form {
  background: var(--white); border-radius: 28px; padding: 1.6rem; box-shadow: var(--shadow);
  display: grid; gap: 1rem;
}
.contact-form label { display: grid; gap: .45rem; font-weight: 600; color: var(--text); }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(29, 92, 65, 0.16); border-radius: 16px; padding: .95rem 1rem;
  background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid rgba(195,174,87,.45); border-color: var(--gold-500);
}
.hidden-field { display: none; }
.form-note { margin: 0; font-size: .92rem; color: var(--muted); }

.whatsapp-float {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 60; width: 62px; height: 62px;
  display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
  background: linear-gradient(135deg, #1bd741, #0faa30); box-shadow: 0 12px 28px rgba(17, 107, 42, 0.35);
}
.whatsapp-float svg { width: 32px; fill: #fff; }

.lightbox {
  position: fixed; inset: 0; background: rgba(10, 18, 14, 0.82); display: grid; place-items: center;
  padding: 2rem; opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 90;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(94vw, 980px); max-height: 86vh; border-radius: 24px; box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.14); color: white; font-size: 2rem; cursor: pointer;
}

.site-footer {
  padding: 1.3rem 0 2rem; background: #123526; color: rgba(255,255,255,.9);
}
.footer-content { text-align: center; }
.footer-content a { color: #d9f0de; }

.fade-up {
  opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 980px) {
  .hero-content, .two-col, .callout-grid, .video-grid, .contact-grid, .cards-grid, .gallery-grid, .social-grid, .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero { min-height: auto; }
  .hero-content { align-items: center; }
  .floating-badge { width: 150px; right: -1rem; bottom: -1rem; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    position: absolute; top: calc(100% + .7rem); right: 1rem; left: 1rem; background: var(--white);
    border-radius: 20px; box-shadow: var(--shadow); padding: 1rem; flex-direction: column; align-items: stretch;
    opacity: 0; pointer-events: none; transform: translateY(-8px); transition: .25s ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .hero-content, .two-col, .callout-grid, .video-grid, .contact-grid,
  .cards-grid, .gallery-grid, .social-grid, .intro-grid, .stats {
    grid-template-columns: 1fr;
  }
  .hero-content { padding: 5rem 0 4rem; }
  .hero-overlay { background: linear-gradient(180deg, rgba(14, 33, 24, 0.8) 0%, rgba(14, 33, 24, 0.65) 45%, rgba(14, 33, 24, 0.48) 100%); }
  .hero-card { justify-self: start; max-width: 100%; }
  .intro-strip { margin-top: 0; padding-top: 1rem; }
  .section { padding: 4.2rem 0; }
  .floating-badge { position: static; width: 140px; margin-top: -2rem; margin-left: auto; }
}
