/* Legacy-inspired theme to retain ChiliHellion.com look & feel */
:root{
  --cream:#fbf4e6;
  --deep-red:#b91c1c;
  --deep-red-2:#991b1b;
  --orange-1:#f59e0b;
  --orange-2:#f97316;
  --green:#1f7a3a;
}
body{background:var(--cream);}
.ch-hero{
  background: linear-gradient(90deg, var(--orange-1), var(--orange-2), #ef4444);
  padding: 28px 0 18px;
}
.ch-hero-inner{
  max-width:1100px; margin:0 auto; padding:0 16px;
  display:grid; grid-template-columns: 1fr 1fr 1fr; gap:16px; align-items:center;
}
.ch-hero-slogan{
  color:var(--green); font-weight:800; font-size:40px; line-height:1.05;
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
  text-align:center;
}
.ch-logo-wrap{ text-align:center;}
.ch-logo-wrap img{max-height:150px;width:auto;display:block;margin:0 auto;}
.ch-subtitle{margin-top:6px; font-weight:800; color:#111; font-size:20px;}
.ch-nav{
  background: var(--deep-red);
  box-shadow: 0 3px 0 rgba(0,0,0,.15) inset;
}
.ch-nav ul{
  max-width:1100px; margin:0 auto; padding:0 16px;
  display:flex; gap:34px; justify-content:center; align-items:center;
  list-style:none;
}
.ch-nav a{
  display:inline-block; padding:14px 18px; color:#fff; text-decoration:none;
  font-weight:800;
  border-radius:6px;
}
.ch-nav a.active{ background: rgba(0,0,0,.18); }
.ch-nav a:hover{ background: rgba(0,0,0,.14); }
.ch-page{
  max-width:1100px; margin:0 auto; padding:34px 16px 64px;
}
.ch-h1{
  text-align:center; color: var(--deep-red); font-weight:900;
  font-size:44px; margin:12px 0 22px;
}
.ch-card{
  background:#fde8e8; border:2px solid #fbcaca; border-radius:10px;
  padding:22px; display:grid; grid-template-columns: 220px 1fr; gap:18px;
}
.ch-card h2{margin:0; color:var(--deep-red); font-weight:900; font-size:26px;}
.ch-card p{margin:8px 0 0; color:#374151; font-size:16px; line-height:1.5;}
.ch-section-grid{display:grid; grid-template-columns: 1fr 1fr; gap:28px; margin-top:22px;}
.ch-section-title{
  display:flex; gap:12px; align-items:center;
  color: var(--deep-red); font-weight:900; font-size:30px; margin:18px 0 10px;
}
.ch-body{color:#374151; line-height:1.6;}
.ch-testimonials{
  background:#fff; border:2px solid #fbcaca; border-radius:10px; padding:12px;
  max-height:210px; overflow-y:auto;
}
.ch-quote{
  border-left:4px solid #fca5a5; padding-left:12px; margin:0 0 14px;
  font-style:italic; color:#374151;
}
.ch-quote .who{display:block; margin-top:6px; font-style:normal; font-weight:700; color:#111;}
.ch-footer{
  text-align:center; padding:18px 0; color:#6b7280; font-size:14px;
  border-top:1px solid rgba(0,0,0,.08);
}
@media (max-width: 900px){
  .ch-hero-inner{grid-template-columns:1fr; }
  .ch-hero-slogan{font-size:34px;}
  .ch-card{grid-template-columns:1fr;}
  .ch-section-grid{grid-template-columns:1fr;}
  .ch-nav ul{flex-wrap:wrap; gap:14px;}
}

.ch-section-grid-single{
  display:block;
}
