/* ============================================================
 SELL MY PAVING COMPANY
 Design System - Asphalt × Industrial × Authority
 Colors: Deep asphalt, highway yellow, concrete white
 ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&family=Barlow:wght@400;500;600&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
 /* Core Colors */
 --asphalt: #0e0e0e; /* freshly laid asphalt - near black */
 --asphalt-2: #1a1a22; /* slightly lifted - section bg */
 --asphalt-3: #242430; /* cards on dark */
 --concrete: #3d3d4a; /* aged concrete */
 --yellow: #f5c200; /* highway yellow / safety line */
 --yellow-dark: #c99d00; /* hover state */
 --yellow-light: #fff5b8; /* tint for highlights */
 --white: #ffffff;
 --off-white: #f7f7f4; /* warm white - road marking white */
 --light-gray: #e8e8e0;
 --mid-gray: #9ca3af;
 --dark-text: #111111;
 --body-text: #374151;
 --muted: #6b7280;

 /* Semantic */
 --border-dark: rgba(255,255,255,0.08);
 --border-light: rgba(0,0,0,0.1);
 --overlay: rgba(10,10,14,0.72);

 /* Typography */
 --font-display: 'Barlow Condensed', sans-serif;
 --font-body: 'Barlow', sans-serif;
 --font-ui: 'Inter', sans-serif;

 /* Layout */
 --container: 1240px;
 --gutter: clamp(1.25rem, 4vw, 2rem);
 --radius: 4px;
 --radius-md: 8px;
 --radius-lg: 12px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
 font-family: var(--font-body);
 font-size: 1.0625rem; /* 17px - comfortable for 50+ readers */
 line-height: 1.75;
 color: var(--body-text);
 background: var(--off-white);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
 font-family: var(--font-display);
 font-weight: 800;
 line-height: 1.1;
 letter-spacing: -0.01em;
 text-transform: uppercase;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h4 { font-size: 1.25rem; letter-spacing: 0; text-transform: none; font-weight: 700; }
h5 { font-size: 0.875rem; letter-spacing: 0.15em; font-weight: 700; text-transform: uppercase; }

p { font-size: 1.125rem; line-height: 1.8; color: var(--body-text); margin-bottom: 0.875rem; } /* 18px */
p:last-child { margin-bottom: 0; }
p + p { margin-top: 0.75rem; }

.lead {
 font-size: clamp(1.2rem, 1.8vw, 1.4rem); /* 19.2px minimum */
 line-height: 1.6;
 font-family: var(--font-body);
 font-weight: 400;
}
.eyebrow {
 font-family: var(--font-ui);
 font-size: 0.85rem; /* bumped from 0.72 for legibility */
 font-weight: 700;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--yellow);
}
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--muted); }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
 max-width: var(--container);
 margin: 0 auto;
 padding: 0 var(--gutter);
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-lg { padding: clamp(5rem, 10vw, 9rem) 0; }
.bg-asphalt { background: var(--asphalt); }
.bg-asphalt-2{ background: var(--asphalt-2); }
.bg-white { background: var(--white); }
.bg-off-white{ background: var(--off-white); }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
 .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Navigation ──────────────────────────────────────────────── */
.site-nav {
 position: fixed;
 top: 0; left: 0; right: 0;
 z-index: 100;
 background: var(--asphalt);
 border-bottom: 3px solid var(--yellow);
 transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.5); }

.nav-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 height: 68px;
 padding: 0 var(--gutter);
 max-width: var(--container);
 margin: 0 auto;
}

.nav-logo {
 display: flex;
 flex-direction: column;
 gap: 1px;
}
.nav-logo-mark {
 font-family: var(--font-display);
 font-size: 1.3rem;
 font-weight: 900;
 color: var(--yellow);
 letter-spacing: -0.01em;
 text-transform: uppercase;
 line-height: 1;
}
.nav-logo-sub {
 font-family: var(--font-ui);
 font-size: 0.75rem;
 font-weight: 600;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.65);
}

.nav-links {
 display: flex;
 align-items: center;
 gap: 1.5rem;
}
.nav-links a {
 font-family: var(--font-ui);
 font-size: 0.77rem;
 font-weight: 600;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.7);
 transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }

.nav-cta { display: flex; gap: 0.75rem; align-items: center; }

