:root{
  --bg:#0b1a12;
  --bg2:#0f2218;
  --card:#0f2a1d;
  --text:#eef6f1;
  --muted:#b9c8bf;
  --accent:#33d17a;
  --accent2:#6aa9ff;
  --line:rgba(255,255,255,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:16px;
  --container: 1120px;
  --pad: 22px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(51,209,122,.25), transparent 60%),
              radial-gradient(1000px 500px at 90% 10%, rgba(106,169,255,.20), transparent 60%),
              linear-gradient(180deg, var(--bg) 0%, #06110c 100%);
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:12px; top:12px; width:auto; height:auto; padding:10px 12px; background:#fff; color:#000; border-radius:10px; z-index:9999;}

.container{max-width:var(--container); margin:0 auto; padding:0 var(--pad);}
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background:rgba(6,17,12,.72);
  border-bottom:1px solid var(--line);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px var(--pad);}
.brand{display:flex; align-items:baseline; gap:10px}
.brand__mark{font-weight:900; letter-spacing:.6px}
.brand__sub{font-weight:700; opacity:.75}

.nav{display:flex; gap:16px; flex-wrap:wrap; justify-content:center}
.nav a{padding:8px 10px; border-radius:12px; color:var(--muted)}
.nav a:hover{background:rgba(255,255,255,.06); color:var(--text)}

.header__actions{display:flex; align-items:center; gap:12px; flex-wrap:wrap; justify-content:flex-end}
.lang{display:flex; gap:6px; padding:6px; border:1px solid var(--line); border-radius:999px; background:rgba(255,255,255,.04)}
.lang__btn{
  border:0; background:transparent; color:var(--muted);
  padding:8px 10px; border-radius:999px; cursor:pointer; font-weight:700;
}
.lang__btn[aria-pressed="true"]{background:rgba(51,209,122,.20); color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px; font-weight:800;
  background:linear-gradient(180deg, rgba(51,209,122,1), rgba(27,166,92,1));
  color:#072010;
  border:1px solid rgba(0,0,0,.2);
  box-shadow: 0 10px 18px rgba(0,0,0,.25);
}
.btn--ghost{
  background:transparent; color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--ghost:hover{background:rgba(255,255,255,.06)}

.hero{padding:46px 0 18px}
.hero__grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; align-items:start}
.kicker{color:var(--accent); font-weight:800; letter-spacing:.3px; margin:0 0 10px}
h1{font-size:42px; line-height:1.05; margin:0 0 12px}
.lead{color:var(--muted); font-size:18px; line-height:1.5; margin:0 0 18px}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 18px}
.badges{display:flex; gap:10px; flex-wrap:wrap}
.badge{
  padding:10px 12px; border:1px solid var(--line);
  border-radius:999px; background:rgba(255,255,255,.03);
  color:var(--muted); font-weight:700;
}

.hero__media{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding:16px;
}
.card--photo{padding:0; overflow:hidden; cursor:zoom-in; position:relative}
.card--photo img{width:100%; height:100%; object-fit:cover; aspect-ratio: 4 / 3}
.card--photo figcaption{
  position:absolute; left:10px; bottom:10px;
  padding:6px 10px; border-radius:999px;
  background:rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.18);
  font-weight:800; font-size:12px;
}

.section{padding:56px 0}
.section--alt{background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01))}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 8px; font-size:30px}
.section__head p{margin:0; color:var(--muted); line-height:1.55}

.grid{display:grid; gap:14px}
.grid--4{grid-template-columns: repeat(4, 1fr)}
.grid--3{grid-template-columns: repeat(3, 1fr)}
.grid article h3{margin:0 0 8px}
.grid article p{margin:0; color:var(--muted); line-height:1.55}

.two-col{display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:start}
.stack{display:grid; gap:12px}
.mt{margin-top:18px}
.mt-lg{margin-top:22px}

.list{margin:10px 0 0; padding-left:18px}
.list li{margin:8px 0; color:var(--muted); line-height:1.5}

.media-row{display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:12px}
.media-row .card--photo img{aspect-ratio: 16 / 10}

.gallery{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:10px;
}
.gallery__item{
  border:0; padding:0; border-radius:14px; overflow:hidden;
  cursor:zoom-in; background:transparent;
  outline:1px solid var(--line);
}
.gallery__item img{width:100%; height:100%; object-fit:cover; aspect-ratio: 1 / 1}

.contact{display:grid; grid-template-columns: 1.1fr .9fr; gap:16px; align-items:start}
.contact__box{padding:22px; border-radius:var(--radius); border:1px solid var(--line); background:rgba(255,255,255,.03); box-shadow: var(--shadow);}
.contact__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.dl{margin:14px 0 0}
.dl dt{font-weight:900; margin-top:14px}
.dl dd{margin:6px 0 0; color:var(--muted)}
.dl dd a{color:var(--text); text-decoration:underline; text-decoration-color: rgba(255,255,255,.28)}

.cta{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(51,209,122,.10), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding:22px;
}
.cta h3{margin:0 0 10px}
.cta p{margin:0 0 14px; color:var(--muted); line-height:1.55}
.cta__photo{margin-top:14px; border-radius:14px; overflow:hidden; outline:1px solid var(--line)}
.cta__photo img{aspect-ratio: 16 / 10; object-fit:cover}

.footer{padding:22px 0; border-top:1px solid var(--line); background:rgba(6,17,12,.78)}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:12px; color:var(--muted)}
.to-top{width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center; border-radius:12px; border:1px solid var(--line); background:rgba(255,255,255,.04)}
.to-top:hover{background:rgba(255,255,255,.08)}

.lightbox{position:fixed; inset:0; display:none; z-index:100}
.lightbox[aria-hidden="false"]{display:block}
.lightbox__backdrop{position:absolute; inset:0; background:rgba(0,0,0,.78)}
.lightbox__content{
  position:relative; z-index:101;
  max-width:min(1100px, calc(100% - 28px));
  max-height:calc(100% - 28px);
  margin:14px auto 0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background:#000;
}
.lightbox__img{width:100%; height:auto; max-height:80vh; object-fit:contain; background:#000}
.lightbox__cap{color:#d9e8df; padding:10px 12px; font-weight:700; background:rgba(0,0,0,.55)}
.lightbox__close{
  position:absolute; right:10px; top:10px;
  width:40px; height:40px; border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.55);
  color:#fff; font-size:24px; cursor:pointer;
}

@media (max-width: 980px){
  .hero__grid, .two-col, .contact{grid-template-columns: 1fr}
  .grid--4{grid-template-columns: repeat(2, 1fr)}
  .grid--3{grid-template-columns: 1fr}
  h1{font-size:36px}
  .media-row{grid-template-columns: 1fr}
  .gallery{grid-template-columns: repeat(3, 1fr)}
  .nav{display:none}
}
@media (max-width: 520px){
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .header__inner{gap:10px}
  .btn{width:100%}
  .header__actions{width:100%}
  .lang{width:100%; justify-content:center}
}
