/* ════════════════════════════════════════════
   EA Pro Roofing — theme.css  v1.0.0
   Palette: Navy #0d2240 · Amber #f59e0b · Warm White #f8f7f4
   Fonts:   Syne (display) · DM Sans (body)
   ════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --ea-navy:     #0d2240;
    --ea-amber:    #f59e0b;
    --ea-bg:       #f8f7f4;
    --ea-card:     #ffffff;
    --ea-text:     #1a1a2e;
    --ea-muted:    #6b7280;
    --ea-border:   rgba(13,34,64,0.10);
    --ea-shadow:   0 20px 60px rgba(13,34,64,0.10);
    --ea-radius:   18px;
    --ea-radius-sm:10px;
    --ea-max:      1220px;
    --ea-font-d:   'Syne', sans-serif;
    --ea-font-b:   'DM Sans', sans-serif;
    /* Customizer overrides these via inline style */
    --ea-hero-height: 95vh;
    --ea-hero-overlay: rgba(13,34,64,0.62);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--ea-font-b);
    background: var(--ea-bg);
    color: var(--ea-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: var(--ea-navy); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

.container {
    max-width: var(--ea-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
    font-family: var(--ea-font-d);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ea-navy);
}
h1 { font-size: clamp(36px, 5vw, 72px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 52px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 700; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: var(--ea-font-b);
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
    text-decoration: none !important;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-amber {
    background: var(--ea-amber);
    color: #1a1200;
    box-shadow: 0 8px 24px rgba(245,158,11,0.30);
}
.btn-amber:hover { box-shadow: 0 14px 36px rgba(245,158,11,0.40); background: #e88f04; }

.btn-navy {
    background: var(--ea-navy);
    color: #fff;
    box-shadow: 0 8px 24px rgba(13,34,64,0.20);
}
.btn-navy:hover { box-shadow: 0 14px 36px rgba(13,34,64,0.30); background: #0a1b31; }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 14px; }
.btn-sm { padding: 10px 18px; font-size: 13px; border-radius: 8px; }

/* ═══ HEADER ═══ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13,34,64,0.92);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s ease;
}
.site-header.scrolled { background: rgba(13,34,64,0.98); }

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 70px;
}

.site-branding { flex: 0 0 auto; }
.site-name-link {
    font-family: var(--ea-font-d);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.site-branding .custom-logo { height: 48px; width: auto; }

.main-navigation { flex: 1 1 auto; }
.nav-menu {
    display: flex;
    gap: 4px;
    list-style: none;
    justify-content: center;
}
.nav-menu li a {
    display: block;
    padding: 8px 14px;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
    text-decoration: none;
}
.nav-menu li a:hover, .nav-menu li.current-menu-item a {
    color: #fff;
    background: rgba(255,255,255,0.10);
}

.header-cta {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
    text-decoration: none;
}
.header-phone:hover { color: var(--ea-amber); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.hamburger-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ HERO ═══ */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    height: var(--ea-hero-height);
    min-height: 560px;
    background-color: var(--ea-navy);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: 70px; /* header height offset */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--ea-hero-overlay);
    z-index: 1;
}

/* Video backgrounds */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-youtube {
    position: absolute;
    top: 50%; left: 50%;
    width: 177.78vh; /* 16:9 */
    height: 56.25vw; /* 16:9 */
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.35);
    color: var(--ea-amber);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.hero-title {
    color: #fff;
    font-size: clamp(38px, 5.5vw, 80px);
    font-weight: 800;
    max-width: 14ch;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: heroTitleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-subtitle {
    color: rgba(255,255,255,0.82);
    font-size: clamp(16px, 2vw, 20px);
    max-width: 52ch;
    margin-bottom: 36px;
    animation: heroSubIn 0.8s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
    animation: heroCTAIn 0.8s 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-top: 28px;
    animation: heroTrustIn 0.8s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    font-weight: 500;
}
.trust-item svg { flex: 0 0 auto; color: var(--ea-amber); }

.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-dot {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.70);
    border-radius: 2px;
    animation: scrollDot 2s 1s ease-in-out infinite;
}

@keyframes heroTitleIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroSubIn   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroCTAIn   { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroTrustIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollDot   { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.4; } }

/* ═══ STATS BAR ═══ */
.stats-bar {
    background: var(--ea-navy);
    padding: 0;
}
.stats-inner {
    display: flex;
    gap: 0;
}
.stat-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 28px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-value {
    font-family: var(--ea-font-d);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: var(--ea-amber);
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.60);
    font-weight: 500;
    text-align: center;
}

/* ═══ SECTION HEADERS ═══ */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.section-header--light .section-title { color: #fff; }
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ea-amber);
    margin-bottom: 12px;
}
.section-eyebrow--light { color: rgba(245,158,11,0.9); }
.section-title { margin-bottom: 16px; }
.section-subtitle {
    color: var(--ea-muted);
    font-size: 17px;
    line-height: 1.65;
}
.section-body { font-size: 16px; color: var(--ea-muted); line-height: 1.7; margin-bottom: 24px; max-width: 52ch; }

/* ═══ SERVICES SECTION ═══ */
.services-section {
    padding: 100px 0;
    background: var(--ea-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--ea-card);
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius);
    padding: 32px 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    opacity: 0;
    animation: cardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ea-shadow);
    border-color: rgba(13,34,64,0.18);
}

