:root{
  --black:#0a0a0b;
  --panel:#141416;
  --panel-2:#1b1b1e;
  --line:#2a2a2d;
  --yellow:#eaff1a;
  --yellow-bright:#f7ff66;
  --white:#f5f4f0;
  --grey:#9a9a9f;
  --grey-dim:#6b6b70;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--black);
  color:var(--white);
  font-family:'Inter',sans-serif;
  line-height:1.5;
  overflow-x:hidden;
}
h1,h2,h3,.display{
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.02em;
}
.mono{font-family:'JetBrains Mono',monospace;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
img{max-width:100%;display:block;}
.wrap{max-width:1120px;margin:0 auto;padding:0 24px;}
.eyebrow{
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--yellow);
}

/* Signature sweep - gloss reflection, echoes polished paint */
.sweep{position:relative; overflow:hidden;}
.sweep::before{
  content:"";
  position:absolute; top:0; left:-30%;
  width:180%; height:100%;
  background:linear-gradient(100deg, transparent 40%, rgba(244,200,26,0.06) 48%, rgba(244,200,26,0.14) 50%, rgba(244,200,26,0.06) 52%, transparent 60%);
  pointer-events:none;
}
.divider{
  height:1px;
  background:linear-gradient(90deg, transparent, var(--yellow) 50%, transparent);
  opacity:0.5;
  margin:0 auto;
  max-width:1120px;
}

/* Header */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(10,10,11,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:16px 24px; position:relative;}
.logo{display:flex; align-items:center; gap:10px; font-family:'Poppins',sans-serif; font-size:19px; font-weight:600; letter-spacing:0.03em;}
.logo-icon{height:32px; width:auto;}
.navlinks{display:flex; gap:32px; font-size:14px; font-weight:500;}
.navlinks a{color:var(--grey); transition:color .2s; padding-bottom:4px; border-bottom:2px solid transparent;}
.navlinks a:hover{color:var(--yellow);}
.navlinks a.active{color:var(--white); border-bottom-color:var(--yellow);}
.btn{
  display:inline-block; padding:12px 24px; background:var(--yellow); color:var(--black);
  font-weight:700; font-size:14px; letter-spacing:0.03em; text-transform:uppercase;
  border:1px solid var(--yellow); transition:all .2s; cursor:pointer;
  box-shadow:0 0 18px rgba(234,255,26,0.25);
}
.btn:hover{background:var(--yellow-bright); border-color:var(--yellow-bright); transform:translateY(-1px); box-shadow:0 0 26px rgba(234,255,26,0.4);}
.btn-ghost{background:transparent; color:var(--white); border:1px solid var(--line);}
.btn-ghost:hover{border-color:var(--yellow); color:var(--yellow); background:transparent;}
.menu-toggle{display:none; background:none; border:none; color:var(--white); font-size:24px; cursor:pointer;}

/* Page hero (smaller, for inner pages) */
.page-hero{padding:64px 24px 48px; border-bottom:1px solid var(--line);}
.page-hero-tight{padding-bottom:20px;}
.page-hero h1{font-size:clamp(32px,5vw,52px); margin-top:14px;}
.page-hero p{color:var(--grey); max-width:560px; margin-top:14px; font-size:16px;}

/* Hero (home) */
.hero{padding:120px 24px 100px; position:relative; border-bottom:1px solid var(--line);}
.hero .wrap{position:relative; z-index:2;}
.hero h1{font-size:clamp(38px,6.6vw,70px); line-height:1.02; margin:20px 0 24px; max-width:920px;}
.hero h1 span{color:var(--yellow); text-shadow:0 0 24px rgba(234,255,26,0.35);}
.hero p{font-size:18px; color:var(--grey); max-width:540px; margin-bottom:36px;}
.hero-cta{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:56px;}
.hero-stats{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); max-width:640px;}
.stat{background:var(--black); padding:20px;}
.stat .num{font-family:'JetBrains Mono',monospace; font-size:24px; color:var(--yellow); font-weight:700;}
.stat .lbl{font-size:11.5px; color:var(--grey-dim); text-transform:uppercase; letter-spacing:0.05em; margin-top:4px;}

/* Brand strip */
.brands{padding:28px 24px; border-bottom:1px solid var(--line); background:var(--panel);}
.brands .wrap{display:flex; align-items:center; justify-content:center; gap:44px; flex-wrap:wrap;}
.brands span{font-family:'JetBrains Mono',monospace; font-size:13px; letter-spacing:0.08em; color:var(--grey-dim); text-transform:uppercase;}
.brands .tag{color:var(--grey); font-size:12px;}
.brand-logos img{
  height:32px; width:auto; max-width:200px;
  filter:grayscale(0.25) opacity(0.75);
  transition:filter .2s, transform .2s;
}
.brand-logos img:hover{filter:grayscale(0) opacity(1); transform:scale(1.05);}
.brand-logos img:nth-child(3){margin-top:-3px;}
.brand-logos img:nth-child(5){height:42px;}
.brand-logos img:nth-child(6){height:40px;}

