:root {
  --bg: #f7f2ec;
  --surface: #ffffff;
  --text: #2f241d;
  --muted: #69594f;
  --primary: #6c4531;
  --primary-2: #b88b61;
  --line: rgba(108, 69, 49, 0.14);
  --shadow: 0 20px 50px rgba(57, 37, 26, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbf8f4 0%, #f5efe8 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 88px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 32px; align-items: center; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(247, 242, 236, 0.75);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-logo { width: 52px; height: 52px; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
.brand-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
.site-nav { display: flex; gap: 24px; }
.site-nav a { color: var(--muted); font-weight: 500; }
.site-nav a:hover, .site-nav a:focus { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.6rem; }
.lang-toggle, .btn {
  border: 0; cursor: pointer; border-radius: 999px; transition: .25s ease;
}
.lang-toggle {
  background: rgba(108, 69, 49, 0.08); color: var(--primary); padding: 10px 14px; font-weight: 700;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; padding: 14px 22px; font-weight: 700; box-shadow: var(--shadow);
}
.btn-small { padding: 11px 18px; font-size: .95rem; }
.btn:hover, .lang-toggle:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--primary); border: 1px solid rgba(108, 69, 49, .22); box-shadow: none;
}
.hero { position: relative; min-height: 92vh; display: grid; place-items: center; overflow: hidden; }
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; }
.hero-overlay { background: linear-gradient(95deg, rgba(29, 18, 12, 0.72) 10%, rgba(29, 18, 12, 0.25) 55%, rgba(29, 18, 12, 0.18) 100%); }
.hero-content { position: relative; z-index: 1; color: #fff; max-width: 720px; margin-left: 0; padding: 120px 0 60px; }
.eyebrow, .section-tag {
  display: inline-block; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700;
}
.eyebrow { color: #f1d6bd; margin-bottom: 18px; }
.hero h1, h2 { font-family: 'Playfair Display', serif; line-height: 1.07; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); margin: 0 0 18px; }
.hero p { font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.intro, .video-section, .contact-section { background: var(--bg); }
.feature-panel, .form-card {
  background: rgba(255,255,255,.75); border: 1px solid rgba(108, 69, 49, 0.08); padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.feature-panel { display: grid; gap: 20px; }
.feature-panel article { padding: 18px 0; border-bottom: 1px solid var(--line); }
.feature-panel article:last-child { border-bottom: 0; padding-bottom: 0; }
.section-tag { color: var(--primary-2); margin-bottom: 12px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 14px; }
p { color: var(--muted); line-height: 1.8; }
.highlights { padding-top: 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat-card {
  background: var(--surface); border-radius: 22px; padding: 28px; box-shadow: var(--shadow); border: 1px solid rgba(108,69,49,.08);
}
.stat-card strong { display: block; margin-bottom: 8px; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--primary); }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 28px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.gallery-item {
  padding: 0; border: 0; border-radius: 18px; overflow: hidden; background: transparent; cursor: pointer; position: relative;
  min-height: 220px; box-shadow: var(--shadow);
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; min-height: 454px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.video-grid { align-items: start; }
.video-frame, .map-frame {
  overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); border: 1px solid rgba(108,69,49,.08); background: #fff;
}
.video-frame iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.social-card {
  background: #fff; border: 1px solid rgba(108,69,49,.08); border-radius: 22px; padding: 24px; display: flex; gap: 16px; align-items: center; box-shadow: var(--shadow);
}
.social-icon {
  width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; font-size: 1.4rem; font-weight: 700;
}
.contact-grid { align-items: start; }
.contact-list { display: grid; gap: 14px; margin: 22px 0 28px; }
.contact-list a {
  display: flex; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid rgba(108,69,49,.08); padding: 16px 18px; border-radius: 18px;
}
.contact-list strong { display: block; color: var(--primary); }
.contact-list span { color: var(--muted); text-align: right; }
.map-frame iframe { width: 100%; min-height: 320px; border: 0; display: block; }
.form-card h3 { margin-top: 0; font-family: 'Playfair Display', serif; font-size: 2rem; }
.field { display: grid; gap: 8px; margin-bottom: 14px; }
.field input, .field textarea {
  border: 1px solid rgba(108,69,49,.14); border-radius: 16px; padding: 14px 16px; background: #fff;
}
.site-footer {
  background: #2a1d16; color: rgba(255,255,255,.85); padding: 28px 0;
}
.footer-content { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.site-footer a { color: #f0c8a2; }
.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; box-shadow: 0 15px 30px rgba(37,211,102,.35); z-index: 50;
}
.floating-whatsapp svg { width: 32px; fill: #fff; }
.lightbox {
  position: fixed; inset: 0; background: rgba(14, 10, 8, .84); display: none; place-items: center; padding: 20px; z-index: 100;
}
.lightbox.active { display: grid; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 78vh; border-radius: 20px; box-shadow: var(--shadow); }
.lightbox p { color: #fff; text-align: center; margin-top: 14px; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; border: 0; font-size: 2rem; cursor: pointer; background: rgba(255,255,255,.12); color: #fff;
}
@media (max-width: 980px) {
  .grid-2, .stats, .social-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
  .section-head, .footer-content { flex-direction: column; align-items: start; }
  .site-nav {
    position: absolute; top: 78px; left: 0; right: 0; background: rgba(247,242,236,.98); border-bottom: 1px solid var(--line);
    padding: 16px 1rem 22px; display: none; flex-direction: column;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { min-height: 85vh; }
  .grid-2, .stats, .social-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; min-height: 260px; }
  .gallery-item { min-height: 240px; }
  .nav-wrap { flex-wrap: wrap; }
  .nav-actions { margin-left: auto; }
  .brand { max-width: calc(100% - 130px); }
  .brand-text { font-size: 1.1rem; }
  .hero-content { padding-top: 140px; }
  .contact-list a { flex-direction: column; }
  .contact-list span { text-align: left; }
}