.service-icon-wrap {
    width: 52px; height: 52px;
    background: rgba(13,34,64,0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.2s;
}
.service-card:hover .service-icon-wrap { background: rgba(245,158,11,0.12); }
.service-icon { width: 26px; height: 26px; color: var(--ea-navy); transition: color 0.2s; }
.service-card:hover .service-icon { color: var(--ea-amber); }

.service-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: var(--ea-navy); }
.service-price {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ea-amber);
    background: rgba(245,158,11,0.10);
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 14px;
}
.service-desc { font-size: 14px; color: var(--ea-muted); line-height: 1.6; margin-bottom: 20px; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ea-navy);
    transition: color 0.15s, gap 0.15s;
    text-decoration: none;
}
.service-link:hover { color: var(--ea-amber); gap: 8px; text-decoration: none; }

@keyframes cardIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ═══ WHY US ═══ */
.why-us-section { padding: 100px 0; background: #fff; }
.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-list { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--ea-text);
    font-weight: 500;
}
.why-check { flex: 0 0 20px; width: 20px; height: 20px; color: var(--ea-amber); margin-top: 2px; }

.why-us-visual {
    position: relative;
    height: 440px;
}
.why-card {
    position: absolute;
    background: var(--ea-card);
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius);
    padding: 28px 32px;
    box-shadow: var(--ea-shadow);
    text-align: center;
}
.why-card--1 { top: 0; left: 0; width: 190px; }
.why-card--2 { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 170px; }
.why-card--3 { bottom: 0; right: 0; width: 200px; }
.wc-number {
    font-family: var(--ea-font-d);
    font-size: 44px;
    font-weight: 800;
    color: var(--ea-navy);
    line-height: 1;
    margin-bottom: 8px;
}
.wc-label { font-size: 13px; color: var(--ea-muted); font-weight: 600; }
.why-badge {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-110%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--ea-amber), #e88f04);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1a1200;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 8px 24px rgba(245,158,11,0.35);
    gap: 4px;
}
.why-badge svg { color: #1a1200; }

/* ═══ ESTIMATOR CTA SECTION ═══ */
.estimator-cta-section {
    background: var(--ea-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.estimator-cta-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,0.12), transparent 65%);
    pointer-events: none;
}
.estimator-cta-section .section-title { color: #fff; }

.estimator-placeholder {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--ea-radius);
    padding: 40px;
    color: rgba(255,255,255,0.70);
}
.estimator-placeholder code {
    background: rgba(245,158,11,0.15);
    color: var(--ea-amber);
    padding: 2px 8px;
    border-radius: 4px;
}

/* ═══ MATERIALS ═══ */
.materials-section { padding: 100px 0; background: var(--ea-bg); }
.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.material-card {
    background: var(--ea-card);
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.material-card:hover { transform: translateY(-3px); box-shadow: var(--ea-shadow); }
.material-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ea-navy), var(--ea-amber));
    border-radius: 2px 2px 0 0;
}
.material-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--ea-amber);
    margin-bottom: 10px;
}
.material-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--ea-navy); }
.material-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--ea-amber);
    margin-bottom: 10px;
    font-family: var(--ea-font-d);
}
.material-desc { font-size: 13px; color: var(--ea-muted); line-height: 1.6; margin-bottom: 16px; }
.material-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--ea-navy);
    text-decoration: none;
    transition: color 0.15s;
}
.material-link:hover { color: var(--ea-amber); text-decoration: none; }

