:root{
  --primary-red:#e63946;
  --secondary-orange:#f77f00;
  --dark-red:#9d0208;
  --light-orange:#ffb703;

  --bg:#0a0a0a;
  --text:#f1faee;
  --muted:rgba(241,250,238,.78);

  --card:#151515;
  --card2:#1b1b1b;
  --border:rgba(241,250,238,.12);

  --shadow:0 10px 28px rgba(0,0,0,.26);
  --radius:12px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  font-family:Arial, sans-serif;
}

a{ color:inherit; text-decoration:none; }
.container{ max-width:1200px; margin:0 auto; padding:0 20px; }

.muted{ color:var(--muted); }
.mono{ font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

.site-header{
  position:sticky; top:0; z-index:50;
  background:linear-gradient(135deg,var(--primary-red),var(--secondary-orange));
  box-shadow:0 4px 12px rgba(0,0,0,.3);
}
.nav-container{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0; gap:14px;
}
.logo{
  font-weight:900; font-size:2rem; letter-spacing:.2px; white-space:nowrap;
  background:linear-gradient(90deg,var(--text),var(--light-orange));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.nav-toggle{
  display:none;
  width:44px; height:40px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:10px;
  background:rgba(0,0,0,.12);
  cursor:pointer;
  padding:8px;
}
.nav-toggle__bar{
  display:block;
  height:2px;
  background:rgba(255,255,255,.92);
  margin:6px 0;
}

.nav ul{
  list-style:none;
  display:flex; gap:16px; flex-wrap:wrap;
  align-items:center; justify-content:flex-end;
}
.nav a{
  font-weight:800;
  opacity:.95;
}
.nav a:hover{ color:var(--light-orange); }
.nav-cta{
  background:rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.22);
  padding:8px 12px;
  border-radius:999px;
}

@media (max-width: 920px){
  .nav-toggle{ display:inline-block; }
  .nav{ position:absolute; left:0; right:0; top:72px; display:none; }
  .nav.is-open{ display:block; }
  .nav ul{
    background:rgba(0,0,0,.78);
    border-top:1px solid rgba(255,255,255,.18);
    border-bottom:1px solid rgba(255,255,255,.18);
    padding:14px 20px;
    justify-content:flex-start;
  }
}

/* HERO */
.hero{
  padding:96px 0 70px;
  text-align:center;
  background:radial-gradient(circle at center, #1a1a1a, var(--bg));
  border-bottom:1px solid var(--border);
}
.hero h1{
  font-size:3.1rem;
  line-height:1.12;
  margin-bottom:14px;
  background:linear-gradient(90deg,var(--primary-red),var(--secondary-orange));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.tagline{
  font-size:1.15rem;
  color:var(--light-orange);
  font-weight:900;
  margin-bottom:18px;
}
.hero-description{
  max-width:980px;
  margin:0 auto 26px;
  color:var(--muted);
  font-size:1.08rem;
}
.hero-ctas{
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
}
.trust-bar{
  margin:34px auto 0;
  max-width:980px;
  display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
}
.pill{
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(241,250,238,.12);
  font-size:.95rem;
  color:rgba(241,250,238,.92);
}

/* SECTIONS */
.section{ padding:76px 0; }
.section-band{
  background:#111;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-contact{
  background:#111;
  border-top:1px solid var(--border);
}
.section-title{
  text-align:center;
  font-size:2.35rem;
  margin-bottom:14px;
  color:var(--secondary-orange);
  line-height:1.2;
}
.section-subtitle{
  text-align:center;
  max-width:900px;
  margin:0 auto 52px;
  color:var(--muted);
  font-size:1.03rem;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(290px, 1fr));
  gap:22px;
}

.card{
  background:linear-gradient(135deg,var(--card),var(--card2));
  border:1px solid rgba(241,250,238,.08);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
  transition:transform .2s ease;
}
.card:hover{ transform:translateY(-6px); }
.card h3{
  color:var(--light-orange);
  margin-bottom:10px;
  line-height:1.25;
  font-size:1.25rem;
}
.card p{ color:var(--muted); }

.callout{
  margin-top:24px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(241,250,238,.10);
  border-radius:var(--radius);
  padding:20px;
}
@media (max-width: 960px){
  .callout{ grid-template-columns:1fr; }
}
.callout__title{ color:var(--text); margin-bottom:10px; }
.callout__actions{ display:flex; flex-direction:column; gap:10px; align-items:stretch; }

.list{ padding-left:18px; color:var(--muted); }
.list li{ margin:8px 0; }

.btn{
  display:inline-block;
  padding:14px 20px;
  border-radius:10px;
  font-weight:900;
  font-size:1.02rem;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  user-select:none;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{
  background:linear-gradient(90deg,var(--primary-red),var(--secondary-orange));
  color:var(--text);
  box-shadow:0 10px 20px rgba(230,57,70,.20);
}
.btn-secondary{
  background:transparent;
  border:1px solid rgba(241,250,238,.28);
  color:var(--text);
  opacity:.92;
}
.btn-secondary:hover{ opacity:1; box-shadow:0 10px 18px rgba(0,0,0,.25); }
.btn-block{ width:100%; text-align:center; }

/* TABLE */
.table-wrap{
  overflow:auto;
  border-radius:var(--radius);
  border:1px solid rgba(241,250,238,.10);
  background:rgba(0,0,0,.18);
}
.table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
}
.table th, .table td{
  padding:14px 12px;
  border-bottom:1px solid rgba(241,250,238,.08);
  vertical-align:top;
}
.table th{
  text-align:left;
  color:rgba(241,250,238,.95);
  background:rgba(255,255,255,.04);
  font-weight:900;
}
.table td{ color:rgba(241,250,238,.88); }
.badge{
  display:inline-block;
  margin-left:8px;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid rgba(255,183,3,.45);
  color:rgba(255,183,3,.95);
  font-size:.85rem;
  font-weight:900;
}

/* VENUE CHIPS */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
@media (max-width: 960px){
  .two-col{ grid-template-columns:1fr; }
}
.chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.chip{
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(241,250,238,.12);
  color:rgba(241,250,238,.92);
  font-weight:800;
}

/* NOTE */
.note{
  margin-top:18px;
  padding:14px 16px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(241,250,238,.10);
  color:rgba(241,250,238,.86);
}

/* SPECS */
.spec{ text-align:left; }
.spec__number{
  font-size:2.1rem;
  font-weight:1000;
  color:var(--primary-red);
  margin-bottom:4px;
}
.spec__label{ font-weight:900; color:rgba(241,250,238,.95); margin-bottom:6px; }
.spec__desc{ color:var(--muted); }

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:22px;
  align-items:start;
}
.contact-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(241,250,238,.10);
  border-radius:var(--radius);
  padding:22px;
}
.contact-card h3{ color:var(--light-orange); margin-bottom:10px; }
.contact-row{ display:flex; gap:10px; align-items:flex-start; margin:10px 0; color:rgba(241,250,238,.92); }
.contact-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }

form label{ display:block; }
form label span{
  display:block;
  font-weight:900;
  color:rgba(241,250,238,.92);
  margin:10px 0 6px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
@media (max-width: 720px){
  .form-row{ grid-template-columns:1fr; }
}
label.full{ grid-column:1 / -1; }

input, select, textarea{
  width:100%;
  padding:12px;
  background:#222;
  border:1px solid rgba(241,250,238,.10);
  color:var(--text);
  border-radius:10px;
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color:rgba(255,183,3,.55);
}
textarea{ min-height:132px; resize:vertical; }

.fineprint{
  margin-top:12px;
  font-size:.92rem;
  color:rgba(241,250,238,.70);
}

/* FOOTER */
.site-footer{
  background:linear-gradient(135deg,var(--dark-red),var(--primary-red));
  padding:34px 0;
  text-align:center;
}
.footer-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:14px;
}
.footer-links a{
  opacity:.95;
  font-weight:800;
}
.footer-links a:hover{ color:var(--light-orange); }

