/* ============================================
   Lincoln Spray Foam — Main Stylesheet
   Hand-written CSS, no frameworks. Mobile-first.
   ============================================ */

/* ---- Custom Properties ---- */
:root {
  --primary: #1A3A2A;
  --primary-light: #2D6A4F;
  --accent: #E8610A;
  --accent-hover: #C94F08;
  --neutral-dark: #1C1C1E;
  --neutral-mid: #4A4A4A;
  --neutral-light: #F5F5F0;
  --white: #FFFFFF;
  --border: #E0E0DA;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 6px;
  --max-width: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--neutral-mid);
  background: var(--neutral-light);
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--primary-light); text-decoration: underline; }
a:hover { color: var(--primary); }
ul, ol { list-style-position: inside; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; color: var(--neutral-dark); line-height: 1.2; }
h1 { font-size: clamp(1.875rem, 5vw, 2.75rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 600; }
h3 { font-size: 1.375rem; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--neutral-dark); }

/* ---- Container ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.25rem; }

/* ---- Sections ---- */
.section { padding: 3.5rem 1.25rem; }
.section-alt { background: var(--white); }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-title { text-align: center; margin-bottom: 0.625rem; }
.section-sub { text-align: center; color: var(--neutral-mid); max-width: 580px; margin: 0 auto 2.25rem; font-size: 1.0625rem; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 0.875rem;
}
.site-logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1.15; }
.site-logo .logo-name { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: var(--white); font-weight: 700; }
.site-logo .logo-tagline { font-size: 0.725rem; color: rgba(255,255,255,0.65); }

/* Hamburger */
.nav-toggle {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); transition: transform 0.28s, opacity 0.28s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Nav (mobile) */
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--primary);
  padding: 0.75rem 1.25rem 1.5rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.22);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.site-nav.open { display: block; }
.site-nav ul { list-style: none; display: flex; flex-direction: column; }
.site-nav a { display: block; color: rgba(255,255,255,0.88); text-decoration: none; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-weight: 500; font-size: 0.9375rem; }
.site-nav a:hover, .site-nav a.active { color: var(--white); }
.nav-phone-mobile { margin-top: 1rem; }
.nav-phone-mobile a { color: var(--accent); font-weight: 700; font-size: 1.0625rem; display: block; text-align: center; padding: 0.75rem; background: rgba(255,255,255,0.06); border-radius: var(--radius); text-decoration: none; }

/* Header desktop elements (hidden on mobile) */
.header-phone { display: none; }
.header-cta { display: none; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
  text-align: center;
  min-height: 44px;
  line-height: 1.2;
  gap: 0.5rem;
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-secondary:hover { background: var(--white); color: var(--primary); transform: translateY(-1px); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 1.0625rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 3.5rem 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(45,106,79,0.35) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: var(--max-width); margin: 0 auto; position: relative; }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.82); margin-bottom: 1.75rem; max-width: 580px; line-height: 1.65; }
.hero-ctas { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2.5rem; }
.hero-phone { font-size: 1.625rem; font-weight: 700; color: var(--accent); text-decoration: none; display: block; margin-bottom: 0.25rem; }
.hero-phone:hover { color: #f07a30; }
.hero-phone-label { font-size: 0.875rem; color: rgba(255,255,255,0.6); display: block; margin-bottom: 0.75rem; }
.trust-badges { display: flex; flex-direction: column; gap: 0.75rem; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 2rem; margin-top: 0.5rem; }
.trust-badge { display: flex; align-items: center; gap: 0.625rem; color: rgba(255,255,255,0.88); font-size: 0.9375rem; font-weight: 500; }
.trust-badge svg { flex-shrink: 0; color: var(--accent); }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.125rem; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; display: block; }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); color: inherit; border-color: rgba(26,58,42,0.2); }
.service-card-icon { width: 48px; height: 48px; background: rgba(26,58,42,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--primary); }
.service-card h3 { margin-bottom: 0.4rem; font-size: 1.125rem; }
.service-card p { color: var(--neutral-mid); font-size: 0.9375rem; margin: 0; }
.service-card-link { display: inline-block; margin-top: 0.875rem; color: var(--accent); font-weight: 600; font-size: 0.9375rem; text-decoration: none; }
.service-card-link::after { content: ' →'; }

