:root{
  --bg:#0b0b0f;
  --panel:#12121b;
  --text:#f2f2f6;
  --muted:#b9b9c6;
  --line:rgba(255,255,255,.08);
  --accent:#e0121b;
  --shadow:0 14px 45px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1100px 600px at 85% 15%, rgba(224,18,27,.18), transparent 55%),
              linear-gradient(180deg,#09090c,var(--bg));
  color:var(--text);
}
a{color:inherit}
.container{width:min(1100px,92%); margin:0 auto}

.header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(10,10,14,.65);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.logo{
  width:40px; height:40px; border-radius:14px;
  background: linear-gradient(135deg, var(--accent), #b80000);
  box-shadow: 0 12px 30px rgba(224,18,27,.22);
}
.brand-name{font-weight:900; letter-spacing:.3px}
.brand-sub{color:var(--muted); font-size:12px; margin-top:2px}
.menu{display:flex; gap:16px; align-items:center}
.menu a{color:var(--muted); text-decoration:none; padding:8px 10px; border-radius:12px}
.menu a:hover{color:var(--text); background:rgba(255,255,255,.05)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px; border:1px solid transparent;
  background: linear-gradient(135deg, var(--accent), #b80000);
  color:white; font-weight:800; text-decoration:none;
  box-shadow: 0 12px 30px rgba(224,18,27,.18);
}
.btn-outline{
  background:transparent; border-color:rgba(224,18,27,.55);
  box-shadow:none;
}
.btn-ghost{
  background:rgba(255,255,255,.04); border-color:var(--line);
  box-shadow:none;
}
.btn-full{width:100%}

.hero{padding:56px 0 26px}
.hero-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px}
.pill{
  display:inline-block; padding:8px 12px; border-radius:999px;
  border:1px solid rgba(224,18,27,.35);
  background: rgba(224,18,27,.10);
  color:#ffd2d2; font-weight:800; font-size:13px;
}
h1{margin:14px 0 10px; font-size:44px; line-height:1.05}
.lead{color:var(--muted); font-size:16px; line-height:1.6; max-width:60ch}
.cta{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}

.hero-card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.card-title{font-weight:900; font-size:15px}
.small{font-size:12px}
.muted{color:var(--muted)}
.contact-mini{margin-top:12px; padding-top:12px; border-top:1px solid var(--line)}
.mini-title{font-weight:900; margin-bottom:6px; color:#fff}

.section{padding:44px 0}
.section-alt{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
h2{font-size:28px; margin:0 0 10px}
.section-lead{color:var(--muted); margin:0 0 18px}

.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:18px;
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.6}

.gallery{display:grid; grid-template-columns: repeat(4, 1fr); gap:12px}
.ph{
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  border-radius: 16px;
  min-height:140px;
  display:flex; align-items:center; justify-content:center;
  color: var(--muted);
}

.contact-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.contact-card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:18px;
}
.contact-line{margin:10px 0; color:var(--muted)}
.contact-line span{color:var(--text); font-weight:900; display:inline-block; width:120px}
.sep{height:1px; background:var(--line); margin:12px 0}

.footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  color:var(--muted);
}
.footer-grid{display:flex; justify-content:space-between; align-items:center}

@media (max-width: 920px){
  .menu{display:none}
  .hero-grid{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr 1fr}
  .contact-grid{grid-template-columns: 1fr}
  h1{font-size:38px}
}