/* ═══ TESTIMONIALS ═══ */
.testimonials-section {
    background: var(--ea-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.testimonials-section::after {
    content: '"';
    position: absolute;
    top: -60px; right: 40px;
    font-size: 400px;
    font-family: var(--ea-font-d);
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--ea-radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.2s, border-color 0.2s;
}
.review-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.review-stars { display: flex; gap: 3px; color: var(--ea-amber); }
.review-text {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
    font-style: italic;
    margin-bottom: 0;
}
.review-author { display: flex; flex-direction: column; gap: 2px; }
.review-author strong { color: #fff; font-size: 14px; font-weight: 700; }
.review-author span { color: rgba(255,255,255,0.45); font-size: 12px; }

/* ═══ CONTACT STRIP ═══ */
.contact-strip {
    background: linear-gradient(135deg, var(--ea-amber) 0%, #e88f04 100%);
    padding: 60px 0;
}
.contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.contact-strip-text h2 {
    color: #1a1200;
    font-size: clamp(22px, 3vw, 36px);
    margin-bottom: 8px;
}
.contact-strip-text p { color: rgba(26,18,0,0.72); margin-bottom: 0; }
.contact-strip-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.contact-strip .btn-amber {
    background: var(--ea-navy);
    color: #fff;
    box-shadow: 0 8px 24px rgba(13,34,64,0.30);
}
.contact-strip .btn-amber:hover { background: #0a1b31; }
.contact-strip .btn-outline-white {
    color: #1a1200;
    border-color: rgba(26,18,0,0.35);
}
.contact-strip .btn-outline-white:hover { background: rgba(26,18,0,0.08); }

/* ═══ FOOTER ═══ */
.site-footer {
    background: #060f1c;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}
.footer-top {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    padding: 64px 0 48px;
}
.footer-brand .custom-logo { height: 40px; width: auto; margin-bottom: 14px; }
.footer-site-name {
    font-family: var(--ea-font-d);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}
.footer-tagline { color: var(--ea-amber); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-contact { margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-contact a:hover { color: var(--ea-amber); }
.footer-license { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.35); }

.footer-widgets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-widget-title { font-family: var(--ea-font-d); color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.footer-widget a { color: rgba(255,255,255,0.55); display: block; margin-bottom: 8px; transition: color 0.15s; text-decoration: none; }
.footer-widget a:hover { color: var(--ea-amber); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-copy { color: rgba(255,255,255,0.35); margin-bottom: 0; }
.footer-copy a { color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer-copy a:hover { color: var(--ea-amber); }
.footer-nav { display: flex; gap: 20px; list-style: none; }
.footer-nav a { color: rgba(255,255,255,0.45); font-size: 13px; transition: color 0.15s; text-decoration: none; }
.footer-nav a:hover { color: var(--ea-amber); }

/* ═══ INTERIOR PAGES ═══ */
.page-hero--simple {
    background: var(--ea-navy);
    padding: 120px 0 60px;
    margin-top: 70px;
}
.page-title {
    color: #fff;
    font-size: clamp(28px, 4vw, 52px);
}
.site-main {
    padding: 60px 0 80px;
}
.site-main--blog { padding-top: 40px; }
.content-area--page { max-width: 800px; }
.content-area--page .entry-content { font-size: 16px; line-height: 1.75; }
.content-area--page .entry-content h2,
.content-area--page .entry-content h3 { margin-top: 2em; margin-bottom: 0.5em; }

/* Blog posts grid */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
    background: var(--ea-card);
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--ea-shadow); }
.post-thumb { display: block; overflow: hidden; aspect-ratio: 16/9; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-card-body { padding: 24px; }
.post-meta { font-size: 12px; color: var(--ea-muted); margin-bottom: 8px; }
.post-card-title { font-size: 19px; margin-bottom: 10px; }
.post-card-title a { color: var(--ea-navy); text-decoration: none; }
.post-card-title a:hover { color: var(--ea-amber); }
.post-excerpt { font-size: 14px; color: var(--ea-muted); margin-bottom: 16px; }
.pagination { margin-top: 40px; text-align: center; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
    .services-grid, .materials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-inner { gap: 48px; }
}

@media (max-width: 900px) {
    .why-us-inner { grid-template-columns: 1fr; }
    .why-us-visual { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-widgets { grid-template-columns: 1fr 1fr; }
    .posts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: clamp(32px, 7vw, 52px); }
    h2 { font-size: clamp(26px, 5vw, 40px); }

    /* Header */
    .main-navigation { display: none; position: absolute; top: 70px; left: 0; right: 0; background: rgba(13,34,64,0.98); padding: 12px 0 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .main-navigation.is-open { display: block; }
    .nav-menu { flex-direction: column; align-items: flex-start; padding: 0 24px; gap: 2px; }
    .header-phone { display: none; }
    .menu-toggle { display: flex; }

    /* Hero */
    .hero-section { background-attachment: scroll; }
    .hero-cta-group { flex-direction: column; align-items: flex-start; }
    .hero-trust-bar { gap: 14px; }
    .hero-trust-bar .trust-item:nth-child(n+3) { display: none; }

    /* Grids */
    .services-grid, .materials-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr 1fr; display: grid; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }

    /* Contact strip */
    .contact-strip-inner { flex-direction: column; text-align: center; }

    /* Footer */
    .footer-widgets { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Misc */
    .section-header { margin-bottom: 40px; }
    .services-section, .why-us-section, .estimator-cta-section,
    .materials-section, .testimonials-section { padding: 64px 0; }
    .posts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .hero-trust-bar .trust-item { display: none; }
    .hero-trust-bar .trust-item:first-child { display: flex; }
}