/* ============================================
   BENEFITS / WHY
   ============================================ */
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.benefit-item { text-align: center; padding: 1.5rem 1rem; }
.benefit-icon { width: 68px; height: 68px; background: rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.125rem; color: var(--accent); }
.benefit-item h3 { margin-bottom: 0.5rem; }
.benefit-item p { color: rgba(255,255,255,0.8); font-size: 0.9375rem; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.625rem; overflow: hidden; background: var(--white); }
.faq-question { width: 100%; background: none; border: none; padding: 1.125rem 1.25rem; text-align: left; font-size: 1rem; font-weight: 600; color: var(--neutral-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; font-family: 'Inter', system-ui, sans-serif; line-height: 1.4; min-height: 44px; }
.faq-question:hover { background: rgba(0,0,0,0.02); }
.faq-icon { flex-shrink: 0; transition: transform 0.28s; color: var(--accent); margin-top: 2px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height 0.32s ease, padding 0.32s ease; }
.faq-item.open .faq-answer { max-height: 600px; padding: 0 1.25rem 1.25rem; }
.faq-answer p { color: var(--neutral-mid); margin: 0; }

/* ============================================
   TABLES
   ============================================ */
.table-wrapper { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; background: var(--white); }
th { background: var(--primary); color: var(--white); padding: 0.875rem 1rem; text-align: left; font-weight: 600; font-size: 0.875rem; letter-spacing: 0.02em; }
td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); color: var(--neutral-mid); vertical-align: top; }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: rgba(0,0,0,0.018); }
td:first-child { font-weight: 600; color: var(--neutral-dark); }

/* ============================================
   ANSWER BOX (AEO quick answer)
   ============================================ */
.answer-box { background: rgba(26,58,42,0.06); border-left: 4px solid var(--primary); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0 2rem; }
.answer-box p { color: var(--neutral-dark); font-size: 1.0625rem; margin: 0; }
.answer-box strong { color: var(--primary); }

/* ============================================
   INLINE CTA BOX
   ============================================ */
.inline-cta { background: var(--primary); color: var(--white); padding: 1.75rem 1.5rem; border-radius: 8px; text-align: center; margin: 2.5rem 0; }
.inline-cta h3 { color: var(--white); margin-bottom: 0.5rem; }
.inline-cta p { color: rgba(255,255,255,0.82); margin-bottom: 1.25rem; font-size: 0.9375rem; }
.inline-cta-btns { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }

/* ============================================
   CONTACT FORM
   ============================================ */
.form-wrap { max-width: 680px; margin: 0 auto; background: var(--white); padding: 2rem 1.5rem; border-radius: 8px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-group { margin-bottom: 1.125rem; }
.form-label { display: block; font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.375rem; color: var(--neutral-dark); }
.form-label .required { color: var(--accent); margin-left: 2px; }
.form-control { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: 'Inter', system-ui, sans-serif; color: var(--neutral-dark); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; min-height: 44px; }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,42,0.1); }
.form-control.error { border-color: #c62828; }
.field-error { display: none; color: #c62828; font-size: 0.8125rem; margin-top: 0.3rem; }
.form-group.has-error .field-error { display: block; }
.form-group.has-error .form-control { border-color: #c62828; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A4A4A' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
textarea.form-control { resize: vertical; min-height: 100px; }
.honeypot { display: none !important; position: absolute; left: -9999px; }
.form-submit-wrap { margin-top: 0.25rem; }
.form-success { display: none; background: rgba(26,58,42,0.07); border: 1.5px solid var(--primary); border-radius: var(--radius); padding: 1.75rem; text-align: center; }
.form-success h3 { color: var(--primary); margin-bottom: 0.5rem; }
.form-success p { color: var(--neutral-mid); margin: 0; }

/* ============================================
   PAGE HEADER (non-home interior pages)
   ============================================ */
.page-header { background: var(--primary); color: var(--white); padding: 3rem 1.25rem 2.5rem; }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header .page-sub { color: rgba(255,255,255,0.78); font-size: 1.0625rem; max-width: 580px; margin: 0; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb { padding: 0.625rem 1.25rem; background: var(--white); border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.breadcrumb-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; gap: 0.375rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--primary-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--neutral-mid); }

/* ============================================
   SERVICE AREA LIST
   ============================================ */
.service-area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-top: 1.5rem; }
.service-area-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.625rem 1rem; font-size: 0.9375rem; display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--neutral-mid); transition: border-color 0.2s, color 0.2s; }
.service-area-item::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.service-area-item:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================
   BLOG
   ============================================ */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; text-decoration: none; color: inherit; display: block; transition: box-shadow 0.2s, transform 0.2s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); color: inherit; }
