:root{
  --bg:#0b0b0b;
  --panel:#111216;
  --panel2:#0f1013;
  --text:#f4f5f7;
  --muted:#b8bcc8;
  --line:rgba(255,255,255,.08);
  --gold:#f0e080;
  --gold2:#cfa84c;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(240,224,128,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(207,168,76,.12), transparent 55%),
    linear-gradient(180deg, #09090b, #0b0b0b 40%, #070708);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit}
img{max-width:100%; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.skip{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:18px; top:10px; width:auto; height:auto;
  padding:10px 12px; z-index:9999;
  border:1px solid var(--line); border-radius:12px;
  background:rgba(20,20,25,.9);
}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(10,10,12,.55);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; gap:16px;
  padding:14px 18px;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 240px;}
.brand__mark{
  width:44px; height:44px; border-radius:14px;
  background: linear-gradient(135deg, rgba(240,224,128,.22), rgba(207,168,76,.12));
  border:1px solid rgba(240,224,128,.28);
  display:grid; place-items:center;
  font-weight:800; letter-spacing:.5px;
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{font-size:.84rem; color:var(--muted)}

.nav{display:flex; gap:14px; align-items:center; margin-left:auto}
.nav a{
  text-decoration:none; color:var(--muted);
  padding:10px 10px; border-radius:12px;
}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.04)}
.cta{display:flex; align-items:center}
.navbtn{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  cursor:pointer;
  margin-left:auto;
}
.navbtn span{display:block; height:2px; margin:7px 10px; background:rgba(255,255,255,.75); border-radius:2px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  text-decoration:none;
  font-weight:700;
}
.btn--primary{
  border-color: rgba(240,224,128,.35);
  background: linear-gradient(135deg, rgba(240,224,128,.20), rgba(207,168,76,.12));
}
.btn--primary:hover{filter:brightness(1.08)}
.btn--ghost:hover{background:rgba(255,255,255,.06)}

.mobile{display:none; border-top:1px solid var(--line); background:rgba(10,10,12,.75)}
.mobile__inner{padding:12px 0 16px; display:grid; gap:10px}
.mobile a{text-decoration:none; color:var(--muted); padding:10px 12px; border-radius:12px}
.mobile a:hover{background:rgba(255,255,255,.05); color:var(--text)}
.mobile__actions{display:flex; gap:12px; padding:4px 12px}

.hero{padding:56px 0 30px}
.hero__grid{
  display:grid; grid-template-columns: 1.05fr .95fr; gap:28px;
  align-items:center;
}
.pill{
  display:inline-flex; align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid rgba(240,224,128,.22);
  background:rgba(255,255,255,.03);
  border-radius:999px;
  color:var(--muted);
  margin:0 0 12px;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height:1.08;
  letter-spacing:-.02em;
}
.accent{color:var(--gold)}
.lead{margin:0 0 18px; color:var(--muted); font-size:1.06rem}
.hero__actions{display:flex; flex-wrap:wrap; gap:12px; margin: 18px 0 18px}
.hero__highlights{
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px; margin-top:18px;
}
.mini{
  padding:14px 14px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.02);
}
.mini__title{font-weight:800}
.mini__text{color:var(--muted); font-size:.9rem; margin-top:4px}

