/* =================================================================
   SUMMIT ROOFING CO. — Shared Stylesheet
   ================================================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --charcoal: #1a1a2e;
  --charcoal-light: #252542;
  --rust: #b91c1c;
  --rust-dark: #991b1b;
  --slate: #475569;
  --slate-light: #64748b;
  --white: #ffffff;
  --off-white: #f8fafc;
  --amber: #d97706;
  --amber-light: #f59e0b;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-800: #1e293b;
  --green: #16a34a;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  color: #334155;
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

a { text-decoration: none; color: inherit; }
img, video, iframe { max-width: 100%; display: block; }
ul { list-style: none; }

/* ========== TOP BAR ========== */
.top-bar { background: var(--charcoal); color: rgba(255,255,255,0.8); font-size: 0.85rem; padding: 6px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: var(--amber); }
.top-bar a:hover { color: var(--amber-light); }
.top-bar .google-rating { display: flex; align-items: center; gap: 6px; }
.top-bar .stars { color: var(--amber); letter-spacing: 1px; }

/* ========== HEADER ========== */
.header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.08); transition: box-shadow 0.3s; }
.header .container { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 44px; height: 44px; background: var(--rust); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 28px; height: 28px; fill: white; }
.logo-name { font-size: 1.3rem; color: var(--charcoal); letter-spacing: 0.05em; text-transform: uppercase; line-height: 1; }
.logo-text span { font-family: 'Source Sans 3', sans-serif; font-size: 0.65rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav a { font-family: 'Oswald', sans-serif; font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: var(--charcoal); padding: 8px 14px; border-radius: 4px; transition: all 0.2s; }
.nav a:hover, .nav a.active { color: var(--rust); }
.nav a.nav-cta { background: var(--rust); color: white; padding: 8px 18px; }
.nav a.nav-cta:hover { background: var(--rust-dark); }

.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 6px; font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--charcoal); }
.header-phone svg { width: 18px; height: 18px; fill: var(--rust); }
.header-phone:hover { color: var(--rust); }

.gaf-badge-header { display: flex; align-items: center; gap: 6px; background: var(--gray-100); padding: 6px 12px; border-radius: 4px; font-size: 0.7rem; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.05em; border: 1px solid var(--gray-200); }
.gaf-badge-header svg { width: 20px; height: 20px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 24px; height: 2.5px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }

