:root{
  --bg:#070707;
  --panel:#0e0e0e;
  --text:#f3f3f3;
  --muted:#bdbdbd;
  --line:rgba(255,255,255,.10);
  --shadow:0 10px 30px rgba(0,0,0,.55);
  --radius:18px;
}

/* SOCIAL LINKS */
.social-links{
  display:flex;
  gap:10px;
}

.social-links a{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:10px;
  border:1px solid var(--line);
  text-decoration:none;
  color:var(--text);
  background:rgba(255,255,255,.03);
}

.social-links a:hover{
  background:rgba(255,255,255,.08);
}

.social-links svg{
  width:16px;
  height:16px;
  display:block;
}

/* RESET */
*{box-sizing:border-box}
html,body{margin:0;padding:0}

/* BASE */
body{
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

.wrap{
  width:min(1100px, calc(100% - 40px));
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(7,7,7,.75);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
}

.brand-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  font-weight:700;
}

.brand-name{font-weight:700;letter-spacing:.3px}
.brand-tag{font-size:12px;color:var(--muted)}

.nav{display:flex;gap:14px}

.nav-link{
  color:var(--muted);
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
}

.nav-link:hover{
  color:var(--text);
  background:rgba(255,255,255,.05);
}

.nav-link.is-active{
  color:var(--text);
  background:rgba(255,255,255,.08);
}

/* HERO */
.hero{
  border-bottom:1px solid var(--line);
}

.hero-bg{
  width:100%;
  min-height:60vh;
  max-height:70vh;

  background-image:url("../images/hero.jpg");
  background-repeat:no-repeat;
  background-size:contain;
  background-position:center top;
  background-color:#070707;

  filter:grayscale(100%) contrast(110%) brightness(0.9);
}

.hero-content{
  padding:48px 0 32px;
}

h1{
  font-size:clamp(32px,4vw,52px);
  margin:0 0 10px;
}

.lead{
  max-width:62ch;
  color:rgba(255,255,255,.85);
  font-size:clamp(16px,1.4vw,18px);
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.btn{
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  text-decoration:none;
  color:var(--text);
  background:rgba(255,255,255,.05);
}

.btn:hover{background:rgba(255,255,255,.1)}

.btn-primary{
  background:rgba(255,255,255,.15);
}

/* SECTIONS */
.section{padding:54px 0}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

@media (max-width:860px){
  .grid-2{grid-template-columns:1fr}
  .header-inner{flex-direction:column;align-items:flex-start}
}

/* CARDS */
.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow);
}

h2{margin:0 0 10px;font-size:22px}
.muted{color:var(--muted)}

/* GALLERY */
.gallery-strip,
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

@media (max-width:980px){
  .gallery-strip,
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
}

.thumb{
  aspect-ratio:1/1;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#000;
}

.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(30%) contrast(110%);
  transition:.25s ease;
}

.thumb:hover img{
  filter:grayscale(0%);
  transform:scale(1.05);
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

@media (max-width:520px){
  .contact-grid{grid-template-columns:1fr}
}

/* FOOTER */
.footer{
  border-top:1px solid var(--line);
  padding:24px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

/* MOBILE HERO */
@media (max-width:520px){
  .hero-bg{
    height:45vh;
  }
}