/* ProHome Remodels — Shared Stylesheet */
/* Brand: Sage #7A9B7E | Forest #1E2A23 | Cream #F2EDE6 | Off White #FAFAF8 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 16px; color: #2D2D2D; background: #FAFAF8; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }

:root {
  --sage:      #7A9B7E;
  --sage-dark: #5C7A60;
  --sage-light:#A8C4AC;
  --forest:    #1E2A23;
  --cream:     #F2EDE6;
  --offwhite:  #FAFAF8;
  --charcoal:  #2D2D2D;
  --gray:      #8A8A84;
  --border:    #E4E0D9;
}

h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; letter-spacing: -0.03em; line-height: 1.1; }
.label { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 14px; color: var(--forest); }
.section-header p { font-size: 17px; color: var(--gray); line-height: 1.65; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; border: none; }
.btn-primary { background: var(--sage); color: white; }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); }
.btn-dark { background: var(--forest); color: white; }
.btn-dark:hover { background: #2a3d31; transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-outline-dark:hover { background: var(--forest); color: white; }
.btn-white { background: white; color: var(--sage-dark); }
.btn-white:hover { background: var(--offwhite); transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Nav */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.3s, box-shadow 0.3s; background: transparent; }
nav.scrolled { background: var(--forest); box-shadow: 0 2px 24px rgba(0,0,0,0.2); }
nav.solid { background: var(--forest); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; color: white; letter-spacing: -0.03em; }
.nav-logo span { color: var(--sage-light); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: white; }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; }

/* Page Hero (for inner pages) */
.page-hero { background: var(--forest); padding: 140px 0 80px; text-align: center; }
.page-hero .label { color: var(--sage-light); justify-content: center; display: flex; }
.page-hero h1 { color: white; font-size: clamp(36px, 5vw, 60px); font-weight: 800; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 18px; max-width: 560px; margin: 0 auto 32px; line-height: 1.65; }

/* Breadcrumb */
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 16px; font-family: 'Montserrat', sans-serif; }
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--sage-light); }
.breadcrumb span { margin: 0 6px; }

/* Trust bar */
.trust-bar { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: var(--forest); }
.trust-item svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; }

/* Cards */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.card { background: white; border-radius: 16px; padding: 32px; border: 1px solid var(--border); }
.card-icon { width: 48px; height: 48px; background: rgba(122,155,126,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 24px; height: 24px; color: var(--sage); }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--forest); }
.card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { padding: 20px 24px; font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: var(--forest); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s; font-size: 14px; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* Service area pills */
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-pill { background: var(--cream); border: 1px solid var(--border); border-radius: 20px; padding: 6px 16px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: var(--forest); transition: all 0.2s; }
.area-pill:hover { background: var(--forest); color: white; border-color: var(--forest); }

/* CTA Section */
.cta-section { background: var(--sage); text-align: center; padding: 88px 0; }
.cta-section h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: white; margin-bottom: 14px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cta-checks { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 36px; }
.cta-check { display: flex; align-items: center; gap: 7px; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); }
.cta-check svg { width: 15px; height: 15px; }

/* Footer */
footer { background: var(--forest); color: rgba(255,255,255,0.6); padding: 56px 0 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; gap: 40px; flex-wrap: wrap; }
.footer-logo { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800; color: white; margin-bottom: 6px; }
.footer-logo span { color: var(--sage-light); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.footer-phone { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: var(--sage-light); }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.35); }

/* Responsive */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 28px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .trust-items { gap: 16px; }
}