.nav-hamburger {
 display: none;
 flex-direction: column;
 gap: 5px;
 background: none;
 border: none;
 padding: 8px;
}
.nav-hamburger span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--white);
 border-radius: 2px;
 transition: all 0.3s;
}

.mobile-nav {
 display: none;
 flex-direction: column;
 position: fixed;
 top: 68px; left: 0; right: 0; bottom: 0;
 background: var(--asphalt);
 padding: 2rem var(--gutter);
 overflow-y: auto;
 z-index: 99;
 border-top: 1px solid var(--border-dark);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
 font-family: var(--font-ui);
 font-size: 1.1rem;
 font-weight: 600;
 color: rgba(255,255,255,0.8);
 padding: 1rem 0;
 border-bottom: 1px solid var(--border-dark);
 text-transform: uppercase;
 letter-spacing: 0.05em;
 min-height: 52px;
 display: flex;
 align-items: center;
}
.mobile-nav a:hover { color: var(--yellow); }
.mobile-cta-group {
 display: flex;
 flex-direction: column;
 gap: 0.875rem;
 margin-top: 2rem;
}

@media (max-width: 960px) {
 .nav-links { display: none; }
 .nav-hamburger { display: flex; }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 padding: 0.875rem 2rem;
 font-family: var(--font-display);
 font-size: 0.95rem;
 font-weight: 700;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 border: none;
 border-radius: var(--radius);
 cursor: pointer;
 transition: all 0.2s;
 white-space: nowrap;
 min-height: 48px;
 text-decoration: none;
}
.btn-yellow {
 background: var(--yellow);
 color: var(--asphalt);
}
.btn-yellow:hover {
 background: var(--yellow-dark);
 transform: translateY(-1px);
 box-shadow: 0 8px 24px rgba(245,194,0,0.35);
}
.btn-outline {
 background: transparent;
 color: var(--yellow);
 border: 2px solid var(--yellow);
}
.btn-outline:hover {
 background: var(--yellow);
 color: var(--asphalt);
}
.btn-outline-white {
 background: transparent;
 color: var(--white);
 border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
 border-color: var(--white);
 background: rgba(255,255,255,0.08);
}
.btn-dark {
 background: var(--asphalt);
 color: var(--white);
}
.btn-dark:hover { background: var(--asphalt-2); }
.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.05rem; min-height: 56px; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.8rem; min-height: 40px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
 position: relative;
 min-height: 100vh;
 display: flex;
 align-items: center;
 background: var(--asphalt);
 overflow: hidden;
 padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg-img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
 }
.hero-bg-overlay {
 position: absolute;
 inset: 0;
 background:
    /* Left column: dark for text legibility */
    linear-gradient(to right,
      rgba(10,10,14,0.88)  0%,
      rgba(10,10,14,0.88) 40%,
      rgba(10,10,14,0.60) 58%,
      rgba(10,10,14,0.22) 75%,
      rgba(10,10,14,0.06) 100%
    );
}
/* Yellow road stripe accent */
.hero-stripe {
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: var(--yellow);
 z-index: 1;
}

.hero-inner {
 position: relative;
 z-index: 2;
 padding: 5rem var(--gutter);
 max-width: var(--container);
 margin: 0 auto;
 width: 100%;
}
.hero-eyebrow {
 display: inline-flex;
 align-items: center;
 gap: 0.75rem;
 margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
 content: '';
 display: block;
 width: 32px;
 height: 3px;
 background: var(--yellow);
}
.hero h1 {
 max-width: 820px;
 color: var(--white);
 margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--yellow); }
.hero .lead {
 max-width: 580px;
 color: rgba(255,255,255,0.72);
 margin-bottom: 2.5rem;
}
.hero-ctas {
 display: flex;
 flex-wrap: wrap;
 gap: 1rem;
 margin-bottom: 3.5rem;
}
.hero-stats {
 display: flex;
 flex-wrap: wrap;
 gap: 3rem;
 padding-top: 2.5rem;
 border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
 font-family: var(--font-display);
 font-size: 2.5rem;
 font-weight: 900;
 color: var(--yellow);
 line-height: 1;
}
.hero-stat-label {
 font-family: var(--font-ui);
 font-size: 0.8rem;
 font-weight: 600;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.5);
 margin-top: 0.35rem;
}