/* ========== CONTAINER ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* ========== HERO ========== */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; background: var(--charcoal); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.4); }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 60px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(185, 28, 28, 0.9); color: white; padding: 8px 18px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.hero-badge svg { width: 16px; height: 16px; fill: var(--amber); }
.hero h1, .hero h2 { font-size: 3.5rem; color: white; line-height: 1.05; margin-bottom: 16px; }
.hero p { font-size: 1.25rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 550px; line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ========== PAGE HERO (interior pages) ========== */
.page-hero { position: relative; padding: 80px 0 60px; background: var(--charcoal); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.25); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1, .page-hero h2 { font-size: 3rem; color: white; margin-bottom: 12px; line-height: 1.1; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 680px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: var(--amber); }
.breadcrumb a:hover { color: var(--amber-light); }
.breadcrumb-sep { opacity: 0.5; }

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 14px 32px; border-radius: 4px; border: none; cursor: pointer; transition: all 0.25s; }
.btn-primary { background: var(--rust); color: white; }
.btn-primary:hover { background: var(--rust-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(185,28,28,0.4); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-amber { background: var(--amber); color: white; }
.btn-amber:hover { background: var(--amber-light); transform: translateY(-1px); }
.btn-dark { background: var(--charcoal); color: white; }
.btn-dark:hover { background: var(--charcoal-light); transform: translateY(-1px); }
.btn-large { padding: 18px 40px; font-size: 1.05rem; }

.hero-phone { display: flex; align-items: center; gap: 8px; color: white; font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 600; }
.hero-phone svg { width: 20px; height: 20px; fill: var(--amber); }

/* ========== CERTIFICATION BAR ========== */
.cert-bar { background: var(--charcoal); border-top: 3px solid var(--rust); padding: 20px 0; }
.cert-bar .container { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.cert-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.cert-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cert-icon svg { width: 22px; height: 22px; fill: var(--amber); }

/* ========== SECTION STYLES ========== */
.section { padding: 80px 0; }
.section-dark { background: var(--charcoal); color: white; }
.section-gray { background: var(--gray-100); }
.section-rust { background: var(--rust); color: white; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--charcoal); margin-bottom: 12px; }
.section-dark .section-header h2 { color: white; }
.section-header .accent-line { width: 60px; height: 4px; background: var(--rust); margin: 0 auto 16px; }
.section-header p { font-size: 1.1rem; color: var(--slate); max-width: 600px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ========== SERVICES GRID ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.service-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid var(--gray-200); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.service-card-img { height: 180px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1.15rem; color: var(--charcoal); margin-bottom: 8px; }
.service-card-body p { font-size: 0.95rem; color: var(--slate); margin-bottom: 16px; }
.service-card-link { font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--rust); text-transform: uppercase; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 6px; }
.service-card-link:hover { gap: 10px; }

/* ========== FEATURED PROJECTS ========== */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.project-card { position: relative; border-radius: 8px; overflow: hidden; height: 320px; cursor: pointer; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover img { transform: scale(1.05); }
.project-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(26,26,46,0.95)); padding: 30px 24px 24px; color: white; }
.project-overlay h3 { font-size: 1.15rem; margin-bottom: 4px; }
.project-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.project-tag { display: inline-block; background: var(--rust); color: white; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 3px; margin-bottom: 8px; }

/* ========== WHY CHOOSE US ========== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.why-card { text-align: center; padding: 32px 24px; }
.why-icon { width: 64px; height: 64px; background: rgba(185,28,28,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.why-icon svg { width: 30px; height: 30px; fill: var(--rust); }
.why-card h3 { font-size: 1.15rem; color: var(--charcoal); margin-bottom: 10px; }
.why-card p { font-size: 0.95rem; color: var(--slate); }

/* ========== TESTIMONIALS ========== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 32px; }
.section-gray .testimonial-card { background: white; border-color: var(--gray-200); }
.testimonial-stars { color: var(--amber); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.section-gray .testimonial-card blockquote { color: var(--gray-800); }
.testimonial-author { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; color: white; }
.section-gray .testimonial-author { color: var(--charcoal); }
.testimonial-location { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.section-gray .testimonial-location { color: var(--slate-light); }

/* ========== FINANCING TEASER ========== */
.financing-teaser { background: linear-gradient(135deg, var(--rust) 0%, var(--rust-dark) 100%); padding: 60px 0; text-align: center; color: white; }
.financing-teaser h2 { font-size: 2.8rem; margin-bottom: 8px; color: white; }
.financing-teaser .price { font-size: 1.4rem; font-family: 'Oswald', sans-serif; color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.financing-teaser .price span { font-size: 3rem; font-weight: 700; color: white; }

/* ========== STORM CTA ========== */
.storm-cta { position: relative; padding: 80px 0; overflow: hidden; }
.storm-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.3); }
.storm-cta-content { position: relative; z-index: 2; text-align: center; color: white; }
.storm-cta h2 { font-size: 2.5rem; margin-bottom: 12px; color: white; }
.storm-cta p { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.storm-cta .emergency-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(217,119,6,0.9); color: white; padding: 8px 20px; border-radius: 4px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px; }

/* ========== FOOTER ========== */
.footer { background: var(--gray-800); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { font-size: 1rem; color: white; margin-bottom: 16px; letter-spacing: 0.08em; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 0.9rem; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--amber); flex-shrink: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer ul li a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; }
.footer-certs { display: flex; gap: 16px; align-items: center; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.4); }

