:root {
  --bg: #fff8f7;
  --bg-soft: #fff1f7;
  --text: #2e2430;
  --muted: #6f5d70;
  --primary: #d80a8c;
  --primary-dark: #8f1678;
  --accent: #ff4f7b;
  --cream: #f3e8e1;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(106, 26, 95, 0.16);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffaf8 0%, #fff5fb 55%, #fff8f7 100%);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .25;
  pointer-events: none;
  z-index: -1;
}
.orb-1 { width: 240px; height: 240px; background: #ff4f7b; top: 90px; left: -80px; }
.orb-2 { width: 300px; height: 300px; background: #9d2fff; right: -100px; top: 360px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 247, 0.82);
  border-bottom: 1px solid rgba(216, 10, 140, 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;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.brand strong { display: block; font-size: 1rem; }
.brand span { display: block; color: var(--muted); font-size: .85rem; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  border: 1px solid rgba(216, 10, 140, 0.18);
  background: rgba(255,255,255,.85);
  color: var(--primary-dark);
  min-width: 54px;
  height: 42px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--primary); }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 5px;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  isolation: isolate;
}
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; object-position: center; }
.hero-overlay {
  background:
    linear-gradient(100deg, rgba(28, 16, 27, 0.78) 0%, rgba(49, 18, 47, 0.55) 38%, rgba(82, 15, 70, 0.15) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--white);
  padding: 90px 0;
}
.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .03em;
}
.eyebrow {
  color: var(--primary-dark);
  background: rgba(216, 10, 140, 0.08);
  border: 1px solid rgba(216, 10, 140, 0.12);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
  line-height: 1.05;
  margin: 18px 0 18px;
  text-shadow: 0 6px 18px rgba(0,0,0,.28);
}
.hero p {
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 640px;
  text-shadow: 0 2px 10px rgba(0,0,0,.22);
}
.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 14px 32px rgba(216, 10, 140, 0.28);
  border: none;
}
.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.section { padding: 92px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255, 79, 123, 0.05), rgba(157, 47, 255, 0.04)); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section h2,
.contact-panel h2,
.form-panel h2,
.info-card h3 {
  margin: 14px 0 14px;
}
.section h2,
.contact-panel h2,
.form-panel h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
}
.section p, .split p, .card p, .info-card li { color: var(--muted); line-height: 1.8; }

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.info-card,
.card,
.contact-panel,
.form-panel,
.video-frame {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(216, 10, 140, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.info-card,
.contact-panel,
.form-panel { padding: 28px; }
.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-card li { padding: 10px 0; border-bottom: 1px solid rgba(216, 10, 140, 0.08); }
.info-card li:last-child { border-bottom: 0; }
.info-card a, .social-links a { color: var(--primary-dark); font-weight: 600; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card { padding: 28px; }
.card h3 { margin-top: 0; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.video-frame {
  overflow: hidden;
  padding: 0;
}
.video-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: inherit;
}
.video-split { align-items: stretch; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.social-links a {
  background: rgba(216, 10, 140, 0.08);
  padding: 12px 16px;
  border-radius: 999px;
}
.map-wrap {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 20px;
}
.map-wrap iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
}
.contact-form,
.form-row {
  display: grid;
  gap: 14px;
}
.form-row { grid-template-columns: 1fr 1fr; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(216, 10, 140, 0.12);
  border-radius: 16px;
  padding: 15px 16px;
  background: #fff;
  color: var(--text);
}
.contact-form textarea { resize: vertical; }

.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(216, 10, 140, 0.08);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-content p { margin: 0; color: var(--muted); }
.footer-content a { color: var(--primary-dark); font-weight: 700; }

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 10, 15, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: min(100%, 980px);
  max-height: 85vh;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 960px) {
  .split,
  .contact-grid,
  .cards,
  .gallery { grid-template-columns: 1fr 1fr; }

  .nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    background: rgba(255, 248, 247, 0.98);
    border: 1px solid rgba(216, 10, 140, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
}

@media (max-width: 720px) {
  .hero { min-height: 78vh; }
  .hero-content { padding: 88px 0 70px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3.3rem); }
  .split,
  .contact-grid,
  .cards,
  .gallery,
  .form-row { grid-template-columns: 1fr; }
  .nav-wrap { min-height: 74px; }
  .brand span { display: none; }
  .footer-content { flex-direction: column; }
}
