:root {
  --pink: #ed1e79;
  --pink-dark: #bd145e;
  --teal: #159b9f;
  --teal-dark: #08777c;
  --yellow: #ffb126;
  --green: #21a66a;
  --ink: #25212b;
  --muted: #67606d;
  --paper: #ffffff;
  --soft: #fff6fa;
  --line: #eadfe5;
  --shadow: 0 22px 50px rgba(72, 30, 52, .13);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Segoe UI", Arial, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.55; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; background: #fff; padding: 12px; border-radius: 10px; }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(234,223,229,.7); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-script { font-family: "Brush Script MT", "Segoe Script", cursive; font-size: 2rem; color: var(--pink); font-weight: 700; }
.brand-sub { margin-top: 5px; font-size: .73rem; font-weight: 900; letter-spacing: .24em; text-transform: uppercase; color: var(--teal-dark); }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: .95rem; font-weight: 700; }
.main-nav a { padding: 10px 0; }
.main-nav a:hover { color: var(--pink); }
.nav-cta { background: var(--pink); color: #fff !important; padding: 12px 20px !important; border-radius: 999px; box-shadow: 0 10px 25px rgba(237,30,121,.23); }
.menu-toggle { display: none; border: 0; background: var(--soft); color: var(--pink-dark); border-radius: 12px; padding: 10px 14px; font-weight: 800; }

.hero { position: relative; overflow: hidden; padding: 76px 0 72px; background: linear-gradient(135deg,#fff 0%,#fff7fb 55%,#f2ffff 100%); }
.hero-decor { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .48; }
.hero-decor-a { width: 280px; height: 280px; background: #ffd7e8; top: -120px; left: -80px; }
.hero-decor-b { width: 240px; height: 240px; background: #c7ffff; bottom: -110px; right: -50px; }
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; align-items: center; }
.eyebrow { margin: 0 0 10px; color: var(--teal-dark); font-size: .78rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
h1,h2,h3,p { margin-top: 0; }
h1 { font-size: clamp(3.1rem, 6.2vw, 6.4rem); line-height: .92; letter-spacing: -.055em; margin-bottom: 24px; }
h1 span { color: var(--pink); font-family: "Brush Script MT", "Segoe Script", cursive; font-weight: 700; white-space: nowrap; }
.hero-lead { max-width: 650px; color: var(--muted); font-size: 1.17rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 22px; border-radius: 999px; border: 2px solid transparent; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 14px 28px rgba(237,30,121,.24); }
.btn-secondary { background: #fff; color: var(--teal-dark); border-color: #bde2e3; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-points span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; font-size: .88rem; box-shadow: 0 8px 22px rgba(72,30,52,.05); }
.hero-points strong { color: var(--pink); }
.hero-media { position: relative; min-height: 570px; }
.hero-media figure { margin: 0; overflow: hidden; background: #eee; box-shadow: var(--shadow); border: 7px solid #fff; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-main-photo { position: absolute; inset: 0 70px 60px 0; border-radius: 42px 42px 90px 42px; transform: rotate(1deg); }
.hero-small-photo { position: absolute; width: 205px; height: 172px; border-radius: 28px; }
.hero-small-one { right: 0; top: 30px; transform: rotate(4deg); }
.hero-small-two { right: 4px; bottom: 0; transform: rotate(-3deg); }

.quick-actions { position: relative; z-index: 5; margin-top: -30px; }
.quick-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.quick-grid a { display: flex; gap: 13px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 16px 18px; box-shadow: 0 14px 36px rgba(53,28,42,.09); transition: transform .2s ease; }
.quick-grid a:hover { transform: translateY(-3px); }
.quick-grid small { display: block; color: var(--muted); }
.quick-grid strong { display: block; }
.quick-icon { width: 42px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-weight: 900; font-size: .76rem; }
.quick-icon.fb { background: #2675d8; font-size: 1.4rem; }

.section { padding: 96px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 720px; margin-bottom: 40px; }
.section-heading h2, .map-copy h2, .booking-copy h2 { font-size: clamp(2.2rem,4.5vw,4.2rem); line-height: 1; letter-spacing: -.04em; margin-bottom: 18px; }
.section-heading p:last-child, .map-copy > p, .booking-copy > p { color: var(--muted); font-size: 1.06rem; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 16px 34px rgba(70,35,52,.06); }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { margin-bottom: 0; color: var(--muted); }
.feature-icon { display: grid; place-items: center; width: 50px; aspect-ratio: 1; margin-bottom: 18px; border-radius: 16px; background: #e7ffff; color: var(--teal-dark); font-size: 1.3rem; font-weight: 900; }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: -12px 0 28px; }
.gallery-filter { border: 1px solid #e7c9d7; background: #fff; color: var(--teal-dark); padding: 10px 16px; border-radius: 999px; font-weight: 850; cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease; }
.gallery-filter:hover { transform: translateY(-2px); border-color: var(--pink); }
.gallery-filter.active { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: 0 8px 20px rgba(237,30,121,.18); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 250px; gap: 16px; }
.gallery-item { position: relative; border: 0; padding: 0; overflow: hidden; border-radius: 25px; background: #ddd; box-shadow: 0 12px 30px rgba(70,35,52,.08); cursor: pointer; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-tag { position: absolute; z-index: 2; left: 14px; bottom: 14px; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--teal-dark); font-size: .78rem; font-weight: 900; box-shadow: 0 7px 18px rgba(0,0,0,.12); pointer-events: none; }
.gallery-item.is-hidden { display: none; }
.gallery-wide { grid-column: span 2; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 22px; }
.price-card { text-align: center; border: 2px solid #f4c7dc; border-radius: 28px; padding: 30px 20px; background: #fff; }
.price-card.featured { border-color: #91dddd; background: #f3ffff; transform: translateY(-8px); }
.price-label { color: var(--pink); font-size: 1.18rem; font-weight: 900; }
.price { font-size: 3.2rem; line-height: 1.1; margin: 12px 0; font-weight: 950; color: var(--teal-dark); }
.price-card p { margin-bottom: 0; color: var(--muted); }
.included-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.info-panel { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff; }
.info-panel h3 { font-size: 1.3rem; color: var(--teal-dark); }
.check-list { list-style: none; padding: 0; margin: 0; columns: 1; }
.check-list li { position: relative; padding-left: 27px; margin: 8px 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 950; }
.highlight-note { background: var(--soft); border-left: 4px solid var(--pink); padding: 14px; border-radius: 12px; }
.rules p { background: #fff9ec; border-radius: 12px; padding: 12px; margin-bottom: 9px; }

.section-map { background: #f2ffff; }
.map-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; }
.map-frame { overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); min-height: 430px; border: 7px solid #fff; }
.map-frame iframe { width: 100%; min-height: 430px; border: 0; display: block; }

.booking-section { background: linear-gradient(135deg,#fff4fa,#efffff); }
.booking-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: start; }
.direct-contacts { display: grid; gap: 12px; margin-top: 28px; }
.direct-contacts a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.direct-contacts span { color: var(--muted); }
.direct-contacts strong { color: var(--pink); font-size: 1.18rem; }
.booking-form { background: #fff; border-radius: 30px; padding: 30px; box-shadow: var(--shadow); }
.booking-form label { display: grid; gap: 7px; font-weight: 750; margin-bottom: 17px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input,select,textarea { width: 100%; border: 1px solid #d9d1d6; border-radius: 13px; padding: 13px 14px; background: #fff; color: var(--ink); }
input:focus,select:focus,textarea:focus { outline: 3px solid rgba(21,155,159,.16); border-color: var(--teal); }
.conditional-field[hidden], .form-notice[hidden] { display: none !important; }
.conditional-field { margin-top: -3px; }
.form-notice { margin: -6px 0 17px; padding: 10px 12px; border-radius: 12px; background: #fff3f3; border: 1px solid #f2b7b7; color: #a82424; font-size: .86rem; font-weight: 800; }
fieldset { border: 0; padding: 0; margin: 0 0 20px; }
legend { font-weight: 800; margin-bottom: 8px; }
.radio { display: inline-flex !important; grid-template-columns: auto 1fr; align-items: center; margin-right: 20px !important; }
.radio input { width: auto; }
.btn-whatsapp { width: 100%; border: 0; background: var(--green); color: #fff; }
.privacy-note { margin: 12px 0 0; color: var(--muted); font-size: .8rem; text-align: center; }

.site-footer { padding: 45px 0; background: #201b22; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 30px; align-items: center; }
.footer-grid .brand-script { font-size: 2.5rem; }
.footer-grid p { margin: 6px 0 0; color: #bdb4bf; }
.footer-links { display: flex; gap: 20px; color: #dcd5dd; }
.back-top { color: #fff; font-weight: 800; }
.floating-wa { position: fixed; z-index: 45; right: 20px; bottom: 20px; width: 58px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-weight: 900; box-shadow: 0 16px 35px rgba(33,166,106,.35); border: 4px solid #fff; }

.lightbox { width: min(1000px, 94vw); max-width: none; padding: 0; border: 0; border-radius: 24px; overflow: visible; background: transparent; }
.lightbox::backdrop { background: rgba(21,16,22,.85); backdrop-filter: blur(5px); }
.lightbox img { max-height: 84vh; width: 100%; object-fit: contain; border-radius: 20px; }
.lightbox-close { position: absolute; right: -12px; top: -18px; width: 44px; aspect-ratio: 1; border: 0; border-radius: 50%; background: #fff; color: var(--pink); font-size: 2rem; line-height: 1; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; left: 18px; right: 18px; top: 70px; display: none; flex-direction: column; align-items: stretch; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 14px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .hero-grid, .map-grid, .booking-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-media { min-height: 510px; }
  .quick-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid, .included-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .video-preview { min-height: 260px; border-radius: 24px; }
  .play-button { width: 72px; height: 72px; font-size: 1.6rem; }
  .container { width: min(100% - 24px, 1160px); }
  .brand-script { font-size: 1.7rem; }
  .hero { padding: 42px 0 58px; }
  h1 { font-size: 3.55rem; }
  .hero-media { min-height: 390px; }
  .hero-main-photo { inset: 0 35px 45px 0; border-radius: 28px 28px 55px 28px; }
  .hero-small-photo { width: 145px; height: 120px; border-width: 5px !important; }
  .hero-small-one { top: 12px; }
  .hero-points { display: grid; grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-wide { grid-column: auto; }
  .section { padding: 72px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking-form { padding: 22px; }
  .map-frame, .map-frame iframe { min-height: 350px; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Video tour */
.video-section { background: linear-gradient(135deg,#fff 0%,#fff6fa 50%,#efffff 100%); }
.video-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 44px; align-items: center; }
.video-copy h2 { font-size: clamp(2.2rem,4.5vw,4.2rem); line-height: 1; letter-spacing: -.04em; margin-bottom: 18px; }
.video-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; margin-bottom: 26px; }
.btn-facebook { background: #2675d8; color: #fff; box-shadow: 0 14px 28px rgba(38,117,216,.22); }
.video-preview { position: relative; display: block; min-height: 420px; overflow: hidden; border-radius: 32px; border: 7px solid #fff; box-shadow: var(--shadow); background: #ddd; }
.video-preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.48),rgba(0,0,0,.02) 55%); }
.play-button { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 88px; height: 88px; display: grid; place-items: center; padding-left: 5px; border-radius: 50%; background: rgba(237,30,121,.94); color: white; font-size: 2rem; box-shadow: 0 16px 40px rgba(0,0,0,.25); transition: transform .2s ease; }
.video-preview:hover .play-button { transform: translate(-50%,-50%) scale(1.07); }
.video-caption { position: absolute; z-index: 2; left: 24px; bottom: 20px; color: #fff; font-weight: 900; font-size: 1.25rem; }
