:root{
  --bg:#0b0e11;
  --bg2:#0f141a;
  --card:#121823;
  --text:#e8edf2;
  --muted:#a9b4c0;
  --accent:#8fd3ff;
  --border:rgba(255,255,255,.08);
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:linear-gradient(180deg,var(--bg),#07090c);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
.container{width:min(1120px,92%);margin:0 auto}

.header{
  position:sticky; top:0; z-index:30;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(8,10,13,.55);
  border-bottom:1px solid var(--border);
}
.header__row{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}

.brand{display:flex;align-items:center;gap:10px}
.brand__mark{
  width:34px;height:34px;border-radius:10px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,rgba(143,211,255,.20),rgba(255,255,255,.06));
  border:1px solid var(--border);
}
.brand__text{font-weight:650;letter-spacing:.2px}

.nav{display:flex;gap:18px;align-items:center}
.nav a{color:var(--muted);font-weight:540}
.nav a:hover{color:var(--text)}

.menu{
  display:none;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  border-radius:12px;
  padding:9px 12px;
}

.hero{position:relative; overflow:hidden; border-bottom:1px solid var(--border)}
.hero__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 380px at 20% 20%, rgba(143,211,255,.18), transparent 60%),
    radial-gradient(900px 500px at 70% 40%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.40), rgba(0,0,0,.75)),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=2400&q=80") center/cover no-repeat;
  filter:saturate(110%);
  transform:scale(1.03);
}
.hero__content{position:relative; padding:88px 0 54px}
.hero__badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.35);
  color:var(--muted);
  font-size:13px;
}
.hero h1{margin:16px 0 10px; font-size:clamp(28px,4.2vw,52px); line-height:1.08; letter-spacing:-.6px}
.hero__lead{max-width:66ch; color:rgba(232,237,242,.90); font-size:16px}
.hero__actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  font-weight:640;
}
.btn--primary{
  background:linear-gradient(135deg, rgba(143,211,255,.24), rgba(255,255,255,.06));
  box-shadow:0 10px 34px rgba(0,0,0,.25);
}
.btn--ghost{background:rgba(0,0,0,.25)}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}

.hero__stats{
  display:flex; gap:18px; margin-top:28px; flex-wrap:wrap;
}
.stat{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.28);
  min-width:160px;
}
.stat__n{font-weight:760; font-size:18px}
.stat__t{color:var(--muted); font-size:13px}

.section{padding:64px 0}
.section--alt{background:linear-gradient(180deg, rgba(255,255,255,.03), transparent)}
.section__head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;flex-wrap:wrap;margin-bottom:22px}
.section__head h2{margin:0;font-size:28px;letter-spacing:-.3px}
.section__head p{margin:0;color:var(--muted)}

.grid{display:grid;gap:16px}
.grid--3{grid-template-columns:repeat(3,1fr)}
@media (max-width:980px){.grid--3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.grid--3{grid-template-columns:1fr}}

.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.card__img{height:180px;background:center/cover no-repeat}
.card__body{padding:14px}
.card__body h3{margin:0 0 6px}
.card__body p{margin:0 0 10px;color:var(--muted)}
.link{color:var(--accent); font-weight:650}
.link:hover{text-decoration:underline}

.gallery{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
}
@media (max-width:980px){.gallery{grid-template-columns:repeat(3,1fr)}}
@media (max-width:640px){.gallery{grid-template-columns:repeat(2,1fr)}}

.shot{
  border:1px solid var(--border);
  border-radius:16px;
  background:center/cover no-repeat;
  height:150px;
  cursor:pointer;
  transition:transform .15s ease;
}
.shot:hover{transform:translateY(-2px)}
.shot:active{transform:translateY(0)}

.post{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px;
  background:rgba(255,255,255,.03);
}
.post__top{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.chip{
  font-size:12px;
  color:rgba(232,237,242,.92);
  border:1px solid var(--border);
  background:rgba(0,0,0,.20);
  padding:4px 10px;
  border-radius:999px;
}
.muted{color:var(--muted)}
.small{font-size:12px}

.price{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  background:rgba(255,255,255,.03);
}
.price--featured{
  background:linear-gradient(135deg, rgba(143,211,255,.18), rgba(255,255,255,.04));
}
.price h3{margin:0 0 8px}
.price__n{font-size:22px;font-weight:760;margin-bottom:10px}
.price ul{margin:0;padding-left:18px;color:var(--muted)}
.price li{margin:6px 0}

.contact{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:16px;
}
@media (max-width:980px){.contact{grid-template-columns:1fr}}

.contact__info{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  background:rgba(255,255,255,.03);
}
.info{padding:10px 0;border-bottom:1px solid var(--border)}
.info:last-child{border-bottom:0}
.info__k{color:var(--muted);font-size:12px}
.info__v{font-weight:650;margin-top:3px}

.form{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  background:rgba(255,255,255,.03);
}
label{display:block;margin-bottom:12px}
label span{display:block;color:var(--muted);font-size:12px;margin-bottom:6px}
input,textarea{
  width:100%;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.22);
  color:var(--text);
  padding:10px 12px;
  outline:none;
}
input:focus,textarea:focus{border-color:rgba(143,211,255,.35)}

.footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  background:rgba(0,0,0,.25);
}
.footer__row{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}

.lightbox{
  position:fixed; inset:0; z-index:60;
  background:rgba(0,0,0,.86);
  display:grid; place-items:center;
  padding:18px;
}
.lightbox[hidden] { display: none !important; }
.lightbox__img{
  max-width:min(1100px,96vw);
  max-height:86vh;
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
}
.lightbox__close{
  position:absolute; top:18px; right:18px;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
  font-size:18px;
}

@media (max-width:880px){
  .nav{display:none}
  .menu{display:inline-flex}
  .nav.is-open{
    display:flex;
    position:absolute;
    right:4%;
    top:62px;
    flex-direction:column;
    gap:12px;
    padding:12px;
    border-radius:16px;
    background:rgba(12,16,22,.95);
    border:1px solid var(--border);
    box-shadow: var(--shadow);
  }
}