
:root{--primary:#e64040;--text:#1f2937;--muted:#6b7280;--bg:#fff}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;color:var(--text);background:var(--bg)}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto}
.container{max-width:1140px;margin:0 auto;padding:0 20px}

/* Header */
.header{position:sticky;top:0;background:#fff;border-bottom:1px solid #eee;z-index:20}
.header-inner{height:78px;display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;gap:12px;align-items:center}
.brand img{height:48px;width:auto}
.nav{display:flex;gap:22px;font-weight:700}
.nav a{padding:8px 0}
.cta{margin-left:10px}
.nav-toggle{display:none;background:none;border:0;font-size:34px;line-height:1;cursor:pointer}

@media (max-width:860px){
  .header-inner{height:76px}
  .brand img{height:46px}
  .nav{display:none;position:absolute;top:76px;left:0;right:0;background:#fff;border-bottom:1px solid #eee;flex-direction:column;padding:14px 20px}
  .nav.show{display:flex}
  .nav a{padding:14px 0}
  .cta{margin:10px 0 0 0}
  .nav-toggle{display:block}
}

/* Buttons */
.btn{display:inline-block;padding:12px 18px;border-radius:12px;border:2px solid var(--primary);font-weight:800}
.btn.primary,.btn.hero-red{background:var(--primary);color:#fff;border-color:var(--primary)}

/* Hero */
.hero{position:relative;overflow:hidden}
.hero img.hero-photo{width:100%;height:440px;object-fit:cover;filter:brightness(.78)}
.hero .overlay{position:absolute;inset:0;display:flex;align-items:center}
.hero .content{color:#fff}
.hero h1{font-weight:800;margin:0 0 8px 0;line-height:1.04;text-shadow:0 2px 12px rgba(0,0,0,.35);white-space:nowrap;font-size:clamp(28px,4.6vw,58px)}
@media (max-width:680px){
  .hero h1{white-space:normal;font-size:clamp(26px,6vw,34px)}
  .hero img.hero-photo{height:360px}
  .btn-row{flex-direction:column;align-items:flex-start} /* stack to avoid overlap */
}
.btn-row{display:flex;gap:14px;flex-wrap:wrap}

/* Sections & cards */
.section{padding:40px 0}
.section-title{font-size:28px;margin:0 0 16px 0}
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
@media (max-width:960px){.cards{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.cards{grid-template-columns:1fr}}
.card{border:1px solid #eee;border-radius:14px;overflow:hidden;background:#fff}
.card img{width:100%;height:170px;object-fit:cover}
.card .card-body{padding:12px 14px}
.card .card-title{font-weight:800;margin:0 0 4px 0}
.card .card-meta{color:var(--muted);font-size:14px}

/* Gas header band */
.gas-hero{background:linear-gradient(135deg,#0b3d91,#0f5cc0);color:#fff}
.gas-hero .content{padding:26px 0}

/* Hours */
.hours-wrap{padding:32px 0}
.hours-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.hours-card{border:1px solid #eee;border-radius:14px;padding:16px}
.hours-row{display:grid;grid-template-columns:110px 1fr;gap:12px;padding:10px 0;border-bottom:1px dashed #eee}
.hours-row:last-child{border-bottom:0}
.hours-day{font-weight:800}
.hours-time{color:#374151}

.footer{padding:40px 0;border-top:1px solid #eee;color:#6b7280}


@media (max-width: 860px){
  .btn-row{flex-direction:column !important; align-items:flex-start !important; gap:18px !important;}
  .btn-row .btn{display:block !important; width:auto !important;}
}
