:root {
  --bg: #fff8fb;
  --text: #533741;
  --muted: #7b5f68;
  --primary: #ef4f9c;
  --primary-dark: #cf2d7d;
  --soft: #ffd9ea;
  --card: rgba(255,255,255,.82);
  --shadow: 0 18px 45px rgba(188, 77, 131, .16);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #fffefe 0%, var(--bg) 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-kicker, .eyebrow {
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: 12px;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  margin: 0 0 16px;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }
p { line-height: 1.7; color: var(--muted); margin: 0 0 16px; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(239,79,156,.1);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.brand { display:flex; align-items:center; gap:12px; font-weight:700; color: var(--primary-dark); }
.brand img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); }
.nav { display:flex; gap: 22px; font-weight:600; }
.nav a:hover { color: var(--primary-dark); }
.hero { position: relative; min-height: 88vh; display:flex; align-items:center; overflow:hidden; }
.hero-bg {
  position:absolute; inset:0; width:100%; height:100%; object-fit: cover;
  filter: saturate(1.02);
}
.hero-overlay {
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,248,251,.9) 0%, rgba(255,248,251,.54) 50%, rgba(255,248,251,.2) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 52px 0; }
.hero-copy { max-width: 640px; }
.glass-card {
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.btn {
  display: inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700;
  transition: .28s ease; border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; box-shadow: var(--shadow); }
.btn-secondary { border-color: rgba(207,45,125,.22); background: white; color: var(--primary-dark); }
.hero-actions { display:flex; flex-wrap:wrap; gap: 14px; margin-top: 24px; }
.two-col { display:grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items:center; }
.feature-card, .card, .contact-card, .map-card, .video-frame {
  background: var(--card);
  border: 1px solid rgba(239,79,156,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-card { padding: 14px; }
.feature-card img { border-radius: 18px; width:100%; height:100%; object-fit: cover; }
.check-list { list-style:none; padding:0; margin: 22px 0 0; display:grid; gap:10px; }
.check-list li::before { content: '✦'; color: var(--primary-dark); margin-right: 10px; }
.section-head { text-align:center; max-width: 720px; margin: 0 auto 34px; }
.cards-grid { display:grid; gap:22px; }
.services-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 28px; }
.card { padding: 28px; }
.promo-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.promo-card {
  margin:0; background: white; border-radius: 22px; overflow:hidden; box-shadow: var(--shadow);
  border:1px solid rgba(239,79,156,.1);
}
.promo-card img { width:100%; aspect-ratio: 1/1; object-fit: cover; }
.gallery-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; }
.gallery-item {
  padding:0; border:0; border-radius: 22px; overflow:hidden; cursor:pointer; background:white;
  box-shadow: var(--shadow); border:1px solid rgba(239,79,156,.1);
}
.gallery-item img { width:100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.video-grid { align-items: stretch; }
.video-frame { padding: 14px; }
.video-frame iframe { width:100%; min-height: 420px; border:0; border-radius: 18px; }
.social-grid { grid-template-columns: repeat(3, 1fr); }
.social-card { text-align:center; transition: .3s ease; }
.social-card span { color: var(--primary-dark); font-weight:700; }
.social-card:hover { transform: translateY(-4px); }
.contact-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap: 28px; align-items:stretch; }
.contact-card { padding: 30px; }
.contact-list p { margin-bottom: 10px; }
.contact-form { display:grid; gap: 14px; margin-top: 20px; }
.contact-form input, .contact-form textarea {
  width:100%; border-radius: 16px; padding: 15px 16px; border:1px solid rgba(207,45,125,.18);
  background: white; font: inherit; color: var(--text);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(239,79,156,.18); border-color: var(--primary); }
.map-card { overflow:hidden; min-height: 100%; }
.map-card iframe { width:100%; height:100%; min-height: 560px; border:0; }
.footer { padding: 26px 0 36px; border-top: 1px solid rgba(239,79,156,.1); }
.footer-wrap { display:flex; flex-wrap:wrap; gap: 10px 18px; justify-content:space-between; align-items:center; }
.footer p { margin:0; font-size: .95rem; }
.footer a { color: var(--primary-dark); font-weight:700; }
.floating-actions {
  position: fixed; right: 18px; bottom: 18px; z-index: 30; display:grid; gap:10px;
}
.float-btn {
  min-width: 122px; text-align:center; padding: 13px 16px; border-radius: 999px; font-weight:700; color:white;
  box-shadow: var(--shadow);
}
.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.lightbox {
  position: fixed; inset:0; background: rgba(32, 9, 18, .9); display:none;
  align-items:center; justify-content:center; padding: 24px; z-index: 50;
}
.lightbox.open { display:flex; }
.lightbox img { max-width:min(92vw, 1100px); max-height:86vh; border-radius: 18px; box-shadow: var(--shadow); }
.lightbox-close {
  position:absolute; top:18px; right:22px; font-size: 2.4rem; color:white; background:none; border:0; cursor:pointer;
}
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.fade-in.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
@media (max-width: 940px) {
  .nav { display:none; }
  .two-col, .contact-grid, .services-grid, .social-grid, .promo-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid, .two-col { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 18px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(255,248,251,.95) 0%, rgba(255,248,251,.73) 48%, rgba(255,248,251,.3) 100%); }
}
@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .container { width: min(100% - 22px, 1120px); }
  .glass-card, .contact-card, .card { padding: 22px; }
  .promo-grid, .gallery-grid, .services-grid, .social-grid { grid-template-columns: 1fr; }
  .video-frame iframe, .map-card iframe { min-height: 320px; }
  .brand img { width: 48px; height: 48px; }
  .floating-actions { right: 12px; bottom: 12px; }
  .float-btn { min-width: 108px; font-size: .93rem; }
}