/* ========== MOBILE BOTTOM CALL BAR ========== */
.mobile-bottom-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--rust); box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
.mobile-bottom-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; color: white; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 14px 8px; }
.mobile-bottom-bar a + a { border-left: 1px solid rgba(255,255,255,0.2); background: var(--rust-dark); }
.mobile-bottom-bar svg { width: 20px; height: 20px; fill: white; }

/* ========== ANIMATIONS ========== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== LEAD FORM BLOCK (inline forms on service pages) ========== */
.lead-form-block { background: var(--gray-100); padding: 60px 0; }
.lead-form-card { background: white; max-width: 720px; margin: 0 auto; padding: 40px 36px; border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.08); border-top: 4px solid var(--rust); }
.lead-form-card h2 { font-size: 1.8rem; color: var(--charcoal); margin-bottom: 8px; }
.lead-form-card .lead-sub { color: var(--slate); margin-bottom: 24px; font-size: 1rem; }
.lead-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--gray-300); border-radius: 4px; font-family: inherit; font-size: 1rem; color: var(--charcoal); background: white; transition: border-color 0.2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--rust); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field label { display: block; font-size: 0.85rem; color: var(--slate); margin-bottom: 6px; font-weight: 600; }
.lead-form-disclaimer { font-size: 0.78rem; color: var(--slate-light); text-align: center; margin-top: 14px; }

/* ========== CONTENT BODY (service detail pages, blog posts) ========== */
.content-body { padding: 60px 0; }
.content-body .container { max-width: 820px; }
.content-body h2 { font-size: 1.9rem; color: var(--charcoal); margin: 36px 0 14px; }
.content-body h3 { font-size: 1.3rem; color: var(--charcoal); margin: 28px 0 10px; text-transform: none; letter-spacing: -0.01em; }
.content-body p { font-size: 1.02rem; color: var(--slate); line-height: 1.75; margin-bottom: 18px; }
.content-body ul, .content-body ol { padding-left: 24px; margin-bottom: 18px; }
.content-body li { font-size: 1.02rem; color: var(--slate); line-height: 1.75; margin-bottom: 8px; }
.content-body strong { color: var(--charcoal); }
.content-body a { color: var(--rust); text-decoration: underline; }
.content-body img { margin: 24px 0; border-radius: 6px; }
.content-body blockquote { border-left: 4px solid var(--rust); padding: 12px 24px; margin: 24px 0; background: var(--gray-100); font-style: italic; color: var(--charcoal); }

/* ========== INFO CARDS (used on city pages, service pages) ========== */
.info-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin: 32px 0; }
.info-card { background: white; padding: 28px 24px; border-radius: 8px; border: 1px solid var(--gray-200); box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.info-card-icon { width: 48px; height: 48px; background: rgba(185,28,28,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.info-card-icon svg { width: 24px; height: 24px; fill: var(--rust); }
.info-card h3 { font-size: 1.05rem; color: var(--charcoal); margin-bottom: 8px; text-transform: none; letter-spacing: -0.01em; }
.info-card p { font-size: 0.95rem; color: var(--slate); margin: 0; }

/* ========== PROCESS STEPS ========== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step-counter; }
.step-card { background: white; padding: 28px 24px; border-radius: 8px; border: 1px solid var(--gray-200); position: relative; }
.step-num { width: 36px; height: 36px; background: var(--rust); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 16px; }
.step-card h3 { font-size: 1.05rem; color: var(--charcoal); margin-bottom: 8px; text-transform: none; letter-spacing: -0.01em; }
.step-card p { font-size: 0.95rem; color: var(--slate); margin: 0; }

/* ========== STAT CALLOUTS ========== */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; padding: 40px 0; }
.stat-block { text-align: center; }
.stat-num { font-family: 'Oswald', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--rust); display: block; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.9rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

/* ========== FAQ ========== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: 6px; margin-bottom: 12px; overflow: hidden; background: white; }
.faq-question { width: 100%; padding: 20px 24px; background: white; border: none; text-align: left; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1rem; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.02em; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--rust); line-height: 1; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-question:hover { color: var(--rust); }
.faq-answer { padding: 0 24px 20px; color: var(--slate); font-size: 1rem; line-height: 1.7; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ========== BLOG ========== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.blog-card { background: white; border-radius: 8px; overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.blog-card-img { height: 180px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-card-meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; font-weight: 600; }
.blog-card-meta .blog-tag { color: var(--rust); }
.blog-card h3 { font-size: 1.15rem; color: var(--charcoal); margin-bottom: 10px; line-height: 1.25; }
.blog-card p { font-size: 0.95rem; color: var(--slate); margin-bottom: 14px; line-height: 1.55; }
.blog-card-link { font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--rust); text-transform: uppercase; letter-spacing: 0.05em; }

/* ========== POST META (single blog post) ========== */
.post-meta { display: flex; gap: 16px; font-size: 0.85rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-bottom: 16px; }
.post-meta .post-tag { color: var(--rust); }
.post-author { display: flex; align-items: center; gap: 12px; padding: 24px 0; border-top: 1px solid var(--gray-200); margin-top: 40px; }
.post-author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--rust); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-weight: 700; }
.post-author-name { font-weight: 700; color: var(--charcoal); }
.post-author-title { font-size: 0.85rem; color: var(--slate-light); }

