@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:wght@400;700&display=swap');

:root{
  --background: hsl(0 0% 5%);
  --foreground: hsl(0 0% 95%);
  --card: hsl(0 0% 8%);
  --muted: hsl(0 0% 15%);
  --muted-foreground: hsl(0 0% 60%);
  --border: hsl(0 0% 20%);
  --secondary: hsl(0 0% 12%);
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Space Mono', monospace;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--background);
  color:var(--foreground);
  font-family:var(--font-body);
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:1120px;margin:0 auto;padding:0 24px}
.section{padding:96px 0}
@media (min-width: 768px){ .section{padding:128px 0} }

.small-label{
  color:var(--muted-foreground);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.3em;
  margin:0 0 16px;
}
.h-title{
  font-family:var(--font-heading);
  font-weight:400;
  letter-spacing:-0.02em;
  margin:0 0 24px;
  line-height:0.9;
}
.h2{font-size:56px}
@media (min-width: 768px){ .h2{font-size:84px} }

.p-muted{color:var(--muted-foreground);font-size:14px;max-width:560px}
.card{
  border:1px solid var(--border);
  background:transparent;
}
.card:hover{border-color:var(--foreground)}
.card-pad{padding:24px}
@media (min-width:768px){.card-pad{padding:32px}}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border:1px solid var(--foreground);
  background:var(--foreground);
  color:var(--background);
  padding:14px 18px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  cursor:pointer;
  font-family:var(--font-body);
  transition:transform .15s ease, opacity .15s ease;
}
.btn:hover{opacity:.9; transform:translateY(-1px)}
.btn-outline{
  background:transparent;color:var(--foreground);border-color:var(--border);
}
.btn-outline:hover{border-color:var(--foreground)}
.btn-block{width:100%}

.nav{
  position:fixed;top:0;left:0;right:0;z-index:50;
  transition:background .25s ease, backdrop-filter .25s ease;
}
.nav.scrolled{background:rgba(0,0,0,.85);backdrop-filter: blur(10px)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:16px 0}
.nav-links{display:none;align-items:center;gap:28px}
@media (min-width: 768px){ .nav-links{display:flex} }
.nav-link{
  color:var(--muted-foreground);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  transition:color .2s ease;
}
.nav-link:hover{color:var(--foreground)}
.nav-logo{display:flex;align-items:center;gap:10px}
.nav-logo img{height:40px;width:auto}

.nav-toggle{background:transparent;border:0;color:var(--foreground);cursor:pointer;display:inline-flex}
@media (min-width:768px){ .nav-toggle{display:none} }

.mobile-menu{
  display:none;
  border-top:1px solid var(--border);
  padding:16px 0 10px;
}
.mobile-menu.open{display:block}
.mobile-menu .stack{display:flex;flex-direction:column;gap:14px}
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  padding-top:64px;
}
.hero-bg{
  position:absolute;inset:0;
  background-position:center;
  background-size:cover;
  filter:grayscale(1);
}
.hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,.78)}
.hero-content{position:relative;text-align:center}
.hero h1{
  font-family:var(--font-heading);
  font-size:72px;
  margin:0 0 16px;
  line-height:0.85;
}
@media (min-width:768px){ .hero h1{font-size:110px} }
@media (min-width:1024px){ .hero h1{font-size:150px} }
.hero p{margin:0 auto 32px;max-width:520px;color:var(--muted-foreground);text-transform:uppercase;letter-spacing:0.14em;font-size:14px}
.hero-bottom-line{position:absolute;bottom:24px;left:50%;transform:translateX(-50%);width:1px;height:64px;background:rgba(255,255,255,.25)}

.bg-card{background:var(--card)}
.bg-secondary{background:var(--secondary)}

.grid{display:grid;gap:16px}
.grid-2{grid-template-columns:1fr}
@media (min-width:768px){ .grid-2{grid-template-columns:1fr 1fr} }
.grid-3{grid-template-columns:1fr}
@media (min-width:768px){ .grid-3{grid-template-columns:1fr 1fr 1fr} }

.featured{
  border:2px solid var(--foreground);
  padding:32px;
  transition:background .25s ease, color .25s ease;
}
@media (min-width:768px){ .featured{padding:48px} }
.featured:hover{background:var(--foreground);color:var(--background)}
.featured:hover .muted{color:rgba(0,0,0,.7)}
.featured .muted{color:var(--muted-foreground)}
.featured .title{font-family:var(--font-heading);font-size:44px;margin:0}
@media (min-width:768px){ .featured .title{font-size:56px} }
.featured .price{font-family:var(--font-heading);font-size:56px;margin:0}
@media (min-width:768px){ .featured .price{font-size:72px} }

.service-title{font-family:var(--font-heading);font-size:30px;margin:0}
.service-price{font-family:var(--font-heading);font-size:30px;margin:0;white-space:nowrap}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:8px;
  grid-auto-rows:180px;
}
@media (min-width:768px){
  .gallery-grid{grid-template-columns:repeat(3, 1fr);grid-auto-rows:220px}
}
@media (min-width:1024px){
  .gallery-grid{grid-template-columns:repeat(4, 1fr)}
}
.g-item{position:relative;overflow:hidden;background:var(--secondary);filter:grayscale(1);transition:filter .4s ease}
.g-item:hover{filter:grayscale(0)}
.g-item img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.g-span-2r{grid-row:span 2}
.partners-logo{
  width:96px;height:96px;border-radius:999px;overflow:hidden;
  background:var(--muted);display:flex;align-items:center;justify-content:center;
  margin:0 auto 18px;
}
.partners-logo img{width:100%;height:100%;object-fit:contain;filter:grayscale(1)}
.handle{display:inline-flex;align-items:center;gap:6px;color:var(--muted-foreground);font-size:12px}
.handle:hover{color:var(--foreground)}
.aspect-video{aspect-ratio:16/9;background:var(--muted);overflow:hidden;filter:grayscale(1)}
.aspect-video img{width:100%;height:100%;object-fit:cover}
.footer{padding:64px 0;border-top:1px solid var(--border);background:var(--card)}
.footer-row{display:flex;flex-direction:column;gap:24px;align-items:flex-start;justify-content:space-between}
@media (min-width:768px){ .footer-row{flex-direction:row;align-items:center} }
.footer-brand{font-family:var(--font-heading);font-size:36px}
.footer-links{display:flex;flex-direction:column;gap:14px}
@media (min-width:768px){ .footer-links{flex-direction:row;gap:28px} }
