:root{
  --bg:#0b0b0d;
  --card:#121216;
  --muted:rgba(255,255,255,.72);
  --text:rgba(255,255,255,.92);
  --soft:rgba(255,255,255,.08);
  --brand:#f26c2a;
  --brand2:#ff8a42;
  --cream:#fff2ea;
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(242,108,42,.45), transparent 60%),
              radial-gradient(900px 500px at 85% 5%, rgba(255,138,66,.25), transparent 55%),
              #070709;
  line-height:1.55;
}

img{max-width:100%; display:block}
a{color:inherit}
.container{width:min(1120px, 92vw); margin-inline:auto}

.skip{
  position:absolute; left:-999px; top:10px;
  background:#fff; color:#000; padding:10px 14px; border-radius:10px;
}
.skip:focus{left:10px; z-index:9999}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,7,9,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.brand__dot{
  width:14px; height:14px; border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 6px rgba(242,108,42,.16);
}
.brand__txt{
  font-family: Montserrat, Inter, system-ui, sans-serif;
  letter-spacing:.2px;
}
.brand__txt strong{font-weight:800}
.brand__txt span{opacity:.8; font-weight:600}

.nav{
  display:flex; gap:18px; align-items:center;
  flex-wrap:wrap;
}
.nav a{
  text-decoration:none;
  opacity:.9;
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{background:rgba(255,255,255,.06)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  text-decoration:none;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(242,108,42,.22);
}
.btn:hover{transform: translateY(-1px)}
.btn--ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow:none;
}
.btn--ghost:hover{background: rgba(255,255,255,.06)}
.btn--sm{padding:9px 12px; border-radius:12px; font-size:14px}

.hero{padding:46px 0 20px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:center;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(242,108,42,.14);
  border: 1px solid rgba(242,108,42,.25);
  font-weight:700;
  color:#ffd9c4;
  margin:0 0 12px;
}
h1,h2,h3{
  font-family: Montserrat, Inter, system-ui, sans-serif;
  margin:0 0 10px;
}
h1{font-size: clamp(34px, 5vw, 56px); line-height:1.05; letter-spacing:-.8px}
h2{font-size: clamp(24px, 3vw, 34px); letter-spacing:-.4px}
h3{font-size: 18px; letter-spacing:-.2px}
.accent{color: #ffd1b6}
.lead{font-size: 16.5px; opacity:.9; margin: 0 0 18px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px}
.hero__badges{display:flex; gap:10px; flex-wrap:wrap; margin: 8px 0 10px}
.badge{
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  font-size:13px;
  opacity:.9;
}
.fineprint{font-size:12.5px; opacity:.72; margin: 10px 0 0}

.frame{
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.frame img{width:100%; height:auto}
.miniGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:12px;
}
.thumb{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow:hidden;
  padding:0;
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.thumb img{width:100%; height:110px; object-fit:cover}

.section{padding:64px 0}
.section--alt{
  background: radial-gradient(1000px 700px at 20% 0%, rgba(242,108,42,.12), transparent 55%),
              rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head{margin-bottom:22px}
.section__head p{margin:0; opacity:.82}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin: 18px 0 26px;
}
.card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
}
.card p{margin: 8px 0 0; opacity:.82}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  align-items:center;
}
.split__img img{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.list{padding-left:18px; margin: 10px 0 14px}
.list li{margin: 8px 0; opacity:.85}
.callout{
  background: linear-gradient(135deg, rgba(242,108,42,.18), rgba(255,255,255,.04));
  border: 1px solid rgba(242,108,42,.25);
  border-radius: 18px;
  padding: 14px;
}

.promoGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}
.promoImg img{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.promoBox{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding:18px;
}
.promoActions{display:flex; gap:10px; flex-wrap:wrap; margin: 12px 0}
.miniCards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:14px;
}
.miniCard{
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding:12px;
}
.miniCard__k{font-size:12px; opacity:.72}
.miniCard__v{font-weight:800; margin-top:4px}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.gitem{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow:hidden;
  padding:0;
  background: rgba(255,255,255,.04);
  cursor:pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.gitem img{width:100%; height: 210px; object-fit:cover}

.videoWrap{
  position:relative;
  padding-top:56.25%;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.videoWrap iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
}

.socialGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.socialCard{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px;
}
.fbWrap{
  margin-top: 10px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.2);
}
.fbWrap iframe{max-width:100%}
.igBox{
  margin-top:10px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  padding: 12px;
}
.igBox img{border-radius: 14px; border:1px solid rgba(255,255,255,.12)}

.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.contactInfo, .form{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px;
}
.mapWrap{
  margin-top:12px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
}
.mapWrap iframe{width:100%; height:260px; border:0}

.field{display:flex; flex-direction:column; gap:8px; margin-bottom:12px}
label{font-weight:700; font-size:13px; opacity:.9}
input, textarea{
  padding:12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(242,108,42,.6); box-shadow: 0 0 0 4px rgba(242,108,42,.14)}

.footer{
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
}
.footer__wrap{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  opacity:.9;
}
.footer p{margin:0; font-size:14px; opacity:.85}

.waFloat{
  position:fixed;
  right:18px;
  bottom:18px;
  width:58px; height:58px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, #25D366, #19b956);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  z-index:60;
}
.waFloat svg{width:30px; height:30px; fill:#fff}

.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.82);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 24px;
  z-index:80;
}
.lightbox.is-open{display:flex}
.lightbox__img{
  width:min(980px, 96vw);
  height:auto;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.lightbox__close{
  position:fixed;
  top:16px; right:16px;
  width:46px; height:46px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

.reveal{opacity:0; transform: translateY(10px); transition: .7s ease}
.reveal.is-in{opacity:1; transform: translateY(0)}

@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .promoGrid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .socialGrid{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  .thumb img{height:96px}
}
@media (max-width: 520px){
  .nav{display:none}
  .gallery{grid-template-columns:1fr}
  .gitem img{height: 220px}
}