/* ── Page Hero (interior pages) ──────────────────────────────── */
.page-hero {
 background: var(--asphalt);
 padding: calc(68px + 4rem) var(--gutter) 4rem;
 position: relative;
 border-bottom: 3px solid var(--yellow);
}
.page-hero-inner {
 max-width: var(--container);
 margin: 0 auto;
}
.page-hero h1 { color: var(--white); max-width: 780px; }
.page-hero h1 span { color: var(--yellow); }
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 640px; margin-top: 1rem; }
.page-hero-breadcrumb {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 font-family: var(--font-ui);
 font-size: 0.85rem;
 color: rgba(255,255,255,0.6);
 margin-bottom: 1.25rem;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero-breadcrumb a:hover { color: var(--yellow); }
.page-hero-breadcrumb span:not(:last-child)::after { content: '/'; margin-left: 0.5rem; }

/* ── Stat Blocks ──────────────────────────────────────────────── */
.stat-block-num {
 font-family: var(--font-display);
 font-size: 3rem;
 font-weight: 900;
 color: var(--yellow);
 line-height: 1;
}
.stat-block-label {
 font-family: var(--font-ui);
 font-size: 0.8rem;
 font-weight: 600;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.65);
 margin-top: 0.4rem;
}

/* ── Cards ───────────────────────────────────────────────────── */
.card {
 background: var(--white);
 border: 1px solid var(--border-light);
 border-radius: var(--radius-md);
 padding: 2rem;
 transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
 box-shadow: 0 12px 40px rgba(0,0,0,0.12);
 transform: translateY(-2px);
}
.card-dark {
 background: var(--asphalt-3);
 border: 1px solid var(--border-dark);
 border-radius: var(--radius-md);
 padding: 2rem;
}
.card-yellow-border {
 border-left: 4px solid var(--yellow);
 background: var(--white);
 border-radius: 0 var(--radius-md) var(--radius-md) 0;
 padding: 1.5rem 1.75rem;
 border-top: 1px solid var(--border-light);
 border-bottom: 1px solid var(--border-light);
 border-right: 1px solid var(--border-light);
}

/* Card icon */
.card-icon {
 width: 48px;
 height: 48px;
 background: var(--yellow);
 border-radius: var(--radius);
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 1.25rem;
 flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; color: var(--asphalt); }
.card-icon-dark {
 width: 48px;
 height: 48px;
 background: var(--asphalt);
 border-radius: var(--radius);
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 1.25rem;
 flex-shrink: 0;
}
.card-icon-dark svg { width: 24px; height: 24px; color: var(--yellow); }