/* Section generic */
section{padding:88px 24px;}
.section-head{margin-bottom:48px; max-width:640px;}
.section-head h2{font-size:clamp(28px,4vw,44px); margin-top:12px;}
.section-head p{color:var(--grey); margin-top:14px; font-size:16px;}

/* Why us */
.why-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:32px;}
.why-card{border-left:2px solid var(--yellow); padding-left:20px;}
.why-card h3{font-size:18px; margin-bottom:10px; text-transform:none; font-family:'Inter',sans-serif; font-weight:700;}
.why-card p{color:var(--grey); font-size:14.5px;}

/* Value banner (hinta/laatu) */
.value-band{background:var(--panel); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.value-band .wrap{display:grid; grid-template-columns:1.1fr 1fr; gap:56px; align-items:center;}
.value-band h2{font-size:clamp(26px,4vw,38px); margin-bottom:16px;}
.value-band p{color:var(--grey); font-size:15.5px; margin-bottom:14px;}
.value-list{border:1px solid var(--line);}
.value-row{display:flex; justify-content:space-between; padding:16px 20px; border-bottom:1px solid var(--line); font-size:14.5px;}
.value-row:last-child{border-bottom:none;}
.value-row .k{color:var(--grey);}
.value-row .v{color:var(--yellow); font-family:'JetBrains Mono',monospace; font-weight:700;}

/* Services list (palvelut page) */
.service-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px;}
.service-card{border:1px solid var(--line); background:var(--panel); padding:32px;}
.service-card .cat-name{font-size:14px; color:var(--yellow); letter-spacing:0.08em; padding-bottom:14px; border-bottom:1px solid var(--line); margin-bottom:20px;}
.service-card .service-items{display:flex; flex-direction:column; gap:20px;}
.service-item h4{font-size:16px; font-weight:700; margin-bottom:6px; text-transform:none; font-family:'Inter',sans-serif;}
.service-item p{color:var(--grey); font-size:14px;}
.service-note{grid-column:1/-1; color:var(--grey-dim); font-size:13px; font-family:'JetBrains Mono',monospace; border-top:1px solid var(--line); padding-top:16px; margin-top:4px;}

/* Pricing table */
.price-table{width:100%; border-collapse:collapse; margin-top:8px; table-layout:fixed;}
.price-table caption{text-align:left; font-family:'JetBrains Mono',monospace; color:var(--yellow); font-size:16px; letter-spacing:0.08em; padding:36px 0 16px; text-transform:uppercase;}
.price-table th, .price-table td{text-align:left; padding:16px; border-bottom:1px solid var(--line); font-size:16px;}
.price-table th:not(:first-child), .price-table td:not(:first-child){width:130px; text-align:right;}
.price-table th{color:var(--grey-dim); font-family:'JetBrains Mono',monospace; font-size:11.5px; letter-spacing:0.04em; text-transform:uppercase; font-weight:500; line-height:1.3;}
.price-table td.price{font-family:'JetBrains Mono',monospace; color:var(--yellow); font-weight:700; white-space:nowrap; font-size:17px;}
.price-table td.desc{color:var(--grey-dim); font-size:14.5px;}
@media(max-width:640px){
  .price-table th:not(:first-child), .price-table td:not(:first-child){width:80px;}
  .price-table th, .price-table td{padding:12px 8px; font-size:14px;}
  .price-table td.price{font-size:15px;}
}
.price-note{color:var(--grey-dim); font-size:14.5px; font-family:'JetBrains Mono',monospace; margin-top:12px;}

/* Locations */
.locations{background:var(--panel);}
.loc-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:24px;}
.loc-card{background:var(--black); border:1px solid var(--line); padding:36px; position:relative;}
.loc-tag{display:inline-block; font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; padding:4px 10px; border:1px solid var(--yellow); color:var(--yellow); margin-bottom:18px;}
.loc-card h3{font-size:26px; margin-bottom:10px;}
.loc-card .addr{color:var(--grey); font-size:14.5px; margin-bottom:18px;}
.loc-card .addr strong{color:var(--white); display:block; margin-bottom:2px; font-weight:600;}
.map-embed{width:100%; height:220px; border:1px solid var(--line); filter:grayscale(0.3) contrast(1.05); }

/* Gallery */
.gallery-grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:16px;}
.gallery-item{aspect-ratio:4/3; background:var(--panel); border:1px dashed var(--line); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:8px; padding:20px; text-align:center;}
.gallery-item .icon{font-size:28px; color:var(--grey-dim);}
.gallery-item p{color:var(--grey-dim); font-size:12.5px; font-family:'JetBrains Mono',monospace;}
.gallery-item.ba{grid-column:span 2;}

