:root{
  --primary:#E93783;
  --secondary:#F9BFCB;
  --dark:#1f1f2e;
  --bg:#fff7fb;
  --shadow: 0 18px 45px rgba(0,0,0,.12);
  --radius: 22px;
  --max: 1140px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--dark);
  background: radial-gradient(1200px 800px at 15% -10%, rgba(233,55,131,.18), transparent 60%),
              radial-gradient(1100px 700px at 90% 10%, rgba(249,191,203,.35), transparent 55%),
              var(--bg);
}
a{color:inherit}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}
/* Top bar */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
}
.brand{display:flex; gap:12px; align-items:center; text-decoration:none}
.brand img{width:44px; height:44px; border-radius:12px; box-shadow:0 10px 25px rgba(233,55,131,.25)}
.brand .t1{font-weight:900; letter-spacing:.2px}
.brand .t2{font-size:12px; opacity:.75; margin-top:-2px}
.menu{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.menu a{text-decoration:none; font-weight:700; font-size:14px; padding:10px 12px; border-radius:14px}
.menu a:hover{background: rgba(233,55,131,.08)}
.btn{display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:var(--primary); color:white; border:none; cursor:pointer;
  padding:12px 16px; border-radius:16px; font-weight:900; text-decoration:none;
  box-shadow: 0 14px 30px rgba(233,55,131,.28);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn.secondary{background:white; color:var(--dark); border:1px solid rgba(0,0,0,.08); box-shadow:none}
.badge{display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px;
  background: rgba(233,55,131,.10); border:1px solid rgba(233,55,131,.18); font-weight:800; font-size:13px}
/* Hero */
.hero{padding: 34px 0 18px}
.hero-grid{display:grid; gap:26px; grid-template-columns: 1.15fr .85fr; align-items:center}
@media (max-width: 980px){ .hero-grid{grid-template-columns:1fr;} }
.h-title{font-size: clamp(34px, 4vw, 56px); line-height:1.02; margin:12px 0 10px; letter-spacing:-.5px}
.h-sub{font-size: 16px; opacity:.85; line-height:1.6; max-width: 54ch}
.chips{display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 18px}
.hero-card{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.hero-card .imgwrap{position:relative; aspect-ratio: 16/11; overflow:hidden}
.hero-card img{width:100%; height:100%; object-fit:cover; transform: scale(1.02)}
.hero-card .overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.55));
}
.hero-card .caption{
  position:absolute; left:14px; right:14px; bottom:14px;
  color:white;
}
.hero-card .caption b{font-size:16px}
.hero-card .caption div{font-size:13px; opacity:.9; margin-top:4px}
/* Sections */
section{padding: 34px 0}
.sec-title{font-size: 26px; margin:0 0 10px; letter-spacing:-.2px}
.sec-sub{margin:0 0 18px; opacity:.8; line-height:1.6}
.grid3{display:grid; gap:16px; grid-template-columns: repeat(3, 1fr)}
@media (max-width: 980px){ .grid3{grid-template-columns:1fr} }
.card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}
.card h3{margin:0 0 8px}
.card p{margin:0; opacity:.82; line-height:1.55}
.icon{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(233,55,131,.12);
  border:1px solid rgba(233,55,131,.18);
  margin-bottom:10px;
}
/* Gallery */
.gallery{display:grid; grid-template-columns: repeat(12, 1fr); gap:10px}
.g-item{grid-column: span 4; border-radius: 18px; overflow:hidden; position:relative; cursor:pointer;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.7);
}
.g-item img{width:100%; height:100%; object-fit:cover; display:block; aspect-ratio: 4/3}
.g-item::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35));
  opacity:0; transition: opacity .2s ease;
}
.g-item:hover::after{opacity:1}
@media (max-width: 980px){ .g-item{grid-column: span 6} }
@media (max-width: 560px){ .g-item{grid-column: span 12} }
/* Lightbox */
.lightbox{position:fixed; inset:0; background: rgba(0,0,0,.72); display:none; align-items:center; justify-content:center; z-index:100}
.lightbox.open{display:flex}
.lightbox .box{width:min(1000px, calc(100% - 24px)); background:white; border-radius: 20px; overflow:hidden}
.lightbox img{width:100%; height:auto; display:block; max-height: 78vh; object-fit:contain; background:black}
.lightbox .bar{display:flex; align-items:center; justify-content:space-between; padding:10px 12px}
.lightbox .bar .x{border:none; background: rgba(0,0,0,.06); border-radius: 12px; padding:10px 12px; cursor:pointer; font-weight:900}
/* Contact */
.form{display:grid; gap:12px}
.input{padding:14px 14px; border-radius:16px; border:1px solid rgba(0,0,0,.12); background:white; font-size:15px; width:100%}
textarea.input{min-height:120px; resize:vertical}
.two{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
@media (max-width: 680px){ .two{grid-template-columns:1fr} }
/* CTA bar */
.cta-bar{
  position:fixed; left:14px; right:14px; bottom:14px; z-index:60;
  display:flex; justify-content:center;
}
.cta-inner{
  width:min(var(--max), 100%);
  background: rgba(255,255,255,.85);
  border:1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 10px;
  display:flex; gap:10px; align-items:center; justify-content:space-between;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.cta-inner .mini{font-weight:900}
.cta-inner .mini span{display:block; font-weight:700; font-size:12px; opacity:.75; margin-top:2px}
.cta-actions{display:flex; gap:10px; flex-wrap:wrap}
@media (max-width: 680px){
  .cta-inner{flex-direction:column; align-items:stretch}
  .cta-actions a{width:100%}
}
/* Footer */
footer{padding: 34px 0 80px; opacity:.9}
.footerbox{display:flex; gap:16px; flex-wrap:wrap; align-items:center; justify-content:space-between}
.small{font-size:13px; opacity:.75; line-height:1.5}
/* Reveal */
.reveal{opacity:0; transform: translateY(10px); transition: all .55s ease}
.reveal.show{opacity:1; transform:none}