/* =====================================================================
   DECK-BUILDING NICHE TEMPLATE — style.css
   Plain CSS. No variables (Brave strips them), no build step, no framework.

   SKIN PALETTE — every color below is a literal hex. To re-skin a site,
   find-and-replace these values across style.css (and the inline SVG fills
   in index.html). Each portfolio site gets its OWN palette + fonts so the
   sites don't share a visual fingerprint.

     Role            Hex       Used for
     pine            #1e3a2b   primary: headings, nav accents, dark sections
     pine-dark       #14291e   hero + footer background
     pine-light      #2c5440   hover states, chips on dark
     cedar           #c9782d   accent: buttons, eyebrows, rules
     cedar-light     #dd8a3a   button hover, accent text on dark
     cedar-dark      #a8621f   pressed / border
     cream           #f7f4ee   page background
     sand            #ede7db   alternate section background
     white           #ffffff   cards
     text-dark       #22272b   body headings / nav
     text-mid        #4a5157   body copy
     text-light      #6b737a   fine print
     border          #d9d2c5   hairlines
     placeholder     #cfcfcf   image placeholder blocks

   FONTS: 'Barlow Condensed' (headings) + 'Source Sans 3' (body), loaded
   via Google Fonts in <head>. Swap per skin.
   ===================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: #f7f4ee;
  color: #22272b;
  font-family: 'Source Sans 3', 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1e3a2b; text-decoration: none; transition: color 0.2s; }
a:hover { color: #c9782d; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  line-height: 1.08;
  color: #1e3a2b;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 700; }
p { margin-bottom: 1rem; color: #4a5157; }
p:last-child { margin-bottom: 0; }
strong { color: #22272b; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section-alt { background: #ede7db; }
.section-white { background: #ffffff; }
.section-dark { background: #1e3a2b; }
.section-dark h2, .section-dark h3 { color: #ffffff; }
.section-dark p { color: rgba(247,244,238,0.82); }
.lead { font-size: 1.15rem; max-width: 720px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* EYEBROW / DIVIDER */
.divider { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.9rem; }
.divider::before { content: ''; width: 34px; height: 3px; background: #c9782d; }
.divider-text { font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase; color: #c9782d; font-weight: 700; white-space: nowrap; }
.center .divider { justify-content: center; }
.section-dark .divider-text { color: #dd8a3a; }
.section-dark .divider::before { background: #dd8a3a; }

/* TOP BANNER */
.top-banner { background: #14291e; color: rgba(247,244,238,0.8); padding: 0.5rem 1rem; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.top-banner .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.top-banner span { color: #dd8a3a; }

/* NAV */
nav { background: #ffffff; border-bottom: 3px solid #1e3a2b; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(34,39,43,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 0.7rem 1.5rem; max-width: 1120px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 0.7rem; line-height: 1; }
.nav-logo svg { width: 38px; height: 38px; flex-shrink: 0; }
.nav-logo-main { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 1.55rem; font-weight: 800; color: #1e3a2b; letter-spacing: 0.01em; text-transform: uppercase; display: block; }
.nav-logo-sub { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: #c9782d; font-weight: 700; margin-top: 0.25rem; display: block; }
.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a { font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: #22272b; padding: 0.4rem 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: #1e3a2b; border-bottom-color: #c9782d; }
.has-sub > a::after { content: ' ▾'; font-size: 0.7em; }
.sub-menu { display: none; position: absolute; top: 100%; left: -0.75rem; background: #ffffff; border: 1px solid #d9d2c5; border-top: 3px solid #c9782d; min-width: 230px; padding: 0.5rem 0; box-shadow: 0 8px 24px rgba(34,39,43,0.12); }
.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu { display: block; }
.sub-menu a { display: block; padding: 0.5rem 1rem; border-bottom: none; font-size: 0.82rem; text-transform: none; letter-spacing: 0.02em; }
.sub-menu a:hover { background: #f7f4ee; color: #c9782d; }
.nav-cta { background: #c9782d; color: #ffffff !important; padding: 0.6rem 1.1rem !important; border-bottom: none !important; display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap; border-radius: 3px; }
.nav-cta:hover { background: #a8621f; }
.nav-cta svg { width: 16px; height: 16px; }
.nav-toggle { display: none; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-burger span { display: block; width: 26px; height: 3px; background: #1e3a2b; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.7rem; font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; font-family: 'Source Sans 3', Helvetica, Arial, sans-serif; cursor: pointer; transition: all 0.2s; border: 2px solid transparent; border-radius: 3px; line-height: 1.2; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: #c9782d; color: #ffffff; border-color: #c9782d; }
.btn-primary:hover { background: #dd8a3a; border-color: #dd8a3a; color: #ffffff; }
.btn-outline { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); color: #ffffff; }
.btn-dark { background: #1e3a2b; color: #ffffff; border-color: #1e3a2b; }
.btn-dark:hover { background: #2c5440; border-color: #2c5440; color: #ffffff; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 0.95rem; }

/* HERO */
.hero { background: #14291e; color: #f7f4ee; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 140px, rgba(255,255,255,0.025) 140px, rgba(255,255,255,0.025) 142px); }
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; max-width: 1120px; margin: 0 auto; padding: 4rem 1.5rem 3.5rem; position: relative; z-index: 1; }
.hero-eyebrow { font-size: 0.76rem; letter-spacing: 0.3em; text-transform: uppercase; color: #dd8a3a; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.hero-eyebrow::before { content: ''; width: 34px; height: 3px; background: #c9782d; }
.hero h1 { color: #ffffff; margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: #dd8a3a; }
.hero-sub { font-size: clamp(1.02rem, 1.8vw, 1.2rem); color: rgba(247,244,238,0.88); max-width: 540px; margin-bottom: 1.75rem; line-height: 1.6; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.6rem; }
.hero-phone-note { font-size: 0.9rem; color: rgba(247,244,238,0.7); }
.hero-chips { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.hero-chips li { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; color: #f7f4ee; background: #2c5440; padding: 0.4rem 0.8rem; border-radius: 3px; display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-chips li::before { content: '✓'; color: #dd8a3a; }
.hero-image { position: relative; }
.hero-image img { width: 100%; height: 460px; object-fit: cover; border: 4px solid rgba(201,120,45,0.45); }
.hero-image-caption { position: absolute; left: 1rem; bottom: 1rem; background: rgba(20,41,30,0.85); color: #f7f4ee; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 0.75rem; font-weight: 700; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.25rem; }
.service-card { background: #ffffff; border: 1px solid #d9d2c5; border-top: 4px solid #1e3a2b; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(34,39,43,0.1); }
.service-card img { width: 100%; height: 190px; object-fit: cover; background: #cfcfcf; }
.service-card-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.97rem; flex: 1; }
.service-link { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: #c9782d; margin-top: 1rem; display: inline-block; }
.service-link:hover { color: #1e3a2b; }

/* CLIMATE / MATERIALS */
.climate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.climate-grid img { width: 100%; height: 380px; object-fit: cover; border: 4px solid #ffffff; box-shadow: 0 8px 24px rgba(34,39,43,0.12); }
.climate-points { margin: 1.25rem 0 0; display: grid; gap: 0.7rem; }
.climate-points li { padding-left: 1.6rem; position: relative; color: #4a5157; }
.climate-points li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 10px; height: 10px; background: #c9782d; transform: rotate(45deg); }
.compare-wrap { margin-top: 3rem; overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; background: #ffffff; border: 1px solid #d9d2c5; font-size: 0.95rem; min-width: 640px; }
.compare th, .compare td { padding: 0.85rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid #d9d2c5; }
.compare thead th { background: #1e3a2b; color: #ffffff; font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; letter-spacing: 0.02em; }
.compare tbody th { font-weight: 700; color: #22272b; background: #f7f4ee; width: 20%; }
.compare td { color: #4a5157; }
.compare-note { font-size: 0.86rem; color: #6b737a; margin-top: 0.75rem; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; margin-top: 2.25rem; }
.process-step { background: #ffffff; border: 1px solid #d9d2c5; padding: 1.5rem 1.25rem; position: relative; }
.process-number { font-family: 'Barlow Condensed', sans-serif; font-size: 2.6rem; font-weight: 800; color: #c9782d; line-height: 1; margin-bottom: 0.6rem; }
.process-step h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.93rem; margin: 0; }

/* WHY */
.why-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }
.why-layout img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.5rem; }
.why-item { background: #ffffff; border: 1px solid #d9d2c5; padding: 1.25rem; display: flex; gap: 0.9rem; }
.why-number { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: #c9782d; opacity: 0.55; line-height: 1; flex-shrink: 0; }
.why-item h3 { font-size: 1.12rem; margin-bottom: 0.3rem; }
.why-item p { font-size: 0.9rem; margin: 0; }

/* SERVICE AREA */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2rem; }
.area-block h3 { font-size: 1.2rem; margin-bottom: 0.75rem; padding-bottom: 0.4rem; border-bottom: 2px solid #c9782d; display: inline-block; }
.area-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-list li { background: #ffffff; border: 1px solid #d9d2c5; padding: 0.35rem 0.75rem; font-size: 0.9rem; color: #22272b; border-radius: 3px; }
.area-list li a { color: #22272b; }

/* FAQ */
.faq-list { margin-top: 2rem; max-width: 860px; }
.faq-item { background: #ffffff; border: 1px solid #d9d2c5; margin-bottom: 0.75rem; }
.faq-item summary { cursor: pointer; list-style: none; padding: 1.1rem 3rem 1.1rem 1.4rem; font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700; color: #1e3a2b; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: #c9782d; font-weight: 400; transition: transform 0.2s; }
.faq-item[open] summary::after { content: '–'; }
.faq-item[open] summary { border-bottom: 1px solid #d9d2c5; }
.faq-body { padding: 1rem 1.4rem 1.3rem; font-size: 0.98rem; }
.faq-body p { color: #4a5157; }


/* ESTIMATE / CONTACT BAND */
.estimate { background: #14291e; color: #f7f4ee; }
.estimate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.estimate h2 { color: #ffffff; }
.estimate p { color: rgba(247,244,238,0.82); }
.cta-phone { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.2rem, 6vw, 3.4rem); font-weight: 800; color: #ffffff; display: inline-flex; align-items: center; gap: 0.6rem; margin: 0.5rem 0 1rem; line-height: 1; }
.cta-phone svg { width: 0.8em; height: 0.8em; }
.cta-phone:hover { color: #dd8a3a; }
.estimate-points { display: grid; gap: 0.5rem; margin-top: 1.25rem; }
.estimate-points li { padding-left: 1.5rem; position: relative; color: rgba(247,244,238,0.85); }
.estimate-points li::before { content: '✓'; position: absolute; left: 0; color: #dd8a3a; font-weight: 700; }
.estimate-form { background: #ffffff; padding: 1.75rem; border-top: 5px solid #c9782d; }
.estimate-form h3 { color: #1e3a2b; margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.field { margin-bottom: 0.9rem; }
.field label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: #22272b; margin-bottom: 0.3rem; }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 1rem; padding: 0.7rem 0.8rem; border: 1px solid #d9d2c5; background: #f7f4ee; color: #22272b; border-radius: 3px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid #c9782d; outline-offset: 1px; border-color: #c9782d; background: #ffffff; }
.field textarea { min-height: 110px; resize: vertical; }
.form-note, .estimate .form-note { font-size: 0.82rem; color: #6b737a; margin-top: 0.75rem; }

/* SERVICE AREA BAND */
.service-area-band { background: #c9782d; padding: 0.9rem 0; text-align: center; }
.service-area-band p { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: #ffffff; margin: 0; }

/* FOOTER */
footer { background: #14291e; color: rgba(247,244,238,0.8); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; color: #ffffff; text-transform: uppercase; display: block; line-height: 1; }
.footer-brand-sub { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: #dd8a3a; font-weight: 700; display: block; margin: 0.4rem 0 1rem; }
.footer-desc { font-size: 0.92rem; color: rgba(247,244,238,0.7); max-width: 360px; }
.footer-heading { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: #dd8a3a; font-weight: 700; margin-bottom: 0.9rem; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { color: rgba(247,244,238,0.82); font-size: 0.94rem; }
.footer-links a:hover { color: #dd8a3a; }
.footer-contact-item { font-size: 0.94rem; color: rgba(247,244,238,0.82); margin-bottom: 0.5rem; }
.footer-contact-item a { color: #ffffff; font-weight: 700; }
.footer-disclosure { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; font-size: 0.82rem; color: rgba(247,244,238,0.6); max-width: 900px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; padding-top: 1.25rem; font-size: 0.8rem; color: rgba(247,244,238,0.55); }

/* STICKY MOBILE CALL BUTTON */
.mobile-call { display: none; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem 2.5rem; }
  .hero-image img { height: 300px; }
  .climate-grid, .why-layout, .area-grid, .estimate-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-layout img { min-height: 260px; max-height: 320px; }
  .nav-burger { display: flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #ffffff; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 3px solid #1e3a2b; box-shadow: 0 12px 24px rgba(34,39,43,0.15); padding: 0.5rem 0 1rem; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links > li > a { display: block; padding: 0.8rem 1.5rem; border-bottom: 1px solid #ede7db; }
  .sub-menu { display: block; position: static; border: none; box-shadow: none; padding: 0 0 0.5rem; background: #f7f4ee; }
  .sub-menu a { padding: 0.55rem 2.5rem; }
  .nav-cta { display: none !important; }
}
@media (max-width: 640px) {
  body { padding-bottom: 68px; }
  .section { padding: 3.25rem 0; }
  .top-banner .container { justify-content: center; text-align: center; }
  .services-grid, .why-grid, .form-row, .process-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .mobile-call { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: #c9782d; color: #ffffff; align-items: center; justify-content: center; gap: 0.6rem; padding: 1rem; font-family: 'Barlow Condensed', sans-serif; font-size: 1.45rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; box-shadow: 0 -4px 16px rgba(0,0,0,0.25); }
  .mobile-call:hover { background: #a8621f; color: #ffffff; }
  .mobile-call svg { width: 22px; height: 22px; }
}

/* =====================================================================
   INNER PAGES (service pages, service area, about, contact, FAQ, blog)
   ===================================================================== */

/* PAGE HERO (shorter variant of the home hero) */
.hero--page .hero-inner { padding: 3rem 1.5rem 2.75rem; grid-template-columns: 1.15fr 1fr; }
.hero--page h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
.hero--page .hero-image img { height: 340px; }
.hero--page .hero-sub { margin-bottom: 1.4rem; }

/* BREADCRUMB */
.breadcrumb { font-size: 0.82rem; color: #6b737a; padding: 0.9rem 0 0; }
.breadcrumb a { color: #6b737a; }
.breadcrumb a:hover { color: #c9782d; }
.breadcrumb span { margin: 0 0.4rem; color: #d9d2c5; }

/* TWO-COLUMN PAGE LAYOUT: prose + sticky aside */
.page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 3.5rem; align-items: start; }
.page-aside { position: sticky; top: 92px; display: grid; gap: 1.25rem; }
.aside-card { background: #ffffff; border: 1px solid #d9d2c5; border-top: 4px solid #c9782d; padding: 1.4rem; }
.aside-card--dark { background: #1e3a2b; border: none; border-top: 4px solid #c9782d; color: #f7f4ee; }
.aside-card--dark h3, .aside-card--dark p { color: #f7f4ee; }
.aside-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.aside-card p { font-size: 0.93rem; }
.aside-card .cta-phone { font-size: 1.9rem; margin: 0.25rem 0 0.75rem; }
.aside-card .btn { width: 100%; margin-top: 0.5rem; }
.aside-links { display: grid; gap: 0.4rem; }
.aside-links a { display: block; padding: 0.55rem 0.75rem; background: #f7f4ee; border: 1px solid #d9d2c5; font-weight: 600; font-size: 0.92rem; color: #22272b; border-radius: 3px; }
.aside-links a:hover, .aside-links a.current { border-color: #c9782d; color: #c9782d; }

/* PROSE */
.prose h2 { margin: 2.4rem 0 0.8rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.6rem 0 0.5rem; }
.prose p, .prose li { color: #4a5157; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.4rem; }
.prose ul { list-style: none; margin-left: 0; }
.prose ul li { padding-left: 1.5rem; position: relative; margin-bottom: 0.5rem; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 9px; height: 9px; background: #c9782d; transform: rotate(45deg); }
.prose ol { list-style: decimal; }
.prose ol li { margin-bottom: 0.5rem; padding-left: 0.3rem; }
.prose ol li::marker { color: #c9782d; font-weight: 700; }
.prose img { margin: 1.5rem 0; border: 4px solid #ffffff; box-shadow: 0 8px 24px rgba(34,39,43,0.12); }
.prose .lead { font-size: 1.15rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; background: #ffffff; border: 1px solid #d9d2c5; font-size: 0.95rem; }
.prose th, .prose td { padding: 0.7rem 0.9rem; border-bottom: 1px solid #d9d2c5; text-align: left; vertical-align: top; }
.prose thead th { background: #1e3a2b; color: #ffffff; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; }
.prose tbody th { background: #f7f4ee; width: 26%; color: #22272b; }
.table-wrap { overflow-x: auto; }

/* CALLOUT */
.callout { background: #ede7db; border-left: 5px solid #c9782d; padding: 1.25rem 1.5rem; margin: 1.75rem 0; }
.callout h3 { margin: 0 0 0.4rem; font-size: 1.25rem; }
.callout p { margin: 0; font-size: 0.97rem; }
.callout--dark { background: #1e3a2b; border-left-color: #dd8a3a; }
.callout--dark h3, .callout--dark p { color: #f7f4ee; }

/* CHECKLIST + PROS/CONS */
.checklist { list-style: none; margin: 0 0 1.2rem; }
.prose .checklist li::before { content: '✓'; background: none; transform: none; top: 0; color: #c9782d; font-weight: 700; width: auto; height: auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1rem 0 1.5rem; }
.two-col > div { background: #ffffff; border: 1px solid #d9d2c5; padding: 1.2rem 1.3rem; }
.two-col h3 { margin: 0 0 0.6rem; font-size: 1.2rem; }
.two-col ul { margin-bottom: 0; }

/* COMPACT STEPS (inner pages) */
.steps-compact, .prose .steps-compact { counter-reset: step; list-style: none; margin: 0 0 1.5rem; display: grid; gap: 0.6rem; }
.prose .steps-compact li { padding-left: 3rem; min-height: 2.2rem; }
.prose .steps-compact li::before { counter-increment: step; content: counter(step); background: none; transform: none; width: 2.2rem; height: 2.2rem; top: 0; font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; color: #c9782d; border: 2px solid #c9782d; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.steps-compact strong { display: block; color: #1e3a2b; font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; }

/* ESTIMATE BAND (inner-page CTA, no form) */
.estimate--band { padding: 3.5rem 0; }
.estimate-band-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: center; }
.estimate-band-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.estimate-band-actions .cta-phone { margin: 0; }

/* SERVICE AREA PAGE */
.zip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.5rem; margin: 0.5rem 0 1.5rem; }
.zip-grid li { background: #ffffff; border: 1px solid #d9d2c5; padding: 0.5rem 0.75rem; font-size: 0.92rem; color: #22272b; border-radius: 3px; }
.zip-grid li strong { display: block; color: #1e3a2b; }
.prose .zip-grid li { padding-left: 0.75rem; margin: 0; }
.prose .zip-grid li::before { display: none; }
.town-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; margin: 0.5rem 0 1.5rem; }
.town-grid > div { background: #ffffff; border: 1px solid #d9d2c5; padding: 1rem 1.2rem; }
.town-grid h3 { margin: 0 0 0.3rem; font-size: 1.2rem; }
.town-grid p { margin: 0; font-size: 0.93rem; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-methods { display: grid; gap: 1rem; margin-top: 1.25rem; }
.contact-method { background: #ffffff; border: 1px solid #d9d2c5; padding: 1.1rem 1.3rem; display: flex; gap: 1rem; align-items: flex-start; }
.contact-method svg { width: 26px; height: 26px; color: #c9782d; flex-shrink: 0; margin-top: 0.15rem; }
.contact-method h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.contact-method p { font-size: 0.93rem; margin: 0; }
.contact-method a.big { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; color: #1e3a2b; }
.estimate-form--light { border: 1px solid #d9d2c5; }

/* BLOG */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.post-card { background: #ffffff; border: 1px solid #d9d2c5; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(34,39,43,0.1); }
.post-card img { width: 100%; height: 200px; object-fit: cover; background: #cfcfcf; }
.post-card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: #c9782d; font-weight: 700; margin-bottom: 0.5rem; }
.post-card h3 { margin-bottom: 0.5rem; }
.post-card p { font-size: 0.95rem; flex: 1; }
.article-header { max-width: 820px; margin: 0 auto; text-align: center; padding: 3rem 1.5rem 1.5rem; }
.article-header h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin: 0.5rem 0 0.8rem; }
.article-header .post-meta { justify-content: center; }
.article-hero { max-width: 1000px; margin: 0 auto 2rem; padding: 0 1.5rem; }
.article-hero img { width: 100%; height: 420px; object-fit: cover; border: 4px solid #ffffff; box-shadow: 0 8px 24px rgba(34,39,43,0.12); }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body .lead { font-size: 1.2rem; }
.article-foot { max-width: 760px; margin: 2.5rem auto 0; border-top: 1px solid #d9d2c5; padding-top: 1.25rem; font-size: 0.9rem; color: #6b737a; }

/* FAQ PAGE */
.faq-groups h2 { margin: 2.5rem 0 0.75rem; }
.faq-groups h2:first-child { margin-top: 0; }
.faq-toc { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 0.5rem; }
.faq-toc a { background: #ffffff; border: 1px solid #d9d2c5; padding: 0.4rem 0.8rem; font-size: 0.88rem; font-weight: 600; color: #22272b; border-radius: 3px; }
.faq-toc a:hover { border-color: #c9782d; color: #c9782d; }

@media (max-width: 960px) {
  .post-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .hero--page .hero-inner { grid-template-columns: 1fr; }
  .hero--page .hero-image img { height: 240px; }
  .page-layout, .estimate-band-inner, .contact-grid, .two-col, .town-grid { grid-template-columns: 1fr; }
  .page-aside { position: static; }
  .article-hero img { height: 260px; }
}
@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
  .estimate-band-actions .btn { width: 100%; }
}

/* Estimate form: honeypot, status line, thank-you state (n8n handler, 2026-09-12) */
.estimate-form { position: relative; }
.estimate-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0.75rem 0 0; font-size: 0.95rem; min-height: 1.2em; }
.form-status.is-error { color: #a33a1e; }
.form-thanks { background: #ffffff; padding: 1.75rem; border: 1px solid #d9d2c5; border-top: 5px solid #c9782d; }
.form-thanks h3 { color: #1e3a2b; margin-bottom: 0.5rem; }
.form-thanks p { color: #22272b; margin: 0; }
.form-thanks a { color: #c9782d; font-weight: 700; }
