
/* Gutter Goats LLC — Bold & Modern Theme
   Colors: Blue #0b4b85, Red #e04b36, Gold #f0b429, Off-White #f6efe7, Navy #072a4a
*/
:root{
  --blue:#0b4b85;
  --blue-2:#072a4a;
  --red:#e04b36;
  --gold:#f0b429;
  --paper:#f6efe7;
  --ink:#0a2540;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;color:var(--ink);background:var(--paper);}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.btn{display:inline-block;padding:10px 16px;border-radius:8px;border:2px solid transparent;text-decoration:none;font-weight:700}
.btn-lg{padding:14px 20px}
.btn-primary{background:var(--red);color:white}
.btn-primary:hover{filter:brightness(0.95)}
.btn-secondary{background:transparent;border-color:white;color:white}
.btn-ghost{border-color:var(--blue-2);color:var(--blue-2);background:white}
.btn-ghost:hover{background:var(--blue-2);color:white}

.site-header{background:white;position:sticky;top:0;z-index:100;border-bottom:1px solid #e6e6e6}
.header-inner{display:flex;align-items:center;gap:16px;padding:12px 0}
.logo{width:64px;height:64px;object-fit:contain}
.brand h1{margin:0;font-size:22px;letter-spacing:0.5px}
.brand .tagline{margin:2px 0 0;color:#5a6b7b;font-weight:600}

.cta-nav{margin-left:auto;display:flex;gap:10px;flex-wrap:wrap}

.hero{background:var(--blue);color:white;padding:64px 0}
.hero-inner{display:flex;align-items:center;justify-content:space-between;gap:20px}
.hero-copy h2{font-size:48px;line-height:1.05;margin:0 0 10px}
.hero-copy p{opacity:0.95;max-width:620px;margin:0 0 22px}

.section-title{font-size:28px;margin:0 0 16px}
.features{padding:48px 0;background:white}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card{background:var(--paper);padding:18px;border-radius:14px;border:1px solid #eae6df;box-shadow:0 1px 2px rgba(0,0,0,.05)}
.card-emoji{font-size:28px;margin-bottom:8px}

.about{padding:48px 0}
.pill-list{display:flex;gap:10px;flex-wrap:wrap;list-style:none;padding:0;margin:16px 0 0}
.pill-list li{background:white;border:1px solid #eae6df;padding:8px 12px;border-radius:999px;font-weight:600}

.quote{padding:48px 0;background:white}
.quote-form .grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.quote-form label{display:flex;flex-direction:column;font-weight:700;gap:6px}
.quote-form input,.quote-form textarea{padding:12px;border-radius:10px;border:1px solid #d8d4cd;font:inherit;background:#fff}
.quote-form .grid-span{grid-column:1/-1}
.form-actions{display:flex;align-items:center;gap:12px;margin-top:10px}
.form-note{margin:0;color:#5a6b7b}

.form-success{margin-top:14px;padding:12px 14px;border-radius:10px;background:#ecfbf1;border:1px solid #bde5c8;color:#134e28}

.site-footer{background:var(--blue-2);color:#dbe8f8;padding:22px 0}
.footer-inner{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:16px;align-items:center}
.footer-brand{display:flex;align-items:center;gap:10px}
.footer-logo{width:44px;height:44px;object-fit:contain}
.footer-contact a{color:#dbe8f8}

@media (max-width:900px){
  .cards{grid-template-columns:1fr}
  .hero-copy h2{font-size:36px}
  .quote-form .grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
}