.hero__frame{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.hero__frame img{width:100%; height:420px; object-fit:cover}
.hero__badge{
  margin-top:12px;
  padding:14px 16px;
  border:1px solid rgba(240,224,128,.22);
  border-radius:16px;
  background: rgba(10,10,12,.65);
}
.hero__badgeTitle{color:var(--muted); font-size:.9rem}
.hero__badgeLink{display:inline-block; margin-top:6px; font-size:1.2rem; font-weight:900; text-decoration:none}

.section{padding:56px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:18px}
.section__head h2{margin:0; font-size:1.8rem}
.section__head p{margin:0; color:var(--muted); max-width:560px}

.cards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.card{
  padding:18px 16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.card h3{margin:0 0 8px; font-size:1.05rem}
.card p{margin:0; color:var(--muted)}

.strip{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.strip__item{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(240,224,128,.14);
  background: rgba(255,255,255,.02);
}
.strip__item strong{display:block; margin-bottom:6px}
.strip__item span{color:var(--muted)}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:10px;
  margin-top:18px;
}
.gitem{
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  padding:0;
}
.gitem img{width:100%; height:160px; object-fit:cover; transition: transform .25s ease}
.gitem:hover img{transform: scale(1.05)}
.gitem:focus-visible{outline:2px solid rgba(240,224,128,.55); outline-offset:2px}

.socialGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  margin-top:18px;
}
.embed{
  position:relative;
  border-radius: var(--radius);
  border:1px solid var(--line);
  overflow:hidden;
  background: rgba(255,255,255,.02);
}
.embed iframe{width:100%; min-height:560px}
.embed__fallback{
  display:none;
  position:absolute; inset:0;
  padding:22px;
  place-items:center;
  gap:14px;
  background: rgba(10,10,12,.92);
  text-align:center;
}
.embed__fallback img{width:88px; height:88px; border-radius:24px; border:1px solid rgba(240,224,128,.22)}

.side{display:grid; gap:12px}
.side__card{
  padding:20px 18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.side__card h3{margin:0 0 8px}
.side__card p{margin:0 0 14px; color:var(--muted)}
.side__actions{display:flex; flex-wrap:wrap; gap:12px}
.check{margin:14px 0 0; padding-left:18px; color:var(--muted)}
.side__note{
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(240,224,128,.18);
  background: rgba(255,255,255,.02);
  color:var(--muted);
}

.contactGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  margin-top:18px;
}
.contactCard{
  padding:20px 18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.kvs{display:grid; gap:10px; margin-top:10px}
.kv{display:flex; justify-content:space-between; gap:10px; padding:10px 12px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.02)}
.kv span:first-child{color:var(--muted)}
.kv a{text-decoration:none; font-weight:800}

.map{margin-top:14px; border-radius:16px; overflow:hidden; border:1px solid var(--line)}
.map iframe{width:100%; height:260px; border:0}

.form{
  padding:20px 18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.form h3{margin:0 0 10px}
label{display:grid; gap:8px; margin:10px 0; color:var(--muted); font-weight:700}
input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,10,12,.55);
  color:var(--text);
  outline:none;
}
input:focus,textarea:focus{border-color:rgba(240,224,128,.42)}
.hint{margin:10px 0 0; color:var(--muted); font-size:.92rem}

.footer{padding:26px 0; border-top:1px solid var(--line)}
.footer__inner{display:flex; justify-content:space-between; gap:18px; align-items:center}
.footer__brand{font-weight:900}
.footer__small{color:var(--muted); font-size:.9rem}
.footer__right p{margin:0; color:var(--muted)}
.footer__right a{color:var(--text); text-decoration:none}
.footer__right a:hover{text-decoration:underline}

.wa{
  position:fixed;
  right:18px; bottom:18px;
  width:56px; height:56px;
  border-radius:18px;
  background: rgba(37, 211, 102, .18);
  border:1px solid rgba(37, 211, 102, .35);
  display:grid; place-items:center;
  box-shadow: var(--shadow);
  z-index:60;
}
.wa span{font-weight:900; letter-spacing:.5px; color: rgba(255,255,255,.92)}

.lightbox{
  position:fixed; inset:0; z-index:80;
  display:none;
}
.lightbox[aria-hidden="false"]{display:block}
.lightbox__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.7);
  border:0;
  width:100%; height:100%;
}
.lightbox__figure{
  position:relative;
  max-width:min(980px, calc(100% - 36px));
  margin: 70px auto;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,10,12,.9);
  box-shadow: var(--shadow);
}
.lightbox__close{
  position:absolute; right:10px; top:10px;
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
}
.lightbox__img{width:100%; max-height:72vh; object-fit:contain; background: #000}
.lightbox__cap{padding:12px 14px; color:var(--muted)}

@media (max-width: 980px){
  .nav{display:none}
  .cta{display:none}
  .navbtn{display:block}
  .hero__grid, .socialGrid, .contactGrid{grid-template-columns: 1fr}
  .hero__frame img{height:380px}
  .hero__highlights{grid-template-columns: 1fr; }
  .cards{grid-template-columns: repeat(2, minmax(0,1fr))}
  .gallery{grid-template-columns: repeat(2, minmax(0,1fr))}
  .strip{grid-template-columns:1fr}
  .footer__inner{flex-direction:column; align-items:flex-start}
  .lightbox__figure{margin: 76px auto}
}

@media (max-width: 480px){
  .brand{min-width:auto}
  .brand__tag{display:none}
  .cards{grid-template-columns: 1fr}
  .gitem img{height:150px}
}
