/*
 * MVP Mobile Tire Shop — Section components
 * Hero banners, market selector cards, emergency strip, trust bar,
 * services grid, why-us tiles, steps, reviews, service areas, FAQ,
 * contact section, CTA bands, page/city heroes, entry content, and
 * the blog archive cards. Ported verbatim from the live site so every
 * visual detail (including the pulsing market-dot indicators used
 * elsewhere in the header) renders identically.
 */

/* ============================================================
   HERO — WITH BANNER IMAGES
   ============================================================ */
.hero { position: relative; overflow: hidden; min-height: 90vh; display: flex; align-items: center; }

.hero-banner-img { position: absolute; inset: 0; background-size: cover; background-repeat: no-repeat; transform: scale(1.04); transition: transform 8s ease; }
.hero.loaded .hero-banner-img { transform: scale(1); }

.hero-banner-kc { background-image: url('../images/hero-kansas-city.jpg'); background-position: center 40%; }
.hero-banner-fl { background-image: url('../images/hero-tampa-bay.jpg'); background-position: center 35%; }

/* Custom per-page banner video (uploaded via the "Page Banner" meta box).
   Covers the same area as .hero-banner-img / .page-hero-bg regardless of
   which hero/page-hero/city-hero section it's placed in — all of those
   are position:relative;overflow:hidden, so this just needs to fill them. */
.hero-banner-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.hero-overlay { position: absolute; inset: 0; }
.hero-overlay-kc {
    background: linear-gradient(105deg, rgba(11,25,41,0.92) 0%, rgba(11,25,41,0.78) 45%, rgba(11,25,41,0.35) 100%),
                linear-gradient(0deg, rgba(11,25,41,0.6) 0%, transparent 50%);
}
.hero-overlay-fl {
    background: linear-gradient(105deg, rgba(11,25,41,0.90) 0%, rgba(8,105,129,0.55) 55%, rgba(11,25,41,0.25) 100%),
                linear-gradient(0deg, rgba(11,25,41,0.55) 0%, transparent 55%);
}

.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px); background-size: 60px 60px; }
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 80px 20px; max-width: var(--max-w); margin: 0 auto; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,166,35,.15); border: 1px solid rgba(245,166,35,.4); color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 24px; }
.hero-badge::before { content:''; width:8px; height:8px; background:var(--gold); border-radius:50%; animation: pulse-dot 1.8s infinite; }

