:root{
      --dark:#1A1115;
      --cream:#FFF8F7;
      --pink:#F2C7D0;
      --pink-2:#E7A6B6;
      --rose:#C8748A;
      --gold:#C8A46A;
      --text:#24171D;
      --muted:#7D6870;
      --white:#fff;
      --line:rgba(36,23,29,.1);
      --shadow:0 30px 90px rgba(88,42,58,.16);
      --radius:34px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter,sans-serif;
      background:var(--cream);
      color:var(--text);
      overflow-x:hidden;
    }

    h1,h2,h3,h4,.serif{font-family:"Playfair Display",serif}
    a{text-decoration:none;color:inherit}
    img{display:block;max-width:100%}

    .progress-line{
      position:fixed;
      top:0;
      left:0;
      height:4px;
      width:0%;
      background:linear-gradient(90deg,var(--rose),var(--gold));
      z-index:9999;
    }

    .container-xl-custom{
      width:min(94%,1440px);
      margin:auto;
    }

    .section{padding:110px 0}
    .kicker{
      color:var(--rose);
      font-weight:900;
      letter-spacing:.18em;
      text-transform:uppercase;
      font-size:.75rem;
      margin-bottom:16px;
      display:inline-flex;
      align-items:center;
      gap:12px;
    }
    .kicker:before{
      content:"";
      width:34px;
      height:1px;
      background:var(--rose);
    }

    .title{
      font-size:clamp(2.4rem,5vw,5.6rem);
      line-height:.92;
      letter-spacing:-.055em;
      color:var(--dark);
      margin:0;
    }

    .text-muted-vibe{
      color:var(--muted);
      line-height:1.85;
      font-size:1.03rem;
    }

    .btn-vibe{
      min-height:54px;
      padding:0 27px;
      border-radius:999px;
      background:var(--dark);
      color:white;
      border:1px solid var(--dark);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      font-size:.78rem;
      font-weight:900;
      letter-spacing:.1em;
      text-transform:uppercase;
      transition:.35s ease;
      box-shadow:0 18px 45px rgba(26,17,21,.22);
    }

    .btn-vibe:hover{
      color:white;
      transform:translateY(-3px);
      box-shadow:0 25px 60px rgba(26,17,21,.3);
    }

    .btn-vibe.light{
      background:white;
      color:var(--dark);
      border-color:white;
      box-shadow:none;
    }

    .btn-vibe.outline{
      background:transparent;
      color:var(--dark);
      border-color:var(--line);
      box-shadow:none;
    }

    .btn-vibe.outline:hover{
      background:var(--dark);
      color:white;
    }

    .navbar{
      padding:16px 0;
      background:rgba(255,248,247,.82);
      backdrop-filter:blur(24px);
      border-bottom:1px solid rgba(36,23,29,.07);
      transition:.3s ease;
    }

    .navbar.scrolled{
      padding:10px 0;
      box-shadow:0 18px 50px rgba(88,42,58,.08);
    }

    .navbar-brand{
      font-family:"Playfair Display",serif;
      font-weight:900;
      letter-spacing:.1em;
      color:var(--dark);
    }

    .navbar-brand span{
      width:9px;
      height:9px;
      display:inline-block;
      background:var(--rose);
      border-radius:50%;
      margin-left:6px;
    }

    .nav-link{
      color:var(--dark);
      font-size:.76rem;
      font-weight:900;
      letter-spacing:.1em;
      text-transform:uppercase;
      margin:0 6px;
      opacity:.72;
      transition:.25s ease;
    }

    .nav-link:hover,.nav-link.active{
      color:var(--rose);
      opacity:1;
    }

    .hero{
      min-height:100vh;
      padding:92px 0 34px;
      position:relative;
      overflow:hidden;
    }

    .hero:before{
      content:"";
      position:absolute;
      width:780px;
      height:780px;
      right:-260px;
      top:-220px;
      background:radial-gradient(circle,rgba(242,199,208,.85),transparent 66%);
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:28px;
      min-height:780px;
      align-items:stretch;
      position:relative;
      z-index:2;
    }

    .hero-content{
      border-radius:46px;
      padding:64px;
      background:linear-gradient(135deg,#fff,#fff0f3);
      border:1px solid rgba(36,23,29,.08);
      box-shadow:0 30px 100px rgba(88,42,58,.1);
      display:flex;
      flex-direction:column;
      justify-content:center;
      position:relative;
      overflow:hidden;
    }

    .hero-content:after{
      content:"VIBE";
      position:absolute;
      right:-35px;
      bottom:-54px;
      font-family:"Playfair Display",serif;
      font-size:10rem;
      font-weight:900;
      letter-spacing:-.08em;
      color:rgba(200,116,138,.08);
    }

    .hero h1{
      font-size:clamp(3.4rem,7.4vw,8.4rem);
      line-height:.84;
      letter-spacing:-.08em;
      color:var(--dark);
      margin-bottom:26px;
      position:relative;
      z-index:1;
    }

    .hero p{
      max-width:640px;
      position:relative;
      z-index:1;
    }

    .hero-actions{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-top:30px;
      position:relative;
      z-index:1;
    }

    .hero-side{
      display:grid;
      grid-template-rows:1fr 235px;
      gap:22px;
    }

    .hero-photo{
      border-radius:46px;
      background:
        linear-gradient(180deg,rgba(26,17,21,.02),rgba(26,17,21,.62)),
        url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=1500&q=88") center/cover no-repeat;
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow);
    }

    .hero-glass{
      position:absolute;
      left:26px;
      right:26px;
      bottom:26px;
      padding:24px;
      border-radius:30px;
      background:rgba(255,255,255,.17);
      border:1px solid rgba(255,255,255,.28);
      backdrop-filter:blur(24px);
      color:white;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
    }

    .hero-glass strong{
      font-family:"Playfair Display",serif;
      font-size:2.4rem;
      line-height:1;
      display:block;
    }

    .hero-glass span{
      font-size:.76rem;
      color:rgba(255,255,255,.72);
    }

    .hero-cards{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
    }

    .mini-card{
      border-radius:34px;
      padding:28px;
      background:var(--dark);
      color:white;
      overflow:hidden;
      position:relative;
    }

    .mini-card:nth-child(2){
      background:white;
      color:var(--dark);
      border:1px solid var(--line);
    }

    .mini-card i{
      font-size:1.8rem;
      color:var(--pink-2);
      margin-bottom:22px;
      display:block;
    }

    .mini-card h3{
      font-size:2rem;
      margin:0 0 6px;
    }

    .mini-card p{
      margin:0;
      color:rgba(255,255,255,.68);
      line-height:1.6;
    }

    .mini-card:nth-child(2) p{color:var(--muted)}

    .service-panel{
      background:white;
      border:1px solid var(--line);
      border-radius:46px;
      padding:34px;
      box-shadow:0 26px 80px rgba(88,42,58,.08);
    }

    .service-tabs{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:26px;
    }

    .service-tab{
      border:1px solid var(--line);
      background:#fff9fa;
      color:var(--dark);
      padding:12px 18px;
      border-radius:999px;
      font-size:.76rem;
      font-weight:900;
      letter-spacing:.09em;
      text-transform:uppercase;
      transition:.3s ease;
    }

    .service-tab.active,.service-tab:hover{
      background:var(--dark);
      color:white;
    }

    .service-content{
      display:none;
      grid-template-columns:.9fr 1.1fr;
      gap:26px;
      align-items:stretch;
    }

    .service-content.active{display:grid}

    .service-image{
      min-height:430px;
      border-radius:34px;
      background-size:cover;
      background-position:center;
    }

    .service-detail{
      border-radius:34px;
      background:linear-gradient(135deg,#fff,#fff3f5);
      padding:40px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }

    .service-detail h3{
      font-size:3rem;
      line-height:1;
      margin-bottom:18px;
    }

    .service-list{
      display:grid;
      gap:12px;
      margin-top:18px;
    }

    .service-list div{
      display:flex;
      gap:12px;
      align-items:center;
      color:var(--muted);
    }

    .service-list i{color:var(--rose)}

    .dark-section{
      background:linear-gradient(135deg,var(--dark),#2c1720);
      border-radius:52px;
      padding:72px;
      color:white;
      overflow:hidden;
      position:relative;
    }

    .dark-section:after{
      content:"";
      position:absolute;
      width:500px;
      height:500px;
      right:-180px;
      top:-160px;
      background:radial-gradient(circle,rgba(231,166,182,.35),transparent 65%);
    }

    .dark-section .title{color:white}
    .dark-section .text-muted-vibe{color:rgba(255,255,255,.68)}

    .gallery-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:30px;
      margin-bottom:34px;
      position:relative;
      z-index:2;
    }

    .filters{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    .filter-btn{
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.08);
      color:white;
      border-radius:999px;
      padding:11px 16px;
      font-size:.74rem;
      font-weight:900;
      letter-spacing:.09em;
      text-transform:uppercase;
      transition:.3s ease;
    }

    .filter-btn.active,.filter-btn:hover{
      background:white;
      color:var(--dark);
    }

    .gallery-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr 1fr;
      gap:18px;
      position:relative;
      z-index:2;
    }

    .gallery-item{
      min-height:350px;
      border-radius:34px;
      overflow:hidden;
      position:relative;
      cursor:pointer;
      background:#fff;
    }

    .gallery-item.tall{min-height:540px}
    .gallery-item.small{min-height:250px}

    .gallery-item img{
      width:100%;
      height:100%;
      object-fit:cover;
      position:absolute;
      inset:0;
      transition:.6s ease;
    }

    .gallery-item:hover img{transform:scale(1.08)}

    .gallery-item:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(transparent,rgba(0,0,0,.72));
    }

    .gallery-info{
      position:absolute;
      left:24px;
      right:24px;
      bottom:22px;
      z-index:2;
      color:white;
    }

    .gallery-info small{
      color:var(--pink);
      font-weight:900;
      letter-spacing:.14em;
      text-transform:uppercase;
    }

    .gallery-info h3{
      font-size:1.8rem;
      margin:6px 0 0;
    }

    .why-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:34px;
      align-items:center;
    }

    .why-photo{
      min-height:690px;
      border-radius:46px;
      background:
        linear-gradient(180deg,rgba(26,17,21,.08),rgba(26,17,21,.48)),
        url("https://images.unsplash.com/photo-1632345031435-8727f6897d53?auto=format&fit=crop&w=1300&q=88") center/cover no-repeat;
      box-shadow:var(--shadow);
    }

    .why-cards{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
      margin-top:30px;
    }

    .why-card{
      background:white;
      border:1px solid var(--line);
      border-radius:30px;
      padding:28px;
      min-height:210px;
      transition:.35s ease;
    }

    .why-card:hover{
      transform:translateY(-8px);
      box-shadow:0 25px 75px rgba(88,42,58,.12);
    }

    .why-card i{
      font-size:1.65rem;
      color:var(--rose);
      margin-bottom:20px;
      display:block;
    }

    .why-card h3{
      font-size:1.35rem;
      margin-bottom:10px;
    }

    .pricing-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      margin-top:38px;
    }

    .price-card{
      background:white;
      border:1px solid var(--line);
      border-radius:38px;
      padding:34px;
      min-height:490px;
      transition:.35s ease;
    }

    .price-card:hover{
      transform:translateY(-8px);
      box-shadow:var(--shadow);
    }

    .price-card.featured{
      background:var(--dark);
      color:white;
      transform:translateY(-18px);
    }

    .price-card h3{
      font-size:2.25rem;
    }

    .price-card p{color:var(--muted)}
    .price-card.featured p{color:rgba(255,255,255,.66)}

    .price-row{
      display:flex;
      justify-content:space-between;
      gap:20px;
      padding:17px 0;
      border-bottom:1px solid var(--line);
    }

    .featured .price-row{
      border-color:rgba(255,255,255,.14);
    }

    .price-row span:first-child{
      font-weight:800;
    }

    .price-row small{
      display:block;
      color:var(--muted);
      margin-top:4px;
    }

    .featured .price-row small{color:rgba(255,255,255,.55)}

    .price{
      color:var(--rose);
      font-weight:900;
      white-space:nowrap;
    }

    .featured .price{color:var(--pink)}

    .reviews-wrap{
      background:white;
      border:1px solid var(--line);
      border-radius:52px;
      padding:70px;
      box-shadow:0 26px 80px rgba(88,42,58,.08);
    }

    .review-card{
      background:#fff8fa;
      border:1px solid rgba(36,23,29,.07);
      border-radius:34px;
      padding:34px;
      min-height:310px;
    }

    .stars{
      color:var(--gold);
      letter-spacing:2px;
      margin-bottom:18px;
    }

    .avatar{
      width:52px;
      height:52px;
      border-radius:50%;
      object-fit:cover;
    }

    .booking-grid{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:26px;
    }

    .booking-visual{
      min-height:690px;
      border-radius:46px;
      padding:44px;
      color:white;
      display:flex;
      flex-direction:column;
      justify-content:end;
      background:
        linear-gradient(180deg,rgba(26,17,21,.1),rgba(26,17,21,.78)),
        url("https://images.unsplash.com/photo-1604902396830-aca29e19b067?auto=format&fit=crop&w=1200&q=88") center/cover no-repeat;
      box-shadow:var(--shadow);
    }

    .booking-visual .title{color:white}

    .booking-form{
      background:white;
      border:1px solid var(--line);
      border-radius:46px;
      padding:46px;
      box-shadow:var(--shadow);
    }

    .form-label{
      font-weight:800;
      font-size:.82rem;
    }

    .form-control,.form-select{
      min-height:56px;
      border-radius:18px;
      border:1px solid rgba(36,23,29,.12);
      background:#fffdfd;
    }

    .form-control:focus,.form-select:focus{
      border-color:var(--rose);
      box-shadow:0 0 0 .2rem rgba(200,116,138,.16);
    }

    .whatsapp-box{
      margin-top:24px;
      border-radius:34px;
      padding:30px;
      background:linear-gradient(135deg,#1f8f55,#25d366);
      color:white;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }

    .whatsapp-box i{
      font-size:2.4rem;
    }

    .insta-grid{
      display:grid;
      grid-template-columns:repeat(6,1fr);
      gap:12px;
      margin-top:34px;
    }

    .insta{
      aspect-ratio:1;
      border-radius:24px;
      overflow:hidden;
      position:relative;
    }

    .insta img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:.55s ease;
    }

    .insta:hover img{transform:scale(1.1)}

    .contact-grid{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:24px;
    }

    .contact-card{
      background:white;
      border:1px solid var(--line);
      border-radius:38px;
      padding:34px;
      height:100%;
    }

    .contact-item{
      display:flex;
      gap:16px;
      padding:18px 0;
      border-bottom:1px solid var(--line);
    }

    .contact-item:last-child{border-bottom:0}
    .contact-item i{
      color:var(--rose);
      font-size:1.3rem;
    }

    .map{
      width:100%;
      height:100%;
      min-height:540px;
      border:0;
      border-radius:38px;
      filter:grayscale(1) contrast(1.04);
    }

    footer{
      background:var(--dark);
      color:white;
      padding:76px 0 30px;
    }

    footer p,footer a{color:rgba(255,255,255,.66)}

    .footer-brand{
      font-family:"Playfair Display",serif;
      font-size:2.3rem;
      font-weight:900;
    }

    .social a{
      width:43px;
      height:43px;
      display:inline-grid;
      place-items:center;
      border-radius:50%;
      background:rgba(255,255,255,.08);
      margin-right:8px;
      transition:.3s ease;
    }

    .social a:hover{
      background:var(--rose);
      color:white;
      transform:translateY(-4px);
    }

    .mobile-cta{
      display:none;
      position:fixed;
      left:14px;
      right:14px;
      bottom:14px;
      z-index:1500;
    }

    .float-whatsapp{
      position:fixed;
      right:18px;
      bottom:86px;
      width:58px;
      height:58px;
      border-radius:50%;
      background:#25d366;
      color:white;
      display:grid;
      place-items:center;
      font-size:1.7rem;
      z-index:1500;
      box-shadow:0 16px 40px rgba(37,211,102,.35);
      transition:.3s ease;
    }

    .float-whatsapp:hover{
      color:white;
      transform:translateY(-4px);
    }

    .reveal{
      opacity:0;
      transform:translateY(26px);
      transition:.85s ease;
    }

    .reveal.show{
      opacity:1;
      transform:none;
    }

    .lightbox{
      position:fixed;
      inset:0;
      background:rgba(0,0,0,.88);
      z-index:3000;
      display:none;
      align-items:center;
      justify-content:center;
      padding:20px;
    }

    .lightbox.show{display:flex}

    .lightbox img{
      max-height:86vh;
      border-radius:30px;
      box-shadow:0 30px 90px rgba(0,0,0,.45);
    }

    .close-lightbox{
      position:absolute;
      top:24px;
      right:30px;
      color:white;
      font-size:2.2rem;
      cursor:pointer;
    }

    @media(max-width:1199px){
      .hero-grid,.service-content,.why-grid,.booking-grid,.contact-grid{
        grid-template-columns:1fr;
      }

      .hero-grid{min-height:auto}
      .hero-side{grid-template-rows:560px auto}
      .gallery-grid{grid-template-columns:1fr 1fr}
      .pricing-grid{grid-template-columns:1fr}
      .price-card.featured{transform:none}
      .map{height:460px}
    }

    @media(max-width:991px){
      .navbar-collapse{
        background:white;
        margin-top:14px;
        padding:18px;
        border-radius:24px;
        box-shadow:var(--shadow);
      }

      .section{padding:78px 0}
      .hero-content{padding:42px}
      .dark-section,.reviews-wrap{padding:40px;border-radius:38px}
      .gallery-head{flex-direction:column;align-items:flex-start}
      .why-cards{grid-template-columns:1fr}
      .insta-grid{grid-template-columns:repeat(3,1fr)}
      .mobile-cta{display:flex}
      .booking-visual{min-height:480px}
    }

    @media(max-width:640px){
      .hero{padding-top:80px}
      .hero-content{padding:30px 24px;border-radius:32px}
      .hero h1{font-size:3.55rem}
      .hero-actions .btn-vibe{width:100%}
      .hero-side{grid-template-rows:420px auto}
      .hero-glass{grid-template-columns:1fr;gap:10px}
      .hero-cards,.gallery-grid{grid-template-columns:1fr}
      .gallery-item,.gallery-item.tall,.gallery-item.small{min-height:390px}
      .service-detail{padding:28px}
      .service-detail h3{font-size:2.3rem}
      .booking-form{padding:28px;border-radius:34px}
      .whatsapp-box{flex-direction:column;align-items:flex-start}
      .insta-grid{grid-template-columns:repeat(2,1fr)}
      .btn-vibe{width:100%}
      footer{padding-bottom:95px}
      .float-whatsapp{bottom:84px}
    }

.flash-stack{position:fixed;top:92px;right:20px;z-index:2200;width:min(430px,calc(100% - 40px))}
.flash-card{background:white;border:1px solid var(--line);border-radius:20px;padding:16px 18px;box-shadow:var(--shadow);margin-bottom:10px;display:flex;gap:12px;align-items:flex-start}
.flash-card.success i{color:#198754}.flash-card.error i{color:#dc3545}
.preview-bar{position:fixed;left:50%;bottom:20px;transform:translateX(-50%);z-index:2100;background:var(--dark);color:white;padding:12px 18px;border-radius:999px;box-shadow:var(--shadow);font-size:.8rem;font-weight:800}
.preview-bar a{color:var(--pink);margin-left:10px}
.empty-state{padding:44px;text-align:center;border:1px dashed var(--line);border-radius:28px;color:var(--muted)}
.booking-form .honeypot{position:absolute!important;left:-9999px!important;opacity:0!important}
.gallery-item[hidden]{display:none!important}
