:root {
  --bg: #f4efe4;
  --bg-soft: #fbf8f1;
  --text: #21392f;
  --text-soft: #5f6f65;
  --primary: #285c45;
  --primary-2: #567e57;
  --accent: #d8e2c8;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(33, 57, 47, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-soft);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(40, 92, 69, 0.1);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.section-heading { max-width: 700px; margin-bottom: 36px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
h1, h2, h3 { margin: 0 0 16px; line-height: 1.05; }
h1, h2 { font-family: 'Playfair Display', serif; }
h1 { font-size: clamp(2.8rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--text-soft); font-size: 1.04rem; line-height: 1.75; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 241, 0.82);
  border-bottom: 1px solid rgba(40, 92, 69, 0.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(40, 92, 69, 0.15); }
.brand strong { display: block; font-size: 1.1rem; }
.brand span { display: block; color: var(--text-soft); font-size: 0.9rem; }
.desktop-nav { display: flex; gap: 22px; font-weight: 600; }
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--primary); transition: width .25s ease;
}
.desktop-nav a:hover::after { width: 100%; }
.menu-toggle, .mobile-nav { display: none; }
.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #21392f;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20, 33, 28, 0.84) 0%, rgba(20, 33, 28, 0.74) 28%, rgba(20, 33, 28, 0.34) 55%, rgba(20, 33, 28, 0.18) 100%),
    linear-gradient(180deg, rgba(20, 33, 28, 0.10) 0%, rgba(20, 33, 28, 0.28) 100%);
}
.hero-content {
  position: relative; z-index: 2; color: var(--white); padding: 110px 0 60px;
  max-width: 640px;
}
.hero-content > * {
  position: relative;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: 72px 0 18px;
  width: min(100%, 620px);
  background: linear-gradient(180deg, rgba(20, 33, 28, 0.70) 0%, rgba(20, 33, 28, 0.54) 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
  backdrop-filter: blur(5px);
}
.hero-content .eyebrow,
.hero-content h1,
.hero-content p,
.hero-content .hero-actions,
.hero-content .hero-badges {
  padding-left: 28px;
  padding-right: 28px;
}
.hero-content h1 {
  text-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.hero-content p { color: rgba(255,255,255,.94); max-width: 560px; font-size: 1.1rem; text-shadow: 0 4px 18px rgba(0,0,0,.24); }
.eyebrow {
  display: inline-block; margin-bottom: 18px; padding: 9px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,.16); font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.hero-actions, .hero-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-actions { margin-top: 28px; }
.hero-badges { margin-top: 26px; padding-bottom: 28px; }
.hero-badges span {
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); font-size: .95rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; 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: var(--primary); color: var(--white); box-shadow: var(--shadow); }
.btn-secondary { background: rgba(255,255,255,.14); color: var(--white); border: 1px solid rgba(255,255,255,.18); }
.two-col, .video-grid, .contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center; }
.logo-card {
  background: linear-gradient(180deg, #f8f5ec 0%, #efe7d7 100%);
  padding: 24px; border-radius: 28px; box-shadow: var(--shadow);
}
.logo-card img { border-radius: 24px; width: 100%; }
.info-grid, .cards-grid { display: grid; gap: 18px; }
.info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
.info-grid article, .card, .social-card, .contact-form-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
}
.info-grid article { padding: 24px; }
.cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 30px; }
.card-icon {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; font-size: 1.7rem;
  background: rgba(40, 92, 69, .11); margin-bottom: 18px;
}
.specialties { background: linear-gradient(180deg, #f2eddf 0%, #fbf8f1 100%); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item {
  border: 0; padding: 0; background: transparent; cursor: pointer; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
}
.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, .map-frame {
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); background: #dfe7d7;
}
.video-frame iframe { width: 100%; aspect-ratio: 16 / 10; border: 0; }
.social-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.social-card { padding: 24px; }
.fb-wrap { border-radius: 20px; overflow: hidden; }
.fb-wrap iframe { width: 100%; max-width: 100%; }
.social-logo-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 28px; border-radius: 22px; background: linear-gradient(180deg, #f4efe4 0%, #eef2e7 100%); margin: 16px 0;
}
.social-logo-box img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }
.social-link {
  display: inline-flex; padding: 12px 18px; border-radius: 999px; background: rgba(40,92,69,.09); color: var(--primary); font-weight: 700;
}
.contact-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 12px; }
.contact-list li { color: var(--text-soft); line-height: 1.65; }
.contact-list strong { color: var(--text); }
.map-frame iframe { width: 100%; height: 320px; border: 0; }
.contact-form-card { padding: 28px; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; color: var(--text); }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(40,92,69,.14); background: #fff;
}
.form-note { min-height: 24px; font-size: .95rem; color: var(--primary); }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 45; width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: white; box-shadow: 0 15px 30px rgba(0,0,0,.22);
}
.whatsapp-float svg { width: 31px; height: 31px; }
.lightbox {
  position: fixed; inset: 0; background: rgba(10, 12, 10, 0.88); display: none; place-items: center; padding: 20px; z-index: 60;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(920px, 100%); max-height: 86vh; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; font-size: 2rem;
}
.site-footer { padding: 28px 0 38px; background: #143224; }
.site-footer p { margin: 0; color: rgba(255,255,255,.82); text-align: center; }
.site-footer a { color: #d6f1dc; }
.fade-in {
  opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 14px; border: 0;
    background: rgba(40,92,69,.09); color: var(--primary); font-size: 1.4rem;
  }
  .mobile-nav {
    display: none; flex-direction: column; gap: 14px; padding: 0 16px 18px; background: rgba(251,248,241,.98); border-bottom: 1px solid rgba(40,92,69,.08);
  }
  .mobile-nav.open { display: flex; }
  .two-col, .video-grid, .contact-grid, .social-grid, .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .container { width: min(1120px, calc(100% - 22px)); }
  .hero { min-height: 86svh; }
  .hero-content { padding: 96px 0 50px; max-width: 100%; }
  .hero-content::before {
    inset: 64px 0 12px;
    width: 100%;
  }
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content p,
  .hero-content .hero-actions,
  .hero-content .hero-badges {
    padding-left: 20px;
    padding-right: 20px;
  }
  .info-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .brand img { width: 50px; height: 50px; }
  .whatsapp-float { width: 58px; height: 58px; right: 14px; bottom: 14px; }
}


.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(40,92,69,.09);
  border: 1px solid rgba(40,92,69,.10);
}
.lang-btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 800;
  font-size: .82rem;
  color: var(--primary);
  background: transparent;
}
.lang-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(40,92,69,.18);
}
@media (max-width: 980px) {
  .nav-wrap { flex-wrap: wrap; }
  .language-switcher { margin-left: auto; }
}
@media (max-width: 640px) {
  .language-switcher { order: 2; }
  .menu-toggle { order: 3; }
}
