
:root{
  --bg:#070712;
  --panel: rgba(18, 18, 34, .72);
  --stroke: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --pink:#ff4fa6;
  --blue:#3fd1ff;
  --shadow: 0 18px 70px rgba(0,0,0,.55);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(120,70,255,.18), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(255,90,160,.18), transparent 55%),
              radial-gradient(800px 500px at 40% 90%, rgba(0,255,200,.12), transparent 60%),
              var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  overflow-x:hidden;
}
.bg-stars{
  position:fixed; inset:0;
  pointer-events:none;
  background:
    radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,.65) 50%, transparent 52%),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,.5) 50%, transparent 52%),
    radial-gradient(1.5px 1.5px at 60% 30%, rgba(255,255,255,.55) 50%, transparent 52%),
    radial-gradient(2px 2px at 85% 55%, rgba(255,255,255,.6) 50%, transparent 52%),
    radial-gradient(1px 1px at 75% 15%, rgba(255,255,255,.45) 50%, transparent 52%),
    radial-gradient(1.5px 1.5px at 45% 45%, rgba(255,255,255,.4) 50%, transparent 52%),
    radial-gradient(2px 2px at 20% 90%, rgba(255,255,255,.45) 50%, transparent 52%);
  opacity:.55;
  filter: blur(.2px);
}
.wrap{width:min(1100px, calc(100% - 48px)); margin:0 auto}
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.20));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 220px;}
.brand-logo{width:44px; height:44px; border-radius:50%; box-shadow:0 8px 25px rgba(0,0,0,.5)}
.brand-name{font-weight:800; letter-spacing:.4px}
.brand-sub{font-size:.85rem; color:var(--muted)}
.nav{display:flex; gap:14px; align-items:center; flex-wrap:wrap; justify-content:flex-end}
.nav a{
  color:var(--muted); text-decoration:none; font-weight:600; font-size:.95rem;
  padding:8px 10px; border-radius:12px;
}
.nav a:hover{color:var(--text); background: rgba(255,255,255,.06)}
.nav .ig{
  color:#0b0b14;
  background: linear-gradient(90deg, var(--blue), rgba(255,255,255,.85));
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.nav .ig:hover{filter: brightness(1.05)}
.hero{padding: 56px 0 34px;}
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:stretch;
}
.hero-copy{padding: 14px 0;}
.hero-title{
  margin:0 0 10px 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 1px;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd06b, #ff6bd6, #7d7bff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow: 0 18px 55px rgba(0,0,0,.45);
}
.hero-lead{margin:0 0 10px 0; font-size: clamp(1.25rem, 2.2vw, 1.55rem); font-weight: 700;}
.hero-tags{margin:0 0 18px 0; color: var(--muted); font-weight: 600;}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 800;
  letter-spacing:.2px;
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.05)}
.btn-blue{color:#06121a; background: linear-gradient(90deg, var(--blue), rgba(255,255,255,.92));}
.btn-pink{color:#120512; background: linear-gradient(90deg, var(--pink), rgba(255,255,255,.92));}
.hero-media{
  border-radius: 26px;
  min-height: 320px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(120deg, rgba(0,0,0,.45), rgba(0,0,0,.05)),
    url("../images/hero.jpg") center/cover no-repeat;
  position:relative;
  overflow:hidden;
}
.hero-media:after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(600px 240px at 20% 20%, rgba(255,255,255,.12), transparent 60%),
              radial-gradient(700px 300px at 90% 80%, rgba(255,79,166,.12), transparent 60%);
  mix-blend-mode: screen;
  opacity:.55;
}
.section{padding: 38px 0}
.two-col{display:grid; grid-template-columns: 1fr 1fr; gap:22px; align-items:center;}
.panel{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.panel h2{margin:0 0 10px 0; font-size:1.55rem}
.panel p{margin:0 0 10px 0; line-height:1.45}
.muted{color:var(--muted)}
.pill-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-weight:700;
  font-size:.92rem;
}
.photo-card{border-radius: 22px; overflow:hidden; border:1px solid rgba(255,255,255,.10); box-shadow: var(--shadow);}
.photo-card img{width:100%; height:100%; display:block; object-fit:cover}
.center{text-align:center}
.subtitle{margin: 6px 0 0 0; color:var(--muted); font-weight:700}
.cards{margin-top:18px; display:grid; grid-template-columns: repeat(5, 1fr); gap:14px;}
.card{
  text-align:center;
  padding:16px 14px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  position:relative;
  overflow:hidden;
}
.card:before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(220px 140px at 30% 20%, rgba(255,255,255,.18), transparent 60%);
  opacity:.9;
}
.card .icon{font-size: 2.1rem; position:relative}
.card-title{margin-top:8px; font-weight:900; position:relative}
.card-text{margin-top:4px; color: rgba(255,255,255,.78); font-weight:700; font-size:.92rem; position:relative}
.c1{background: linear-gradient(135deg, rgba(255,63,147,.35), rgba(255,63,147,.12))}
.c2{background: linear-gradient(135deg, rgba(84,255,160,.28), rgba(84,255,160,.10))}
.c3{background: linear-gradient(135deg, rgba(70,130,255,.28), rgba(70,130,255,.10))}
.c4{background: linear-gradient(135deg, rgba(255,170,60,.28), rgba(255,170,60,.10))}
.c5{background: linear-gradient(135deg, rgba(80,220,255,.28), rgba(80,220,255,.10))}
.gallery{margin-top:18px; display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
.gitem{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
  display:block;
}
.gitem img{width:100%; height:220px; display:block; object-fit:cover; transition: transform .2s ease}
.gitem:hover img{transform: scale(1.03)}
.map-card{
  margin-top:16px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.map-embed{border-radius: 18px; overflow:hidden; border:1px solid rgba(255,255,255,.10);}
.map-embed iframe{width:100%; height: 380px; display:block;}
.map-actions{display:flex; justify-content:center; gap:12px; flex-wrap:wrap; padding: 14px 0 2px;}
.footer{
  margin-top: 22px;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0));
}
.footer-inner{display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; align-items:flex-start;}
.footer-title{font-weight:900}
.footer-muted{color:var(--muted); margin-top:4px}
.footer-links{display:flex; gap:12px; flex-wrap:wrap}
.footer-links a{color:var(--muted); text-decoration:none; font-weight:700}
.footer-links a:hover{color:var(--text)}

