/* Kent Pro Gutters — Global Stylesheet */
:root {
  --forest: #2D4A3E;
  --forest-dark: #1F3A2E;
  --charcoal: #2B2D2E;
  --copper: #C87533;
  --copper-dark: #B06428;
  --copper-light: #D4914E;
  --sage: #7A9E8E;
  --sage-light: #A3C4B4;
  --offwhite: #F5F2ED;
  --warm-gray: #E8E4DE;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Source Sans 3', sans-serif;
}

/* ─── BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }

/* ─── NAV ─── */
.navbar { background: var(--cream); border-bottom: 1px solid var(--warm-gray); position: sticky; top: 0; z-index: 1000; }
.navbar-inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-between; align-items: center; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 32px; height: 32px; }
.nav-logo-text { font-family: var(--font-heading); font-size: 1.25rem; color: var(--forest); }
.nav-links { display: flex; list-style: none; gap: 6px; align-items: center; }
.nav-links li a { display: block; padding: 8px 14px; color: var(--charcoal); font-size: .88rem; font-weight: 600; border-radius: 6px; transition: background .2s, color .2s; }
.nav-links li a:hover { background: var(--offwhite); color: var(--forest); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { color: var(--charcoal); font-weight: 700; font-size: .95rem; }
.nav-phone:hover { color: var(--copper); }
.nav-btn { padding: 10px 22px; background: var(--copper); color: var(--white); font-weight: 700; font-size: .82rem; letter-spacing: .5px; text-transform: uppercase; border-radius: 6px; transition: background .25s; }
.nav-btn:hover { background: var(--copper-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; }
.mobile-menu { display: none; background: var(--cream); border-bottom: 1px solid var(--warm-gray); padding: 16px 28px; position: sticky; top: 72px; z-index: 999; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 10px 0; font-weight: 600; font-size: .95rem; color: var(--charcoal); border-bottom: 1px solid var(--warm-gray); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--copper); }

/* ─── BUTTONS ─── */
.btn-copper { display: inline-flex; align-items: center; gap: 8px; padding: 15px 30px; background: var(--copper); color: var(--white); font-family: var(--font-body); font-weight: 700; font-size: .92rem; border: none; border-radius: 8px; cursor: pointer; transition: background .25s, box-shadow .25s; }
.btn-copper:hover { background: var(--copper-dark); box-shadow: 0 4px 20px rgba(200,117,51,.3); }
.btn-forest-outline { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: transparent; color: var(--forest); font-family: var(--font-body); font-weight: 700; font-size: .92rem; border: 2px solid var(--forest); border-radius: 8px; cursor: pointer; transition: background .2s, color .2s; }
.btn-forest-outline:hover { background: var(--forest); color: var(--white); }

/* ─── HERO ─── */
.hero { max-width: 1240px; margin: 0 auto; padding: 48px 28px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; min-height: 520px; }
.hero-content { padding: 20px 0; }
.hero-tagline { font-size: .82rem; font-weight: 700; color: var(--copper); letter-spacing: .5px; margin-bottom: 14px; }
.hero h1 { color: var(--forest); font-size: clamp(2.2rem, 4.5vw, 3rem); margin-bottom: 20px; line-height: 1.15; }
.hero-desc { font-size: 1.05rem; color: #5a5a5a; max-width: 480px; margin-bottom: 32px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-phone-note { margin-top: 18px; font-size: .85rem; color: #888; }
.hero-phone-note a { color: var(--copper); font-weight: 700; }
.hero-phone-note a:hover { text-decoration: underline; }
.hero-image { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3.2; background: var(--sage); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-review { position: absolute; bottom: 20px; left: 20px; right: 20px; background: var(--white); border-radius: 12px; padding: 16px 20px; box-shadow: 0 8px 32px rgba(0,0,0,.12); display: flex; gap: 14px; align-items: flex-start; }
.hero-review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--forest); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: .8rem; flex-shrink: 0; }
.hero-review-text { font-size: .82rem; color: #555; line-height: 1.5; font-style: italic; }
.hero-review-name { font-size: .78rem; font-weight: 700; color: var(--charcoal); margin-top: 4px; }
.hero-review-stars { display: flex; gap: 2px; margin-bottom: 4px; }
.hero-review-stars svg { width: 13px; height: 13px; fill: var(--copper); color: var(--copper); }

/* ─── TRUST RIBBON ─── */
.trust-ribbon { max-width: 1240px; margin: 0 auto; padding: 36px 28px; display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.trust-ribbon-item { display: flex; align-items: center; gap: 10px; padding: 0 28px; border-right: 1px solid var(--warm-gray); }
.trust-ribbon-item:last-child { border-right: none; }
.trust-ribbon-item svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; }
.trust-ribbon-item span { font-size: .85rem; font-weight: 600; color: #666; white-space: nowrap; }

/* ─── SECTION DIVIDER ─── */
.section-divider { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section-divider hr { border: none; height: 1px; background: var(--warm-gray); }

/* ─── SERVICES ROWS ─── */
.services-intro { max-width: 1240px; margin: 0 auto; padding: 64px 28px 20px; text-align: center; }
.services-intro h2 { color: var(--forest); margin-bottom: 12px; font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.services-intro p { max-width: 560px; margin: 0 auto; color: #666; font-size: 1rem; }
.service-row { max-width: 1240px; margin: 0 auto; padding: 32px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.service-row.flipped .service-row-image { order: -1; }
.service-row-image { border-radius: 14px; overflow: hidden; aspect-ratio: 3/2; background: var(--offwhite); }
.service-row-image img { width: 100%; height: 100%; object-fit: cover; }
.service-row-content { padding: 12px 0; }
.service-row-label { font-size: .78rem; font-weight: 700; color: var(--copper); letter-spacing: .3px; margin-bottom: 8px; }
.service-row-content h3 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--forest); margin-bottom: 14px; }
.service-row-content p { color: #5a5a5a; font-size: .95rem; line-height: 1.75; margin-bottom: 10px; }
.service-row-content ul { list-style: none; margin: 14px 0 20px; }
.service-row-content ul li { padding: 5px 0; padding-left: 22px; position: relative; font-size: .92rem; color: #555; }
.service-row-content ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; background: var(--sage); border-radius: 50%; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .9rem; color: var(--copper); transition: gap .2s; }
.service-link:hover { gap: 10px; }

/* ─── CLIMATE CALLOUT ─── */
.climate-callout { max-width: 1240px; margin: 0 auto; padding: 56px 28px; }
.climate-inner { background: var(--forest); border-radius: 18px; padding: 52px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; overflow: hidden; }
.climate-inner::after { content: ''; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(200,117,51,.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.climate-text h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.climate-text p { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.75; }
.climate-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; position: relative; z-index: 1; }
.climate-fact { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 22px 20px; text-align: center; }
.climate-fact-num { font-family: var(--font-heading); font-size: 1.8rem; color: var(--copper-light); margin-bottom: 4px; }
.climate-fact-label { font-size: .78rem; color: rgba(255,255,255,.6); font-weight: 600; line-height: 1.35; }

/* ─── AREAS ─── */
.areas-section { max-width: 1240px; margin: 0 auto; padding: 56px 28px; }
.areas-header { margin-bottom: 32px; }
.areas-header h2 { color: var(--forest); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px; }
.areas-header p { color: #666; font-size: .95rem; max-width: 520px; }
.areas-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pill { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; background: var(--white); border: 1px solid var(--warm-gray); border-radius: 50px; font-weight: 600; font-size: .88rem; color: var(--charcoal); transition: border-color .2s, background .2s, color .2s; }
.area-pill:hover { border-color: var(--copper); color: var(--copper); background: #FFF9F4; }
.area-pill svg { width: 14px; height: 14px; color: var(--sage); }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--offwhite); padding: 64px 0; content-visibility: auto; contain-intrinsic-size: 0 600px; }
.testimonials-inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.testimonials-header { margin-bottom: 40px; }
.testimonials-header h2 { color: var(--forest); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px; }
.testimonials-header p { color: #666; font-size: .95rem; }
.testimonials-stack { display: flex; flex-direction: column; gap: 24px; max-width: 780px; }
.t-card { background: var(--white); border-radius: 14px; padding: 32px 36px; display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: flex-start; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.t-quote-mark { font-family: var(--font-heading); font-size: 4rem; line-height: 1; color: var(--sage-light); user-select: none; margin-top: -8px; }
.t-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.t-stars svg { width: 15px; height: 15px; fill: var(--copper); color: var(--copper); }
.t-text { font-size: .95rem; color: #555; line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.t-author { font-size: .85rem; }
.t-author strong { color: var(--charcoal); }
.t-author span { color: #999; margin-left: 4px; }

/* ─── CTA ─── */
.cta-section { max-width: 1240px; margin: 0 auto; padding: 64px 28px; text-align: center; content-visibility: auto; contain-intrinsic-size: 0 400px; }
.cta-card { background: var(--white); border: 2px solid var(--warm-gray); border-radius: 18px; padding: 56px 40px; max-width: 680px; margin: 0 auto; }
.cta-card h2 { color: var(--forest); font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-bottom: 12px; }
.cta-card p { color: #666; font-size: 1rem; margin-bottom: 8px; line-height: 1.7; }
.cta-phone-big { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--copper); display: block; margin: 20px 0 28px; transition: color .2s; }
.cta-phone-big:hover { color: var(--copper-dark); }
.cta-hours { font-size: .85rem; color: #999; margin-top: 16px; }

/* ─── FOOTER ─── */
.footer { background: var(--forest); color: rgba(255,255,255,.7); padding: 52px 0 0; content-visibility: auto; contain-intrinsic-size: 0 400px; }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-about p { font-size: .88rem; line-height: 1.65; max-width: 300px; margin-top: 12px; }
.footer h4 { font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 9px; }
.footer ul li a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer ul li a:hover { color: var(--copper-light); }
.footer-contact-item { display: flex; gap: 8px; align-items: flex-start; font-size: .88rem; margin-bottom: 10px; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--sage); }
.footer-contact-item a { color: var(--copper-light); }
.footer-bottom { padding: 22px 0; text-align: center; }
.footer-copyright { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-llc { font-size: .68rem; color: rgba(255,255,255,.25); margin-top: 3px; }
.footer-legal-links { display: flex; gap: 18px; justify-content: center; margin-top: 10px; }
.footer-legal-links a { font-size: .75rem; color: rgba(255,255,255,.35); }
.footer-legal-links a:hover { color: var(--copper-light); }

/* ─── BREADCRUMB ─── */
.breadcrumb { max-width: 1240px; margin: 0 auto; padding: 18px 28px 0; font-size: .82rem; color: #999; }
.breadcrumb a { color: var(--copper); }
.breadcrumb a:hover { text-decoration: underline; }
.bc-sep { margin: 0 6px; color: #ccc; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero { max-width: 1240px; margin: 0 auto; padding: 32px 28px 24px; }
.page-hero h1 { color: var(--forest); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.page-hero p { color: #666; font-size: 1.05rem; max-width: 640px; line-height: 1.75; }

/* ─── CONTENT SECTION ─── */
.content-section { max-width: 1240px; margin: 0 auto; padding: 0 28px 48px; }
.content-section.narrow { max-width: 820px; }
.content-section h2 { color: var(--forest); font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin: 36px 0 14px; }
.content-section h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; margin: 24px 0 10px; color: var(--charcoal); }
.content-section p { color: #555; font-size: .95rem; line-height: 1.75; margin-bottom: 14px; }
.content-section ul { list-style: none; margin: 14px 0 20px; }
.content-section ul li { padding: 5px 0 5px 22px; position: relative; font-size: .92rem; color: #555; }
.content-section ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; background: var(--sage); border-radius: 50%; }

/* ─── PRICING TABLE ─── */
.pricing-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; }
.pricing-table th { background: var(--forest); color: var(--white); padding: 12px 16px; text-align: left; font-size: .85rem; font-weight: 700; }
.pricing-table td { padding: 12px 16px; border-bottom: 1px solid var(--warm-gray); font-size: .9rem; color: #555; }
.pricing-table tr:nth-child(even) td { background: var(--offwhite); }

/* ─── FAQ ─── */
.faq-section { max-width: 820px; margin: 0 auto; padding: 0 28px 48px; }
.faq-section h2 { color: var(--forest); font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: 24px; }
.faq-item { border-bottom: 1px solid var(--warm-gray); padding: 18px 0; }
.faq-q { font-weight: 700; font-size: .95rem; color: var(--charcoal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--copper); flex-shrink: 0; margin-left: 16px; transition: transform .2s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding-top: 12px; font-size: .92rem; color: #666; line-height: 1.7; }

/* ─── INTERNAL LINKS ─── */
.related-links { max-width: 1240px; margin: 0 auto; padding: 0 28px 48px; }
.related-links h3 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; margin-bottom: 16px; color: var(--charcoal); }
.related-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.related-pill { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; background: var(--white); border: 1px solid var(--warm-gray); border-radius: 50px; font-weight: 600; font-size: .85rem; color: var(--charcoal); transition: border-color .2s, color .2s; }
.related-pill:hover { border-color: var(--copper); color: var(--copper); }

/* ─── LEGAL PAGES ─── */
.legal-content { max-width: 820px; margin: 0 auto; padding: 32px 28px 64px; }
.legal-content h1 { color: var(--forest); font-size: 1.8rem; margin-bottom: 8px; }
.legal-content .legal-updated { font-size: .85rem; color: #999; margin-bottom: 32px; }
.legal-content h2 { color: var(--forest); font-size: 1.25rem; margin: 28px 0 10px; }
.legal-content p { color: #555; font-size: .92rem; line-height: 1.75; margin-bottom: 14px; }

/* ─── 404 ─── */
.four-oh-four { max-width: 600px; margin: 0 auto; padding: 80px 28px; text-align: center; }
.four-oh-four h1 { color: var(--forest); font-size: 3rem; margin-bottom: 12px; }
.four-oh-four p { color: #666; margin-bottom: 28px; }

/* ─── SERVICE PAGE IMAGE ─── */
.service-page-image { max-width: 1240px; margin: 0 auto; padding: 0 28px 32px; }
.service-page-image img { border-radius: 14px; width: 100%; max-height: 400px; object-fit: cover; }

/* ─── MAP PLACEHOLDER ─── */
.map-placeholder { background: var(--offwhite); border: 2px dashed var(--warm-gray); border-radius: 14px; height: 300px; display: flex; align-items: center; justify-content: center; color: #999; font-size: .9rem; margin: 24px 0; }

/* ─── ANIMATIONS ─── */
.reveal { opacity: 0; transition: opacity .6s ease; }
.reveal.visible { opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding-top: 32px; }
  .hero-image { max-height: 360px; }
  .service-row { grid-template-columns: 1fr; gap: 24px; }
  .service-row.flipped .service-row-image { order: 0; }
  .climate-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .nav-phone { display: none; }
  .nav-right .nav-btn { display: none; }
  .hero h1 { font-size: 1.9rem; }
  .hero-review { display: none; }
  .trust-ribbon { gap: 16px; }
  .trust-ribbon-item { border-right: none; padding: 0 12px; }
  .climate-facts { grid-template-columns: 1fr 1fr; gap: 12px; }
  .climate-inner { padding: 36px 24px; }
  .t-card { grid-template-columns: 1fr; }
  .t-quote-mark { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ─── PRINT ─── */
@media print {
  .navbar, .nav-toggle, .footer, .cta-section, .btn-copper, .btn-forest-outline { display: none; }
  body { background: white; color: black; font-size: 12pt; }
  a { color: black; }
}
