:root {
  --primary: #b87a34;
  --primary-dark: #8d5a22;
  --secondary: #0d7a42;
  --dark: #101010;
  --dark-soft: #171717;
  --text: #f3efe8;
  --muted: #d7cfbf;
  --card: rgba(255,255,255,0.08);
  --line: rgba(255,255,255,0.12);
  --shadow: 0 18px 45px rgba(0,0,0,0.28);
  --radius: 24px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(180deg, #120f0c 0%, #17110d 40%, #0f120f 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(12, 10, 9, 0.74);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 14px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0.02em; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.2); }
.site-nav { display: flex; gap: 22px; align-items: center; }
.site-nav a { color: var(--muted); transition: .25s ease; }
.site-nav a:hover { color: #fff; }
.nav-cta { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle, .menu-toggle {
  border: 1px solid var(--line); background: rgba(255,255,255,0.06); color: #fff;
  border-radius: 999px; padding: 10px 14px; cursor: pointer;
}
.menu-toggle { display: none; }
.hero { position: relative; min-height: 92vh; display: grid; align-items: center; overflow: clip; }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.48) saturate(1.04);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,191,84,0.16), transparent 32%),
              linear-gradient(180deg, rgba(5,5,5,0.12), rgba(5,5,5,0.78));
}
.hero-content {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .85fr; gap: 34px; align-items: center; padding: 80px 0;
}
.eyebrow, .section-tag { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; color: #f2d5a7; margin-bottom: 14px; }
.hero h1, .section h2 { font-family: 'Playfair Display', serif; line-height: 1.04; margin: 0 0 16px; }
.hero h1 { font-size: clamp(2.5rem, 5.8vw, 5.5rem); max-width: 11ch; }
.hero h1 span { color: #ffd08b; }
.lead, .section-head p, .hero-card p, .section p, .promo-body p, .social-card p, .form-note { color: var(--muted); }
.hero-card, .promo-card, .social-card, .map-card, .contact-form {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-card { padding: 28px; }
.hero-card img { width: 84px; height: 84px; object-fit: cover; border-radius: 50%; margin-bottom: 16px; }
.hero-card ul { margin: 18px 0 0; padding-left: 18px; color: #fff; }
.hero-actions, .contact-list { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; transition: .25s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), #d9a159); color: #1b1207; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); }
.intro-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.03); }
.intro-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding: 24px 0; }
.section { padding: 96px 0; }
.alt { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)); }
.two-col, .video-grid, .location-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 24px; }
.feature-item {
  padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,0.05); border: 1px solid var(--line);
}
.image-stack { position: relative; min-height: 460px; }
.stack-main, .stack-small { border-radius: 24px; box-shadow: var(--shadow); object-fit: cover; }
.stack-main { width: 100%; height: 100%; min-height: 460px; }
.stack-small { width: 230px; height: 230px; position: absolute; right: -10px; bottom: -18px; border: 6px solid #18120d; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.promo-grid, .social-grid, .gallery-grid { display: grid; gap: 20px; }
.promo-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.promo-card { overflow: hidden; }
.promo-card img { width: 100%; height: 250px; object-fit: cover; }
.promo-body { padding: 20px; }
.gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.gallery-item {
  padding: 0; border: 0; background: transparent; border-radius: 20px; overflow: hidden; cursor: zoom-in;
  aspect-ratio: 1 / 1; box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.video-frame, .map-card { overflow: hidden; min-height: 380px; }
.video-frame iframe, .map-card iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }
.social-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.social-card { display: flex; gap: 16px; align-items: center; padding: 20px; transition: .25s ease; }
.social-card:hover { transform: translateY(-4px); }
.social-card img { width: 62px; height: 62px; border-radius: 18px; object-fit: cover; }
.contact-form { padding: 24px; display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.05); color: #fff;
}
.site-footer { border-top: 1px solid var(--line); padding: 28px 0 42px; }
.footer-wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); }
.footer-wrap a { color: #fff; }
.floating-actions {
  position: fixed; right: 18px; bottom: 18px; z-index: 30; display: grid; gap: 12px;
}
.float-btn {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; font-size: 1.35rem;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.18);
}
.float-btn.call { background: linear-gradient(135deg, var(--primary), #e8b56c); color: #180f08; }
.float-btn.whatsapp { background: linear-gradient(135deg, #1fa855, #35cf77); }
.lightbox {
  position: fixed; inset: 0; z-index: 40; background: rgba(0,0,0,0.88); display: none; align-items: center; justify-content: center; padding: 22px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 86vh; border-radius: 20px; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 1.8rem;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
@media (max-width: 980px) {
  .hero-content, .two-col, .video-grid, .location-grid, .contact-grid, .intro-grid, .promo-grid, .gallery-grid, .social-grid { grid-template-columns: 1fr; }
  .site-nav {
    position: absolute; top: calc(100% + 10px); right: 16px; left: 16px; flex-direction: column; align-items: stretch;
    background: rgba(18,15,12,0.98); border: 1px solid var(--line); border-radius: 24px; padding: 16px; display: none;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .stack-small { width: 190px; height: 190px; right: 8px; bottom: 8px; }
}
@media (max-width: 720px) {
  .section { padding: 74px 0; }
  .hero { min-height: 86vh; }
  .hero h1 { max-width: 100%; }
  .feature-list { grid-template-columns: 1fr; }
  .stack-main { min-height: 340px; }
  .image-stack { min-height: 340px; }
  .stack-small { display: none; }
  .footer-wrap { flex-direction: column; }
}