/* ========== TWO-COLUMN LAYOUT (city pages, etc.) ========== */
.two-col { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.two-col-sidebar { background: var(--gray-100); padding: 32px 28px; border-radius: 8px; position: sticky; top: 96px; }
.two-col-sidebar h3 { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 16px; text-transform: none; letter-spacing: -0.01em; }
.sidebar-phone { font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--rust); display: block; margin-bottom: 12px; }
.sidebar-divider { height: 1px; background: var(--gray-200); margin: 24px 0; }

/* ========== ALERT BOXES (insurance, urgent, info) ========== */
.alert { padding: 20px 24px; border-radius: 6px; margin: 24px 0; display: flex; gap: 14px; align-items: flex-start; }
.alert-icon { width: 28px; height: 28px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.alert-icon svg { width: 24px; height: 24px; }
.alert-info { background: rgba(217,119,6,0.08); border-left: 4px solid var(--amber); }
.alert-info svg { fill: var(--amber); }
.alert-urgent { background: rgba(185,28,28,0.08); border-left: 4px solid var(--rust); }
.alert-urgent svg { fill: var(--rust); }
.alert-success { background: rgba(22,163,74,0.08); border-left: 4px solid var(--green); }
.alert-success svg { fill: var(--green); }
.alert-content h4 { font-size: 1rem; color: var(--charcoal); margin-bottom: 4px; text-transform: none; letter-spacing: -0.01em; font-family: 'Source Sans 3', sans-serif; font-weight: 700; }
.alert-content p { margin: 0; font-size: 0.95rem; color: var(--slate); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .gaf-badge-header { display: none; }
  .hamburger { display: flex; }
  .nav.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: white; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 4px; overflow-y: auto; z-index: 999; }
  .nav.open a { padding: 12px 16px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col-sidebar { position: static; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .hero { min-height: 70vh; }
  .hero h1, .hero h2 { font-size: 2.2rem; }
  .hero p { font-size: 1.05rem; }
  .page-hero h1, .page-hero h2 { font-size: 2rem; }
  .section { padding: 50px 0; }
  .section-header h2 { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 60px; }
  .header-phone { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .financing-teaser h2 { font-size: 2rem; }
  .financing-teaser .price span { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form-card { padding: 32px 24px; }
  .container { padding: 0 16px; }
  .header .container { padding: 12px 16px; }
  .content-body { padding: 40px 0; }
}

@media (max-width: 480px) {
  .hero h1, .hero h2 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; }
  .cert-bar .container { gap: 20px; }
  .cert-item { font-size: 0.75rem; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
}
