:root{
  --bg:#071b22;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.10);
  --text:#eaf3f6;
  --muted: rgba(234,243,246,.72);
  --brand:#0f5a74;
  --brand2:#f6a028;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1140px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 30% -20%, rgba(246,160,40,.20), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(15,90,116,.35), transparent 55%),
    linear-gradient(180deg, #061820 0%, #041014 100%);
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#000; border-radius:10px; z-index:9999}

.site-header{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(12px);
  background: rgba(4,16,20,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 220px}
.brand-logo{
  width:44px; height:44px; border-radius:12px;
  object-fit:cover;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.12);
}
.brand-text strong{display:block; font-weight:800; letter-spacing:.2px}
.brand-text span{display:block; font-size:12px; opacity:.8; margin-top:2px}

.nav{display:flex; align-items:center; gap:14px}
.nav a{font-weight:600; font-size:14px; opacity:.9; padding:10px 8px; border-radius:10px}
.nav a:hover{background: rgba(255,255,255,.06); opacity:1}

.nav-toggle{
  display:none;
  width:44px; height:44px; border:1px solid rgba(255,255,255,.12);
  border-radius:14px; background: rgba(255,255,255,.06);
  cursor:pointer;
}
.nav-toggle span{display:block; height:2px; background:var(--text); margin:6px 10px; opacity:.9}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, #0b3f52 100%);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  font-weight:800; letter-spacing:.2px;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.btn-ghost{
  background: rgba(255,255,255,.06);
  box-shadow:none;
}
.btn-small{padding:10px 12px; border-radius:12px}
.btn-block{width:100%}

.hero{
  position:relative;
  min-height: 78vh;
  display:flex;
  align-items:stretch;
}
.hero-bg{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(4,16,20,.25) 0%, rgba(4,16,20,.92) 80%),
    url("../img/g1.jpg") center/cover no-repeat;
  filter: saturate(1.1) contrast(1.06);
}
.hero-inner{position:relative; display:flex; align-items:flex-end; padding: 58px 0 42px}
.hero-card{
  width: min(720px, 100%);
  padding: 22px 22px 18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(246,160,40,.16);
  border: 1px solid rgba(246,160,40,.22);
  color: rgba(255,255,255,.92);
  font-weight:700;
  margin:0 0 14px;
  font-size: 12.5px;
}
.hero h1{
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 50px);
  line-height:1.05;
  margin:0 0 10px;
  letter-spacing: .2px;
}
.lead{margin:0 0 16px; color:var(--muted); font-size: 15.5px; line-height:1.6}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin: 14px 0 16px}
.hero-trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.trust-item{
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.trust-title{display:block; font-weight:800; font-size:13px}
.trust-sub{display:block; margin-top:2px; font-size:12px; color:var(--muted)}

.section{padding: 70px 0}
.section-alt{background: rgba(255,255,255,.03); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06)}
.section-head{max-width: 720px; margin-bottom: 22px}
.section-head h2{
  margin:0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 34px;
}
.section-head p{margin:0; color:var(--muted); line-height:1.6}

.grid{display:grid; gap:16px}
.cards{grid-template-columns: repeat(3, 1fr)}
.socials{grid-template-columns: repeat(2, 1fr)}
.contact{grid-template-columns: 1.1fr .9fr}

.card{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0 0 10px; color:var(--muted); line-height:1.6}

.check{margin:0; padding-left: 18px; color: rgba(234,243,246,.92)}
.check li{margin: 7px 0}
.check li::marker{color: var(--brand2)}

