:root{
  --bg:#0b0b10;
  --card:#10101a;
  --text:#f2f2f6;
  --muted:#b8b8c8;
  --line:rgba(255,255,255,.10);
  --soft:rgba(255,255,255,.06);
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --radius: 18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 600px at 20% 0%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(900px 600px at 85% 10%, rgba(255,255,255,.06), transparent 55%),
    var(--bg);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
.wrap{max-width:1120px; margin:0 auto; padding:22px}
header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,11,16,.58);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:14px}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.4px}
.badge-dot{width:10px;height:10px;border-radius:50%; background:#fff; opacity:.92; display:inline-block}
.menu{display:flex; gap:10px; align-items:center; color:var(--muted); font-weight:650; font-size:14px}
.menu a{padding:10px 12px; border-radius:12px}
.menu a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  padding:12px 16px;
  border-radius:14px;
  font-weight:700;
}
.btn:hover{background:rgba(255,255,255,.10)}
.btn.primary{background:#fff; color:#0b0b10; border-color:#fff}
.btn.primary:hover{filter:brightness(.95)}

.hero{
  margin-top:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius: 26px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.hero-grid{display:grid; grid-template-columns: 1.15fr .85fr}
@media (max-width: 900px){ .hero-grid{grid-template-columns: 1fr} .menu{display:none} }
.hero-media{
  min-height: 540px;
  background:#000;
  position:relative;
}
.hero-media:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.10), rgba(0,0,0,.55));
  pointer-events:none;
}

/* Carousel (fade) */
.carousel{position:absolute; inset:0}
.carousel img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  filter: contrast(1.05) saturate(1.05);
  opacity:0;
  transition: opacity 1200ms ease-in-out;
}
.carousel img.is-active{opacity:1}
.carousel-ui{
  position:absolute;
  left:16px; right:16px; bottom:14px;
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
}
.dots{display:flex; gap:8px; align-items:center}
.dot{
  width:8px; height:8px; border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.10);
  opacity:.9;
  cursor:pointer;
}
.dot.is-active{width:18px; background:#fff; border-color:#fff}
.carousel-actions{display:flex; gap:8px}
.icon-btn{
  width:38px; height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}
.icon-btn:hover{background: rgba(255,255,255,.10)}
.icon-btn:active{transform: translateY(1px)}

.hero-copy{
  padding:28px 26px;
  display:flex; flex-direction:column; justify-content:center;
  gap:14px;
}
.kicker{color:var(--muted); font-weight:700; letter-spacing:.35px; font-size:13px; text-transform:uppercase}
h1{margin:0; font-size:42px; line-height:1.1}
.lead{margin:0; color:rgba(242,242,246,.80); font-size:16.5px}
.pills{display:flex; flex-wrap:wrap; gap:8px; margin-top:6px}
.pill{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius: 999px;
  color:rgba(242,242,246,.85);
  font-weight:650;
  font-size:13px;
}

.section{margin-top:26px}
.section h2{margin:0 0 12px 0; font-size:22px}
.grid{display:grid; grid-template-columns: repeat(12, 1fr); gap:14px}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  overflow:hidden;
}
.card.pad{padding:18px}
.card p{margin:8px 0 0 0; color:rgba(242,242,246,.78)}
.feature{grid-column: span 4}
@media (max-width: 900px){ .feature{grid-column: span 12} }
.gallery{grid-column: span 12}
.gallery-grid{display:grid; grid-template-columns: repeat(12, 1fr); gap:12px; padding:12px}
.tile{grid-column: span 4; border-radius:16px; overflow:hidden; border:1px solid rgba(255,255,255,.10)}
@media (max-width: 900px){ .tile{grid-column: span 12} }
.tile img{width:100%; height:220px; object-fit:cover; display:block}

.footer{
  margin:30px 0 10px 0;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:rgba(242,242,246,.65);
  font-size:13px;
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
}

.form{display:grid; gap:12px}
.input, textarea{
  width:100%;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:var(--text);
  padding:12px 14px;
  border-radius:14px;
  outline:none;
}
textarea{min-height:120px; resize:vertical}
.notice{
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:14px 16px;
  color:rgba(242,242,246,.75);
}
.small{font-size:13px; color:rgba(242,242,246,.75)}

.brand img{width:34px; height:34px; border-radius:10px; object-fit:cover; border:1px solid rgba(255,255,255,.10)}

@media (prefers-reduced-motion: reduce){
  .carousel img{transition:none}
  html{scroll-behavior:auto}
}
