/* Ash Away Chimney Service — Shared Stylesheet */
:root {
  --charcoal: #4A4A4A;
  --charcoal-dark: #2D2D2D;
  --charcoal-mid: #3A3A3A;
  --ivory: #F5F0E8;
  --ivory-light: #FAF8F4;
  --ivory-mid: #EDE7DB;
  --amber: #C8832A;
  --amber-light: #E8A54A;
  --white: #FFFFFF;
  --text-dark: #2A2A2A;
  --text-muted: #6B6B6B;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Georgia', serif; background: var(--ivory-light); color: var(--text-dark); line-height: 1.7; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-label { font-family: 'Arial', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; display: block; }
h1,h2,h3 { line-height: 1.2; }

.btn-primary { display: inline-block; background: var(--amber); color: var(--white); padding: 14px 32px; font-family: 'Arial', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 1px; text-decoration: none; border: none; cursor: pointer; text-transform: uppercase; transition: background 0.2s; }
.btn-primary:hover { background: #a86820; }
.btn-outline { display: inline-block; border: 2px solid var(--white); color: var(--white); padding: 12px 28px; font-family: 'Arial', sans-serif; font-weight: 600; font-size: 15px; text-decoration: none; letter-spacing: 1px; transition: all 0.2s; text-transform: uppercase; }
.btn-outline:hover { background: var(--white); color: var(--charcoal-dark); }

/* TOPBAR */
.topbar { background: var(--charcoal-dark); padding: 8px 0; text-align: center; font-family: 'Arial', sans-serif; font-size: 13px; color: var(--ivory-mid); letter-spacing: 0.5px; }
.topbar a { color: var(--amber-light); text-decoration: none; }

/* NAV */
nav { background: var(--charcoal); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1100px; margin: 0 auto; }
.logo-wrap { display: flex; flex-direction: column; align-items: flex-start; }
.logo-icon { display: flex; align-items: center; gap: 10px; }
.logo-icon svg { width: 52px; height: 36px; }
.logo-text-main { font-family: 'Arial Black','Arial',sans-serif; font-size: 20px; font-weight: 900; color: var(--white); letter-spacing: 3px; text-transform: uppercase; line-height: 1; }
.logo-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.4); margin: 4px 0; }
.logo-sub { font-family: 'Georgia',serif; font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 3px; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-family: 'Arial',sans-serif; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--amber-light); }
.nav-phone { font-family: 'Arial',sans-serif; font-size: 18px; font-weight: 700; color: var(--amber-light); text-decoration: none; letter-spacing: 1px; }

/* HERO */
.hero { min-height: 580px; display: flex; align-items: center; position: relative; overflow: hidden; background-color: var(--charcoal-dark); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45,45,45,0.88) 0%, rgba(45,45,45,0.65) 55%, rgba(45,45,45,0.3) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 60px 24px 60px 60px; }
.hero-content .section-label { color: var(--amber-light); }
.hero h1 { font-size: 46px; color: var(--white); margin-bottom: 16px; font-weight: normal; }
.hero h1 em { font-style: normal; color: var(--amber-light); }
.hero-sub { font-family: 'Arial',sans-serif; font-size: 17px; color: rgba(255,255,255,0.9); margin-bottom: 32px; line-height: 1.6; font-style: italic; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* TRUST BAR */
.trust-bar { background: var(--amber); padding: 18px 0; }
.trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { text-align: center; color: var(--white); font-family: 'Arial',sans-serif; }
.trust-item strong { display: block; font-size: 22px; font-weight: 900; letter-spacing: 1px; line-height: 1; }
.trust-item span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.9; }

