/* Bentonville Cleanout Pros - shared stylesheet */
:root {
  --green: #2A5240;
  --green-dark: #1F3D2F;
  --cream: #F7F2EA;
  --cream-dark: #E8DFD0;
  --orange: #E15A1F;
  --orange-hover: #C24A12;
  --peach: #FFB89A;
  --charcoal: #1F1B17;
  --gray: #6B6863;
  --white: #FFFFFF;
  --shadow-md: 0 4px 12px rgba(31, 27, 23, 0.10);
  --shadow-lg: 0 12px 32px rgba(31, 27, 23, 0.12);
  --display: 'Fraunces', Georgia, serif;
  --body: 'Manrope', -apple-system, system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--body); color: var(--charcoal); background: var(--cream); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.15; color: var(--charcoal); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1.0625rem; font-weight: 700; font-family: var(--body); }
p { font-size: 1.0625rem; color: var(--gray); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247, 242, 234, 0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--cream-dark); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; max-width: 1180px; margin: 0 auto; }
.logo { font-family: var(--display); font-weight: 700; font-size: 1.1875rem; color: var(--green); letter-spacing: -0.01em; display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { width: 32px; height: 32px; background: var(--green); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; color: var(--cream); font-size: 1rem; font-weight: 700; font-family: var(--body); }
.header-cta { display: flex; align-items: center; gap: 1.5rem; }
.nav { display: none; gap: 1.5rem; }
.nav a { font-size: 0.9375rem; font-weight: 500; transition: color 0.15s; }
.nav a:hover { color: var(--orange); }
.phone-btn { background: var(--orange); color: var(--white); padding: 0.625rem 1.125rem; border-radius: 100px; font-weight: 600; font-size: 0.9375rem; transition: background 0.2s; white-space: nowrap; }
.phone-btn:hover { background: var(--orange-hover); }
@media (min-width: 768px) { .nav { display: flex; } }

.page-hero { padding: 4rem 0 4rem; background: radial-gradient(ellipse at top right, rgba(225, 90, 31, 0.10), transparent 50%), radial-gradient(ellipse at bottom left, rgba(42, 82, 64, 0.08), transparent 50%), var(--cream); }
.hero-tag { display: inline-block; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); background: rgba(42, 82, 64, 0.08); padding: 0.375rem 0.875rem; border-radius: 100px; margin-bottom: 1.5rem; }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero h1 em { font-style: italic; color: var(--orange); font-weight: 500; }
.page-hero-sub { font-size: 1.1875rem; color: var(--gray); max-width: 640px; margin-bottom: 2rem; }
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 2rem; }
.btn-primary { background: var(--orange); color: var(--white); padding: 1rem 1.75rem; border-radius: 100px; font-weight: 600; font-size: 1.0625rem; transition: transform 0.15s, background 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-secondary { color: var(--charcoal); padding: 1rem 1.5rem; border: 1.5px solid var(--charcoal); border-radius: 100px; font-weight: 600; font-size: 1.0625rem; transition: all 0.15s; }
.btn-secondary:hover { background: var(--charcoal); color: var(--cream); }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 0.875rem; color: var(--gray); font-weight: 500; }
.hero-trust span { display: flex; align-items: center; gap: 0.375rem; }
.hero-trust span::before { content: "✓"; color: var(--green); font-weight: 700; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-eyebrow { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; font-family: var(--body); }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; }

.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose p { margin-bottom: 1.25rem; font-size: 1.0625rem; line-height: 1.7; }
.prose ul, .prose ol { margin-bottom: 1.25rem; padding-left: 1.5rem; color: var(--gray); }
.prose li { font-size: 1.0625rem; line-height: 1.7; margin-bottom: 0.5rem; }
.prose strong { color: var(--charcoal); }

.callout { background: var(--white); border: 1px solid var(--cream-dark); border-left: 4px solid var(--orange); padding: 1.5rem 1.75rem; border-radius: 8px; margin: 2rem 0; }
.callout p { font-size: 1.0625rem; color: var(--charcoal); margin: 0; }
.callout strong { color: var(--green); }

.why { background: var(--green); color: var(--cream); }
.why h2 { color: var(--cream); }
.why .section-header p { color: rgba(247, 242, 234, 0.85); }
.why .section-eyebrow { color: var(--peach); }
.reasons-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .reasons-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .reasons-grid { grid-template-columns: repeat(4, 1fr); } }
.reason-icon { width: 44px; height: 44px; background: rgba(247, 242, 234, 0.10); color: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.375rem; }
.why h4 { color: var(--cream); margin-bottom: 0.5rem; }
.why .reasons-grid > div p { color: rgba(247, 242, 234, 0.92); font-size: 0.9375rem; }

.process-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.step-num { font-family: var(--display); font-size: 3rem; font-weight: 600; color: var(--orange); line-height: 1; margin-bottom: 1rem; display: block; }
.step h3 { margin-bottom: 0.5rem; }

.service-area { background: var(--cream-dark); }
.area-list { display: flex; flex-wrap: wrap; gap: 0.5rem; max-width: 720px; margin: 2rem auto 0; justify-content: center; }
.area-pill { background: var(--white); padding: 0.625rem 1.25rem; border-radius: 100px; font-size: 0.9375rem; font-weight: 500; border: 1px solid var(--cream-dark); }

.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream-dark); padding: 1.5rem 0; }
.faq-q { font-family: var(--display); font-size: 1.25rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.5rem; }
.faq-a { font-size: 1rem; color: var(--gray); }

.final-cta { background: var(--green-dark); color: var(--cream); text-align: center; }
.final-cta h2 { color: var(--cream); margin-bottom: 1rem; }
.final-cta p { color: rgba(247, 242, 234, 0.85); font-size: 1.125rem; max-width: 600px; margin: 0 auto 2rem; }
.final-cta .btn-primary { font-size: 1.1875rem; padding: 1.125rem 2rem; }
.final-cta-phone { display: block; margin-top: 1.5rem; font-family: var(--display); font-size: 2rem; font-weight: 600; color: var(--cream); }

.related-services { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .related-services { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .related-services { grid-template-columns: repeat(4, 1fr); } }
.related-card { display: block; background: var(--white); border: 1px solid var(--cream-dark); border-radius: 12px; padding: 1.25rem 1.5rem; transition: transform 0.15s, box-shadow 0.15s; }
.related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.related-card h4 { color: var(--green); margin-bottom: 0.25rem; }
.related-card p { font-size: 0.875rem; color: var(--gray); margin: 0; }

footer { background: var(--charcoal); color: rgba(247, 242, 234, 0.7); padding: 4rem 0 2rem; font-size: 0.9375rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo { color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { color: rgba(247, 242, 234, 0.6); font-size: 0.9375rem; }
.footer-col h5 { font-family: var(--body); font-weight: 700; color: var(--cream); font-size: 0.875rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(247, 242, 234, 0.7); transition: color 0.15s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(247, 242, 234, 0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8125rem; color: rgba(247, 242, 234, 0.5); }
.footer-bottom a { color: rgba(247, 242, 234, 0.7); text-decoration: underline; transition: color 0.15s; }
.footer-bottom a:hover { color: var(--orange); }

.mobile-call { display: none; }
@media (max-width: 640px) {
  body { padding-bottom: 4rem; }
  .mobile-call { display: block; position: fixed; bottom: 0; left: 0; right: 0; background: var(--orange); color: var(--white); text-align: center; padding: 1rem; font-weight: 700; font-size: 1.125rem; z-index: 100; box-shadow: 0 -4px 16px rgba(0,0,0,0.15); }
  .mobile-call::before { content: "📞  "; }
}