:root {
  --bg: #f8f5f1;
  --bg-alt: #ffffff;
  --text: #2a2f3f;
  --muted: #6b7280;
  --primary: #de955e;
  --primary-dark: #936567;
  --accent: #3c3b58;
  --sand: #f0ddcf;
  --line: rgba(60, 59, 88, 0.12);
  --shadow: 0 20px 50px rgba(39, 44, 63, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; }
.alt-section { background: linear-gradient(180deg, rgba(240,221,207,.35), rgba(255,255,255,.85)); }

.language-switch {
  position: fixed; top: 18px; right: 18px; z-index: 1200; display: flex; gap: 8px;
  background: rgba(255,255,255,.78); padding: 8px; border-radius: 999px; box-shadow: var(--shadow); backdrop-filter: blur(12px);
}
.lang-btn {
  border: 0; background: transparent; color: var(--accent); padding: 8px 12px; border-radius: 999px; cursor: pointer; font-weight: 700;
}
.lang-btn.active { background: var(--accent); color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(248,245,241,.8); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.08rem; }
.brand-logo { width: 46px; height: 46px; object-fit: cover; border-radius: 50%; box-shadow: 0 8px 18px rgba(60,59,88,.15); }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { position: relative; color: var(--accent); font-weight: 600; }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--primary); transition: .25s ease; }
.main-nav a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: 0; padding: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 28px; height: 3px; background: var(--accent); margin: 5px 0; border-radius: 99px; }

.hero { position: relative; min-height: 96vh; display: grid; align-items: center; overflow: hidden; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(110deg, rgba(42,47,63,.76), rgba(42,47,63,.18) 50%, rgba(147,101,103,.2)); }
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 120px 0 90px; color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  padding: 12px 18px; border-radius: 999px; margin-bottom: 20px; font-weight: 700; backdrop-filter: blur(10px);
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.7rem); line-height: 1.06; margin: 0 0 18px; text-shadow: 0 8px 22px rgba(0,0,0,.24); }
.hero p { font-size: 1.14rem; max-width: 640px; margin: 0 0 30px; color: rgba(255,255,255,.92); text-shadow: 0 4px 18px rgba(0,0,0,.2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-width: 170px; padding: 14px 22px; border-radius: 999px; font-weight: 700; transition: .28s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 18px 32px rgba(222,149,94,.3); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.02); }
.btn-secondary { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #fff; backdrop-filter: blur(8px); }
.btn-secondary:hover { background: rgba(255,255,255,.22); }

.intro-strip { margin-top: -58px; position: relative; z-index: 3; padding-top: 0; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card, .highlight-card, .video-card, .contact-form, .map-card {
  background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.6); box-shadow: var(--shadow); border-radius: var(--radius-lg);
}
.info-card { padding: 26px; }
.info-card h3 { margin: 0 0 8px; color: var(--accent); }
.info-card p { margin: 0; color: var(--muted); }
.info-card a { color: var(--primary-dark); font-weight: 700; }

.split-grid, .video-grid, .contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: start; }
.eyebrow { display: inline-block; margin-bottom: 12px; font-size: .88rem; letter-spacing: .18em; text-transform: uppercase; color: var(--primary-dark); font-weight: 800; }
.section h2 { font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.14; margin: 0 0 18px; }
.section p { color: var(--muted); }
.highlights { display: grid; gap: 16px; }
.highlight-card { padding: 28px; }
.highlight-card h3 { margin-top: 0; color: var(--accent); }
.highlight-card p { margin-bottom: 0; }

.section-head { max-width: 780px; margin: 0 auto 30px; text-align: center; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gallery-item {
  border: 0; background: #fff; padding: 0; border-radius: 18px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow); position: relative;
}
.gallery-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.video-card { padding: 16px; }
.video-wrapper { position: relative; padding-top: 177.77%; overflow: hidden; border-radius: 18px; }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.social-links a {
  padding: 12px 18px; border-radius: 999px; background: var(--bg-alt); border: 1px solid var(--line); color: var(--accent); font-weight: 700;
}
.social-links a:hover { background: var(--sand); }

.contact-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 10px; }
.contact-list strong { color: var(--accent); }
.contact-list a { color: var(--primary-dark); font-weight: 700; }
.map-card { padding: 12px; overflow: hidden; }
.map-card iframe { width: 100%; min-height: 320px; border: 0; border-radius: 16px; }
.contact-form { padding: 28px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; color: var(--accent); }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(60,59,88,.14); border-radius: 14px; padding: 14px 16px; background: #fff; color: var(--text);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(222,149,94,.24); border-color: var(--primary); }
.form-note { margin: 0; font-size: .94rem; }

.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; width: 62px; height: 62px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 18px 28px rgba(37,211,102,.35); z-index: 1100;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }

.lightbox {
  position: fixed; inset: 0; background: rgba(17, 20, 31, .9); display: none; align-items: center; justify-content: center; padding: 24px; z-index: 1400;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 86vh; border-radius: 20px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%; border: 0; font-size: 2rem; cursor: pointer; background: rgba(255,255,255,.15); color: #fff;
}

.site-footer { background: var(--accent); color: rgba(255,255,255,.88); padding: 24px 0; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; align-items: center; }
.site-footer a { color: #fff; font-weight: 700; }

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .split-grid, .video-grid, .contact-grid, .intro-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav {
    position: absolute; top: 78px; left: 0; right: 0; background: rgba(248,245,241,.98); border-bottom: 1px solid var(--line); padding: 16px 1rem 22px; display: none; flex-direction: column; align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { min-height: 88vh; }
  .hero-content { padding-top: 136px; }
  .hero h1 { font-size: 2.35rem; }
  .hero p { font-size: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .language-switch { top: auto; bottom: 96px; right: 16px; }
  .whatsapp-float { width: 58px; height: 58px; }
  .footer-content { flex-direction: column; align-items: flex-start; }
}
