:root{
  --bg:#0b0d10;
  --panel:#0f1217;
  --panel2:#10141b;
  --text:#f2f4f7;
  --muted:#b7bcc6;
  --line:rgba(255,255,255,.10);
  --shadow: 0 18px 45px rgba(0,0,0,.45);
  --radius: 18px;
  --container: 1120px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 600px at 18% 8%, rgba(255,255,255,.06), transparent 55%),
    radial-gradient(800px 500px at 80% 20%, rgba(255,255,255,.04), transparent 55%),
    linear-gradient(180deg, var(--bg), #07080a);
  line-height:1.55;
}

img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
p{margin:0 0 14px;}
h1,h2,h3{margin:0 0 10px; line-height:1.1; letter-spacing:-0.02em;}
h1{font-size: clamp(2.2rem, 3.3vw, 3.6rem);}
h2{font-size: clamp(1.6rem, 2.2vw, 2.2rem);}
h3{font-size: 1.05rem;}
strong{font-weight:800;}

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

.muted{color:var(--muted);}
.lead{font-size:1.05rem; max-width: 62ch;}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.86);
  font-weight:700;
  font-size:.92rem;
  margin: 0 0 14px;
}

/* Skip link */
.skip{
  position:absolute; left:-9999px; top:10px;
  background:#fff; color:#000;
  padding:10px 12px; border-radius:12px;
  z-index:9999;
}
.skip:focus{left:12px;}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:99;
  background: rgba(11,13,16,.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom:1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.header.is-scrolled{
  border-bottom-color: var(--line);
  background: rgba(11,13,16,.78);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}

.logo{
  display:inline-flex;
  align-items:baseline;
  gap:6px;
  font-weight:900;
  letter-spacing:-0.04em;
}
.logo__mark{font-size:1.25rem;}
.logo__num{font-size:1.1rem; opacity:.9;}
.logo--footer{opacity:.95;}

.nav{
  display:flex;
  align-items:center;
  gap: 8px;
}
.nav a{
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,.9);
}
.nav a:hover{background: rgba(255,255,255,.05);}
.nav a[aria-current="page"]{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.navbtn{
  display:none;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: transparent;
  cursor:pointer;
}
.navbtn span{
  display:block; width:20px; height:2px;
  background: rgba(255,255,255,.9);
  margin:4px 0; border-radius:2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border:1px solid transparent;
  font-weight:800;
  letter-spacing:-0.01em;
  transition: transform .06s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px);}
.btn--sm{padding:10px 12px; border-radius:12px;}
.btn--dark{
  background:#ffffff;
  color:#0b0d10;
  border-color: rgba(255,255,255,.9);
}
.btn--dark:hover{filter: brightness(0.95);}
.btn--light{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.btn--light:hover{background: rgba(255,255,255,.10);}
.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,.16);
}
.btn--ghost:hover{background: rgba(255,255,255,.05);}

.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px;}

/* Hero */
.hero{padding: 78px 0 44px;}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:start;
}
.hero__copy h1{margin-bottom: 12px;}
.micro{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 18px;
}
.micro__item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 14px;
}
.micro__item span{color: var(--muted); font-size:.95rem;}

/* Photos */
.photo{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow);
}
.photo img{
  width:100%;
  height: 420px;
  object-fit: cover;
}
.photo--small img{height: 165px;}
.photo--tall img{height: 520px;}
.photo--wide{margin-top:18px;}
.photo--wide img{height: 380px;}

.hero__media .media__row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 12px;
}

/* Band */
.band{
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  padding: 22px 0;
}
.band__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.band__title{font-weight:900;}
.band__text{max-width: 72ch; color: rgba(255,255,255,.86);}

/* Sections */
.section{padding: 64px 0;}
.section--alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:center;
}

.headrow{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}

.bullets{margin-top: 12px;}
.bullet{
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bullet:last-child{border-bottom:0;}
.bullet p{margin:0; color: var(--muted);}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.cards--tight{grid-template-columns: repeat(2, minmax(0, 1fr));}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.28);
  transition: transform .15s ease, background .2s ease;
}
a.card:hover{transform: translateY(-2px); background: rgba(255,255,255,.04);}
.link{display:inline-block; margin-top:10px; font-weight:900; opacity:.92;}

.cta{
  margin-top: 18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}

/* Tags */
.tags{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 12px;
}
.tag{
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.88);
  font-weight:800;
  font-size:.92rem;
}

/* Quote */
.quote{
  padding: 52px 0;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.quote__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
blockquote{
  margin:0;
  max-width: 75ch;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  font-weight:800;
  letter-spacing:-0.02em;
}

/* Page hero */
.pagehero{padding: 72px 0 18px;}
.pagehero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:center;
}

/* TOC */
.toc{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  padding: 12px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  margin-bottom: 18px;
}
.toc a{
  padding: 8px 10px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  font-weight:800;
  font-size:.92rem;
}
.toc a:hover{background: rgba(255,255,255,.05);}

/* Services blocks */
.serviceblock{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.serviceblock:first-of-type{border-top:0;}
.serviceblock__copy p{margin-bottom: 10px;}

/* Lists */
.list{margin: 10px 0 0 18px; color: rgba(255,255,255,.9);}
.list--compact li{margin: 6px 0;}
.steps{
  margin: 10px 0 0 18px;
  color: rgba(255,255,255,.9);
}
.steps li{margin: 10px 0;}

/* Work */
.workgrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.workcard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.28);
}
.workcard__top{margin-bottom: 10px;}
.workcard__top h2{font-size: 1.35rem;}
.workcard__result{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
}

/* Posts */
.post{
  padding: 18px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  box-shadow: 0 10px 25px rgba(0,0,0,.28);
  margin-bottom: 12px;
}

/* Contact */
.contactbox{
  margin-top: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 16px;
}
.contactemail{
  display:inline-block;
  font-weight:900;
  font-size: 1.3rem;
  letter-spacing:-0.02em;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}

/* Footer */
.footer{
  padding: 34px 0 44px;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.01);
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
.footer__links{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.footer__links a{
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,.9);
}
.footer__links a:hover{background: rgba(255,255,255,.05);}

/* Responsive */
@media (max-width: 980px){
  .hero__grid,.split,.pagehero__grid,.serviceblock{grid-template-columns: 1fr;}
  .micro{grid-template-columns: 1fr;}
  .cards{grid-template-columns: 1fr;}
  .cards--tight{grid-template-columns: 1fr;}
  .workgrid{grid-template-columns: 1fr;}
  .photo img{height: 360px;}
  .photo--tall img{height: 420px;}
  .photo--wide img{height: 320px;}
}

@media (max-width: 840px){
  .navbtn{display:inline-flex;}
  .nav{
    position:absolute;
    top: 64px;
    left: 20px;
    right: 20px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 6px;
    padd
