:root {
  --bg: #0f0d0b;
  --surface: #18140f;
  --surface-2: #231b13;
  --text: #f7f1e7;
  --muted: #dccfb8;
  --primary: #c68a3d;
  --primary-2: #f0bf55;
  --green: #2f8f4e;
  --line: rgba(255,255,255,0.08);
  --shadow: 0 20px 50px rgba(0,0,0,0.28);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(15,13,11,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: 800; letter-spacing: 0.02em; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(255,255,255,0.15); }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: var(--muted); transition: .25s ease; }
.site-nav a:hover, .site-nav a:focus { color: var(--text); }
.nav-cta {
  padding: 11px 18px; border-radius: 999px; background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #24170d !important; font-weight: 800;
}
.menu-toggle {
  display: none; background: transparent; border: 1px solid var(--line); color: var(--text);
  width: 46px; height: 46px; border-radius: 14px;
}
.hero { position: relative; min-height: 94vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,9,7,0.88) 18%, rgba(11,9,7,0.6) 50%, rgba(11,9,7,0.35) 100%); }
.hero-content {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 34px; align-items: center; padding: 86px 0;
}
.eyebrow, .section-tag {
  letter-spacing: 0.18em; text-transform: uppercase; font-size: .78rem; color: var(--primary-2); font-weight: 700;
}
.hero h1, .section h2 { font-family: 'Playfair Display', serif; line-height: 1.02; margin: 14px 0 18px; }
.hero h1 { font-size: clamp(2.9rem, 8vw, 5.8rem); max-width: 10ch; }
.hero h1 span { color: var(--primary-2); }
.lead { font-size: 1.14rem; line-height: 1.75; color: var(--muted); max-width: 640px; }
.hero-actions, .feature-list, .contact-info { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px;
  border-radius: 999px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #26180e; }
.btn-secondary { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: var(--text); }
.btn-block { width: 100%; }
.hero-card, .promo-card, .social-card, .map-card, .contact-form, .image-stack, .intro-strip, .video-frame {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--radius);
}
.hero-card { padding: 28px; }
.hero-card img { width: 96px; height: 96px; object-fit: cover; border-radius: 50%; margin-bottom: 18px; }
.hero-card h2 { margin: 0 0 10px; font-size: 1.35rem; }
.hero-card p { color: var(--muted); line-height: 1.7; }
.hero-card ul { margin: 18px 0 0; padding-left: 18px; color: var(--muted); display: grid; gap: 10px; }
.intro-strip { margin-top: -54px; position: relative; z-index: 2; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 22px 24px; }
.intro-grid strong { display: block; margin-bottom: 6px; color: var(--primary-2); }
.intro-grid p { margin: 0; color: var(--muted); line-height: 1.6; }
.section { padding: 96px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); }
.two-col, .video-grid, .location-grid, .contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px; align-items: center; }
.section h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.section p { color: var(--muted); line-height: 1.9; }
.feature-item {
  padding: 14px 18px; border-radius: 18px; background: rgba(255,255,255,0.04); border: 1px solid var(--line);
}
.image-stack { position: relative; padding: 18px; min-height: 480px; }
.stack-main { width: 78%; height: 420px; object-fit: cover; border-radius: 22px; }
.stack-small {
  width: 46%; position: absolute; right: 18px; bottom: 18px; border-radius: 22px; border: 6px solid #14110d;
  box-shadow: var(--shadow);
}
.section-head { max-width: 760px; margin-bottom: 36px; }
.promo-grid, .social-grid, .gallery-grid {
  display: grid; gap: 22px;
}
.promo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.promo-card { overflow: hidden; }
.promo-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.promo-body { padding: 22px; }
.promo-body h3 { margin: 0 0 10px; font-size: 1.16rem; }
.promo-body p { margin: 0; }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-item {
  border: 0; padding: 0; cursor: pointer; overflow: hidden; border-radius: 22px; background: transparent;
  aspect-ratio: 1 / 1; box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.video-frame { overflow: hidden; padding: 10px; }
.video-frame iframe, .map-card iframe {
  width: 100%; min-height: 430px; border: 0; border-radius: 18px;
}
.social-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.social-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px; transition: transform .25s ease, border-color .25s ease;
}
.social-card:hover { transform: translateY(-4px); border-color: rgba(240,191,85,0.4); }
.social-icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(198,138,61,0.22), rgba(47,143,78,0.2)); border: 1px solid var(--line);
}
.contact-form { padding: 24px; display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: var(--muted); font-size: .95rem; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid var(--line); background: rgba(255,255,255,0.04); color: var(--text);
  border-radius: 16px; padding: 14px 16px; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(240,191,85,0.5); }
.contact-info a {
  padding: 14px 16px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255,255,255,0.04);
}
.site-footer { padding: 26px 0 40px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: center; }
.footer-logo { width: 72px; height: 72px; object-fit: cover; border-radius: 50%; margin-bottom: 12px; }
.footer-grid p { color: var(--muted); line-height: 1.6; }
.footer-grid a { color: var(--primary-2); }
.floating-actions {
  position: fixed; right: 18px; bottom: 18px; z-index: 120; display: grid; gap: 10px;
}
.float-btn {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: var(--shadow); font-size: 1.4rem; border: 1px solid rgba(255,255,255,0.16);
}
.float-btn.call { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #24170c; }
.float-btn.whatsapp { background: linear-gradient(135deg, #1aa64b, #42d96e); color: white; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.88); display: none; align-items: center; justify-content: center;
  padding: 24px; z-index: 200;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1000px, 100%); max-height: 86vh; border-radius: 20px; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 52px; height: 52px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,0.14); color: white; font-size: 2rem; cursor: pointer;
}
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
@media (max-width: 1024px) {
  .hero-content, .two-col, .video-grid, .location-grid, .contact-grid, .social-grid, .promo-grid, .gallery-grid, .footer-grid, .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { max-width: none; }
}
@media (max-width: 820px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 10px); display: none; flex-direction: column; align-items: stretch;
    gap: 12px; padding: 18px; background: rgba(15,13,11,0.98); border: 1px solid var(--line); border-radius: 22px;
  }
  .site-nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-content, .two-col, .video-grid, .location-grid, .contact-grid, .promo-grid, .gallery-grid, .footer-grid, .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-strip { margin-top: 0; }
  .section { padding: 78px 0; }
  .image-stack { min-height: unset; }
  .stack-main, .stack-small { position: static; width: 100%; height: auto; }
  .stack-small { margin-top: 18px; border-width: 0; }
  .video-frame iframe, .map-card iframe { min-height: 320px; }
}
