:root {
  --bg: #f8f3f7;
  --surface: rgba(255,255,255,.85);
  --surface-strong: #ffffff;
  --text: #2b2422;
  --muted: #655c61;
  --line: rgba(43,36,34,.1);
  --primary: #c94bc0;
  --primary-strong: #8d1a68;
  --accent: #e6d4e3;
  --dark: #171116;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 26px 60px rgba(40,20,34,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(201,75,192,.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(141,26,104,.09), transparent 22%),
    var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.skip-link {
  position: absolute; left: -999px; top: 12px; z-index: 100;
  background: var(--dark); color: #fff; padding: 10px 14px; border-radius: 12px;
}
.skip-link:focus { left: 12px; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-text { color: var(--muted); line-height: 1.8; margin-top: 0; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(248,243,247,.78);
  border-bottom: 1px solid rgba(255,255,255,.4);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 82px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img {
  width: 56px; height: 56px; border-radius: 16px; object-fit: cover;
  box-shadow: 0 14px 28px rgba(141,26,104,.18);
}
.brand strong { display: block; font-size: 1rem; }
.brand span { color: var(--muted); font-size: .9rem; }
.site-nav { display: flex; gap: 22px; align-items: center; }
.site-nav a { color: var(--muted); font-weight: 700; position: relative; }
.site-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-strong));
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.9);
  border: 1px solid var(--line); box-shadow: 0 12px 26px rgba(20,10,18,.06);
}
.lang-btn {
  border: 0; background: transparent; min-width: 48px; height: 40px; padding: 0 14px;
  border-radius: 999px; font-weight: 800; color: var(--muted); cursor: pointer;
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong)); color: #fff;
}
.menu-toggle {
  display: none; border: 1px solid var(--line); background: var(--surface-strong);
  width: 46px; height: 46px; border-radius: 14px; cursor: pointer;
}
.hero {
  position: relative; min-height: 92vh; display: grid; place-items: center; overflow: clip;
}
.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(105deg, rgba(19,14,18,.86) 0%, rgba(20,15,18,.54) 42%, rgba(141,26,104,.28) 100%);
}
.hero-content { position: relative; z-index: 1; color: #fff; padding: 120px 0 80px; }
.eyebrow {
  display: inline-block; margin-bottom: 14px;
  letter-spacing: .16em; text-transform: uppercase; font-size: .76rem; font-weight: 800;
  color: var(--primary-strong);
}
.hero .eyebrow { color: #f6c1f0; }
h1, h2, h3 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
}
h1 { font-size: clamp(2.9rem, 5vw, 5.5rem); max-width: 11ch; }
h2 { font-size: clamp(2rem, 3.2vw, 3.3rem); }
h3 { font-size: 1.45rem; }
.hero-text {
  font-size: 1.08rem; max-width: 680px; color: rgba(255,255,255,.92);
  line-height: 1.85; margin-bottom: 28px;
}
.hero-actions, .hero-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { margin-top: 22px; }
.hero-badges span {
  padding: 10px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 15px 24px;
  border-radius: 999px; font-weight: 800; transition: .25s ease; border: 0; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong)); color: #fff;
  box-shadow: 0 16px 34px rgba(141,26,104,.28);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.18);
}
.btn-secondary:hover { background: rgba(255,255,255,.18); }
.intro-grid, .video-grid, .contact-grid, .social-layout {
  display: grid; gap: 28px; align-items: stretch;
}
.intro-grid { grid-template-columns: 1.02fr .98fr; }
.video-grid, .contact-grid, .social-layout { grid-template-columns: 1fr 1fr; }
.card, .stat-card, .service-card, .social-card, .contact-card, .map-card, .video-frame, .social-embed, .note-card {
  background: rgba(255,255,255,.84); border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-xl); box-shadow: var(--shadow); backdrop-filter: blur(14px);
}
.card, .contact-card { padding: 34px; }
.card p { color: var(--muted); line-height: 1.85; margin: 0; }
.stats { display: grid; gap: 18px; }
.stat-card { padding: 24px; }
.stat-card strong, .service-card h3 { color: var(--primary-strong); }
.stat-card strong { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.stat-card span { color: var(--muted); line-height: 1.7; }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.service-card { padding: 28px; }
.service-card p { color: var(--muted); line-height: 1.8; margin: 0; }
.service-icon {
  width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.4rem;
  border-radius: 16px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(201,75,192,.18), rgba(141,26,104,.12));
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gallery-item {
  border: 0; padding: 0; border-radius: 22px; overflow: hidden; background: #ddd;
  aspect-ratio: 1 / 1; box-shadow: var(--shadow); cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.video-frame { padding: 14px; }
.video-frame iframe {
  width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 18px;
}
.social-embed { padding: 12px; overflow: hidden; }
.social-embed iframe { width: 100%; min-height: 620px; border: 0; }
.social-side { display: grid; gap: 18px; }
.social-card, .note-card {
  display: flex; gap: 16px; padding: 24px; align-items: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.social-card:hover { transform: translateY(-4px); }
.social-icon {
  flex: 0 0 64px; width: 64px; height: 64px; border-radius: 20px;
  display: grid; place-items: center; font-weight: 800; font-size: 1.6rem; color: #fff;
}
.social-icon.fb { background: linear-gradient(135deg, #4460ff, #2748d8); }
.social-icon.ig { background: linear-gradient(135deg, #ff7a00, #ff0069 50%, #7638fa); }
.social-card strong, .note-card strong { display: block; margin-bottom: 6px; }
.social-card span, .contact-list li, .note-card p { color: var(--muted); line-height: 1.7; margin: 0; }
.note-card img { width: 92px; height: 92px; object-fit: cover; border-radius: 22px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.contact-form { display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label span { display: block; margin-bottom: 8px; font-weight: 700; }
input, textarea {
  width: 100%; border: 1px solid rgba(43,36,34,.12); background: #fff;
  border-radius: 16px; padding: 14px 16px; outline: none;
}
input:focus, textarea:focus {
  border-color: rgba(141,26,104,.5); box-shadow: 0 0 0 4px rgba(141,26,104,.12);
}
.map-card { overflow: hidden; min-height: 100%; }
.map-card iframe { width: 100%; height: 100%; min-height: 580px; border: 0; }
.site-footer {
  background: #1b1519; color: rgba(255,255,255,.84); padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.site-footer a { color: #f6b3ef; }
.call-float, .whatsapp-float {
  position: fixed; z-index: 48; border-radius: 999px; padding: 14px 18px;
  font-weight: 800; box-shadow: 0 16px 34px rgba(0,0,0,.22); display: inline-flex;
  align-items: center; gap: 10px;
}
.call-float {
  left: 18px; bottom: 18px; background: linear-gradient(135deg, #ffffff, #f2e6f2);
  color: var(--primary-strong); border: 1px solid rgba(141,26,104,.15);
}
.whatsapp-float {
  right: 18px; bottom: 18px; background: linear-gradient(135deg, #25D366, #18a84d); color: #fff;
}
.call-float small, .whatsapp-float small { font-size: .88rem; }
.lightbox {
  position: fixed; inset: 0; background: rgba(8,8,10,.84); display: grid; place-items: center;
  padding: 30px; opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 60;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: min(1000px, 100%); max-height: 85vh; border-radius: 24px; box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute; top: 16px; right: 16px; width: 48px; height: 48px;
  border-radius: 50%; border: 0; background: #fff; font-size: 2rem; line-height: 1; cursor: pointer;
}
.reveal {
  opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.thanks-page {
  min-height: 100vh; display: grid; place-items: center;
}
.thanks-wrap {
  width: min(760px, calc(100% - 30px)); padding: 42px; border-radius: 30px;
  background: rgba(255,255,255,.9); box-shadow: var(--shadow); text-align: center;
}
.thanks-logo {
  width: 94px; height: 94px; object-fit: cover; border-radius: 26px; margin: 0 auto 18px;
  box-shadow: 0 16px 36px rgba(141,26,104,.18);
}
.thanks-btn { color: var(--primary-strong); border-color: rgba(141,26,104,.15); background: #fff; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: absolute; top: calc(100% + 8px); left: 16px; right: 16px; display: none;
    flex-direction: column; align-items: flex-start; background: rgba(255,255,255,.96);
    border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); padding: 16px;
  }
  .site-nav.open { display: flex; }
  .intro-grid, .video-grid, .contact-grid, .social-layout, .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 80vh; }
  .hero-content { padding-top: 128px; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .container { width: min(1160px, calc(100% - 22px)); }
  .brand span { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .call-float { left: 12px; bottom: 12px; padding: 13px 16px; }
  .whatsapp-float { right: 12px; bottom: 12px; padding: 13px 16px; }
  .site-footer { text-align: center; }
  .footer-wrap { justify-content: center; }
  .thanks-wrap { padding: 30px 22px; }
}