/* Reference gallery */
.ref-grid-wrap{display:grid; grid-template-columns:repeat(4,1fr); gap:12px; max-width:1100px; margin:0 auto;}
.ref-img-wrap{aspect-ratio:3/4; overflow:hidden; background:#000; cursor:zoom-in;}
.ref-img-wrap img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s;}
.ref-img-wrap:hover img{transform:scale(1.04);}
@media(max-width:760px){
  .ref-grid-wrap{grid-template-columns:repeat(2,1fr); gap:8px;}
}

/* Lightbox */
.lightbox-overlay{display:none; position:fixed; inset:0; background:rgba(6,6,7,0.94); z-index:500; align-items:center; justify-content:center; padding:32px; cursor:zoom-out;}
.lightbox-overlay.open{display:flex;}
.lightbox-overlay img{max-width:100%; max-height:100%; object-fit:contain; box-shadow:0 20px 60px rgba(0,0,0,0.6);}
.lightbox-close{position:absolute; top:20px; right:28px; color:var(--white); font-size:32px; font-family:'Inter',sans-serif; cursor:pointer; line-height:1;}

/* Testimonials */
.testimonial-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px;}
.testimonial-card{border:1px solid var(--line); background:var(--panel); padding:24px;}
.testimonial-card .stars{color:var(--yellow); font-size:14px; letter-spacing:2px; margin-bottom:12px;}
.testimonial-card .rec-badge{display:inline-flex; align-items:center; gap:6px; color:var(--yellow); font-size:13px; font-family:'JetBrains Mono',monospace; margin-bottom:12px;}
.testimonial-card p{color:var(--white); font-size:14.5px; line-height:1.55; margin-bottom:16px;}
.testimonial-card .who{display:flex; justify-content:space-between; align-items:baseline; font-size:12.5px; color:var(--grey-dim); border-top:1px solid var(--line); padding-top:12px;}
.testimonial-card .who strong{color:var(--grey); font-weight:600;}
.cta-band{text-align:center; border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.cta-band h2{font-size:clamp(30px,5vw,52px); margin-bottom:20px;}
.cta-band p{color:var(--grey); margin-bottom:36px; font-size:16px;}
.cta-buttons{display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}

/* Contact */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:40px;}
.contact-info p{color:var(--grey); font-size:14.5px; margin-bottom:12px;}
.social-row{display:flex; gap:14px; margin-top:16px;}
.social-row a{width:36px; height:36px; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; font-size:13px; font-family:'JetBrains Mono',monospace; color:var(--grey); transition:all .2s;}
.social-row a:hover{border-color:var(--yellow); color:var(--yellow);}
.form-box{border:1px solid var(--line); padding:32px; background:var(--panel);}
.form-box label{display:block; font-size:12.5px; color:var(--grey-dim); font-family:'JetBrains Mono',monospace; margin-bottom:6px; margin-top:16px; text-transform:uppercase; letter-spacing:0.05em;}
.form-box label:first-child{margin-top:0;}
.form-box input, .form-box textarea{
  width:100%; background:var(--black); border:1px solid var(--line); color:var(--white);
  padding:12px 14px; font-family:'Inter',sans-serif; font-size:14px;
}
.form-box input:focus, .form-box textarea:focus{outline:none; border-color:var(--yellow);}
.form-box button{margin-top:20px;}

/* Footer */
footer{padding:56px 24px 32px;}
.foot-grid{display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px; margin-bottom:48px;}
.foot-col h4{font-size:13px; color:var(--yellow); letter-spacing:0.08em; margin-bottom:16px; text-transform:uppercase; font-family:'JetBrains Mono',monospace;}
.foot-col p, .foot-col a{color:var(--grey); font-size:14px; display:block; margin-bottom:10px;}
.foot-col a:hover{color:var(--yellow);}
.foot-bottom{border-top:1px solid var(--line); padding-top:24px; display:flex; justify-content:space-between; color:var(--grey-dim); font-size:12.5px; flex-wrap:wrap; gap:10px;}

@media(max-width:760px){
  .navlinks{
    display:none;
    position:absolute; top:100%; left:0; right:0;
    background:var(--black); border-bottom:1px solid var(--line);
    flex-direction:column; gap:0; padding:4px 0;
    box-shadow:0 12px 24px rgba(0,0,0,0.4);
  }
  .navlinks.open{display:flex;}
  .navlinks a{padding:16px 24px; border-bottom:1px solid var(--line); width:100%;}
  .menu-toggle{display:block;}
  .nav-cta{display:none;}
  .hero{padding:90px 20px 64px;}
  .hero-stats{grid-template-columns:1fr; max-width:100%;}
  .foot-grid{grid-template-columns:1fr; gap:32px;}
  section{padding:64px 20px;}
  .value-band .wrap{grid-template-columns:1fr;}
  .service-block{grid-template-columns:1fr; gap:16px;}
  .service-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .gallery-item.ba{grid-column:span 1;}
}