.lightbox-open{overflow:hidden}
.lightbox{
  position:fixed;
  inset:0;
  z-index:200;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(0,0,0,.82);
  backdrop-filter: blur(10px);
}
.lightbox.is-open{display:flex}
.lightbox-img{
  max-width:min(1100px, 94vw);
  max-height:86vh;
  object-fit:contain;
  border-radius:18px;
  box-shadow:0 24px 90px rgba(0,0,0,.75);
  border:1px solid rgba(255,255,255,.14);
}
.lightbox-close{
  position:fixed;
  top:18px;
  right:18px;
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(10,10,18,.78);
  color:white;
  font-size:34px;
  line-height:40px;
  cursor:pointer;
  box-shadow:0 12px 40px rgba(0,0,0,.55);
}
.lightbox-close:hover{background:rgba(255,79,166,.85)}

.lightbox-nav{
  position:fixed;
  top:50%;
  transform:translateY(-50%);
  z-index:201;
  width:56px;
  height:56px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(10,10,18,.72);
  color:white;
  font-size:48px;
  line-height:48px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 40px rgba(0,0,0,.55);
  user-select:none;
}
.lightbox-nav:hover{background:rgba(63,209,255,.82)}
.lightbox-prev{left:18px}
.lightbox-next{right:18px}
@media (max-width: 560px){
  .lightbox{padding:14px}
  .lightbox-img{max-width:96vw; max-height:82vh; border-radius:14px}
  .lightbox-close{top:12px; right:12px; width:42px; height:42px; font-size:30px}
  .lightbox-nav{width:42px; height:42px; font-size:36px; line-height:36px}
  .lightbox-prev{left:10px}
  .lightbox-next{right:10px}
}
@media (max-width: 980px){
  .hero-inner{grid-template-columns: 1fr}
  .hero-media{min-height: 280px}
  .two-col{grid-template-columns:1fr}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .nav{display:none}
}
@media (max-width: 560px){
  .wrap{width: calc(100% - 28px)}
  .cards{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .gitem img{height: 210px}
  .map-embed iframe{height: 320px}
}
