:root{
  --bg:#0b0f17;
  --paper:#ffffff;
  --paper2:#f7f7f9;
  --text:#101318;
  --muted:#61666f;
  --red:#B22B2B;
  --red2:#8f1f1f;
  --shadow: 0 18px 45px rgba(10,12,18,.18);
  --radius: 20px;
  --radius2: 28px;
  --container: 1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--paper);
  line-height:1.55;
}
img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
.skip{
  position:absolute; left:-999px; top:8px;
  background:var(--paper); color:var(--text);
  padding:10px 14px; border-radius:999px; box-shadow:var(--shadow);
  z-index:9999;
}
.skip:focus{left:12px}

.container{width:min(var(--container), calc(100% - 40px)); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(20,20,20,.08);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand img{height:42px; width:auto}

.nav{position:relative}
.nav__toggle{
  display:none;
  border:0; background:transparent; padding:10px; border-radius:12px;
}
.nav__toggle span{
  display:block; width:22px; height:2px; background:#1a1e27; margin:5px 0; border-radius:99px;
}
.nav__list{
  list-style:none; display:flex; gap:18px; align-items:center;
  padding:0; margin:0;
}
.nav__list a{
  font-weight:600;
  color:#1a1e27;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  background:var(--red);
  color:#fff;
  font-weight:800;
  border:1px solid rgba(0,0,0,.05);
  box-shadow: 0 10px 30px rgba(178,43,43,.25);
}
.btn--ghost{
  background:transparent;
  color:#1a1e27;
  border:1px solid rgba(20,20,20,.16);
  box-shadow:none;
}
.btn--sm{padding:10px 14px; font-weight:800}

.hero{
  position:relative;
  color:#fff;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(120deg, rgba(11,15,23,.86), rgba(11,15,23,.35)),
    url("../img/hero.jpg") center/cover no-repeat;
  transform:scale(1.03);
}
.hero__content{
  position:relative;
  padding:68px 0 44px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 12px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  font-weight:700;
  margin-bottom:14px;
}
.hero h1{
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing:-.02em;
  margin:0 0 10px;
}
.hero h1 span{color:#ffd8d8}
.lead{font-size:1.12rem; max-width:62ch; opacity:.95; margin:0 0 22px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:22px}
.hero__cards{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.mini{
  padding:14px 16px;
  border-radius: var(--radius);
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
}
.mini h3{margin:0 0 6px; font-size:1rem}
.mini p{margin:0; opacity:.92}
.hero__wave{
  height:56px;
  background: radial-gradient(160px 50px at 20% 100%, rgba(255,255,255,.16), transparent 60%),
              radial-gradient(200px 70px at 60% 100%, rgba(255,255,255,.16), transparent 60%),
              linear-gradient(to bottom, transparent, rgba(255,255,255,1));
}

.section{padding:70px 0}
.section--tight{padding:52px 0}
.section--alt{background:var(--paper2)}
.section__head{margin-bottom:22px}
.section__head h2{margin:0 0 6px; font-size: clamp(1.55rem, 2.6vw, 2.1rem)}
.muted{color:var(--muted)}
.small{font-size:.92rem}

.grid{display:grid; gap:18px}
.grid--2{grid-template-columns: 1.05fr .95fr}

.card{
  background:var(--paper);
  border-radius: var(--radius2);
  box-shadow:var(--shadow);
  padding:22px;
  border:1px solid rgba(20,20,20,.06);
}
.card--soft{
  background: linear-gradient(180deg, #ffffff, #fbfbfd);
}
.card h2{margin:0 0 10px}
.checklist{margin:14px 0 0; padding:0; list-style:none}
.checklist li{
  padding-left:28px;
  margin:10px 0;
  position:relative;
}
.checklist li:before{
  content:"";
  position:absolute; left:0; top:6px;
  width:18px; height:18px; border-radius:7px;
  background:rgba(178,43,43,.14);
  border:1px solid rgba(178,43,43,.25);
}
.checklist li:after{
  content:"";
  position:absolute; left:6px; top:10px;
  width:7px; height:4px;
  border-left:2px solid var(--red);
  border-bottom:2px solid var(--red);
  transform:rotate(-45deg);
}

.social{display:grid; gap:10px; margin:12px 0 6px}
.social__item{
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(20,20,20,.08);
  background:#fff;
  font-weight:700;
}
.embedWrap{margin-top:12px}
.embedTitle{font-weight:800; margin:12px 0 8px}
.embed{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(20,20,20,.08);
  background:#fff;
  display:flex; justify-content:center;
  padding:10px;
}
.embed iframe{max-width:100%}

.packages{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.pkg{
  border:0; padding:0; background:transparent;
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  cursor:pointer;
  transform: translateZ(0);
}
.pkg img{width:100%; height:100%; object-fit:cover}
.pkg:focus-visible{outline:3px solid rgba(178,43,43,.35); outline-offset:3px}

.ctaStrip{
  margin-top:18px;
  padding:18px;
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(178,43,43,.12), rgba(11,15,23,.04));
  border:1px solid rgba(178,43,43,.16);
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.ctaStrip h3{margin:0 0 4px}
.ctaStrip p{margin:0; color:#2a2f38}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.gItem{
  border:0; padding:0; background:transparent;
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  cursor:pointer;
}
.gItem img{width:100%; height:220px; object-fit:cover}

.videoCard{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  background:var(--paper);
  border-radius: var(--radius2);
  box-shadow:var(--shadow);
  padding:18px;
  border:1px solid rgba(20,20,20,.06);
}
.video{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(20,20,20,.08);
  aspect-ratio: 16/9;
}
.video iframe{width:100%; height:100%}
.videoInfo{display:flex; flex-direction:column; justify-content:center}
.videoInfo h3{margin:0 0 6px}
.videoInfo p{margin:0 0 12px}

.contactBtns{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 14px}
.info{display:grid; gap:8px; margin-bottom:14px}
.map{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(20,20,20,.08);
  background:#fff;
}
.map iframe{width:100%; height:320px; border:0}

.form{display:grid; gap:12px; margin-top:12px}
label{display:grid; gap:8px; font-weight:800}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(20,20,20,.12);
  font:inherit;
  outline:none;
  background:#fff;
}
input:focus, textarea:focus{
  border-color: rgba(178,43,43,.55);
  box-shadow: 0 0 0 4px rgba(178,43,43,.12);
}

.footer{
  background:#0b0f17;
  color:#fff;
  padding:36px 0;
}
.footer__inner{
  display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap;
  align-items:flex-start;
}
.footer a{color:#fff; text-decoration:underline}
.footer__left{max-width:520px}
.footer__left img{filter: drop-shadow(0 10px 22px rgba(0,0,0,.25))}
.footer .muted{color:rgba(255,255,255,.72)}

.waFloat{
  position:fixed;
  right:16px; bottom:16px;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  background:#1fbd61;
  color:#fff;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(10,12,18,.22);
  z-index:60;
  font-weight:900;
}
.waFloat span{display:none}

.lightbox{
  position:fixed; inset:0;
  background:rgba(10,12,18,.82);
  display:none;
  align-items:center; justify-content:center;
  padding:20px;
  z-index:80;
}
.lightbox.is-open{display:flex}
.lightbox__figure{
  margin:0;
  max-width:min(980px, 100%);
  width:100%;
}
.lightbox__img{
  width:100%;
  border-radius: 22px;
  background:#111;
  box-shadow: var(--shadow);
}
.lightbox__cap{
  margin-top:10px;
  color:rgba(255,255,255,.88);
  font-weight:700;
  text-align:center;
}
.lightbox__close{
  position:absolute;
  top:12px; right:12px;
  width:44px; height:44px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:26px;
  cursor:pointer;
}

.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

@media (max-width: 920px){
  .grid--2{grid-template-columns:1fr}
  .hero__cards{grid-template-columns:1fr}
  .packages{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .gItem img{height:240px}
  .videoCard{grid-template-columns:1fr}
  .nav__toggle{display:inline-flex}
  .nav__list{
    position:absolute;
    right:0; top:52px;
    flex-direction:column;
    align-items:stretch;
    background:rgba(255,255,255,.98);
    border:1px solid rgba(20,20,20,.10);
    border-radius: 18px;
    padding:10px;
    gap:8px;
    width: min(260px, calc(100vw - 40px));
    box-shadow: var(--shadow);
    display:none;
  }
  .nav__list.is-open{display:flex}
  .waFloat span{display:inline}
}