:root {
  --olive: #9ea326;
  --olive-dark: #7f861f;
  --charcoal: #171717;
  --soft-black: #252525;
  --cream: #f7f6f1;
  --white: #ffffff;
  --muted: #5f5f5f;
  --border: rgba(0,0,0,.08);
  --shadow: 0 18px 45px rgba(0,0,0,.12);
  --radius: 24px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--soft-black);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,.88);
  font-size: .92rem;
}
.topbar__inner {
  min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand img { width: 170px; border-radius: 12px; }
.nav { display: flex; gap: 1.25rem; align-items: center; }
.nav a { font-weight: 600; font-size: .95rem; position: relative; }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--olive); transition: .3s ease;
}
.nav a:hover::after { width: 100%; }
.menu-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--border); background: var(--white);
  border-radius: 14px; cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.menu-toggle span { display: block; width: 21px; height: 2px; background: var(--charcoal); }
.hero {
  position: relative; min-height: clamp(560px, 78vh, 760px); display: flex; align-items: center; overflow: hidden;
}
.hero__bg, .hero__overlay {
  position: absolute; inset: 0;
}
.hero__bg {
  background-size: cover; background-position: center center; transform: scale(1.05);
}
.hero__overlay {
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.46) 40%, rgba(0,0,0,.2) 100%);
}
.hero__content {
  position: relative; z-index: 1; color: var(--white); max-width: 720px; padding: 4rem 0;
}
.eyebrow, .section-tag {
  display: inline-block; letter-spacing: .22em; text-transform: uppercase; font-size: .78rem; font-weight: 700; color: var(--olive);
}
.hero h1, .section h2 {
  font-family: 'Cormorant Garamond', serif; line-height: .95; margin: .9rem 0 1rem;
}
.hero h1 { font-size: clamp(3.1rem, 6vw, 6rem); text-wrap: balance; }
.hero p {
  font-size: clamp(1.02rem, 1.8vw, 1.15rem); line-height: 1.8; max-width: 640px; color: rgba(255,255,255,.92);
}
.hero__actions, .social-grid, .cards, .check-list { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 1.35rem; border-radius: 999px;
  font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--olive); color: var(--white); box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--olive-dark); }
.btn--secondary { background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn--full { width: 100%; }
.section { padding: 6rem 0; }
.section--accent { background: var(--cream); }
.grid-2 {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center;
}
.grid-2--reverse { grid-template-columns: .95fr 1.05fr; }
.section h2 { font-size: clamp(2.5rem, 4vw, 4.25rem); color: var(--charcoal); }
.section p { color: var(--muted); line-height: 1.85; }
.card-image img, .video-card iframe, .map-card iframe {
  width: 100%; border: 0; border-radius: var(--radius); box-shadow: var(--shadow);
}
.card-image img { min-height: 540px; object-fit: cover; }
.check-list div {
  padding: .95rem 1.15rem; border-radius: 999px; background: rgba(158,163,38,.1); color: var(--charcoal); font-weight: 600;
}
.section-heading { text-align: center; max-width: 780px; margin: 0 auto 2.2rem; }
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem;
}
.feature-card, .contact-card, .map-card, .social-card {
  background: var(--white); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.feature-card h3 { margin: 1rem 0 .7rem; font-size: 1.2rem; }
.icon-circle {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(158,163,38,.12); color: var(--olive-dark); font-weight: 800;
}
.gallery {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.gallery__item {
  padding: 0; border: none; border-radius: 22px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); cursor: pointer;
}
.gallery__item img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .35s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.video-card iframe { min-height: 480px; }
.social-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
}
.social-card {
  display: flex; align-items: center; gap: 1rem; transition: transform .25s ease;
}
.social-card:hover { transform: translateY(-3px); }
.social-card__icon {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; font-weight: 800;
  background: var(--charcoal); color: var(--white);
}
.social-card strong, .social-card span { display: block; }
.social-card span:last-child { color: var(--muted); margin-top: .2rem; }
.contact-list {
  list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .85rem;
}
.contact-list a { color: var(--olive-dark); font-weight: 600; }
.contact-form { display: grid; gap: .95rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .95rem; }
.contact-form input, .contact-form textarea {
  width: 100%; border-radius: 18px; border: 1px solid rgba(0,0,0,.12); padding: 1rem 1rem; font: inherit; resize: vertical;
}
.form-note { font-size: .88rem; margin: 0; }
.map-card iframe { min-height: 640px; }
.footer {
  background: var(--charcoal); color: rgba(255,255,255,.82); padding: 1.4rem 0;
}
.footer__inner { text-align: center; }
.footer a { color: var(--white); }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 25; width: 62px; height: 62px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 35px rgba(0,0,0,.24);
}
.whatsapp-float svg { width: 31px; height: 31px; }
.lightbox {
  position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,.86); display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; pointer-events: none; transition: .3s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: min(92vw, 1100px); max-height: 86vh; border-radius: 20px; box-shadow: var(--shadow);
}
.lightbox__close {
  position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.16); color: #fff; font-size: 2rem; cursor: pointer;
}
.fade-in {
  opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1; transform: translateY(0);
}
@media (max-width: 1024px) {
  .grid-2, .grid-2--reverse, .cards, .social-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .video-card iframe, .map-card iframe, .card-image img { min-height: 420px; }
}
@media (max-width: 768px) {
  .topbar__inner { flex-direction: column; justify-content: center; padding: .5rem 0; text-align: center; }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: calc(100% + 8px); left: 1rem; right: 1rem; background: var(--white); border-radius: 22px;
    box-shadow: var(--shadow); padding: 1rem; flex-direction: column; align-items: flex-start; display: none;
  }
  .nav.is-open { display: flex; }
  .hero { min-height: 84vh; }
  .hero__overlay { background: linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.45) 100%); }
  .hero__content { padding: 6rem 0 3.5rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .brand img { width: 146px; }
}
@media (max-width: 520px) {
  .section { padding: 4.5rem 0; }
  .gallery { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .contact-card, .map-card, .feature-card, .social-card { padding: 1.2rem; }
}
