/* ============================================
 1SOURCE ROOFING — PREMIUM DESIGN SYSTEM v2
 Aesthetic: Refined Architectural Luxury
 Typography: Cormorant Garamond (display) + DM Sans (body)
 Palette: Deep slate + steel blue + warm gold
 ============================================ */

 /* --- Reset & Foundation --- */
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 html { overflow-x: hidden; }
 img, video, iframe { max-width: 100%; height: auto; }
 a[href^="tel:"] { white-space: nowrap; }

 :root {
 --accent: #2b7bb9;
 --accent-dark: #1e5a8a;
 --accent-light: rgba(43, 123, 185, 0.06);
 --bg-primary: #f7f6f4;
 --bg-white: #ffffff;
 --bg-dark: #1a1a2e;
 --bg-warm: #faf9f7;
 --text-heading: #1c2331;
 --text-body: #4a4a4a;
 --text-light: #8a8a8a;
 --text-white: #f2f2f2;
 --gold: #c9a96e;
 --gold-light: rgba(201, 169, 110, 0.12);
 --border-subtle: rgba(0, 0, 0, 0.06);
 --border-gold: rgba(201, 169, 110, 0.3);
 --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.05);
 --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
 --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.10);
 --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.15);
 --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
 --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
 /* Fluid typography — large for 50+ audience */
 --fs-body: clamp(20px, 1.4vw + 12px, 26px);
 --fs-h1: clamp(40px, 4vw + 20px, 72px);
 --fs-h2: clamp(32px, 2.5vw + 16px, 44px);
 --fs-h3: clamp(24px, 1.5vw + 14px, 32px);
 --fs-small: clamp(16px, 1vw + 10px, 21px);
 --fs-btn: clamp(18px, 1.2vw + 10px, 22px);
 --max-content: 1200px;
 --max-wide: 1440px;
 }

 html { scroll-behavior: smooth; }
 [id] { scroll-margin-top: 72px; }

 body {
 font-family: var(--font-body);
 font-size: var(--fs-body);
 line-height: 1.9;
 color: var(--text-body);
 background: var(--bg-primary);
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 }

 a { color: var(--accent); transition: color 0.3s; }

 /* --- Generic Section Alignment Base ---
 Catch-all for any *-section / *-inner / *-grid pattern inside main.
 Specific classes (content-section, features-section, etc.) override as needed.
 Scoped to main > section to avoid header/footer interference. */
 main .areas-inner, main .cards-inner, main .cert-inner,
 main .comparison-inner, main .cta-inner, main .gallery-inner,
 main .intro-inner, main .links-inner, main .nearby-inner,
 main .neighborhood-inner, main .neighborhoods-inner,
 main .process-inner, main .related-inner, main .review-inner,
 main .section-inner, main .services-inner, main .storm-inner,
 main .submit-inner, main .testimonials-inner {
 max-width: var(--max-content);
 margin: 0 auto;
 padding-inline: 24px;
 }
 main .areas-grid, main .cards-grid, main .city-grid,
 main .contact-grid, main .damage-grid, main .denial-grid,
 main .flashing-grid, main .gallery-grid, main .hub-grid,
 main .links-grid, main .nearby-grid, main .neighbor-grid,
 main .neighborhood-grid, main .neighborhoods-grid,
 main .photo-grid, main .product-grid, main .promise-grid,
 main .related-grid, main .repair-grid, main .review-grid,
 main .scenario-grid, main .services-grid, main .steps-grid,
 main .supplement-grid, main .testimonials-grid, main .tier-grid,
 main .topic-grid, main .village-grid, main .adjacent-grid,
 main .bulletin-grid, main .form-grid {
 max-width: var(--max-content);
 margin: 0 auto;
 padding-inline: 24px;
 display: grid;
 grid-template-columns: 1fr;
 gap: 20px;
 }
 .areas-section, .cards-section, .comparison-section,
 .cta-section, .form-section, .gallery-section,
 .intro-section, .links-section, .nearby-section,
 .neighborhoods-section, .process-section, .related-section,
 .review-section, .services-section, .submit-section,
 .testimonials-section {
 padding: 48px 24px;
 }
 a:hover { color: var(--accent-dark); }

 /* --- Animations --- */
 @keyframes fadeUp {
 from { opacity: 0; transform: translateY(30px); }
 to { opacity: 1; transform: translateY(0); }
 }
 @keyframes shimmer {
 0% { background-position: -200% center; }
 100% { background-position: 200% center; }
 }
 @media (prefers-reduced-motion: reduce) {
 *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
 }
 .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
 .reveal.visible { opacity: 1; transform: translateY(0); }

 /* --- Top Utility Bar --- */
 .top-bar {
 background: var(--bg-dark);
 border-bottom: 1px solid rgba(255, 255, 255, 0.06);
 font-size: 14px;
 }
 .top-bar-inner {
 max-width: var(--max-wide);
 margin: 0 auto;
 padding: 8px 24px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 }
 .top-bar-left {
 display: flex;
 align-items: center;
 gap: 24px;
 color: rgba(255, 255, 255, 0.5);
 font-size: 14px;
 }
 .top-bar-left a {
 color: rgba(255, 255, 255, 0.5);
 text-decoration: none;
 transition: color 0.3s;
 }
 .top-bar-left a:hover { color: var(--gold); }
 .top-bar-right {
 display: flex;
 align-items: center;
 gap: 6px;
 color: var(--gold);
 font-family: var(--font-body);
 font-weight: 700;
 font-size: 15px;
 letter-spacing: 0.03em;
 }

 /* --- Sticky Header --- */
 .site-header {
 position: sticky;
 top: 0;
 z-index: 1000;
 background: var(--bg-dark);
 box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
 transition: var(--transition);
 }
 .site-header.scrolled {
 background: rgba(26, 26, 46, 0.98);
 backdrop-filter: blur(12px);
 -webkit-backdrop-filter: blur(12px);
 }
 .header-inner {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 0 24px;
 max-width: var(--max-wide);
 margin: 0 auto;
 min-height: 72px;
 }
 .header-left {
 display: flex;
 align-items: center;
 gap: 16px;
 }
 .header-logo img { height: 52px; width: auto; }
 .header-brand {
 color: #fff;
 font-family: var(--font-body);
 font-weight: 700;
 font-size: 26px;
 letter-spacing: 0.02em;
 text-decoration: none;
 line-height: 1.1;
 }
 .header-brand small {
 display: block;
 font-size: 11px;
 font-weight: 600;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--gold);
 margin-top: 2px;
 }
 .header-nav {
 display: flex;
 align-items: center;
 gap: 4px;
 }
 .header-nav a {
 color: rgba(255, 255, 255, 0.75);
 text-decoration: none;
 font-family: var(--font-body);
 font-weight: 600;
 font-size: 15px;
 letter-spacing: 0.03em;
 padding: 8px 14px;
 border-radius: 4px;
 transition: all 0.3s;
 }
 .header-nav a:hover {
 color: #fff;
 background: rgba(255, 255, 255, 0.08);
 }
 .header-nav a.active {
 color: var(--gold);
 }
 .header-nav-divider {
 width: 1px;
 height: 24px;
 background: rgba(255, 255, 255, 0.1);
 margin: 0 8px;
 }
 .header-phone {
 color: #fff;
 font-family: var(--font-body);
 font-weight: 700;
 font-size: 18px;
 min-height: 48px;
 display: flex;
 align-items: center;
 gap: 10px;
 text-decoration: none;
 padding: 0 28px;
 background: var(--gold);
 border: none;
 border-radius: 4px;
 transition: var(--transition);
 letter-spacing: 0.03em;
 cursor: pointer;
 white-space: nowrap;
 }
 .header-phone:hover {
 background: #b89558;
 color: #fff;
 transform: translateY(-1px);
 box-shadow: var(--shadow-gold);
 }
 .header-phone svg {
 width: 20px;
 height: 20px;
 fill: currentColor;
 flex-shrink: 0;
 }
 /* Mobile nav toggle */
 .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
 .nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

 /* --- Hero Section --- */
 .hero {
 position: relative;
 min-height: 540px;
 display: flex;
 align-items: center;
 justify-content: center;
 overflow: hidden;
 background: var(--text-heading);
 }
 .hero-img {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 opacity: 0.45;
 transition: transform 8s ease;
 }
 .hero:hover .hero-img { transform: scale(1.03); }
 .hero::after {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(
 to top,
 rgba(26, 26, 46, 0.92) 0%,
 rgba(26, 26, 46, 0.55) 45%,
 rgba(26, 26, 46, 0.25) 100%
 );
 z-index: 1;
 }
 .hero-content {
 text-align: center;
 position: relative;
 z-index: 2;
 padding: 48px 24px 56px;
 max-width: var(--max-wide);
 margin: 0 auto;
 width: 100%;
 animation: fadeUp 1s ease 0.3s both;
 }
 .hero-eyebrow {
 font-family: var(--font-body);
 font-size: var(--fs-small);
 font-weight: 700;
 letter-spacing: 0.25em;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 20px;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 16px;
 }
 .hero-eyebrow::before,
 .hero-eyebrow::after {
 content: '';
 width: 40px;
 height: 1px;
 background: var(--gold);
 }
 h1 {
 font-family: var(--font-body);
 font-size: var(--fs-h1);
 font-weight: 600;
 line-height: 1.1;
 color: #ffffff;
 margin-bottom: 20px;
 letter-spacing: -0.01em;
 }
 .hero-sub {
 font-size: var(--fs-small);
 color: rgba(255, 255, 255, 0.75);
 margin: 0 auto 36px;
 max-width: 640px;
 line-height: 1.7;
 }
 .hero-ctas {
 display: flex;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
 gap: 16px;
 }

 /* --- Buttons --- */
 .btn-primary {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 56px;
 background: var(--gold);
 color: #fff;
 text-align: center;
 text-decoration: none;
 font-family: var(--font-body);
 font-weight: 700;
 font-size: var(--fs-btn);
 letter-spacing: 0.06em;
 text-transform: uppercase;
 padding: 16px 40px;
 border: none;
 border-radius: 4px;
 position: relative;
 overflow: hidden;
 transition: var(--transition);
 cursor: pointer;
 }
 .btn-primary::after {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
 background-size: 200% 100%;
 animation: shimmer 3s ease infinite;
 opacity: 0;
 transition: opacity 0.3s;
 }
 .btn-primary:hover {
 background: #b89558;
 color: #fff;
 transform: translateY(-2px);
 box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
 }
 .btn-primary:hover::after { opacity: 1; }

 .btn-secondary {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 56px;
 background: transparent;
 color: #fff;
 text-decoration: none;
 font-family: var(--font-body);
 font-weight: 700;
 font-size: var(--fs-btn);
 letter-spacing: 0.03em;
 padding: 16px 40px;
 border: 2px solid rgba(255, 255, 255, 0.35);
 border-radius: 4px;
 transition: var(--transition);
 cursor: pointer;
 }
 .btn-secondary:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); color: #fff; }

 /* --- Trust Badge Strip --- */
 .trust-strip {
 background: var(--bg-white);
 padding: 40px 24px;
 border-bottom: 1px solid var(--border-subtle);
 }
 .trust-inner {
 max-width: var(--max-wide);
 margin: 0 auto;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 28px;
 }
 .trust-caption {
 font-family: var(--font-body);
 font-size: var(--fs-small);
 font-weight: 700;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--text-light);
 text-align: center;
 }
 .trust-logos {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 16px;
 align-items: stretch;
 }
 .cert-badge {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding: 20px 32px;
 border: 2px solid var(--border-subtle);
 border-radius: 6px;
 transition: var(--transition);
 min-width: 160px;
 background: var(--bg-warm);
 cursor: default;
 }
 .cert-badge:hover {
 border-color: var(--gold);
 box-shadow: var(--shadow-gold);
 transform: translateY(-3px);
 }
 .cert-badge-brand {
 font-family: var(--font-body);
 font-size: 24px;
 font-weight: 700;
 color: var(--text-heading);
 margin-bottom: 4px;
 line-height: 1.2;
 }
 .cert-badge-type {
 font-size: 12px;
 font-weight: 600;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--accent);
 }
 .cert-badge img {
 max-height: 70px;
 width: auto;
 object-fit: contain;
 }
 .trust-logos img {
 max-height: 50px;
 width: auto;
 filter: grayscale(100%);
 opacity: 0.6;
 transition: var(--transition);
 }
 .trust-logos img:hover {
 filter: grayscale(0%);
 opacity: 1;
 }
 .trust-stat-row {
 display: flex;
 justify-content: center;
 gap: 48px;
 width: 100%;
 padding-top: 20px;
 border-top: 1px solid var(--border-subtle);
 }
 .trust-stat { text-align: center; }
 .trust-stat-number {
 font-family: var(--font-body);
 font-size: 48px;
 font-weight: 700;
 color: var(--text-heading);
 line-height: 1;
 }
 .trust-stat-label {
 font-size: var(--fs-small);
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: var(--text-light);
 margin-top: 6px;
 }

 /* --- Main Content & Intro (city/service pages) --- */
 .main-content {
 max-width: var(--max-content);
 margin: 0 auto;
 padding: 0 48px;
 }
 .section-intro {
 max-width: var(--max-content);
 margin: 0 auto;
 padding: 48px 48px;
 }
 .section-intro p {
 font-size: var(--fs-body);
 line-height: 1.9;
 color: var(--text-body);
 margin-bottom: 24px;
 }

 /* --- Breadcrumb --- */
 .breadcrumb {
 padding: 16px 48px;
 max-width: var(--max-wide);
 margin: 0 auto;
 }
 .breadcrumb-inner {
 font-size: var(--fs-small);
 color: var(--text-light);
 }
 .breadcrumb-inner a {
 color: var(--accent);
 text-decoration: none;
 }

 /* --- City/Service Page Components --- */
 .neighborhood-block { margin-bottom: 32px; }
 .project-story { margin-bottom: 32px; }
 .hero-cta {
 display: inline-flex; align-items: center; justify-content: center;
 min-height: 56px; background: var(--gold); color: #fff;
 text-decoration: none; font-family: var(--font-body); font-weight: 700;
 font-size: var(--fs-btn); letter-spacing: 0.06em; text-transform: uppercase;
 padding: 16px 40px; border-radius: 4px; transition: var(--transition);
 }
 .hero-cta:hover { background: #b89558; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.35); }
 .cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 24px; }
 .city-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
 .city-link, .city-links a {
 display: inline-block; padding: 8px 20px; border: 1px solid rgba(201,169,110,0.3);
 border-radius: 4px; color: var(--gold); text-decoration: none; font-weight: 600;
 font-size: 15px; transition: var(--transition);
 }
 .city-link:hover, .city-links a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
 .testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
 .testimonial-text { font-family: var(--font-display); font-size: 22px; font-style: italic; color: var(--text-heading); line-height: 1.6; margin-bottom: 12px; }
 .testimonial-attr { font-size: var(--fs-small); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
 .faq-list { list-style: none; }
 .faq-q { font-family: var(--font-body); font-size: var(--fs-h3); font-weight: 700; color: var(--text-heading); margin-bottom: 8px; cursor: pointer; }
 .faq-a { color: var(--text-body); line-height: 1.9; margin-bottom: 24px; }
 .pending-note { padding: 16px; background: var(--bg-warm); border-left: 4px solid var(--gold); border-radius: 4px; font-style: italic; color: var(--text-light); }
 @media (max-width: 767px) {
  .main-content { padding: 0 20px; }
  .section-intro { padding: 32px 20px; }
  .breadcrumb { padding: 12px 20px; }
  .cert-grid, .testimonials-grid { grid-template-columns: 1fr; }
 }

 /* --- Content Sections --- */
 .content-section {
 background: var(--bg-white);
 padding: 48px 24px;
 }
 .content-section:nth-child(even) {
 background: var(--bg-warm);
 }
 .content-inner {
 max-width: var(--max-content);
 margin: 0 auto;
 padding-inline: 24px;
 }
 .section-label {
 font-size: var(--fs-small);
 font-weight: 700;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 12px;
 display: flex;
 align-items: center;
 gap: 12px;
 }
 .section-label::before {
 content: '';
 width: 24px;
 height: 2px;
 background: var(--gold);
 }
 .content-section h2 {
 font-family: var(--font-body);
 font-size: var(--fs-h2);
 font-weight: 600;
 line-height: 1.15;
 color: var(--text-heading);
 margin-bottom: 28px;
 position: relative;
 }
 .content-section h2::after {
 content: '';
 display: block;
 width: 56px;
 height: 3px;
 background: linear-gradient(90deg, var(--accent), var(--gold));
 margin-top: 16px;
 border-radius: 2px;
 }
 .content-section h3 {
 font-family: var(--font-display);
 font-size: var(--fs-h3);
 font-weight: 600;
 color: var(--text-heading);
 margin: 32px 0 12px;
 }
 .accent-link {
 color: var(--accent);
 font-weight: 700;
 text-decoration: none;
 }
 .accent-link:hover { color: var(--accent-dark); text-decoration: underline; }
 .content-section p {
 margin-bottom: 24px;
 font-size: var(--fs-body);
 line-height: 1.9;
 }
 .content-section ul {
 list-style: none;
 margin-bottom: 24px;
 }
 .content-section li {
 position: relative;
 padding-left: 28px;
 margin-bottom: 14px;
 line-height: 1.8;
 }
 .content-section li::before {
 content: '';
 position: absolute;
 left: 0;
 top: 12px;
 width: 8px;
 height: 8px;
 background: var(--gold);
 border-radius: 50%;
 }

 /* --- Process Steps --- */
 .process-steps { list-style: none; margin: 0 0 24px 0; counter-reset: step-counter; }
 .process-steps li {
 counter-increment: step-counter;
 padding: 24px 24px 24px 80px;
 margin-bottom: 16px;
 background: var(--bg-white);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 position: relative;
 line-height: 1.8;
 transition: var(--transition);
 }
 .process-steps li:hover {
 box-shadow: var(--shadow-card);
 border-color: var(--border-gold);
 }
 .content-section:nth-child(even) .process-steps li { background: var(--bg-white); }
 .process-steps li::before {
 content: counter(step-counter);
 position: absolute;
 left: 24px;
 top: 50%;
 transform: translateY(-50%);
 width: 40px;
 height: 40px;
 background: linear-gradient(135deg, var(--accent), var(--accent-dark));
 color: #fff;
 font-family: var(--font-body);
 font-size: 20px;
 font-weight: 700;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 }
 .process-steps li strong {
 display: block;
 font-family: var(--font-body);
 font-weight: 700;
 color: var(--text-heading);
 margin-bottom: 6px;
 font-size: 21px;
 }

 /* --- Testimonial Cards --- */
 .testimonial-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 24px;
 margin-top: 12px;
 }
 .testimonial-card {
 background: var(--bg-white);
 border: 1px solid var(--border-subtle);
 border-left: 4px solid var(--gold);
 border-radius: 6px;
 padding: 32px 32px 28px;
 transition: var(--transition);
 }
 .testimonial-card:hover {
 box-shadow: var(--shadow-card);
 }
 .content-section:nth-child(even) .testimonial-card { background: var(--bg-white); }
 .testimonial-quote {
 font-family: var(--font-display);
 font-size: 26px;
 font-style: italic;
 color: var(--text-heading);
 line-height: 1.6;
 margin-bottom: 16px;
 }
 .testimonial-quote::before {
 content: '\201C';
 font-size: 48px;
 line-height: 0;
 vertical-align: -0.3em;
 color: var(--gold);
 margin-right: 4px;
 font-family: var(--font-display);
 }
 .testimonial-attribution {
 font-size: var(--fs-small);
 font-weight: 700;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: var(--text-light);
 }

 /* --- Features Section --- */
 .features-section {
 background: var(--bg-warm);
 padding: 48px 24px;
 }
 .features-header {
 max-width: var(--max-content);
 margin: 0 auto 32px;
 padding-inline: 24px;
 }
 .features-header h2 {
 font-family: var(--font-body);
 font-size: var(--fs-h2);
 font-weight: 700;
 color: var(--text-heading);
 margin-bottom: 12px;
 }
 .features-header h2::after {
 content: '';
 display: block;
 width: 80px;
 height: 3px;
 background: linear-gradient(90deg, var(--accent), var(--gold));
 margin-top: 16px;
 border-radius: 2px;
 }
 .features-header p {
 font-size: var(--fs-body);
 color: var(--text-body);
 line-height: 1.8;
 }
 .features-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 20px;
 max-width: var(--max-content);
 margin: 0 auto;
 padding-inline: 24px;
 }
 .feature-card {
 background: var(--bg-white);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 padding: 28px 28px 24px;
 transition: var(--transition);
 }
 .feature-card:hover {
 box-shadow: var(--shadow-card);
 border-color: var(--border-gold);
 }
 .feature-card h3 {
 font-family: var(--font-body);
 font-size: var(--fs-h3);
 font-weight: 700;
 color: var(--text-heading);
 margin-bottom: 10px;
 }
 .feature-card p {
 font-size: var(--fs-body);
 color: var(--text-body);
 line-height: 1.8;
 }

 /* --- Crosslinks Section --- */
 .crosslinks-section {
 background: var(--bg-warm);
 padding: 48px 24px;
 }
 .crosslinks-inner {
 max-width: var(--max-content);
 margin: 0 auto;
 padding-inline: 24px;
 }
 .crosslinks-inner h2 {
 font-family: var(--font-body);
 font-size: var(--fs-h2);
 font-weight: 700;
 color: var(--text-heading);
 margin-bottom: 12px;
 }
 .crosslinks-inner h2::after {
 content: '';
 display: block;
 width: 80px;
 height: 3px;
 background: linear-gradient(90deg, var(--accent), var(--gold));
 margin-top: 16px;
 border-radius: 2px;
 }
 .crosslinks-inner p {
 font-size: var(--fs-body);
 color: var(--text-body);
 line-height: 1.8;
 }
 .crosslinks-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 16px;
 max-width: var(--max-content);
 margin: 0 auto;
 padding-inline: 24px;
 }
 .crosslink-card {
 display: flex;
 align-items: center;
 justify-content: space-between;
 background: var(--bg-white);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 padding: 20px 24px;
 text-decoration: none;
 color: var(--text-heading);
 transition: var(--transition);
 }
 .crosslink-card:hover {
 box-shadow: var(--shadow-card);
 border-color: var(--border-gold);
 }
 .crosslink-card strong {
 display: block;
 font-size: var(--fs-body);
 font-weight: 700;
 color: var(--text-heading);
 }
 .crosslink-card span {
 font-size: var(--fs-small);
 color: var(--text-light);
 }
 .crosslink-arrow {
 font-size: 24px;
 color: var(--gold);
 margin-left: 16px;
 flex-shrink: 0;
 }

 /* --- Related Links Section --- */
 .related-links {
 background: var(--bg-white);
 padding: 48px 24px;
 }
 .related-links-inner {
 max-width: var(--max-content);
 margin: 0 auto;
 padding-inline: 24px;
 }
 .related-links-inner h3 {
 font-family: var(--font-body);
 font-size: var(--fs-h3);
 font-weight: 700;
 color: var(--text-heading);
 margin-bottom: 16px;
 }
 .related-links-inner p {
 font-size: var(--fs-body);
 color: var(--text-body);
 line-height: 1.8;
 }
 .related-links-inner ul {
 list-style: none;
 margin: 0;
 padding: 0;
 display: grid;
 grid-template-columns: 1fr;
 gap: 10px;
 }
 .related-links-inner li {
 padding: 0;
 }
 .related-links-inner li::before {
 display: none;
 }
 .related-links-inner a {
 display: block;
 padding: 14px 20px;
 background: var(--bg-warm);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 text-decoration: none;
 color: var(--accent);
 font-weight: 600;
 font-size: var(--fs-body);
 transition: var(--transition);
 }
 .related-links-inner a:hover {
 border-color: var(--border-gold);
 box-shadow: var(--shadow-card);
 color: var(--accent-dark);
 }

 /* --- Mid-Page CTA --- */
 .cta-mid {
 background: var(--bg-dark);
 color: #ffffff;
 text-align: center;
 padding: 80px 24px;
 position: relative;
 overflow: hidden;
 }
 .cta-mid::before {
 content: '';
 position: absolute;
 top: -50%;
 left: -50%;
 width: 200%;
 height: 200%;
 background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
 pointer-events: none;
 }
 .cta-mid-inner {
 position: relative;
 z-index: 1;
 max-width: 720px;
 margin: 0 auto;
 }
 .cta-mid h2 {
 font-family: var(--font-body);
 font-size: var(--fs-h2);
 font-weight: 600;
 color: #ffffff;
 margin-bottom: 16px;
 line-height: 1.2;
 }
 .cta-mid h2::after {
 content: '';
 display: block;
 width: 48px;
 height: 2px;
 background: var(--gold);
 margin: 16px auto 0;
 }
 .cta-mid p {
 color: rgba(255, 255, 255, 0.7);
 margin-bottom: 36px;
 font-size: 21px;
 line-height: 1.8;
 }
 .btn-cta-mid {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 56px;
 background: var(--gold);
 color: #fff;
 font-family: var(--font-body);
 font-weight: 700;
 font-size: var(--fs-btn);
 letter-spacing: 0.05em;
 text-transform: uppercase;
 padding: 16px 44px;
 text-decoration: none;
 border-radius: 4px;
 transition: var(--transition);
 cursor: pointer;
 }
 .btn-cta-mid:hover {
 background: #b89558;
 color: #fff;
 transform: translateY(-2px);
 box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
 }

 /* --- FAQ Section --- */
 .faq-section {
 background: var(--bg-white);
 padding: 80px 24px;
 }
 .faq-inner {
 max-width: var(--max-content);
 margin: 0 auto;
 padding-inline: 24px;
 }
 .faq-header {
 text-align: center;
 margin-bottom: 48px;
 }
 .faq-header h2 {
 font-family: var(--font-body);
 font-size: var(--fs-h2);
 font-weight: 600;
 color: var(--text-heading);
 margin-bottom: 12px;
 }
 .faq-header h2::after {
 content: '';
 display: block;
 width: 48px;
 height: 3px;
 background: linear-gradient(90deg, var(--accent), var(--gold));
 margin: 16px auto 0;
 border-radius: 2px;
 }
 .faq-header p { color: var(--text-light); font-size: var(--fs-small); }
 .faq-item {
 border-bottom: 1px solid var(--border-subtle);
 padding: 28px 0;
 cursor: pointer;
 transition: var(--transition);
 }
 .faq-item h3 {
 font-family: var(--font-body);
 font-size: var(--fs-h3);
 font-weight: 700;
 color: var(--text-heading);
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 16px;
 transition: color 0.3s;
 }
 .faq-item:hover h3 { color: var(--accent); }
 .faq-item h3::after {
 content: '+';
 font-size: 32px;
 font-weight: 300;
 color: var(--gold);
 flex-shrink: 0;
 width: 40px;
 height: 40px;
 display: flex;
 align-items: center;
 justify-content: center;
 border: 2px solid var(--border-subtle);
 border-radius: 50%;
 transition: all 0.3s;
 }
 .faq-item:hover h3::after { border-color: var(--gold); }
 .faq-item.open h3::after { transform: rotate(45deg); background: var(--gold-light); border-color: var(--gold); }
 .faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s ease, padding 0.4s ease;
 }
 .faq-item.open .faq-answer { max-height: 500px; padding-top: 16px; }
 .faq-answer p { color: var(--text-body); line-height: 1.9; }

 /* --- Photo Gallery --- */
 .gallery-section-inner,
 .filter-nav-inner {
 max-width: var(--max-wide);
 margin: 0 auto;
 }
 .filter-nav {
 padding: 24px 24px;
 background: var(--bg-warm);
 text-align: center;
 }
 .filter-nav-inner {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 12px;
 }
 .filter-link {
 display: inline-block;
 padding: 10px 20px;
 border: 1px solid var(--border);
 border-radius: 6px;
 color: var(--text-body);
 text-decoration: none;
 font-size: var(--fs-small);
 font-weight: 600;
 transition: all 0.3s;
 }
 .filter-link:hover {
 background: var(--navy);
 color: #fff;
 border-color: var(--navy);
 }
 .gallery-header {
 margin-bottom: 32px;
 }
 .gallery-header h2 {
 font-size: clamp(28px, 3.5vw, 44px);
 }
 .gallery-intro {
 display: grid;
 grid-template-columns: 1fr;
 gap: 24px;
 margin-bottom: 48px;
 }
 .photo-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 24px;
 }
 .photo-card {
 border-radius: 12px;
 overflow: hidden;
 background: #fff;
 box-shadow: 0 2px 12px rgba(0,0,0,0.08);
 }
 .photo-card-image img {
 width: 100%;
 height: auto;
 display: block;
 }
 .photo-card-body {
 padding: 20px;
 }
 .photo-card-title {
 font-weight: 700;
 font-size: var(--fs-body);
 margin-bottom: 8px;
 }
 .photo-card-meta {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 align-items: center;
 }
 .photo-card-badge {
 background: var(--bg-warm);
 padding: 4px 12px;
 border-radius: 4px;
 font-size: 14px;
 font-weight: 600;
 color: var(--navy);
 }
 .photo-card-location {
 font-size: 14px;
 color: var(--text-light);
 }

 /* --- Footer --- */
 .site-footer {
 background: var(--bg-dark);
 color: var(--text-white);
 padding: 56px 24px 32px;
 }
 .footer-inner {
 max-width: var(--max-wide);
 margin: 0 auto;
 }
 .footer-top {
 display: grid;
 grid-template-columns: 1fr;
 gap: 40px;
 margin-bottom: 48px;
 }
 .footer-brand-name {
 font-family: var(--font-body);
 font-size: 28px;
 font-weight: 600;
 color: #fff;
 margin-bottom: 16px;
 }
 .footer-nap strong {
 display: block;
 color: #f2f2f2;
 font-size: 21px;
 font-weight: 700;
 margin-bottom: 8px;
 }
 .footer-nap span {
 display: block;
 font-size: 16px;
 color: rgba(242, 242, 242, 0.6);
 margin-bottom: 4px;
 }
 .footer-nap a {
 color: var(--gold);
 font-size: 22px;
 font-weight: 700;
 text-decoration: none;
 display: inline-flex;
 align-items: center;
 gap: 8px;
 margin-top: 12px;
 transition: color 0.3s;
 }
 .footer-nap a:hover { color: #fff; }
 .footer-col h3 {
 font-family: var(--font-body);
 font-size: var(--fs-small);
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.15em;
 color: rgba(255, 255, 255, 0.35);
 margin-bottom: 20px;
 }
 .footer-col ul { list-style: none; }
 .footer-col li { margin-bottom: 10px; }
 .footer-col a {
 color: rgba(242, 242, 242, 0.65);
 font-size: 17px;
 text-decoration: none;
 transition: color 0.3s;
 }
 .footer-col a:hover { color: var(--gold); }
 .footer-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.08);
 display: flex;
 flex-direction: column;
 padding-top: 28px;
 gap: 16px;
 align-items: center;
 text-align: center;
 }
 .footer-cta-bar {
 display: flex;
 align-items: center;
 gap: 12px;
 }
 .footer-cta-text {
 font-family: var(--font-body);
 font-size: 22px;
 font-weight: 600;
 color: #fff;
 }
 .footer-cta-bar a {
 color: var(--gold);
 font-weight: 700;
 text-decoration: none;
 font-size: 26px;
 transition: color 0.3s;
 }
 .footer-cta-bar a:hover { color: #fff; }
 .footer-copy {
 font-size: var(--fs-small);
 color: rgba(255, 255, 255, 0.25);
 }

 /* --- Alt Background Modifier --- */
 .content-section.alt-bg { background: var(--bg-warm); }
 .content-section.alt-bg:nth-child(even) { background: var(--bg-white); }

 /* --- Urgency Banner (repair pages) --- */
 .urgency-banner {
 background: linear-gradient(90deg, #b91c1c, #dc2626);
 color: #fff;
 text-align: center;
 padding: 14px 24px;
 font-family: var(--font-body);
 font-size: var(--fs-small);
 font-weight: 700;
 letter-spacing: 0.02em;
 }
 .urgency-banner a {
 color: #fff;
 text-decoration: underline;
 font-weight: 700;
 }
 .urgency-banner a:hover { color: var(--gold); }

 /* --- Emergency Button --- */
 .btn-emergency {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 56px;
 background: #dc2626;
 color: #fff;
 text-align: center;
 text-decoration: none;
 font-family: var(--font-body);
 font-weight: 700;
 font-size: var(--fs-btn);
 letter-spacing: 0.06em;
 text-transform: uppercase;
 padding: 16px 40px;
 border: none;
 border-radius: 4px;
 transition: var(--transition);
 cursor: pointer;
 }
 .btn-emergency:hover {
 background: #b91c1c;
 color: #fff;
 transform: translateY(-2px);
 box-shadow: 0 8px 30px rgba(185, 28, 28, 0.35);
 }

 /* --- Emergency Callout Box --- */
 .emergency-callout {
 background: linear-gradient(135deg, rgba(220, 38, 38, 0.06), rgba(220, 38, 38, 0.02));
 border: 1px solid rgba(220, 38, 38, 0.2);
 border-left: 4px solid #dc2626;
 border-radius: 6px;
 padding: 28px 28px 24px;
 margin-bottom: 24px;
 }
 .emergency-callout h3 { color: #b91c1c; }
 .emergency-callout a { color: #dc2626; font-weight: 700; }

 /* --- Info & Alert Boxes --- */
 .info-box {
 background: var(--accent-light);
 border: 1px solid rgba(43, 123, 185, 0.15);
 border-left: 4px solid var(--accent);
 border-radius: 6px;
 padding: 24px 28px;
 margin-bottom: 24px;
 font-size: var(--fs-body);
 line-height: 1.8;
 }
 .alert-box {
 background: rgba(201, 169, 110, 0.08);
 border: 1px solid var(--border-gold);
 border-left: 4px solid var(--gold);
 border-radius: 6px;
 padding: 24px 28px;
 margin-bottom: 24px;
 font-size: var(--fs-body);
 line-height: 1.8;
 }

 /* --- Repair Cards Section --- */
 .repair-cards-section {
 background: var(--bg-warm);
 padding: 48px 24px;
 }
 .repair-cards-header {
 max-width: var(--max-content);
 margin: 0 auto 32px;
 padding-inline: 24px;
 }
 .repair-cards-header h2 {
 font-family: var(--font-body);
 font-size: var(--fs-h2);
 font-weight: 700;
 color: var(--text-heading);
 margin-bottom: 12px;
 }
 .repair-cards-header h2::after {
 content: '';
 display: block;
 width: 80px;
 height: 3px;
 background: linear-gradient(90deg, var(--accent), var(--gold));
 margin-top: 16px;
 border-radius: 2px;
 }
 .repair-cards-header p {
 font-size: var(--fs-body);
 color: var(--text-body);
 line-height: 1.8;
 }
 .repair-card {
 background: var(--bg-white);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 padding: 28px 28px 24px;
 transition: var(--transition);
 }
 .repair-card:hover {
 box-shadow: var(--shadow-card);
 border-color: var(--border-gold);
 }
 .repair-card h3 {
 font-family: var(--font-body);
 font-size: var(--fs-h3);
 font-weight: 700;
 color: var(--text-heading);
 margin-bottom: 10px;
 }
 .repair-card p {
 font-size: var(--fs-body);
 color: var(--text-body);
 line-height: 1.8;
 }

 /* --- Two-Column Layout --- */
 .two-col {
 display: grid;
 grid-template-columns: 1fr;
 gap: 32px;
 }

 /* --- Steps List (ordered) --- */
 .steps-list {
 list-style: none;
 margin: 0 0 24px 0;
 counter-reset: steps-counter;
 }
 .steps-list li {
 counter-increment: steps-counter;
 padding: 24px 24px 24px 80px;
 margin-bottom: 16px;
 background: var(--bg-white);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 position: relative;
 line-height: 1.8;
 transition: var(--transition);
 }
 .steps-list li:hover {
 box-shadow: var(--shadow-card);
 border-color: var(--border-gold);
 }
 .steps-list li::before {
 content: counter(steps-counter);
 position: absolute;
 left: 24px;
 top: 50%;
 transform: translateY(-50%);
 width: 40px;
 height: 40px;
 background: linear-gradient(135deg, var(--accent), var(--accent-dark));
 color: #fff;
 font-family: var(--font-body);
 font-size: 20px;
 font-weight: 700;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 }
 .steps-list li strong {
 display: block;
 font-family: var(--font-body);
 font-weight: 700;
 color: var(--text-heading);
 margin-bottom: 6px;
 font-size: 21px;
 }

 /* --- Inline CTA --- */
 .inline-cta {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 color: var(--gold);
 font-weight: 700;
 text-decoration: none;
 font-size: var(--fs-body);
 transition: color 0.3s;
 }
 .inline-cta:hover { color: #b89558; }

 /* --- Process Step Cards --- */
 .process-step {
 background: var(--bg-white);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 padding: 28px;
 transition: var(--transition);
 }
 .process-step:hover {
 box-shadow: var(--shadow-card);
 border-color: var(--border-gold);
 }
 .step-number {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 44px;
 height: 44px;
 background: linear-gradient(135deg, var(--accent), var(--accent-dark));
 color: #fff;
 font-family: var(--font-body);
 font-size: 20px;
 font-weight: 700;
 border-radius: 50%;
 margin-bottom: 16px;
 }
 .step-icon {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 48px;
 height: 48px;
 background: var(--gold-light);
 color: var(--gold);
 font-size: 24px;
 border-radius: 50%;
 margin-bottom: 16px;
 }

 /* --- Feature Icons --- */
 .feature-icon,
 .feature-card-icon {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 48px;
 height: 48px;
 background: var(--gold-light);
 color: var(--gold);
 font-size: 24px;
 border-radius: 50%;
 margin-bottom: 16px;
 }

 /* --- Neighborhood Cards --- */
 .neighborhood-card {
 background: var(--bg-white);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 padding: 24px;
 transition: var(--transition);
 }
 .neighborhood-card:hover {
 box-shadow: var(--shadow-card);
 border-color: var(--border-gold);
 }
 .neighborhood-card h3 {
 font-family: var(--font-body);
 font-size: var(--fs-h3);
 font-weight: 700;
 color: var(--text-heading);
 margin-bottom: 10px;
 }
 .neighborhood-card p {
 font-size: var(--fs-body);
 color: var(--text-body);
 line-height: 1.8;
 }
 .neighborhood-box {
 background: var(--bg-warm);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 padding: 24px;
 margin-bottom: 20px;
 }
 .neighborhood-tags,
 .neighborhood-strip {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 margin-top: 16px;
 }
 .neighborhood-tag,
 .neighborhood-chip {
 display: inline-block;
 padding: 8px 20px;
 border: 1px solid var(--border-gold);
 border-radius: 4px;
 color: var(--gold);
 text-decoration: none;
 font-weight: 600;
 font-size: 15px;
 transition: var(--transition);
 }
 .neighborhood-tag:hover,
 .neighborhood-chip:hover {
 background: var(--gold);
 color: #fff;
 border-color: var(--gold);
 }
 .neighborhood-table {
 width: 100%;
 border-collapse: collapse;
 margin-top: 16px;
 }
 .neighborhood-table td,
 .neighborhood-table th {
 padding: 12px 16px;
 border-bottom: 1px solid var(--border-subtle);
 text-align: left;
 font-size: var(--fs-body);
 }
 .neighborhood-table th {
 font-weight: 700;
 color: var(--text-heading);
 }

 /* --- Related Cards & Links --- */
 .related-cards-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 16px;
 margin-top: 24px;
 }
 .related-card,
 .related-link-card {
 display: flex;
 align-items: center;
 justify-content: space-between;
 background: var(--bg-white);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 padding: 20px 24px;
 text-decoration: none;
 color: var(--text-heading);
 transition: var(--transition);
 }
 .related-card:hover,
 .related-link-card:hover {
 box-shadow: var(--shadow-card);
 border-color: var(--border-gold);
 }
 .related-card-text,
 .related-link-card-title,
 .crosslink-title {
 font-family: var(--font-body);
 font-size: var(--fs-body);
 font-weight: 700;
 color: var(--text-heading);
 }
 .related-link-card-desc,
 .crosslink-desc,
 .crosslink-text,
 .crosslink-card-text {
 font-size: var(--fs-small);
 color: var(--text-light);
 line-height: 1.6;
 margin-top: 4px;
 }
 .related-card-arrow,
 .related-link-arrow {
 font-size: 24px;
 color: var(--gold);
 margin-left: 16px;
 flex-shrink: 0;
 }
 .related-link {
 display: block;
 padding: 14px 20px;
 background: var(--bg-warm);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 text-decoration: none;
 color: var(--accent);
 font-weight: 600;
 font-size: var(--fs-body);
 transition: var(--transition);
 }
 .related-link:hover {
 border-color: var(--border-gold);
 box-shadow: var(--shadow-card);
 color: var(--accent-dark);
 }

 /* --- Crosslink Item Variant --- */
 .crosslink-item {
 display: flex;
 align-items: center;
 justify-content: space-between;
 background: var(--bg-white);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 padding: 20px 24px;
 text-decoration: none;
 color: var(--text-heading);
 transition: var(--transition);
 }
 .crosslink-item:hover {
 box-shadow: var(--shadow-card);
 border-color: var(--border-gold);
 }
 .crosslink-item span {
 font-weight: 700;
 font-size: var(--fs-body);
 color: var(--text-heading);
 }
 .crosslink-item p,
 .crosslink-item-text {
 font-size: var(--fs-small);
 color: var(--text-light);
 margin-top: 4px;
 }

 /* --- Link Cards & Pills --- */
 .link-card {
 display: block;
 background: var(--bg-white);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 padding: 20px 24px;
 text-decoration: none;
 color: var(--text-heading);
 font-weight: 600;
 transition: var(--transition);
 }
 .link-card:hover {
 box-shadow: var(--shadow-card);
 border-color: var(--border-gold);
 color: var(--accent);
 }
 .link-row {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
 margin-top: 16px;
 }
 .link-pill {
 display: inline-block;
 padding: 8px 20px;
 border: 1px solid var(--border-gold);
 border-radius: 24px;
 color: var(--gold);
 text-decoration: none;
 font-weight: 600;
 font-size: 15px;
 transition: var(--transition);
 }
 .link-pill:hover {
 background: var(--gold);
 color: #fff;
 border-color: var(--gold);
 }

 /* --- Breadcrumb Bar --- */
 .breadcrumb-bar {
 background: var(--bg-warm);
 border-bottom: 1px solid var(--border-subtle);
 padding: 12px 24px;
 }
 .breadcrumb-bar .breadcrumb-inner {
 max-width: var(--max-wide);
 margin: 0 auto;
 }

 /* --- FAQ Question (alt class) --- */
 .faq-question {
 font-family: var(--font-body);
 font-size: var(--fs-h3);
 font-weight: 700;
 color: var(--text-heading);
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 16px;
 cursor: pointer;
 transition: color 0.3s;
 }
 .faq-question:hover { color: var(--accent); }

 /* --- Section Header Wrappers --- */
 .section-header,
 .services-header,
 .services-section-header,
 .features-section-header,
 .cards-section-header {
 max-width: var(--max-content);
 margin: 0 auto 32px;
 padding-inline: 24px;
 }
 .section-header h2,
 .services-header h2,
 .services-section-header h2,
 .features-section-header h2,
 .cards-section-header h2 {
 font-family: var(--font-body);
 font-size: var(--fs-h2);
 font-weight: 700;
 color: var(--text-heading);
 margin-bottom: 12px;
 }
 .section-header h2::after,
 .services-header h2::after,
 .services-section-header h2::after,
 .features-section-header h2::after,
 .cards-section-header h2::after {
 content: '';
 display: block;
 width: 80px;
 height: 3px;
 background: linear-gradient(90deg, var(--accent), var(--gold));
 margin-top: 16px;
 border-radius: 2px;
 }
 .section-header p,
 .services-header p,
 .services-section-header p,
 .features-section-header p,
 .cards-section-header p {
 font-size: var(--fs-body);
 color: var(--text-body);
 line-height: 1.8;
 }

 /* --- Features Section Inner --- */
 .features-section-inner {
 max-width: var(--max-content);
 margin: 0 auto;
 padding-inline: 24px;
 }

 /* --- Footer Brand Block --- */
 .footer-brand-block {
 display: flex;
 flex-direction: column;
 }

 /* --- City Page Components --- */
 .nearby-links {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 list-style: none;
 margin-top: 16px;
 }
 .nearby-links a,
 .nearby-link {
 display: inline-block;
 padding: 8px 20px;
 border: 1px solid var(--border-gold);
 border-radius: 4px;
 color: var(--gold);
 text-decoration: none;
 font-weight: 600;
 font-size: 15px;
 transition: var(--transition);
 }
 .nearby-links a:hover,
 .nearby-link:hover {
 background: var(--gold);
 color: #fff;
 border-color: var(--gold);
 }
 .nearby-links li {
 list-style: none;
 padding: 0;
 margin: 0;
 }
 .nearby-links li::before { display: none; }
 .service-card {
 background: var(--bg-white);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 padding: 28px;
 transition: var(--transition);
 }
 .service-card:hover {
 box-shadow: var(--shadow-card);
 border-color: var(--border-gold);
 }
 .service-card h3 {
 font-family: var(--font-body);
 font-size: var(--fs-h3);
 font-weight: 700;
 color: var(--text-heading);
 margin-bottom: 10px;
 }
 .service-links {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 margin-top: 16px;
 }
 .service-links a {
 display: inline-block;
 padding: 8px 20px;
 border: 1px solid var(--border-gold);
 border-radius: 4px;
 color: var(--gold);
 text-decoration: none;
 font-weight: 600;
 font-size: 15px;
 transition: var(--transition);
 }
 .service-links a:hover {
 background: var(--gold);
 color: #fff;
 border-color: var(--gold);
 }
 .stat-row {
 display: flex;
 justify-content: center;
 gap: 48px;
 flex-wrap: wrap;
 margin: 32px 0;
 }
 .stat-card {
 text-align: center;
 min-width: 120px;
 }
 .stat-num {
 font-family: var(--font-body);
 font-size: 48px;
 font-weight: 700;
 color: var(--text-heading);
 line-height: 1;
 }
 .stat-label {
 font-size: var(--fs-small);
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: var(--text-light);
 margin-top: 6px;
 }
 .material-list {
 display: grid;
 grid-template-columns: 1fr;
 gap: 16px;
 margin-top: 20px;
 list-style: none;
 }
 .material-item {
 background: var(--bg-white);
 border: 1px solid var(--border-subtle);
 border-radius: 6px;
 padding: 20px 24px;
 transition: var(--transition);
 }
 .material-item:hover {
 border-color: var(--border-gold);
 box-shadow: var(--shadow-card);
 }
 .material-item::before { display: none; }
 .mid-cta {
 background: var(--bg-dark);
 color: #fff;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 24px;
 padding: 40px 48px;
 max-width: var(--max-content);
 margin: 32px auto;
 border-radius: 8px;
 }
 .mid-cta-text h3 {
 font-family: var(--font-body);
 font-size: var(--fs-h3);
 font-weight: 700;
 color: #fff;
 margin-bottom: 8px;
 }
 .mid-cta-text p {
 color: rgba(255, 255, 255, 0.7);
 font-size: var(--fs-body);
 }
 .mid-cta-btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 56px;
 background: var(--gold);
 color: #fff;
 text-decoration: none;
 font-family: var(--font-body);
 font-weight: 700;
 font-size: var(--fs-btn);
 letter-spacing: 0.05em;
 padding: 16px 32px;
 border-radius: 4px;
 white-space: nowrap;
 transition: var(--transition);
 }
 .mid-cta-btn:hover {
 background: #b89558;
 color: #fff;
 transform: translateY(-2px);
 box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
 }
 .step-num {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 40px;
 height: 40px;
 background: linear-gradient(135deg, var(--accent), var(--accent-dark));
 color: #fff;
 font-family: var(--font-body);
 font-size: 20px;
 font-weight: 700;
 border-radius: 50%;
 margin-bottom: 12px;
 flex-shrink: 0;
 }
 .step-text {
 font-size: var(--fs-body);
 color: var(--text-body);
 line-height: 1.8;
 }

 /* --- Testimonials Header --- */
 .testimonials-header {
 max-width: var(--max-content);
 margin: 0 auto 32px;
 padding-inline: 24px;
 text-align: center;
 }
 .testimonials-header h2 {
 font-family: var(--font-body);
 font-size: var(--fs-h2);
 font-weight: 700;
 color: var(--text-heading);
 margin-bottom: 12px;
 }
 .testimonials-header h2::after {
 content: '';
 display: block;
 width: 48px;
 height: 3px;
 background: linear-gradient(90deg, var(--accent), var(--gold));
 margin: 16px auto 0;
 border-radius: 2px;
 }

 /* ==============================
 RESPONSIVE BREAKPOINTS
 ============================== */

 /* --- Mobile Nav Overlay & Slide-out Menu --- */
 .nav-overlay {
 display: none;
 position: fixed;
 inset: 0;
 background: rgba(0, 0, 0, 0.5);
 z-index: 999;
 opacity: 0;
 transition: opacity 0.3s ease;
 }
 .nav-overlay.open {
 display: block;
 opacity: 1;
 }

 /* --- Tablet: 768px+ --- */
 @media (min-width: 768px) {
 .hero { min-height: 600px; }
 .hero-ctas { flex-direction: row; }
 .trust-logos { flex-wrap: nowrap; gap: 20px; }
 .testimonial-grid { grid-template-columns: 1fr 1fr; }
 .features-grid { grid-template-columns: 1fr 1fr; }
 .crosslinks-grid { grid-template-columns: 1fr 1fr; }
 .related-links-inner ul { grid-template-columns: 1fr 1fr; }
 main .areas-grid, main .cards-grid, main .city-grid,
 main .damage-grid, main .denial-grid, main .gallery-grid,
 main .links-grid, main .nearby-grid, main .neighbor-grid,
 main .neighborhood-grid, main .neighborhoods-grid,
 main .photo-grid, main .related-grid, main .repair-grid,
 main .review-grid, main .services-grid, main .steps-grid,
 main .testimonials-grid, main .tier-grid,
 main .village-grid, main .adjacent-grid,
 main .scenario-grid, main .promise-grid,
 main .contact-grid, main .flashing-grid, main .hub-grid,
 main .product-grid, main .supplement-grid, main .topic-grid,
 main .bulletin-grid, main .form-grid { grid-template-columns: 1fr 1fr; }
 .gallery-intro { grid-template-columns: 1fr 1fr; }
 .photo-grid { grid-template-columns: 1fr 1fr; }
 .footer-top { grid-template-columns: repeat(2, 1fr); gap: 28px; }
 .footer-brand-block { grid-column: 1 / -1; }
 .footer-bottom { flex-direction: row; justify-content: space-between; }
 .two-col { grid-template-columns: 1fr 1fr; }
 .related-cards-grid { grid-template-columns: 1fr 1fr; }
 .neighborhood-grid { grid-template-columns: 1fr 1fr; }
 .material-list { grid-template-columns: 1fr 1fr; }
 }

 /* --- Desktop: 1024px+ --- */
 @media (min-width: 1024px) {
 .photo-grid { grid-template-columns: repeat(3, 1fr); }
 .footer-top { grid-template-columns: 2fr 1fr 1fr 1.3fr 1fr; gap: 32px; }
 .footer-brand-block { grid-column: auto; }
 .footer-col h3 { white-space: nowrap; }
 .hero-content { padding: 64px 48px 72px; }
 .content-section { padding: 80px 48px; }
 .features-section { padding: 80px 48px; }
 .crosslinks-section { padding: 80px 48px; }
 .related-links { padding: 80px 48px; }
 .areas-section, .cards-section, .comparison-section,
 .cta-section, .form-section, .gallery-section,
 .intro-section, .links-section, .nearby-section,
 .neighborhoods-section, .process-section, .related-section,
 .review-section, .services-section, .submit-section,
 .testimonials-section { padding: 80px 48px; }
 .cta-mid { padding: 100px 48px; }
 .site-footer { padding: 72px 48px 40px; }
 .faq-section { padding: 80px 48px; }
 .repair-cards-section { padding: 80px 48px; }
 .features-grid { grid-template-columns: 1fr 1fr 1fr; }
 .related-cards-grid { grid-template-columns: 1fr 1fr 1fr; }
 }

 /* --- Tablet & below: hide desktop nav, show hamburger --- */
 @media (max-width: 1023px) {
 .header-nav {
 display: flex;
 position: fixed;
 top: 0;
 right: -300px;
 width: 280px;
 height: 100dvh;
 background: var(--bg-dark);
 flex-direction: column;
 padding: 88px 24px 32px;
 box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
 z-index: 1000;
 gap: 0;
 overflow-y: auto;
 visibility: hidden;
 transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
 }
 .header-nav.open {
 right: 0;
 visibility: visible;
 }
 .header-nav a {
 padding: 16px 20px;
 font-size: 18px;
 border-bottom: 1px solid rgba(255, 255, 255, 0.06);
 border-radius: 0;
 width: 100%;
 }
 .header-nav a:hover {
 background: rgba(255, 255, 255, 0.05);
 }
 .header-nav-divider {
 width: 100%;
 height: 1px;
 margin: 12px 0;
 }
 .nav-toggle {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 z-index: 1001;
 width: 44px;
 height: 44px;
 }
 .nav-toggle span {
 transition: transform 0.3s ease, opacity 0.3s ease;
 }
 .nav-toggle.open span:nth-child(1) {
 transform: rotate(45deg) translate(5px, 5px);
 }
 .nav-toggle.open span:nth-child(2) {
 opacity: 0;
 }
 .nav-toggle.open span:nth-child(3) {
 transform: rotate(-45deg) translate(5px, -5px);
 }
 }

 /* --- Mobile: 767px and below --- */
 @media (max-width: 767px) {
 .top-bar { display: none; }
 .header-brand { font-size: 20px; }
 .header-brand small { font-size: 9px; letter-spacing: 0.12em; }
 .header-logo img { height: 40px; }
 .header-phone { padding: 0 14px; min-height: 42px; }
 .header-phone span.phone-text { display: none; }
 .header-inner { min-height: 56px; padding: 0 16px; }
 .hero { min-height: 400px; }
 .hero-content { padding: 36px 20px 44px; }
 .hero-eyebrow { font-size: 13px; letter-spacing: 0.15em; }
 .hero-eyebrow::before, .hero-eyebrow::after { width: 24px; }
 .trust-strip { padding: 28px 16px; }
 .trust-stat-row { flex-wrap: wrap; gap: 20px; justify-content: center; }
 .trust-stat-number { font-size: 28px; }
 .trust-stat-label { font-size: 13px; }
 .cert-badge { min-width: 120px; padding: 16px 20px; }
 .cert-badge-brand { font-size: 20px; }
 .trust-logos { gap: 10px; }
 .process-steps li { padding: 20px 16px 20px 64px; }
 .process-steps li::before { left: 16px; width: 36px; height: 36px; font-size: 17px; }
 .hero-ctas { flex-direction: column; align-items: stretch; }
 .btn-primary, .btn-secondary, .btn-cta-mid, .btn-emergency { width: 100%; min-height: 56px; padding: 14px 24px; }
 .content-section { padding: 40px 20px; }
 .features-section { padding: 40px 20px; }
 .crosslinks-section { padding: 40px 20px; }
 .related-links { padding: 40px 20px; }
 .areas-section, .cards-section, .comparison-section,
 .cta-section, .form-section, .gallery-section,
 .intro-section, .links-section, .nearby-section,
 .neighborhoods-section, .process-section, .related-section,
 .review-section, .services-section, .submit-section,
 .testimonials-section { padding: 40px 20px; }
 .cta-mid { padding: 56px 20px; }
 .faq-section { padding: 40px 20px; }
 .faq-item h3 { font-size: 20px; gap: 12px; }
 .faq-item h3::after { width: 32px; height: 32px; font-size: 24px; }
 .faq-item { padding: 20px 0; }
 .testimonial-card { padding: 24px 20px 20px; }
 .testimonial-quote { font-size: 22px; }
 .feature-card { padding: 24px 20px 20px; }
 .crosslink-card { padding: 16px 20px; }
 .site-footer { padding: 40px 20px 24px; }
 .footer-top { gap: 28px; }
 .footer-brand-name { font-size: 24px; }
 .footer-nap strong { font-size: 18px; }
 .footer-nap a { font-size: 20px; }
 .footer-col h3 { font-size: 14px; margin-bottom: 14px; }
 .footer-col a { font-size: 16px; }
 .footer-cta-text { font-size: 18px; }
 .footer-cta-bar a { font-size: 22px; }
 .footer-cta-bar { flex-wrap: wrap; justify-content: center; }
 .content-figure { padding: 24px 16px; }
 .widget-section { padding-left: 12px; padding-right: 12px; }
 /* Ensure inner containers have tighter mobile padding */
 main [class*="-inner"] { padding-inline: 20px; }
 main [class*="-grid"] { padding-inline: 20px; }
 .content-inner { padding-inline: 20px; }
 .features-header { padding-inline: 20px; }
 .crosslinks-inner { padding-inline: 20px; }
 .related-links-inner { padding-inline: 20px; }
 .faq-inner { padding-inline: 20px; }
 .repair-cards-section { padding: 40px 20px; }
 .repair-cards-header { padding-inline: 20px; }
 .repair-card { padding: 24px 20px 20px; }
 .steps-list li { padding: 20px 16px 20px 64px; }
 .steps-list li::before { left: 16px; width: 36px; height: 36px; font-size: 17px; }
 .neighborhood-card { padding: 20px; }
 .crosslink-item { padding: 16px 20px; }
 .related-card, .related-link-card { padding: 16px 20px; }
 .urgency-banner { font-size: 15px; padding: 12px 16px; }
 .mid-cta { flex-direction: column; text-align: center; padding: 32px 20px; margin: 24px 16px; }
 .mid-cta-btn { width: 100%; }
 .stat-row { gap: 20px; }
 .stat-num { font-size: 28px; }
 }

 /* --- Very small screens: 480px and below --- */
 @media (max-width: 480px) {
 .header-brand { font-size: 18px; }
 .header-brand small { display: none; }
 .header-logo img { height: 36px; }
 .header-left { gap: 10px; }
 .header-phone { font-size: 0; padding: 0 12px; min-height: 40px; gap: 0; }
 .header-phone svg { width: 22px; height: 22px; }
 .hero { min-height: 360px; }
 .trust-stat-row { gap: 16px; }
 .trust-stat { min-width: 80px; }
 .trust-stat-number { font-size: 24px; }
 .cert-badge { min-width: 100px; padding: 12px 14px; }
 .cert-badge-brand { font-size: 18px; }
 .btn-primary, .btn-secondary { font-size: 16px; padding: 12px 20px; min-height: 52px; }
 .section-label { font-size: 14px; letter-spacing: 0.15em; }
 .footer-top { grid-template-columns: 1fr; }
 }

 /* --- Inline Figure (for photos in content) --- */
 .content-figure {
 max-width: var(--max-content);
 margin: 0 auto;
 padding: 32px 24px;
 background: var(--bg-primary);
 }
 .content-section .content-figure {
 padding: 8px 0;
 background: none;
 }
 .content-figure img {
 width: 100%;
 height: auto;
 border-radius: 6px;
 box-shadow: var(--shadow-card);
 }
 .content-figure figcaption {
 font-size: var(--fs-small);
 color: var(--text-light);
 margin-top: 12px;
 text-align: center;
 font-style: italic;
 }

 /* --- Pull quotes --- */
 .pull-quote {
 margin: 2rem 0;
 padding: 1.5rem 2rem;
 border-left: 4px solid var(--accent);
 background: var(--bg-warm);
 font-family: 'Cormorant Garamond', Georgia, serif;
 font-size: clamp(1.15rem, 1.1rem + 0.25vw, 1.35rem);
 font-style: italic;
 color: var(--text-dark);
 line-height: 1.6;
 }

 /* ============================================================
    PHOTO GALLERY PAGE — photo-card horizontal layout
    ============================================================ */

 /* Gallery section container with proper margins */
 .gallery-section-inner {
 max-width: var(--max-content);
 margin: 0 auto;
 padding-inline: 48px;
 }

 /* Gallery intro paragraphs */
 .gallery-intro {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 32px;
 margin-bottom: 40px;
 }
 .gallery-intro p {
 font-size: var(--fs-body);
 line-height: 1.75;
 margin-bottom: 16px;
 text-indent: 0;
 }

 /* photo-grid: 2 columns on desktop */
 .photo-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 32px;
 }

 /* Individual photo card — horizontal layout */
 .photo-card {
 display: grid;
 grid-template-columns: 380px 1fr;
 gap: 0;
 background: var(--bg-primary);
 border-radius: 10px;
 overflow: hidden;
 box-shadow: var(--shadow-card);
 transition: box-shadow 0.3s ease, transform 0.3s ease;
 }
 .photo-card:hover {
 box-shadow: 0 8px 28px rgba(0,0,0,0.14);
 transform: translateY(-2px);
 }

 .photo-card-image {
 flex-shrink: 0;
 overflow: hidden;
 }
 .photo-card-image img {
 width: 100%;
 height: 280px;
 object-fit: cover;
 display: block;
 cursor: pointer;
 transition: transform 0.5s ease;
 }
 .photo-card:hover .photo-card-image img {
 transform: scale(1.04);
 }

 .photo-card-body {
 padding: 24px 28px;
 display: flex;
 flex-direction: column;
 justify-content: center;
 gap: 8px;
 }

 .photo-card-title {
 font-size: clamp(17px, 1.2vw, 20px);
 font-weight: 700;
 color: var(--text-dark);
 line-height: 1.3;
 margin-bottom: 4px;
 }

 .photo-card-meta {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 margin-bottom: 8px;
 }

 .photo-card-badge {
 display: inline-block;
 background: var(--accent);
 color: #fff;
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 padding: 4px 10px;
 border-radius: 4px;
 }

 .photo-card-location {
 display: inline-block;
 font-size: 13px;
 color: var(--text-light);
 font-weight: 500;
 padding: 4px 0;
 }

 .photo-card-desc {
 font-size: var(--fs-body);
 line-height: 1.7;
 color: var(--text-body);
 margin: 4px 0 12px;
 }

 /* Bold product/material names inside descriptions */
 .photo-card-highlight {
 font-weight: 700;
 color: var(--navy);
 }

 .photo-card-link {
 display: inline-block;
 font-weight: 700;
 color: var(--accent);
 font-size: 15px;
 text-decoration: none;
 margin-top: 4px;
 transition: color 0.2s;
 }
 .photo-card-link:hover {
 color: var(--gold);
 }

 /* Tablet: narrower image column */
 @media (min-width: 768px) and (max-width: 1023px) {
 .gallery-section-inner { padding-inline: 24px; }
 .photo-grid { grid-template-columns: 1fr; }
 .photo-card { grid-template-columns: 320px 1fr; }
 .gallery-intro { grid-template-columns: 1fr; }
 }

 /* Mobile: stack cards vertically */
 @media (max-width: 767px) {
 .gallery-section-inner { padding-inline: 20px; }
 .photo-grid { grid-template-columns: 1fr; }
 .photo-card { grid-template-columns: 1fr; }
 .photo-card-image img { height: 240px; }
 .photo-card-body { padding: 20px; }
 .gallery-intro { grid-template-columns: 1fr; gap: 0; }
 }

 /* --- Widget containers --- */
 .widget-container {
 border-radius: 6px;
 overflow-x: auto;
 overflow-y: hidden;
 box-shadow: var(--shadow-soft);
 -webkit-overflow-scrolling: touch;
 }
 .widget-section .content-inner {
 max-width: 100%;
 }
 .widget-section {
 padding-left: 16px;
 padding-right: 16px;
 }