:root{
  --bg:#0b1f1f;
  --bg2:#0f2a2a;
  --card:#0f2a2a;
  --soft:#0d2424;
  --text:#eaf3f3;
  --muted:#b8d1d1;
  --accent:#d85f48;
  --accent2:#2aa79a;
  --white:#ffffff;
  --shadow: 0 16px 40px rgba(0,0,0,.25);
  --radius: 22px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1000px 700px at 15% -10%, rgba(42,167,154,.25), transparent 60%),
              radial-gradient(900px 650px at 95% 10%, rgba(216,95,72,.18), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1120px, 92%); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(11,31,31,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex; gap:16px; align-items:center; justify-content:space-between;
  padding:10px 0;
}
.topbar__left{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.topbar__tag{color:var(--muted); font-size:.9rem}
.topbar__right{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.topbar__link{color:var(--text); font-weight:600; font-size:.95rem; opacity:.95}
.topbar__link:hover{opacity:1; text-decoration:underline}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  font-size:.8rem; font-weight:700; letter-spacing:.3px;
  border:1px solid rgba(255,255,255,.12);
}
.pill--accent{
  background: rgba(216,95,72,.16);
  border-color: rgba(216,95,72,.35);
  color: #ffd7cf;
}

.header{
  position:sticky; top:46px; z-index:40;
  background: rgba(11,31,31,.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; gap:12px; align-items:center}
.brand__logo{
  width:44px; height:44px; border-radius:14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.14);
}
.brand__name{font-weight:800; letter-spacing:.2px; font-size:1.05rem}
.brand__name span{color: var(--accent)}
.brand__sub{color:var(--muted); font-size:.82rem}

.nav{display:flex; align-items:center; gap:14px}
.nav__toggle{
  display:none;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
}
.nav__menu{display:flex; gap:14px; align-items:center}
.nav__menu a{color:var(--muted); font-weight:600; font-size:.95rem}
.nav__menu a:hover{color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  transition: transform .15s ease, opacity .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--small{padding:10px 12px; border-radius:14px; font-size:.9rem}
.btn--block{width:100%}
.btn--accent{
  background: linear-gradient(135deg, rgba(216,95,72,.95), rgba(216,95,72,.78));
  border-color: rgba(216,95,72,.45);
  color: #1b0a07;
}
.btn--accent:hover{opacity:.95}
.btn--ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.btn--dark{
  background: linear-gradient(135deg, rgba(42,167,154,.9), rgba(42,167,154,.75));
  border-color: rgba(42,167,154,.5);
  color: #06211e;
}

.hero{position:relative; min-height:72vh; display:grid; align-items:center}
.hero__bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
}
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,31,31,.88), rgba(11,31,31,.72) 45%, rgba(11,31,31,.4));
}
.hero__content{position:relative; padding:64px 0}
.hero h1{
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height:1.08;
  margin:0 0 14px 0;
  max-width: 18ch;
}
.hero p{margin:0 0 22px 0; max-width: 62ch; color: #d9eeee}
.highlight{color: #ffd7cf}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 18px}
.hero__badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.badge{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:10px 12px;
  border-radius: 16px;
  font-weight:700;
  color: var(--muted);
}

.section{padding:70px 0}
.section--soft{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.section__head{margin-bottom:22px}
.section__head h2{margin:0 0 8px; font-size: clamp(1.6rem, 2.6vw, 2.1rem)}
.section__head p{margin:0; color:var(--muted); max-width: 70ch}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
}
.card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card h3{margin:0 0 10px; font-size:1.2rem}
.card p{margin:0 0 12px; color: var(--muted)}
.card--accent{
  background: linear-gradient(180deg, rgba(216,95,72,.22), rgba(255,255,255,.04));
  border-color: rgba(216,95,72,.32);
}
.list{margin:0; padding-left:18px; color:#d9eeee}
.list li{margin:6px 0}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.gItem{
  grid-column: span 4;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  overflow:hidden;
  cursor:pointer;
  position:relative;
  box-shadow: var(--shadow);
}
.gItem img{width:100%; height:100%; object-fit:cover; aspect-ratio: 4/3; transform: scale(1); transition: transform .25s ease}
.gItem:hover img{transform: scale(1.03)}
.gItem__label{
  position:absolute; left:10px; bottom:10px;
  background: rgba(11,31,31,.72);
  border:1px solid rgba(255,255,255,.12);
  padding:8px 10px;
  border-radius: 14px;
  font-weight:800;
  font-size:.85rem;
}

.video{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.05);
}
.video iframe{width:100%; aspect-ratio: 16/9; display:block}

.locations{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.location{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, border-color .15s ease;
}
.location:hover{transform: translateY(-2px); border-color: rgba(42,167,154,.4)}
.location__title{font-weight:900}
.location__sub{color:var(--muted); margin-top:6px}

.note{
  margin-top:16px;
  padding:14px 16px;
  border-radius: 18px;
  background: rgba(42,167,154,.12);
  border: 1px solid rgba(42,167,154,.35);
  color:#d9f7f4;
}

.socialGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
}
.socialCard{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.socialCard__head{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px}
.socialCard__head h3{margin:0}
.embed{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.embed iframe{width:100%; max-width:100%}
.embed--ig{min-height: 220px; display:grid; place-items:center}
.igFallback{padding:18px; text-align:center}
.igFallback p{margin:0 0 10px; color:var(--muted)}

.ctaBar{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(42,167,154,.20), rgba(216,95,72,.14));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.ctaBar__title{font-weight:900; font-size:1.1rem}
.ctaBar__sub{color:var(--muted)}

.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap:16px;
  align-items:start;
}
.contactCard{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:20px;
  box-shadow: var(--shadow);
}
.contactItem{display:flex; gap:10px; align-items:center; margin:10px 0; font-weight:700}
.contactItem a{text-decoration:underline}
.divider{height:1px; background: rgba(255,255,255,.10); margin:14px 0}
.muted{color:var(--muted)}

.form{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:20px;
  box-shadow: var(--shadow);
}
.field{display:flex; flex-direction:column; gap:8px; margin-bottom:14px}
.fieldRow{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
label{font-weight:800; font-size:.92rem; color:#d9eeee}
input, select, textarea{
  width:100%;
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,31,31,.55);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(42,167,154,.6)}
textarea{resize:vertical}
.form__note{margin:10px 0 0; color:var(--muted); font-size:.85rem}

.footer{
  padding:26px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(11,31,31,.55);
  backdrop-filter: blur(10px);
}
.footer__inner{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; align-items:center}
.footer__brand{display:flex; gap:12px; align-items:center}
.footer__brand img{width:42px; height:42px; border-radius:14px; border:1px solid rgba(255,255,255,.12)}
.footer__title{font-weight:900}
.footer__sub{color:var(--muted); font-size:.85rem}
.footer__links{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
.footer__links a{color:var(--muted); font-weight:700}
.footer__links a:hover{color:var(--text); text-decoration:underline}
.footer__right a{text-decoration:underline}

.floatBtn{
  position:fixed;
  right:16px;
  padding:12px 14px;
  border-radius: 18px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  z-index:60;
  display:flex; align-items:center; justify-content:center;
}
.floatBtn span{font-size:.95rem}
.floatBtn--wa{
  bottom:18px;
  background: linear-gradient(135deg, rgba(42,167,154,.95), rgba(42,167,154,.76));
  color:#06211e;
}
.floatBtn--call{
  bottom:74px;
  background: rgba(255,255,255,.07);
  color: var(--text);
}

.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center; justify-content:center;
  padding:20px;
  z-index:80;
}
.lightbox.isOpen{display:flex}
.lightbox__img{
  max-width:min(980px, 92vw);
  max-height:78vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  background:#000;
}
.lightbox__caption{
  position:fixed;
  bottom:18px;
  left:50%;
  transform: translateX(-50%);
  background: rgba(11,31,31,.82);
  border:1px solid rgba(255,255,255,.12);
  padding:10px 12px;
  border-radius: 16px;
  color: var(--text);
  font-weight:800;
  max-width: 92vw;
  text-align:center;
}
.lightbox__close{
  position:fixed; top:16px; right:16px;
  width:44px; height:44px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size:28px;
  cursor:pointer;
}
.lightbox__nav{
  position:fixed;
  top:50%;
  transform: translateY(-50%);
  width:46px; height:46px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size:30px;
  cursor:pointer;
  display:grid; place-items:center;
}
.lightbox__prev{left:16px}
.lightbox__next{right:16px}

@media (max-width: 980px){
  .cards{grid-template-columns: 1fr}
  .gItem{grid-column: span 6}
  .locations{grid-template-columns: 1fr}
  .socialGrid{grid-template-columns: 1fr}
  .contactGrid{grid-template-columns: 1fr}
  .fieldRow{grid-template-columns: 1fr}
  .hero{min-height: 68vh}
}

@media (max-width: 860px){
  .nav__toggle{display:inline-flex}
  .nav__menu{
    position:absolute;
    right:4%;
    top:100%;
    background: rgba(11,31,31,.92);
    border:1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    min-width: min(320px, 92vw);
    box-shadow: var(--shadow);
  }
  .nav__menu.isOpen{display:flex}
  .nav{position:relative}
  .gItem{grid-column: span 12}
}