:root {
  --bg: #050505;
  --card: #111111;
  --card-2: #181818;
  --text: #f8f4db;
  --muted: #d4c785;
  --gold: #d3a52e;
  --gold-bright: #f2e64d;
  --green: #91c11f;
  --green-dark: #5c8d15;
  --line: rgba(255,255,255,.08);
  --shadow: 0 20px 45px rgba(0,0,0,.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  padding: 10px 14px; background: linear-gradient(90deg, var(--green-dark), var(--green), var(--gold));
  position: sticky; top: 0; z-index: 1000;
}
.topbar a {
  background: rgba(0,0,0,.18); padding: 10px 14px; border-radius: 999px; font-weight: 700; font-size: .9rem;
  transition: transform .25s ease, background .25s ease;
}
.topbar a:hover { transform: translateY(-2px); background: rgba(0,0,0,.32); }

.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(0,0,0,.85), rgba(0,0,0,.6)),
    url('../images/1.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(145,193,31,.14), transparent 32%),
              linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
}
.nav {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.brand { display: flex; align-items: center; gap: 14px; max-width: 360px; }
.brand img {
  width: 70px; height: 70px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(255,255,255,.2);
  box-shadow: var(--shadow);
}
.brand strong, .brand span, h1, h2, h3, .eyebrow { font-family: 'Cinzel', serif; }
.brand strong { display: block; font-size: 1.2rem; }
.brand span { color: var(--muted); font-size: .8rem; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { font-weight: 600; }
.btn-nav { padding: 12px 18px; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--green)); color: #111; }
.menu-toggle { display: none; background: transparent; color: white; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; }

.hero-content {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px;
  align-items: center; min-height: calc(100vh - 122px); padding: 36px 0 60px;
}
.eyebrow {
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold-bright); font-weight: 700; margin-bottom: 10px;
}
.hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem); line-height: 1.05; margin: 0 0 18px;
  text-shadow: 0 4px 25px rgba(0,0,0,.55);
}
.hero-text {
  font-size: 1.08rem; line-height: 1.8; color: #f2eccb; max-width: 680px;
  text-shadow: 0 3px 18px rgba(0,0,0,.55);
}
.hero-actions, .compact { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-primary { background: linear-gradient(90deg, var(--gold), var(--green)); color: #121212; }
.btn-secondary { background: rgba(255,255,255,.08); color: var(--text); border: 1px solid rgba(255,255,255,.14); }
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12); border-radius: 28px; padding: 18px; box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.hero-card img { border-radius: 20px; width: 100%; }

.info-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0b0b0b; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 26px 0; }
.info-grid article {
  padding: 18px; border-radius: 18px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
}
.info-grid strong { display: block; margin-bottom: 8px; color: var(--gold-bright); }

.section { padding: 90px 0; }
.section-heading { margin-bottom: 32px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.service-card {
  padding: 28px; background: linear-gradient(180deg, #101010, #171717);
  border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(211,165,46,.35); }
.service-card h3 { margin-top: 0; margin-bottom: 12px; font-size: 1.35rem; }
.service-card p { margin: 0; line-height: 1.7; color: #f0ebcf; }

.section-highlight {
  background: linear-gradient(135deg, rgba(145,193,31,.09), rgba(211,165,46,.09));
}
.split-layout {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.check-list li {
  padding-left: 34px; position: relative; line-height: 1.6;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: -1px; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; background: linear-gradient(180deg, var(--gold), var(--green)); color: #111; font-weight: 900;
}
.benefit-panel {
  padding: 34px; border-radius: 28px; background: rgba(5,5,5,.78); border: 1px solid rgba(255,255,255,.08);
  text-align: center; box-shadow: var(--shadow);
}
.benefit-panel img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; }
.benefit-panel h3 { margin-bottom: 8px; }
.benefit-panel p { color: var(--muted); margin-bottom: 20px; }

.video-wrapper {
  position: relative; width: 100%; padding-top: 56.25%; border-radius: 26px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.08);
}
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gallery-item {
  padding: 0; background: #111; border: 1px solid rgba(255,255,255,.08); border-radius: 22px; overflow: hidden;
  cursor: pointer; box-shadow: var(--shadow); transition: transform .25s ease, border-color .25s ease;
}
.gallery-item:hover { transform: translateY(-5px); border-color: rgba(211,165,46,.4); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.section-dark { background: #0d0d0d; }
.embed-card {
  background: linear-gradient(180deg, #111, #171717); border: 1px solid rgba(255,255,255,.08); border-radius: 26px; padding: 18px;
}
.embed-card iframe { width: 100%; min-height: 540px; border-radius: 18px; background: white; }
.embed-note { margin: 12px 0 0; color: var(--muted); font-size: .95rem; }

.location-grid, .contact-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px;
}
.location-card, .contact-card, .contact-form {
  background: linear-gradient(180deg, #101010, #171717); border-radius: 26px; padding: 30px;
  border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow);
}
.map-wrapper { border-radius: 26px; overflow: hidden; min-height: 440px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.08); }
.map-wrapper iframe { width: 100%; height: 100%; min-height: 440px; }
.contact-links { display: grid; gap: 12px; margin-top: 18px; }
.contact-links a { color: var(--gold-bright); word-break: break-word; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 15px 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04); color: var(--text);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: rgba(211,165,46,.65); box-shadow: 0 0 0 4px rgba(211,165,46,.12);
}

.footer { padding: 28px 0 44px; border-top: 1px solid var(--line); background: #060606; }
.footer-content { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); }
.footer a { color: var(--gold-bright); }

.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; width: 62px; height: 62px; border-radius: 50%; z-index: 999;
  display: grid; place-items: center; color: white; background: linear-gradient(180deg, #2ee65c, #1ebc49); box-shadow: var(--shadow);
}
.floating-whatsapp svg { width: 34px; height: 34px; }

.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.86); display: none; align-items: center; justify-content: center;
  padding: 22px; z-index: 1200;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 88vh; border-radius: 18px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 16px; right: 18px; border: 0; width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: white; font-size: 2rem; cursor: pointer;
}

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-up { opacity: 0; transform: translateY(30px); animation: rise .9s ease forwards; }
.delay-1 { animation-delay: .15s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .hero-content, .split-layout, .location-grid, .contact-grid, .info-grid, .cards-grid, .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav { align-items: flex-start; }
  .nav-links {
    position: absolute; top: 86px; right: 0; background: rgba(6,6,6,.96); padding: 18px; border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); display: none; flex-direction: column; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 760px) {
  .hero { min-height: auto; }
  .hero-content, .split-layout, .location-grid, .contact-grid, .info-grid, .cards-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-content { padding-top: 18px; }
  .hero-copy h1 { font-size: 2.35rem; }
  .section { padding: 72px 0; }
  .brand { max-width: 76%; }
  .brand img { width: 58px; height: 58px; }
  .footer-content { flex-direction: column; }
  .topbar { padding-inline: 8px; }
}