.cta-band{
  margin-top: 18px;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(600px 200px at 15% 50%, rgba(246,160,40,.18), transparent 60%),
    radial-gradient(600px 200px at 85% 30%, rgba(15,90,116,.30), transparent 60%),
    rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.cta-band h3{margin:0 0 6px; font-size:18px}
.cta-band p{margin:0; color:var(--muted)}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery-item{
  margin:0;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  cursor: zoom-in;
  min-height: 140px;
}
.gallery-item img{
  width:100%; height:100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}
.gallery-item:hover img{transform: scale(1.08)}

.gallery-item:nth-child(1){grid-column: span 7; grid-row: span 2; min-height: 280px}
.gallery-item:nth-child(2){grid-column: span 5}
.gallery-item:nth-child(3){grid-column: span 4}
.gallery-item:nth-child(4){grid-column: span 4}
.gallery-item:nth-child(5){grid-column: span 4}
.gallery-item:nth-child(6){grid-column: span 6}
.gallery-item:nth-child(7){grid-column: span 6}
.gallery-item:nth-child(8){grid-column: span 7; grid-row: span 2; min-height: 280px}
.gallery-item:nth-child(9){grid-column: span 5}

.lightbox{
  position:fixed; inset:0;
  display:none;
  align-items:center; justify-content:center;
  background: rgba(0,0,0,.70);
  padding: 20px;
  z-index: 2000;
}
.lightbox.open{display:flex}
.lightbox-img{
  max-width: min(1000px, 94vw);
  max-height: 74vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  background: #000;
}
.lightbox-caption{
  position:absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, 94vw);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  background: rgba(0,0,0,.35);
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
}
.lightbox-close{
  position:absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 26px;
  cursor:pointer;
}

.video-frame{
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  aspect-ratio: 16 / 9;
}
.video-frame iframe{width:100%; height:100%}

.embed-wrap{
  width:100%;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  min-height: 520px;
}
.embed-wrap.ig{display:flex; align-items:center; justify-content:center; padding:8px}
.fb-iframe{width:100%; height:620px}

.note{margin-top:14px; color:var(--muted)}

.contact-list{display:grid; gap:10px; margin-top: 8px}
.contact-item{
  display:flex; gap:12px; align-items:center;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.contact-item:hover{background: rgba(255,255,255,.08)}
.contact-item .icon{font-size: 20px}
.contact-item small{display:block; color:var(--muted); margin-top:2px}

.form{display:grid; gap:12px; margin-top:8px}
label{display:grid; gap:6px; font-weight:700; font-size: 13px}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(3,10,12,.35);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(246,160,40,.55)}
.form-note{margin: 0; color: var(--muted); font-size: 12.5px}

.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  z-index: 2100;
}

.site-footer{
  padding: 40px 0 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:flex-start; gap:18px;
}
.footer-inner p{margin:8px 0 0; color:var(--muted); max-width: 520px}
.footer-links{display:flex; gap:12px; flex-wrap:wrap}
.footer-links a{padding:10px 12px; border-radius: 12px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10)}
.footer-bottom{padding-top: 14px; margin-top: 14px; border-top:1px solid rgba(255,255,255,.08)}
.footer-bottom p{margin:0; color: rgba(234,243,246,.85); font-size: 13px}

.reveal{opacity:0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease}
.reveal.in{opacity:1; transform: translateY(0)}

@media (max-width: 980px){
  .cards{grid-template-columns: 1fr}
  .socials{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .hero-inner{padding: 46px 0 30px}
  .hero-trust{grid-template-columns: 1fr; gap:10px}
  .cta-band{flex-direction:column; align-items:flex-start}
  .embed-wrap{min-height: 560px}
}
@media (max-width: 820px){
  .nav-toggle{display:block}
  .nav{
    position: absolute;
    right: 20px;
    top: 66px;
    width: min(320px, calc(100vw - 40px));
    display:none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(4,16,20,.92);
    border:1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .nav.open{display:flex}
  .nav a{padding: 12px 12px}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .gallery-item, .gallery-item:nth-child(n){grid-column: auto; grid-row: auto; min-height: 170px}
  .footer-inner{flex-direction:column}
}

.wa-text{font-weight:900; letter-spacing:.5px; color:#fff; font-size:18px}