/* SECTIONS */
.section-light { background: var(--ivory-light); padding: 72px 0; }
.section-ivory { background: var(--ivory-mid); padding: 72px 0; }
.section-dark { background: var(--charcoal); padding: 72px 0; color: var(--white); }
.section-darkest { background: var(--charcoal-dark); padding: 72px 0; color: var(--white); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: 36px; color: var(--charcoal-dark); font-weight: normal; margin-bottom: 12px; }
.section-dark .section-header h2, .section-darkest .section-header h2 { color: var(--white); }
.section-header p { font-family: 'Arial',sans-serif; color: var(--text-muted); font-size: 17px; max-width: 640px; margin: 0 auto; }
.section-dark .section-header p, .section-darkest .section-header p { color: rgba(255,255,255,0.75); }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2px; }
.service-card { background: var(--white); padding: 36px 24px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.service-icon { width: 56px; height: 56px; background: var(--charcoal); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 24px; }
.service-card h3 { color: var(--charcoal-dark); margin-bottom: 10px; font-family: 'Arial',sans-serif; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; font-size: 13px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-family: 'Arial',sans-serif; }
.services-banner { margin-top: 2px; overflow: hidden; max-height: 280px; }
.services-banner img { width: 100%; height: 280px; object-fit: cover; object-position: center; display: block; }

/* FLORIDA EXPERTS */
.florida-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 460px; }
.florida-img { position: relative; min-height: 400px; overflow: hidden; }
.florida-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.florida-text { background: var(--charcoal-dark); padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.florida-text h2 { font-size: 32px; color: var(--white); margin-bottom: 6px; font-weight: normal; }
.florida-text .fl-sub { font-family: 'Arial',sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--amber-light); margin-bottom: 20px; }
.florida-text p { color: rgba(255,255,255,0.8); font-family: 'Arial',sans-serif; font-size: 15px; margin-bottom: 14px; line-height: 1.7; }
.florida-list { list-style: none; margin: 16px 0 24px; }
.florida-list li { color: rgba(255,255,255,0.9); font-family: 'Arial',sans-serif; font-size: 14px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: flex-start; gap: 10px; }
.florida-list li::before { content: '✓'; color: var(--amber-light); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* VIDEO */
.video-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.video-text h2 { font-size: 34px; color: var(--white); margin-bottom: 16px; font-weight: normal; }
.video-text p { color: rgba(255,255,255,0.8); font-family: 'Arial',sans-serif; font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.video-container { display: flex; justify-content: center; }
.video-frame { width: 280px; height: 498px; border-radius: 8px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.5); border: 3px solid var(--amber); }
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* SOOT STORY */
.soot-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.soot-text p { color: rgba(255,255,255,0.8); font-family: 'Arial',sans-serif; font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.soot-steps { display: flex; flex-direction: column; gap: 0; }
.soot-step { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.soot-step-num { width: 32px; height: 32px; background: var(--amber); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: Arial,sans-serif; font-weight: 700; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.soot-step-img { width: 56px; height: 56px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.soot-step-text { font-family: 'Arial',sans-serif; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.soot-step-text strong { color: var(--amber-light); }

/* CAP LEAKING */
.cap-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cap-text h2 { font-size: 34px; color: var(--charcoal-dark); margin-bottom: 16px; font-weight: normal; }
.cap-text p { font-family: 'Arial',sans-serif; font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.cap-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ba-card { border-radius: 2px; overflow: hidden; text-align: center; }
.ba-photo { height: 180px; overflow: hidden; }
.ba-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-label { background: var(--charcoal); color: var(--white); font-family: 'Arial',sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2px; padding: 8px; text-transform: uppercase; }
.ba-label.after-label { background: var(--amber); }
.ba-wide { grid-column: span 2; overflow: hidden; border-radius: 2px; }
.ba-wide img { width: 100%; height: 160px; object-fit: cover; display: block; }

/* CHIMNEY TYPES */
.chimney-types { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.chimney-type-card { background: var(--white); padding: 40px; text-align: center; }
.chimney-type-card h3 { font-size: 22px; color: var(--charcoal-dark); margin-bottom: 16px; font-weight: normal; }
.chimney-type-card p { font-family: 'Arial',sans-serif; font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 16px; }
.diagram-img { width: 100%; max-height: 300px; object-fit: contain; display: block; margin: 0 auto; }

/* HURRICANE */
.storm-section { background: #1A2535; padding: 0; color: white; overflow: hidden; }
.storm-hero-img { width: 100%; max-height: 320px; object-fit: cover; object-position: center bottom; display: block; }
.storm-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; padding: 56px 24px; }
.storm-text .section-label { color: #90B4D4; }
.storm-text h2 { font-size: 34px; color: var(--white); margin-bottom: 16px; font-weight: normal; }
.storm-text p { font-family: 'Arial',sans-serif; font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 16px; }
.storm-text blockquote { border-left: 3px solid #90B4D4; padding-left: 16px; margin: 20px 0; font-size: 18px; font-style: italic; color: rgba(255,255,255,0.9); }
.storm-img-box { overflow: hidden; border-radius: 4px; box-shadow: 0 12px 36px rgba(0,0,0,0.4); }
.storm-img-box img { width: 100%; display: block; }

/* ANIMAL GUARD */
.animal-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.animal-img { overflow: hidden; min-height: 340px; }
.animal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.animal-text { background: var(--ivory-mid); padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.animal-text h2 { font-size: 30px; color: var(--charcoal-dark); margin-bottom: 16px; font-weight: normal; }
.animal-text p { font-family: 'Arial',sans-serif; font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }

/* HOME BUYERS */
.buyers-header-img { width: 100%; max-height: 300px; object-fit: cover; object-position: center; display: block; margin-bottom: 52px; border-radius: 2px; }
.buyers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
.buyer-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-left: 4px solid var(--amber); padding: 28px; }
.buyer-card-img { width: 100%; height: 120px; object-fit: cover; border-radius: 2px; margin-bottom: 16px; display: block; }
.buyer-card h3 { font-family: 'Arial',sans-serif; font-size: 16px; font-weight: 700; color: var(--amber-light); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.buyer-card p { font-family: 'Arial',sans-serif; font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.realtor-box { background: var(--amber); padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.realtor-box h3 { font-size: 24px; color: var(--white); font-weight: normal; margin-bottom: 8px; }
.realtor-box p { color: rgba(255,255,255,0.9); font-family: 'Arial',sans-serif; font-size: 14px; }
.realtor-perks { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.realtor-perks span { color: var(--white); font-family: 'Arial',sans-serif; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.realtor-perks span::before { content: '✓'; font-weight: 700; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 28px; }
.stars { color: var(--amber-light); font-size: 18px; margin-bottom: 12px; }
.review-text { font-family: 'Georgia',serif; font-style: italic; font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 16px; }
.review-author { font-family: 'Arial',sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; }

/* SERVICE AREA */
.counties-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 40px 0; }
.county-card { text-align: center; padding: 24px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 2px; }
.county-name { font-family: 'Arial',sans-serif; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: 1px; text-transform: uppercase; }
.county-cities { font-family: 'Arial',sans-serif; font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* FAQ */
.faq-header-img { width: 100%; max-height: 260px; object-fit: cover; object-position: center top; display: block; margin-bottom: 52px; border-radius: 2px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--ivory-mid); padding: 24px 0; }
.faq-item:first-child { border-top: 1px solid var(--ivory-mid); }
.faq-q { font-family: 'Arial',sans-serif; font-size: 16px; font-weight: 700; color: var(--charcoal-dark); margin-bottom: 10px; }
.faq-a { font-family: 'Arial',sans-serif; font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* CTA */
.cta-section { background: var(--charcoal-dark); padding: 80px 24px; text-align: center; }
.cta-section h2 { font-size: 42px; color: var(--white); font-weight: normal; margin-bottom: 16px; }
.cta-section h2 em { font-style: normal; color: var(--amber-light); }
.cta-section p { font-family: 'Arial',sans-serif; color: rgba(255,255,255,0.75); font-size: 17px; max-width: 520px; margin: 0 auto 36px; }
.cta-phone { display: block; font-size: 52px; font-family: 'Arial Black',Arial,sans-serif; font-weight: 900; color: var(--amber-light); letter-spacing: 2px; margin: 28px 0; text-decoration: none; }
.cta-phone:hover { color: var(--white); }

/* FOOTER */
footer { background: #1E1E1E; padding: 48px 24px 24px; color: rgba(255,255,255,0.5); font-family: 'Arial',sans-serif; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto 32px; }
.footer-brand p { color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 12px; font-size: 13px; }
footer h4 { color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 2px; font-size: 11px; margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul a { color: rgba(255,255,255,0.45); text-decoration: none; }
footer ul a:hover { color: var(--amber-light); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }

.fun-bar { background: #1A2535; padding: 20px 0; text-align: center; border-top: 2px solid #2A3545; }
.fun-bar p { color: rgba(255,255,255,0.5); font-family: 'Georgia',serif; font-style: italic; font-size: 13px; }
.fun-bar strong { color: var(--amber-light); }

/* SERVICE PAGE SPECIFIC */
.page-hero { min-height: 380px; display: flex; align-items: center; position: relative; overflow: hidden; background-color: var(--charcoal-dark); }
.page-hero .hero-content { padding: 60px 24px 60px 60px; }
.breadcrumb { font-family: 'Arial',sans-serif; font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 16px; letter-spacing: 1px; }
.breadcrumb a { color: var(--amber-light); text-decoration: none; }
.content-prose { max-width: 780px; margin: 0 auto; }
.content-prose p { font-family: 'Arial',sans-serif; font-size: 16px; color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; }
.content-prose h2 { font-size: 28px; color: var(--charcoal-dark); font-weight: normal; margin: 36px 0 16px; }
.content-prose h3 { font-family: 'Arial',sans-serif; font-size: 18px; font-weight: 700; color: var(--charcoal-dark); margin: 28px 0 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.checklist { list-style: none; margin: 16px 0 24px; }
.checklist li { font-family: 'Arial',sans-serif; font-size: 15px; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid var(--ivory-mid); display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before { content: '✓'; color: var(--amber); font-weight: 700; flex-shrink: 0; }
.callout-box { background: var(--ivory-mid); border-left: 4px solid var(--amber); padding: 24px 28px; margin: 28px 0; border-radius: 2px; }
.callout-box p { font-family: 'Arial',sans-serif; font-size: 15px; color: var(--charcoal-dark); line-height: 1.7; margin: 0; font-style: italic; }
.service-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin: 28px 0; }
.service-link-card { background: var(--white); border: 1px solid var(--ivory-mid); padding: 20px 24px; text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s; display: block; }
.service-link-card:hover { border-color: var(--amber); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.service-link-card .svc-icon { font-size: 24px; margin-bottom: 8px; }
.service-link-card h3 { font-family: 'Arial',sans-serif; font-size: 13px; font-weight: 700; color: var(--charcoal-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.service-link-card p { font-family: 'Arial',sans-serif; font-size: 12px; color: var(--text-muted); line-height: 1.5; margin: 0; }

@media (max-width: 768px) {
  .florida-split,.soot-story,.cap-split,.video-section,.storm-inner,.animal-split,.chimney-types,.buyers-grid,.counties-grid,.reviews-grid { grid-template-columns: 1fr; }
  .hero-content, .page-hero .hero-content { padding: 48px 24px; }
  .hero h1 { font-size: 30px; }
  .nav-links { display: none; }
  .counties-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-phone { font-size: 36px; }
  .trust-items { gap: 24px; }
  .ba-wide { grid-column: span 2; }
  .cap-gallery { grid-template-columns: 1fr 1fr; }
  .service-links { grid-template-columns: 1fr 1fr; }
}
