:root {
  --primary: #5c4578;
  --primary-dark: #3f2e57;
  --accent: #d6a33a;
  --bg: #faf8fc;
  --text: #24222a;
  --muted: #6f6878;
  --card: rgba(255,255,255,0.84);
  --border: rgba(92,69,120,0.12);
  --shadow: 0 18px 50px rgba(42, 25, 60, 0.14);
  --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, #fff 0%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(92,69,120,0.08);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 12px;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 16px;
  line-height: 1.1;
}
p { line-height: 1.7; color: var(--muted); margin: 0 0 14px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.76);
  border-bottom: 1px solid rgba(92,69,120,0.08);
}
.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: 600; }
.brand img {
  width: 50px; height: 50px; border-radius: 14px; object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.brand strong { display: block; color: var(--primary); }
.nav { display: flex; gap: 22px; align-items: center; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--primary); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(42,25,60,0.16); }
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, #7c5ea2 100%); color: #fff; }
.btn-secondary { background: #fff; color: var(--primary); border-color: rgba(92,69,120,0.18); }
.btn-nav { padding: 10px 18px; }
.menu-toggle {
  display: none; background: transparent; border: 0; padding: 0; width: 44px; height: 44px;
}
.menu-toggle span {
  display: block; width: 26px; height: 2px; margin: 6px auto; background: var(--primary);
}
.hero {
  position: relative; min-height: 86vh; display: grid; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,18,39,0.72) 0%, rgba(28,18,39,0.34) 48%, rgba(28,18,39,0.12) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 70px 0; }
.hero-card {
  width: min(660px, 100%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 40px;
}
.eyebrow { color: #fff; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .85rem; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4.7rem); margin-bottom: 18px; }
.hero p { color: rgba(255,255,255,0.94); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.highlights {
  margin-top: -60px; position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.highlight-card {
  background: rgba(255,255,255,0.9); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.highlight-card h3 { font-size: 1.5rem; color: var(--primary-dark); }
.about-grid, .video-grid, .location-grid, .contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center;
}
.about-image img, .video-frame, .map-frame, .contact-form, .social-card {
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); background: #fff;
}
.about-image img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.about-features { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.about-features span {
  background: #fff; border: 1px solid var(--border); color: var(--primary); padding: 10px 14px; border-radius: 999px; font-weight: 700;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  padding: 0; border: 0; background: #fff; border-radius: 22px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.gallery-item:hover { transform: translateY(-5px) scale(1.01); }
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.video-frame iframe, .map-frame iframe { width: 100%; min-height: 420px; border: 0; display: block; }
.social-card {
  padding: 36px; display: flex; justify-content: space-between; gap: 24px; align-items: center;
  border: 1px solid var(--border);
}
.contact-mini { display: flex; flex-direction: column; gap: 10px; }
.contact-mini a, .contact-copy a { color: var(--primary); font-weight: 700; }
.contact-copy ul { padding-left: 18px; color: var(--muted); }
.contact-form {
  padding: 28px; display: grid; gap: 16px; border: 1px solid var(--border);
}
.contact-form label { display: grid; gap: 8px; color: var(--primary-dark); font-weight: 700; }
.contact-form input, .contact-form textarea {
  border-radius: 16px; border: 1px solid rgba(92,69,120,0.18); padding: 14px 16px; background: #fff;
}
.form-note { font-size: .92rem; margin: 0; }
.site-footer {
  padding: 28px 0 38px; border-top: 1px solid rgba(92,69,120,0.08); background: #fff;
}
.footer-wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-wrap p { margin: 0; color: var(--muted); }
.footer-wrap a { color: var(--primary); font-weight: 700; }
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; width: 62px; height: 62px; border-radius: 50%;
  background: #25d366; box-shadow: 0 18px 34px rgba(0,0,0,0.2); display: grid; place-items: center; z-index: 25;
}
.whatsapp-float svg { width: 34px; height: 34px; fill: #fff; }
.lightbox {
  position: fixed; inset: 0; background: rgba(12,10,15,0.88); display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 24px; opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 40;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(960px, 100%); max-height: 75vh; border-radius: 20px; box-shadow: var(--shadow);
}
.lightbox p { color: #fff; margin-top: 14px; text-align: center; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 2rem; cursor: pointer;
}
.reveal {
  opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .nav {
    position: absolute; top: 79px; left: 16px; right: 16px; background: rgba(255,255,255,0.97);
    border: 1px solid var(--border); border-radius: 22px; padding: 18px; box-shadow: var(--shadow);
    flex-direction: column; align-items: flex-start; opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .menu-toggle { display: block; }
  .highlights, .about-grid, .video-grid, .location-grid, .contact-grid, .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .hero { min-height: auto; }
  .hero-card { padding: 28px 22px; }
  .hero h1 { font-size: 2.4rem; }
  .highlights, .about-grid, .video-grid, .location-grid, .contact-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 70px 0; }
  .social-card, .footer-wrap { flex-direction: column; align-items: flex-start; }
  .video-frame iframe, .map-frame iframe { min-height: 320px; }
}