/* ── Problem Cards (pain-point style) ────────────────────────── */
.problem-card {
 background: var(--asphalt-3);
 border: 1px solid var(--border-dark);
 border-top: 3px solid var(--yellow);
 border-radius: var(--radius-md);
 padding: 2rem;
 display: flex;
 flex-direction: column;
 gap: 1rem;
}
.problem-card h4 { color: var(--white); font-size: 1.15rem; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.problem-card p { color: rgba(255,255,255,0.88) !important; font-size: 1rem; margin-bottom: 0; }

/* ── Check list ───────────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li {
 display: flex;
 gap: 0.75rem;
 align-items: flex-start;
 font-size: 1rem;
 color: var(--body-text);
 line-height: 1.55;
}
.check-list li::before {
 content: '';
 width: 20px;
 height: 20px;
 border-radius: 50%;
 background: var(--yellow);
 flex-shrink: 0;
 margin-top: 2px;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='3' stroke='%230e0e0e'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E");
 background-size: 12px;
 background-position: center;
 background-repeat: no-repeat;
}
.check-list-light li { color: rgba(255,255,255,0.75); }
.check-list-light li::before { background-color: var(--yellow); }

/* ── Process Steps ────────────────────────────────────────────── */
.process-step {
 display: flex;
 gap: 1.5rem;
 align-items: flex-start;
 padding: 1.75rem 0;
 border-bottom: 1px solid var(--border-light);
}
.process-step:last-child { border-bottom: none; }
.process-num {
 font-family: var(--font-display);
 font-size: 3rem;
 font-weight: 900;
 color: var(--yellow);
 line-height: 1;
 min-width: 60px;
}
.process-step-content h4 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.process-step-content p { margin-bottom: 0; font-size: 0.95rem; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
 background: var(--yellow);
 padding: clamp(3.5rem, 7vw, 6rem) var(--gutter);
 text-align: center;
 position: relative;
 overflow: hidden;
}
.cta-banner::before {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0; bottom: 0;
 background: repeating-linear-gradient(
 -45deg,
 transparent,
 transparent 40px,
 rgba(0,0,0,0.04) 40px,
 rgba(0,0,0,0.04) 80px
 );
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-banner h2 {
 color: var(--asphalt);
 font-size: clamp(2rem, 4vw, 3.5rem);
 margin-bottom: 1rem;
}
.cta-banner p { color: rgba(14,14,14,0.7); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-banner-actions {
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 gap: 1rem;
}

/* ── Highlight Box ────────────────────────────────────────────── */
.highlight-box {
 background: var(--yellow-light);
 border-left: 4px solid var(--yellow);
 border-radius: 0 var(--radius-md) var(--radius-md) 0;
 padding: 1.5rem 1.75rem;
}
.highlight-box-dark {
 background: var(--asphalt-3);
 border-left: 4px solid var(--yellow);
 border-radius: 0 var(--radius-md) var(--radius-md) 0;
 padding: 1.5rem 1.75rem;
}
.highlight-box-dark h4 { color: var(--white); margin-bottom: 0.4rem; }
.highlight-box-dark p { color: rgba(255,255,255,0.78); font-size: 0.97rem; }

/* ── Testimonial ─────────────────────────────────────────────── */
.testimonial {
 background: var(--asphalt-3);
 border: 1px solid var(--border-dark);
 border-radius: var(--radius-md);
 padding: 2rem;
 position: relative;
}
.testimonial::before {
 content: '"';
 font-family: var(--font-display);
 font-size: 5rem;
 font-weight: 900;
 color: var(--yellow);
 opacity: 0.3;
 position: absolute;
 top: 1rem;
 left: 1.5rem;
 line-height: 1;
}
.testimonial-text {
 font-size: 1.05rem;
 color: rgba(255,255,255,0.88);
 font-style: italic;
 padding-top: 2rem;
 margin-bottom: 1.25rem;
 line-height: 1.7;
}
.testimonial-credit {
 font-family: var(--font-ui);
 font-size: 0.82rem;
 font-weight: 600;
 color: var(--yellow);
 letter-spacing: 0.08em;
 text-transform: uppercase;
}

/* ── Forms ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
 display: block;
 font-family: var(--font-ui);
 font-size: 0.88rem; /* 14px min for 50+ readers */
 font-weight: 700;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: var(--dark-text);
 margin-bottom: 0.5rem;
}
.form-label-light {
 color: rgba(255,255,255,0.7);
}
.form-input, .form-select, .form-textarea {
 width: 100%;
 padding: 0.875rem 1rem;
 font-family: var(--font-body);
 font-size: 1rem;
 color: var(--dark-text);
 background: var(--white);
 border: 2px solid var(--light-gray);
 border-radius: var(--radius);
 transition: border-color 0.2s, box-shadow 0.2s;
 min-height: 48px;
 appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
 outline: none;
 border-color: var(--yellow);
 box-shadow: 0 0 0 3px rgba(245,194,0,0.2);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* Dark form inputs */
.form-dark .form-input,
.form-dark .form-select,
.form-dark .form-textarea {
 background: var(--asphalt-2);
 border-color: rgba(255,255,255,0.12);
 color: var(--white);
}
.form-dark .form-input::placeholder,
.form-dark .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-dark .form-input:focus,
.form-dark .form-select:focus,
.form-dark .form-textarea:focus {
 border-color: var(--yellow);
}
.form-dark .form-select option { background: var(--asphalt-2); color: var(--white); }

.form-note {
 font-family: var(--font-ui);
 font-size: 0.85rem;
 color: var(--muted);
 margin-top: 0.4rem;
 line-height: 1.5;
}

/* Success state */
.form-success {
 text-align: center;
 padding: 2.5rem 2rem;
 background: var(--asphalt-3);
 border: 1px solid var(--border-dark);
 border-top: 3px solid var(--yellow);
 border-radius: var(--radius-md);
}
.form-success h4 { color: var(--yellow); font-size: 1.4rem; margin-bottom: 0.5rem; }
.form-success p { color: rgba(255,255,255,0.78); font-size: 1rem; }

/* ── Content + Sidebar Layout ─────────────────────────────────── */
.content-with-sidebar {
 display: grid;
 grid-template-columns: 1fr 340px;
 gap: 4rem;
 align-items: start;
}
@media (max-width: 960px) {
 .content-with-sidebar { grid-template-columns: 1fr; }
}
.sticky-sidebar { position: sticky; top: 88px; }
.sidebar-widget {
 background: var(--asphalt-2);
 border: 1px solid var(--border-dark);
 border-radius: var(--radius-md);
 padding: 1.75rem;
 margin-bottom: 1.5rem;
}
.sidebar-widget h4 { color: var(--white); margin-bottom: 0.75rem; font-size: 1rem; }
.sidebar-widget p { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin-bottom: 1rem; }
.sidebar-links { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.75rem; }
.sidebar-links a {
 font-family: var(--font-ui);
 font-size: 0.92rem;
 color: rgba(255,255,255,0.55);
 transition: color 0.2s;
 padding: 0.25rem 0;
}
.sidebar-links a:hover { color: var(--yellow); }

/* ── Prose (long-form content) ────────────────────────────────── */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.8rem; margin: 2.5rem 0 0.875rem; color: var(--dark-text); }
.prose h3 { font-size: 1.4rem; margin: 2rem 0 0.6rem; color: var(--dark-text); }
.prose p { font-size: 1.125rem; color: var(--body-text); line-height: 1.85; margin-bottom: 1.25rem; }
.prose p + p { margin-top: 0; }
.prose ul, .prose ol { margin: 1rem 0 1.5rem 0; padding-left: 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { font-size: 1.125rem; color: var(--body-text); margin-bottom: 0.75rem; line-height: 1.75; }
.prose .lead { font-size: 1.25rem; color: var(--dark-text); margin-bottom: 2rem; }

/* ── Image Placeholder ────────────────────────────────────────── */
.img-placeholder {
 background: linear-gradient(135deg, var(--asphalt-2) 0%, var(--concrete) 100%);
 border-radius: var(--radius-md);
 display: flex;
 align-items: center;
 justify-content: center;
 min-height: 320px;
 position: relative;
 overflow: hidden;
}
.img-placeholder::after {
 content: '';
 position: absolute;
 inset: 0;
 background: repeating-linear-gradient(
 -45deg,
 transparent,
 transparent 10px,
 rgba(255,255,255,0.02) 10px,
 rgba(255,255,255,0.02) 20px
 );
}
.img-placeholder-inner {
 text-align: center;
 z-index: 1;
 padding: 2rem;
}
.img-placeholder-inner svg {
 width: 40px;
 height: 40px;
 color: rgba(255,255,255,0.2);
 margin: 0 auto 0.75rem;
}
.img-placeholder-inner p {
 font-family: var(--font-ui);
 font-size: 0.82rem;
 color: rgba(255,255,255,0.65);
 letter-spacing: 0.05em;
 max-width: 260px;
 margin: 0 auto;
 text-transform: uppercase;
}

/* ── Road Divider ─────────────────────────────────────────────── */
.road-divider {
 height: 6px;
 background: var(--asphalt);
 position: relative;
 overflow: hidden;
}
.road-divider::after {
 content: '';
 position: absolute;
 top: 50%;
 left: 0;
 right: 0;
 height: 2px;
 transform: translateY(-50%);
 background: repeating-linear-gradient(
 90deg,
 var(--yellow) 0, var(--yellow) 40px,
 transparent 40px, transparent 80px
 );
}

/* ── Value Band (trust bar) ───────────────────────────────────── */
.value-band {
 background: var(--yellow);
 padding: 1rem var(--gutter);
}
.value-band-inner {
 max-width: var(--container);
 margin: 0 auto;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-wrap: wrap;
 gap: 2.5rem;
}
.value-band-item {
 display: flex;
 align-items: center;
 gap: 0.6rem;
 font-family: var(--font-display);
 font-size: 0.9rem;
 font-weight: 700;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: var(--asphalt);
}
.value-band-dot {
 width: 6px;
 height: 6px;
 background: var(--asphalt);
 border-radius: 50%;
 opacity: 0.4;
}

/* ── Accordion ────────────────────────────────────────────────── */
.accordion-item { border-bottom: 1px solid var(--border-light); }
.accordion-item:first-child { border-top: 1px solid var(--border-light); }
.accordion-trigger {
 width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;
 background: none;
 border: none;
 padding: 1.25rem 0;
 font-family: var(--font-body);
 font-size: 1rem;
 font-weight: 600;
 color: var(--dark-text);
 text-align: left;
 cursor: pointer;
 gap: 1rem;
 min-height: 52px;
 transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--asphalt); }
.accordion-trigger[aria-expanded="true"] { color: var(--asphalt); }
.acc-icon {
 width: 20px;
 height: 20px;
 flex-shrink: 0;
 color: var(--yellow);
 transition: transform 0.3s;
}
.accordion-trigger[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }
.accordion-body {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.accordion-body-inner { padding: 0 0 1.5rem; font-size: 1.05rem; color: var(--body-text); }

/* ── Calculator ───────────────────────────────────────────────── */
.calc-section {
 background: var(--asphalt);
 border-radius: var(--radius-lg);
 padding: 2.5rem;
 border: 1px solid var(--border-dark);
}
.calc-label {
 font-family: var(--font-ui);
 font-size: 0.88rem;
 font-weight: 700;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.6);
 margin-bottom: 0.5rem;
 display: block;
}
.calc-input {
 width: 100%;
 padding: 0.75rem 1rem;
 background: var(--asphalt-2);
 border: 2px solid rgba(255,255,255,0.1);
 border-radius: var(--radius);
 color: var(--white);
 font-family: var(--font-display);
 font-size: 1.25rem;
 font-weight: 700;
 transition: border-color 0.2s;
 min-height: 48px;
}
.calc-input:focus {
 outline: none;
 border-color: var(--yellow);
}
.calc-range {
 width: 100%;
 appearance: none;
 height: 6px;
 border-radius: 3px;
 background: var(--concrete);
 outline: none;
 margin: 0.75rem 0;
}
.calc-range::-webkit-slider-thumb {
 appearance: none;
 width: 22px;
 height: 22px;
 border-radius: 50%;
 background: var(--yellow);
 cursor: pointer;
 border: 3px solid var(--asphalt);
 box-shadow: 0 2px 8px rgba(245,194,0,0.4);
}
.calc-range::-moz-range-thumb {
 width: 22px;
 height: 22px;
 border-radius: 50%;
 background: var(--yellow);
 cursor: pointer;
 border: 3px solid var(--asphalt);
}
.calc-result {
 background: var(--yellow);
 border-radius: var(--radius-md);
 padding: 2rem;
 text-align: center;
}
.calc-result-value {
 font-family: var(--font-display);
 font-size: 3.5rem;
 font-weight: 900;
 color: var(--asphalt);
 line-height: 1;
 margin-bottom: 0.35rem;
}
.calc-result-label {
 font-family: var(--font-ui);
 font-size: 0.82rem;
 font-weight: 700;
 letter-spacing: 0.15em;
 text-transform: uppercase;
 color: rgba(14,14,14,0.55);
}
.calc-breakdown {
 display: flex;
 flex-direction: column;
 gap: 0.75rem;
 margin-top: 1.5rem;
}
.calc-breakdown-row {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 0.75rem 1rem;
 background: var(--asphalt-2);
 border-radius: var(--radius);
 border: 1px solid var(--border-dark);
}
.calc-breakdown-label { font-size: 0.92rem; color: rgba(255,255,255,0.72); font-family: var(--font-ui); }
.calc-breakdown-value { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.05rem; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
 background: var(--asphalt);
 border-top: 3px solid var(--yellow);
}
.footer-inner {
 max-width: var(--container);
 margin: 0 auto;
 padding: 0 var(--gutter);
}
.footer-top {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1fr;
 gap: 3rem;
 padding: 4rem 0 3rem;
}
.footer-logo-mark {
 font-family: var(--font-display);
 font-size: 1.4rem;
 font-weight: 900;
 color: var(--yellow);
 text-transform: uppercase;
 letter-spacing: -0.01em;
 margin-bottom: 0.25rem;
}
.footer-tagline {
 font-family: var(--font-ui);
 font-size: 0.75rem;
 font-weight: 600;
 letter-spacing: 0.16em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.5);
 margin-bottom: 1rem;
}
.footer-desc {
 font-size: 0.88rem;
 color: rgba(255,255,255,0.6);
 line-height: 1.7;
 max-width: 280px;
}
.footer-col-title {
 font-family: var(--font-ui);
 font-size: 0.75rem;
 font-weight: 700;
 letter-spacing: 0.16em;
 text-transform: uppercase;
 color: var(--yellow);
 margin-bottom: 1rem;
}
.footer-links {
 display: flex;
 flex-direction: column;
 gap: 0.5rem;
}
.footer-links a {
 font-family: var(--font-ui);
 font-size: 0.92rem;
 color: rgba(255,255,255,0.65);
 transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
 border-top: 1px solid var(--border-dark);
 padding: 1.5rem 0;
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 1rem;
}
.footer-copy {
 font-family: var(--font-ui);
 font-size: 0.85rem;
 color: rgba(255,255,255,0.55);
 margin: 0;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
 font-family: var(--font-ui);
 font-size: 0.85rem;
 color: rgba(255,255,255,0.55);
 transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) {
 .footer-top { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Mobile Overrides ─────────────────────────────────────────── */
@media (max-width: 600px) {
 body { font-size: 1.0625rem; }
 p { font-size: 1.125rem; }
 .lead { font-size: 1.15rem; }
 h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
 .btn { min-height: 52px; }
 .btn-lg { min-height: 56px; }
 .hero-ctas { flex-direction: column; }
 .hero-ctas .btn { width: 100%; justify-content: center; }
 .cta-banner-actions { flex-direction: column; align-items: stretch; }
 .cta-banner-actions .btn { justify-content: center; }
 .hero-stats { gap: 1.5rem; flex-direction: column; }
 .content-with-sidebar { grid-template-columns: 1fr; }
 .sticky-sidebar { position: static; }
 .calc-section { padding: 1.5rem; }
}

@media (hover: none) {
 .btn:hover { transform: none; box-shadow: none; }
 .card:hover { transform: none; box-shadow: none; }
}

/* ============================================================
 MOBILE - 50+ READER OPTIMISED
 ============================================================ */

@media (max-width: 640px) {

 /* Typography - comfortable for 50+ on mobile */
 body { font-size: 1.125rem; line-height: 1.8; }
 p { font-size: 1.1875rem; line-height: 1.85; }
 .lead { font-size: 1.2rem; line-height: 1.7; }

 h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
 h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
 h3 { font-size: clamp(1.5rem, 6vw, 2rem); }
 h4 { font-size: 1.2rem; }

 .prose p { font-size: 1.1875rem; line-height: 1.85; }
 .prose li { font-size: 1.1875rem; }
 .prose h2 { font-size: 1.7rem; }
 .prose h3 { font-size: 1.35rem; }
 .prose .lead { font-size: 1.25rem; }

 .check-list li { font-size: 1.1rem; line-height: 1.7; }
 .accordion-body-inner { font-size: 1.1rem; }
 .accordion-trigger { font-size: 1.05rem; min-height: 56px; }
 .testimonial-text { font-size: 1.05rem; }
 .sidebar-widget p { font-size: 1rem; }
 .process-step-content p { font-size: 1.05rem; }

 /* Tap targets - 52px minimum for 50+ users */
 .btn { min-height: 56px; font-size: 1rem; }
 .btn-lg { min-height: 60px; font-size: 1.05rem; }
 .btn-sm { min-height: 48px; }

 /* Buttons stack and stretch on mobile */
 .hero-ctas { flex-direction: column; }
 .hero-ctas .btn { width: 100%; justify-content: center; }
 .cta-banner-actions { flex-direction: column; align-items: stretch; }
 .cta-banner-actions .btn { justify-content: center; }

 /* Nav */
 .nav-logo-mark { font-size: 1rem; }
 .mobile-nav a { font-size: 1.15rem; min-height: 56px; }

 /* Forms - large comfortable inputs, 1rem prevents iOS zoom */
 .form-input, .form-select, .form-textarea {
 font-size: 1rem;
 min-height: 52px;
 padding: 1rem;
 }
 .form-label { font-size: 0.92rem; margin-bottom: 0.6rem; }
 .form-label-light { font-size: 0.92rem; }
 .form-note { font-size: 0.88rem; line-height: 1.6; }
 .calc-input { font-size: 1.1rem; min-height: 52px; }
 .calc-label { font-size: 0.92rem; }

 /* Value band */
 .value-band-inner { flex-direction: column; gap: 0.875rem; align-items: flex-start; }
 .value-band-dot { display: none; }
 .value-band-item { font-size: 0.95rem; }

 /* Hero stats */
 .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
 .hero-stat-num { font-size: 2rem; }
 .hero-stat-label { font-size: 0.82rem; }

 /* Layout */
 .section { padding: clamp(3rem, 8vw, 5rem) 0; }
 .section-sm { padding: clamp(2rem, 5vw, 3.5rem) 0; }

 /* Cards */
 .card { padding: 1.5rem; }
 .card-dark { padding: 1.5rem; }
 .problem-card { padding: 1.5rem; }
 .problem-card h4 { font-size: 1.1rem; }
 .problem-card p { font-size: 1rem; }

 /* Process steps */
 .process-step { gap: 1rem; }
 .process-num { font-size: 2.2rem; min-width: 48px; }
 .process-step-content h4 { font-size: 1.1rem; }

 /* Sidebar always below content on mobile */
 .sticky-sidebar { position: static; margin-top: 2.5rem; }
 .sidebar-widget { padding: 1.5rem; }
 .sidebar-widget h4 { font-size: 1.1rem; }
 .sidebar-links a { font-size: 1rem; min-height: 44px; display: flex; align-items: center; }

 /* Footer */
 .footer-top { grid-template-columns: 1fr; gap: 2rem; }
 .footer-bottom { flex-direction: column; gap: 0.75rem; }
 .footer-copy { font-size: 0.88rem; }
 .footer-links a { font-size: 0.95rem; min-height: 40px; display: flex; align-items: center; }

 /* Calculator */
 .calc-section { padding: 1.5rem; }
 .calc-result-value { font-size: 2.8rem; }
 .calc-breakdown-label { font-size: 0.95rem; }
 .calc-breakdown-value { font-size: 1.1rem; }

 /* Inline grid overrides - catches all the inline style grids */
 [style*="grid-template-columns:1fr 1fr"],
 [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
 [style*="grid-template-columns:repeat(3,1fr)"],
 [style*="grid-template-columns: repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
 [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }
 [style*="grid-template-columns:repeat(auto-fill"] { grid-template-columns: 1fr !important; }
}

/* 375px (iPhone SE) - bare minimum */
@media (max-width: 375px) {
 :root { --gutter: 1.125rem; }
 .nav-logo-mark { font-size: 0.88rem; }
 .nav-cta { display: none; }
 .hero-stats { grid-template-columns: 1fr; }
 h1 { font-size: clamp(2rem, 11vw, 2.4rem); }
}

/* Touch devices - remove hover effects that confuse touch users */
@media (hover: none) {
 .btn:hover, .card:hover, .problem-card:hover { transform: none; box-shadow: none; }
}
/* ── Nav overflow fix ──────────────────────────────── */
.nav-links { flex-wrap: nowrap; white-space: nowrap; }
.nav-links a { white-space: nowrap; font-size: 0.75rem; letter-spacing: 0.05em; }

/* ── Hero bg image fix ─────────────────────────────── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }


/* PROBLEM CARD HARD OVERRIDE */
.problem-card p { color: rgba(255,255,255,0.88) !important; }


/* ════════════════════════════════════════════════════════════
   MOBILE FIXES — v11
   ════════════════════════════════════════════════════════════ */

/* Hamburger — force visible on mobile */
@media (max-width: 960px) {
  .nav-hamburger {
    display: flex !important;
    cursor: pointer;
    z-index: 200;
  }
  .nav-links  { display: none !important; }
  .nav-cta    { display: none !important; }

  /* Mobile nav overlay */
  .mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0e0e0e;
    z-index: 150;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    border-top: 3px solid #f5c200;
  }
  .mobile-nav.open { display: flex !important; }

  .mobile-nav a {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-nav a:hover { color: #f5c200; }

  .mobile-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  /* Page hero: solid dark overlay on mobile (left-right gradient fails on narrow screens) */
  .page-hero {
    background-color: #0e0e0e !important;
  }
  .page-hero > div[style*="linear-gradient"],
  .page-hero > div[style*="rgba"] {
    background: rgba(10,10,14,0.88) !important;
  }

  /* Hero text sizes */
  .page-hero-inner h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }
  .page-hero .lead {
    font-size: 1rem;
  }

  /* Homepage hero: solid dark on mobile */
  .hero-bg-overlay {
    background: rgba(10,10,14,0.88) !important;
  }
}

/* Hamburger animation */
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile CTA button padding tweak */
.mobile-cta-group .btn {
  padding: 0.7rem 1.25rem !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em;
}

/* 4-photo project grid — responsive */
@media (max-width: 640px) {
  .grid-4-photos { grid-template-columns: 1fr 1fr !important; }
}