.hero h1 { font-family: var(--font-display); font-size: clamp(3rem,7vw,5.2rem); font-weight: 900; line-height: .96; color: #fff; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero h1 .accent { color: var(--red); }
.hero h1 .accent-fl { color: #38bdf8; }

.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 540px; margin-bottom: 36px; line-height: 1.65; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stat .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat .num span { color: var(--red); }
.hero-stat .label { font-size: .76rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-top: 4px; }

.hero--right .hero-inner { text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.hero--right .hero-sub, .hero--right .hero-badge { text-align: right; }
.hero--center .hero-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero--center .hero-sub { text-align: center; }
.hero-banner-img.zoom-in { background-position: center 60%; }
.hero-banner-img.zoom-top { background-position: center 20%; }

/* ============================================================
   SERVICE AREA SELECTOR (Homepage feature section)
   ============================================================ */
.service-area-selector { background: var(--navy); padding: 56px 0; border-bottom: 3px solid rgba(208,17,26,0.3); }
.service-area-selector .section-header.center { margin-bottom: 40px; }
.service-area-selector .section-title { font-size: clamp(1.8rem,4vw,2.6rem); }
.location-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.location-card { background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 36px 32px; transition: var(--transition); position: relative; overflow: hidden; }
.location-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; transition: var(--transition); }
.location-card.kc::before { background: linear-gradient(90deg, var(--red), var(--kc-accent)); }
.location-card.fl::before { background: linear-gradient(90deg, var(--red), var(--fl-accent)); }
.location-card:hover { border-color: rgba(255,255,255,0.25); transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.3); }
.location-card.kc:hover { background: rgba(30,64,175,0.12); }
.location-card.fl:hover { background: rgba(8,145,178,0.12); }

.lc-icon { width: 64px; height: 64px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 20px; }
.lc-icon.kc { background: rgba(30,64,175,0.2); }
.lc-icon.fl { background: rgba(8,145,178,0.2); }

.lc-market { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.lc-market.kc { color: #93c5fd; }
.lc-market.fl { color: #67e8f9; }

.lc-title { font-family: var(--font-display); font-size: 1.9rem; font-weight: 900; color: #fff; margin-bottom: 6px; line-height: 1; }
.lc-subtitle { font-size: .88rem; color: var(--gray-400); margin-bottom: 20px; }
.lc-phone { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 900; margin-bottom: 8px; transition: var(--transition); }
.lc-phone.kc { color: #93c5fd; }
.lc-phone.fl { color: #67e8f9; }
.lc-phone:hover { color: var(--gold); }
.lc-phone-label { font-size: .74rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.lc-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 20px 0; }
.lc-btns { display: flex; flex-direction: column; gap: 10px; }
.lc-services { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.lc-service-tag { font-size: .74rem; font-weight: 600; color: var(--gray-400); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 4px 10px; }

/* ============================================================
   EMERGENCY STRIP
   ============================================================ */
.emergency-strip { background: var(--red); padding: 18px 0; }
.emergency-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.es-left { display: flex; align-items: center; gap: 14px; color: #fff; }
.es-icon { width: 42px; height: 42px; background: rgba(255,255,255,.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.es-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; }
.es-text .t { font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; }
.es-text .s { font-size: .82rem; opacity: .85; }
.es-phones { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--navy-mid); padding: 20px 0; }
.trust-bar .container { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--gray-400); }
.trust-item svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }
.trust-item span { font-size: .84rem; font-weight: 600; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 20px; margin-top: 48px; }
.service-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 28px 24px; transition: var(--transition); position: relative; overflow: hidden; display: block; text-decoration: none; }
.service-card::after { content:''; position:absolute; bottom:0;left:0;right:0; height:3px; background:var(--red); transform:scaleX(0); transform-origin:left; transition:var(--transition); }
.service-card:hover { border-color:var(--red); box-shadow:var(--shadow-md); transform:translateY(-3px); }
.service-card:hover::after { transform:scaleX(1); }
.service-card:hover .svc-icon { background:var(--red); }
.service-card:hover .svc-icon svg { stroke:#fff; }
.svc-icon { width:52px;height:52px; background:var(--gray-100); border-radius:10px; display:flex;align-items:center;justify-content:center; margin-bottom:16px; transition:var(--transition); }
.svc-icon svg { width:26px;height:26px; stroke:var(--red);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round; }
.service-card h3 { font-family:var(--font-display);font-size:1.2rem;font-weight:700;color:var(--navy);margin-bottom:8px; }
.service-card p  { font-size:.85rem;color:var(--gray-600);line-height:1.55; }
.svc-link { display:inline-flex;align-items:center;gap:4px;font-size:.82rem;font-weight:700;color:var(--red);margin-top:14px; }
.service-card.featured-service { border-color: var(--gold); }
.service-card.featured-service::before { content:'NEW'; position:absolute;top:12px;right:12px;background:var(--gold);color:var(--navy);font-size:.65rem;font-weight:900;padding:2px 8px;border-radius:100px;letter-spacing:.08em; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:24px;margin-top:48px; }
.why-card { background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:12px;padding:28px;transition:var(--transition); }
.why-card:hover { background:rgba(255,255,255,.09);border-color:rgba(208,17,26,.5); }
.why-num { font-family:var(--font-display);font-size:3rem;font-weight:900;color:rgba(208,17,26,.3);line-height:1;margin-bottom:12px; }
.why-card h3 { font-family:var(--font-display);font-size:1.1rem;font-weight:700;color:#fff;margin-bottom:8px; }
.why-card p  { font-size:.86rem;color:var(--gray-400);line-height:1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-row { display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:56px;position:relative; }
.steps-row::before { content:'';position:absolute;top:32px;left:calc(12.5% + 20px);right:calc(12.5% + 20px);height:2px;background:rgba(208,17,26,.25); }
.step { display:flex;flex-direction:column;align-items:center;text-align:center;padding:0 16px; }
.step-num { width:64px;height:64px;background:var(--red);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:1.5rem;font-weight:900;margin-bottom:20px;position:relative;z-index:1;box-shadow:0 0 0 8px rgba(208,17,26,.12); }
.step h3 { font-family:var(--font-display);font-size:1.1rem;font-weight:700;color:var(--navy);margin-bottom:8px; }
.step p  { font-size:.84rem;color:var(--gray-600); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:20px;margin-top:48px; }
.review-card { background:#fff;border:1.5px solid var(--gray-200);border-radius:12px;padding:28px;transition:var(--transition); }
.review-card:hover { box-shadow:var(--shadow-md); }
.stars { color:var(--gold);font-size:1.1rem;margin-bottom:14px; }
.review-text { font-size:.91rem;color:var(--gray-600);line-height:1.65;font-style:italic;margin-bottom:18px; }
.reviewer { display:flex;align-items:center;gap:12px; }
.reviewer-avatar { width:42px;height:42px;background:var(--navy);border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:1.1rem;font-weight:700;color:#fff;flex-shrink:0; }
.reviewer-name { font-weight:700;font-size:.9rem;color:var(--navy); }
.reviewer-date { font-size:.76rem;color:var(--gray-400);margin-top:2px; }
.google-badge { display:flex;align-items:center;gap:12px;background:var(--gray-100);padding:14px 20px;border-radius:10px;margin-top:32px;width:fit-content; }
.google-badge-icon { display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:#fff;border-radius:8px;box-shadow:var(--shadow-sm);flex-shrink:0; }
.google-badge-text { line-height:1.5; }
.google-badge .rating { font-weight:700;font-size:1rem;color:var(--navy); }
.google-badge .sub { font-size:.78rem;color:var(--gray-600); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(165px,1fr));gap:10px;margin-top:40px; }
.area-tag { display:block;background:rgba(255,255,255,.08);border:1.5px solid rgba(255,255,255,.12);border-radius:8px;padding:12px 16px;font-size:.86rem;font-weight:600;color:#fff;text-align:center;transition:var(--transition); }
.area-tag:hover { border-color:var(--red);background:rgba(208,17,26,.2); }
.area-tag.featured { background:rgba(208,17,26,.25);border-color:var(--red); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top:48px;display:flex;flex-direction:column;gap:12px; }
.faq-item { border:1.5px solid var(--gray-200);border-radius:10px;overflow:hidden;transition:var(--transition); }
.faq-item.is-open { border-color:var(--red); }
.faq-question { width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:20px 24px;background:none;border:none;cursor:pointer;text-align:left;font-size:.97rem;font-weight:700;color:var(--navy);transition:var(--transition); }
.faq-question:hover { color:var(--red); }
.faq-arrow { flex-shrink:0;width:22px;height:22px;border-radius:50%;background:var(--gray-100);display:flex;align-items:center;justify-content:center;transition:var(--transition); }
.faq-item.is-open .faq-arrow { background:var(--red);transform:rotate(180deg); }
.faq-arrow svg { width:12px;height:12px;stroke:var(--gray-600);fill:none;stroke-width:2.5; }
.faq-item.is-open .faq-arrow svg { stroke:#fff; }
.faq-answer { padding:0 24px;max-height:0;overflow:hidden;transition:max-height .35s ease,padding .2s ease;font-size:.91rem;color:var(--gray-600);line-height:1.7; }
.faq-item.is-open .faq-answer { max-height:400px;padding-bottom:20px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display:grid;grid-template-columns:1fr 1fr;gap:48px;margin-top:48px;align-items:start; }
.contact-info { display:flex;flex-direction:column;gap:20px; }
.contact-item { display:flex;gap:16px;align-items:flex-start; }
.contact-icon { width:44px;height:44px;background:var(--red);border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.contact-icon svg { width:20px;height:20px;stroke:#fff;fill:none;stroke-width:2; }
.c-label { font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--gray-400);margin-bottom:4px; }
.c-value { font-size:.95rem;font-weight:600;color:var(--gray-800); }
.contact-form-box { background:var(--gray-100);border-radius:14px;padding:36px; }
.contact-form-box h3 { font-family:var(--font-display);font-size:1.5rem;font-weight:700;color:var(--navy);margin-bottom:4px; }
.contact-form-box > p { font-size:.85rem;color:var(--gray-600);margin-bottom:20px; }
.map-embed { width:100%;height:280px;border-radius:12px;overflow:hidden;margin-top:28px;border:none; }

.office-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.office-card { border-radius: 12px; padding: 24px; }
.office-card.kc { background: rgba(30,64,175,0.08); border: 1.5px solid rgba(30,64,175,0.2); }
.office-card.fl { background: rgba(8,145,178,0.08); border: 1.5px solid rgba(8,145,178,0.2); }
.office-card h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.office-card .oc-phone { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; display: block; margin-bottom: 12px; }
.office-card.kc .oc-phone { color: var(--kc-accent); }
.office-card.fl .oc-phone { color: var(--fl-accent); }

/* WPForms overrides — keep visual parity if WPForms is the active engine */
.wpforms-container .wpforms-field input,
.wpforms-container .wpforms-field select,
.wpforms-container .wpforms-field textarea { border:1.5px solid var(--gray-200)!important;border-radius:8px!important;padding:12px 16px!important;font-size:.93rem!important;transition:var(--transition)!important;background:#fff!important;color:var(--gray-800)!important;width:100%!important; }
.wpforms-container .wpforms-field input:focus,
.wpforms-container .wpforms-field select:focus,
.wpforms-container .wpforms-field textarea:focus { border-color:var(--red)!important;box-shadow:0 0 0 3px rgba(208,17,26,.1)!important;outline:none!important; }
.wpforms-container .wpforms-submit-container .wpforms-submit { background:var(--red)!important;border:2px solid var(--red)!important;border-radius:var(--radius)!important;padding:14px 28px!important;font-size:.95rem!important;font-weight:700!important;color:#fff!important;cursor:pointer!important;transition:var(--transition)!important; }
.wpforms-container .wpforms-submit-container .wpforms-submit:hover { background:var(--red-dark)!important; }
.wpforms-container .wpforms-field-label { font-size:.83rem!important;font-weight:600!important;color:var(--gray-600)!important;margin-bottom:5px!important; }

/* Native fallback form (mvp-quote-form) uses the same input/button styling */
.mvp-quote-form .form-row { margin-bottom: 16px; }
.mvp-quote-form label { display:block;font-size:.83rem;font-weight:600;color:var(--gray-600);margin-bottom:5px; }
.mvp-quote-form input,
.mvp-quote-form select,
.mvp-quote-form textarea { border:1.5px solid var(--gray-200);border-radius:8px;padding:12px 16px;font-size:.93rem;transition:var(--transition);background:#fff;color:var(--gray-800);width:100%; }
.mvp-quote-form input:focus,
.mvp-quote-form select:focus,
.mvp-quote-form textarea:focus { border-color:var(--red);box-shadow:0 0 0 3px rgba(208,17,26,.1);outline:none; }
.mvp-quote-form .two-col { display:grid;grid-template-columns:1fr 1fr;gap:16px; }
.mvp-quote-form button[type="submit"] { background:var(--red);border:2px solid var(--red);border-radius:var(--radius);padding:14px 28px;font-size:.95rem;font-weight:700;color:#fff;cursor:pointer;transition:var(--transition); }
.mvp-quote-form button[type="submit"]:hover { background:var(--red-dark); }
.mvp-quote-form .form-error { color:var(--red-dark);font-size:.8rem;margin-top:4px; }
.mvp-quote-form .form-success { background:rgba(34,197,94,.12);border:1.5px solid rgba(34,197,94,.4);color:#166534;border-radius:8px;padding:16px 20px;font-size:.9rem;font-weight:600; }
.mvp-quote-form [aria-invalid="true"] { border-color:var(--red-dark)!important; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; min-height: 380px; display: flex; align-items: center; padding: 72px 0; }
.page-hero-simple { min-height: 220px; padding: 0; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-repeat: no-repeat; }
.page-hero-bg.kc { background-image: url('../images/hero-kansas-city.jpg'); }
.page-hero-bg.fl { background-image: url('../images/hero-tampa-bay.jpg'); }
.page-hero-bg.crop-center { background-position: center center; }
.page-hero-bg.crop-left   { background-position: 20% center; }
.page-hero-bg.crop-right  { background-position: 80% center; }
.page-hero-bg.crop-top    { background-position: center 20%; }
.page-hero-bg.crop-bottom { background-position: center 75%; }

.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,25,41,0.92) 0%, rgba(11,25,41,0.7) 55%, rgba(11,25,41,0.3) 100%); }
.page-hero-overlay.fl-tint { background: linear-gradient(105deg, rgba(11,25,41,0.90) 0%, rgba(8,105,129,0.55) 55%, rgba(11,25,41,0.2) 100%); }
.page-hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-tag { display:inline-flex;align-items:center;gap:8px;background:rgba(245,166,35,.15);border:1px solid rgba(245,166,35,.35);color:var(--gold);font-size:.74rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:6px 14px;border-radius:100px;margin-bottom:18px; }
.page-hero h1 { font-family:var(--font-display);font-size:clamp(2.4rem,5vw,3.8rem);font-weight:900;line-height:.98;color:#fff;margin-bottom:16px; text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.page-hero h1 em { color:var(--red);font-style:normal; }
.page-hero-desc { color:rgba(255,255,255,.85);font-size:1rem;max-width:520px;margin-bottom:28px;line-height:1.7; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.hero-cta-pair { display:flex;gap:12px;flex-wrap:wrap; }

/* ============================================================
   CITY PAGE HERO
   ============================================================ */
.city-hero { position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: center; padding: 72px 0; }
.city-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.city-cta-box { background: rgba(208,17,26,.12); border: 1px solid rgba(208,17,26,.3); border-radius: 14px; padding: 28px 24px; text-align: center; min-width: 220px; }
.city-cta-box .cbox-label { font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--gray-400);margin-bottom:8px; }
.city-cta-box .cbox-phone { font-family:var(--font-display);font-size:2rem;font-weight:900;color:#fff;display:block;margin-bottom:12px; }
.city-cta-box .cbox-sub { font-size:.78rem;color:var(--gray-400); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--red); padding: 60px 0; text-align: center; }
.cta-band h2 { font-family:var(--font-display);font-size:clamp(2rem,4vw,2.8rem);font-weight:900;color:#fff;margin-bottom:12px; }
.cta-band p  { color:rgba(255,255,255,.85);font-size:1.05rem;margin-bottom:32px;max-width:520px;margin-left:auto;margin-right:auto; }
.cta-band-btns { display:flex;gap:16px;justify-content:center;flex-wrap:wrap; }

.cta-band-dual { background: var(--navy); padding: 60px 0; }
.cta-band-dual h2 { font-family:var(--font-display);font-size:clamp(1.8rem,4vw,2.6rem);font-weight:900;color:#fff;text-align:center;margin-bottom:12px; }
.cta-band-dual p { color:var(--gray-400);text-align:center;margin-bottom:32px;font-size:1rem; }
.cta-dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 840px; margin: 0 auto; }
.cta-dual-card { border-radius: 12px; padding: 28px 24px; text-align: center; }
.cta-dual-card.kc { background: rgba(30,64,175,0.15); border: 1.5px solid rgba(30,64,175,0.3); }
.cta-dual-card.fl { background: rgba(8,145,178,0.15); border: 1.5px solid rgba(8,145,178,0.3); }
.cta-dual-card h3 { font-family:var(--font-display);font-size:1.4rem;font-weight:900;color:#fff;margin-bottom:4px; }
.cta-dual-card .dc-phone { font-family:var(--font-display);font-size:1.8rem;font-weight:900;display:block;margin-bottom:16px; }
.cta-dual-card.kc .dc-phone { color: #93c5fd; }
.cta-dual-card.fl .dc-phone { color: #67e8f9; }

/* ============================================================
   ENTRY CONTENT
   ============================================================ */
.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4 { font-family:var(--font-display);color:var(--navy);font-weight:700;line-height:1.1;margin:24px 0 12px; }
.entry-content h2 { font-size:1.9rem; }
.entry-content h3 { font-size:1.4rem; }
.entry-content p  { font-size:.94rem;color:var(--gray-600);line-height:1.78;margin-bottom:16px; }
.entry-content ul,.entry-content ol { padding-left:24px;margin-bottom:16px; }
.entry-content li { font-size:.93rem;color:var(--gray-600);margin-bottom:8px;line-height:1.65; }
.entry-content a  { color:var(--red);text-decoration:underline; }
.entry-content strong { color:var(--gray-800);font-weight:700; }
.entry-content blockquote { border-left:4px solid var(--red);padding:12px 20px;margin:20px 0;background:var(--gray-100);border-radius:0 8px 8px 0;font-style:italic;color:var(--gray-600); }
.entry-content img { border-radius:var(--radius);margin:20px 0; }
.page-content-wrap { padding:60px 0; }
.page-content-inner { max-width:820px; }

/* ============================================================
   ARCHIVE
   ============================================================ */
.posts-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:28px;margin-top:40px; }
.post-card { background:#fff;border:1.5px solid var(--gray-200);border-radius:12px;overflow:hidden;transition:var(--transition); }
.post-card:hover { box-shadow:var(--shadow-md);border-color:var(--gray-400); }
.post-card-thumb img { width:100%;height:200px;object-fit:cover; }
.post-card-body { padding:24px; }
.post-card-cat { font-size:.74rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--red);margin-bottom:8px; }
.post-card h3 { font-family:var(--font-display);font-size:1.3rem;font-weight:700;color:var(--navy);margin-bottom:8px;line-height:1.1; }
.post-card p { font-size:.85rem;color:var(--gray-600);line-height:1.6; }
.post-card-link { display:inline-flex;align-items:center;gap:4px;font-size:.84rem;font-weight:700;color:var(--red);margin-top:14px; }
.posts-pagination { margin-top:48px;text-align:center; }
.posts-pagination .page-numbers { display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border:1.5px solid var(--gray-200);border-radius:8px;font-size:.9rem;font-weight:600;color:var(--gray-800);margin:0 3px;transition:var(--transition); }
.posts-pagination .page-numbers.current,.posts-pagination .page-numbers:hover { background:var(--red);border-color:var(--red);color:#fff; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
    .fade-in { opacity:0;transform:translateY(20px);transition:opacity .55s ease,transform .55s ease; }
    .fade-in.is-visible { opacity:1;transform:none; }
}


/* MVP: pull homepage hero up under the transparent sticky header so the hero image/overlay shows through the nav at the top of the page */
.hero { margin-top: -114px; }