.blog-meta { font-size: 0.875rem; color: var(--neutral-mid); margin-bottom: 0.625rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.blog-meta span { display: flex; align-items: center; gap: 0.3rem; }
.blog-card h2 { font-size: 1.25rem; margin-bottom: 0.625rem; color: var(--neutral-dark); }
.blog-card p { color: var(--neutral-mid); font-size: 0.9375rem; margin: 0; }
.blog-read-more { color: var(--accent); font-weight: 600; margin-top: 0.875rem; display: inline-block; text-decoration: none; font-size: 0.9375rem; }
.blog-read-more::after { content: ' →'; }

/* Blog Post */
.blog-post-header { background: var(--primary); color: var(--white); padding: 3rem 1.25rem; }
.blog-post-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.blog-post-header .blog-meta { color: rgba(255,255,255,0.65); }
.blog-content { max-width: 780px; margin: 0 auto; padding: 2.5rem 1.25rem; }
.blog-content h2 { font-size: 1.625rem; margin: 2.25rem 0 0.875rem; padding-top: 0.25rem; }
.blog-content h3 { margin: 1.75rem 0 0.625rem; }
.blog-content ul, .blog-content ol { padding-left: 1.5rem; margin-bottom: 1rem; list-style-position: outside; }
.blog-content li { margin-bottom: 0.4rem; }
.blog-content a { color: var(--primary-light); }
.toc { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.toc-title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--neutral-dark); font-family: 'Inter', system-ui, sans-serif; }
.toc ol { padding-left: 1.25rem; list-style-position: outside; }
.toc li { margin-bottom: 0.375rem; }
.toc a { color: var(--primary-light); font-size: 0.9375rem; text-decoration: none; }
.toc a:hover { text-decoration: underline; }
.related-posts { background: var(--white); padding: 2rem 1.25rem; border-top: 1px solid var(--border); }
.related-posts h3 { margin-bottom: 1rem; }
.related-post-item { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.related-post-item:last-child { border-bottom: none; }
.related-post-item a { color: var(--primary-light); font-weight: 500; }

/* ============================================
   ABOUT
   ============================================ */
.about-stat-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.about-stat { text-align: center; min-width: 110px; padding: 1rem; }
.about-stat-number { font-size: 2.25rem; font-weight: 700; color: var(--primary); font-family: 'DM Serif Display', serif; line-height: 1; margin-bottom: 0.25rem; }
.about-stat-label { font-size: 0.875rem; color: var(--neutral-mid); }

/* ============================================
   CONTENT PAGE LAYOUT
   ============================================ */
.content-page { max-width: 800px; margin: 0 auto; padding: 0 1.25rem; }
.content-page h2 { font-size: 1.625rem; margin: 2.25rem 0 0.875rem; }
.content-page h3 { margin: 1.75rem 0 0.625rem; }
.content-page ul, .content-page ol { padding-left: 1.5rem; margin-bottom: 1rem; list-style-position: outside; }
.content-page li { margin-bottom: 0.4rem; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: var(--primary); color: var(--white); padding: 3.5rem 1.25rem; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.82); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; flex-direction: column; gap: 0.875rem; align-items: center; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--neutral-dark); color: rgba(255,255,255,0.65); padding: 3rem 1.25rem 1.5rem; }
.footer-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer-brand .logo-name { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: var(--white); display: block; margin-bottom: 0.3rem; }
.footer-brand .logo-tagline { font-size: 0.8125rem; color: rgba(255,255,255,0.45); display: block; margin-bottom: 1rem; }
.footer-nap { font-size: 0.9375rem; line-height: 1.85; }
.footer-nap a { color: var(--accent); text-decoration: none; }
.footer-nap a:hover { text-decoration: underline; }
.footer-heading { color: var(--white); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.875rem; font-family: 'Inter', system-ui, sans-serif; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.375rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9375rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { max-width: var(--max-width); margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 0.375rem; font-size: 0.8125rem; color: rgba(255,255,255,0.35); }

/* ============================================
   MOBILE STICKY CTA BAR
   ============================================ */
.mobile-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--accent); display: none; }
.mobile-cta-bar a { display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); text-decoration: none; font-size: 0.9375rem; font-weight: 700; padding: 0.875rem 1.25rem; min-height: 52px; gap: 0.375rem; }
body.has-mobile-bar { padding-bottom: 52px; }

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.list-clean { list-style: none; padding: 0; }
.highlight { color: var(--accent); }
.lead { font-size: 1.125rem; line-height: 1.65; }

/* ============================================
   DESKTOP BREAKPOINTS (768px+)
   ============================================ */
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
  .trust-badges { flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .inline-cta-btns { flex-direction: row; justify-content: center; }
  .cta-btns { flex-direction: row; justify-content: center; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .service-area-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .section { padding: 5rem 1.25rem; }
  .mobile-cta-bar { display: none !important; }
  body.has-mobile-bar { padding-bottom: 0; }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex !important;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
    border-top: none;
    flex: 1;
    justify-content: center;
  }
  .site-nav ul { flex-direction: row; align-items: center; }
  .site-nav a { padding: 0.5rem 0.7rem; border-bottom: none; font-size: 0.875rem; border-radius: 4px; }
  .site-nav a:hover { background: rgba(255,255,255,0.1); }
  .nav-phone-mobile { display: none; }
  .header-phone { display: block; color: var(--accent); font-weight: 700; text-decoration: none; font-size: 0.9rem; white-space: nowrap; flex-shrink: 0; }
  .header-phone:hover { color: #f07a30; }
  .header-cta { display: inline-block; background: var(--accent); color: var(--white); text-decoration: none; padding: 0.5rem 1rem; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem; white-space: nowrap; flex-shrink: 0; }
  .header-cta:hover { background: var(--accent-hover); color: var(--white); }
  .hero { padding: 5.5rem 1.25rem 6rem; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .service-area-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile bar visibility */
@media (max-width: 767px) {
  .mobile-cta-bar { display: block; }
}
