/* ============================================
   True Blue Pro Wash. Master Stylesheet
   Generated from CLIENT_CONFIG.json by scripts/build.py
   ============================================ */

:root {
  /* Brand palette (driven by CLIENT_CONFIG.brand_colors) */
  --brand-primary: #1B5598;
  --brand-dark:    #0F4F7E;
  --brand-light:   #1F8DE8;
  --brand-soft:    #E6F2FC;
  --brand-softer:  #F2F8FD;
  --accent:        #1F8DE8;

  /* Backwards-compatible aliases for legacy GEW/BPW templates */
  --green-primary: var(--brand-primary);
  --green-dark:    var(--brand-dark);
  --green-light:   var(--brand-light);
  --green-soft:    var(--brand-soft);
  --green-softer:  var(--brand-softer);
  --orange-accent: var(--accent);

  /* Neutral palette */
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --light-gray: #F3F4F6;
  --border-color: #E5E7EB;
  --border-light: #F0F0F0;
  --text-dark: #1A1D21;
  --text-body: #4B5563;
  --text-muted: #9CA3AF;
  --text-light: #FFFFFF;

  /* Functional */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-brand: 0 4px 20px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white); color: var(--text-dark);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-green { color: var(--brand-primary); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-primary); }

/* ---- NAV ---- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 40px; display: flex; align-items: center; justify-content: space-between; transition: var(--transition); background: rgba(255,255,255,0.9); backdrop-filter: blur(16px); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(255,255,255,0.97); padding: 12px 40px; border-bottom: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 48px; width: 48px; object-fit: contain; border-radius: 8px; }
.nav-logo-text { font-family: 'Sora', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; white-space: nowrap; }
.nav-logo-text span { color: var(--brand-light); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-body); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--brand-light); }
.nav-cta-phone { display: flex; align-items: center; gap: 8px; color: var(--text-dark) !important; font-weight: 700 !important; font-size: 0.95rem !important; }
.nav-cta-phone i { color: var(--brand-light); }
.nav-cta { background: var(--brand-light) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: 50px; font-weight: 600 !important; font-size: 0.85rem !important; transition: var(--transition); box-shadow: var(--shadow-brand); }
.nav-cta:hover { background: var(--brand-dark) !important; transform: translateY(-1px); }
.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text-dark); transition: 0.3s; border-radius: 2px; }
@media (max-width: 900px) {
  .nav { padding: 12px 16px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 24px; box-shadow: var(--shadow-md); gap: 18px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

/* ---- HERO ---- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; padding: 140px 24px 80px; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35)); z-index: 1; }
.hero-bg, .hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-content { position: relative; z-index: 3; max-width: 1100px; margin: 0 auto; text-align: center; color: var(--text-light); }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.35); border-radius: 999px; color: var(--brand-light); font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; backdrop-filter: blur(6px); }
.hero-title { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 6vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 18px; }
.hero-title .highlight { color: var(--brand-light); }
.hero-subtitle { font-size: clamp(1.05rem, 2.2vw, 1.35rem); margin: 0 auto 30px; max-width: 760px; opacity: 0.95; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-light); color: var(--white); padding: 14px 28px; border-radius: 999px; font-weight: 700; text-decoration: none; transition: var(--transition); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); color: var(--text-light); padding: 14px 28px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.6); font-weight: 700; text-decoration: none; transition: var(--transition); }
.btn-secondary:hover { background: var(--text-light); color: var(--brand-primary); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text-light); padding: 14px 28px; border-radius: 999px; border: 2px solid var(--text-light); font-weight: 700; text-decoration: none; transition: var(--transition); }
.btn-outline:hover { background: var(--text-light); color: var(--brand-primary); }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--brand-primary); padding: 14px 32px; border-radius: 999px; font-weight: 700; text-decoration: none; transition: var(--transition); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hero-social-proof { display: flex; align-items: center; gap: 14px; justify-content: center; margin: 20px 0; flex-wrap: wrap; }
.hero-faces { display: flex; align-items: center; }
.face-count { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-light); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; margin-left: -12px; border: 2px solid #fff; }
.social-label { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.8; }
.social-rating { font-weight: 700; font-size: 0.95rem; }
.hero-pills { display: flex; gap: 14px; justify-content: center; margin: 28px 0 24px; flex-wrap: wrap; }
.hero-pill { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.96); color: var(--text-dark); border-radius: 999px; padding: 10px 18px; box-shadow: var(--shadow-md); }
.hero-pill-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--brand-soft); color: var(--brand-primary); }
.hero-pill-icon img { width: 18px; height: 18px; }
.hero-pill-title { font-weight: 800; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; }
.hero-pill-sub { font-size: 0.78rem; color: var(--text-muted); }
.hero-pill-stars { color: #FFB800; font-size: 0.85rem; }
.hero-trust { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 6px; }
.hero-trust-item { font-size: 0.92rem; opacity: 0.95; }
.hero-trust-item i { color: var(--brand-light); margin-right: 6px; }

/* ---- STATS + TRUST BAR ---- */
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; padding: 36px 24px; background: var(--off-white); text-align: center; }
.stat-item .stat-number { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; color: var(--brand-primary); }
.stat-item .stat-label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }
.trust-badge-bar { background: var(--white); padding: 40px 24px; border-bottom: 1px solid var(--border-color); }
.trust-badge-bar .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.trust-badge-item { display: flex; align-items: center; gap: 14px; color: var(--text-dark); font-weight: 700; }
.trust-badge-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.trust-badge-icon.shield { background: var(--brand-soft); color: var(--brand-primary); }
.trust-badge-icon.star { background: #FFF6D6; color: #C68A00; }
.trust-badge-icon.check { background: #E6F7EE; color: #1B7A2B; }
.trust-badge-icon.heart { background: #FFE8E8; color: #C9352E; }
.badge-sub { display: block; font-weight: 500; font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ---- SECTIONS ---- */
.section-label { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-soft); color: var(--brand-primary); padding: 6px 16px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.section-title { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.15; margin: 14px 0 12px; color: var(--text-dark); }
.section-subtitle { color: var(--text-body); font-size: 1.05rem; max-width: 720px; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 80px 24px; background: var(--white); }
.testimonial-wrapper { position: relative; }
.testimonial-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 12px; }
.testimonial-card { flex: 0 0 320px; scroll-snap-align: start; background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); }
.testimonial-text { color: var(--text-body); font-style: italic; margin-bottom: 14px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 700; color: var(--text-dark); }
.testimonial-location { font-size: 0.85rem; color: var(--text-muted); }
.testimonial-nav { position: absolute; top: 50%; transform: translateY(-50%); background: var(--white); border: 1px solid var(--border-color); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; box-shadow: var(--shadow-sm); z-index: 2; }
.testimonial-nav.prev { left: -16px; } .testimonial-nav.next { right: -16px; }

/* ---- SERVICES + AREAS GRIDS ---- */
.services-section { padding: 80px 24px; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.service-card { background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 32px 28px; text-decoration: none; color: var(--text-dark); transition: var(--transition); box-shadow: var(--shadow-sm); display: block; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--brand-primary); }
.service-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark)); color: var(--brand-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.service-card h3 { font-family: 'Sora', sans-serif; font-size: 1.2rem; margin: 0 0 10px; }
.service-card p { color: var(--text-body); font-size: 0.95rem; margin: 0 0 14px; }
.service-card .arrow { color: var(--brand-primary); font-weight: 700; font-size: 0.9rem; }
.areas-section { padding: 80px 24px; background: var(--white); }
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-chip { padding: 10px 18px; background: var(--brand-soft); color: var(--brand-primary); border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.area-chip:hover { background: var(--brand-primary); color: var(--white); }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 32px; }
.area-card { background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 20px; text-decoration: none; color: var(--text-dark); transition: var(--transition); display: flex; align-items: center; gap: 12px; }
.area-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand-primary); }
.area-card i { color: var(--brand-primary); font-size: 1.4rem; }
.area-card span { font-weight: 600; }

/* ---- FAQ ---- */
.home-faq-section, .section.faq-section { padding: 80px 24px; background: var(--off-white); }
.faq-grid { display: grid; gap: 12px; max-width: 880px; margin: 36px auto 0; }
.faq-item { background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; }
.faq-question, .faq-q { padding: 20px 24px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; font-family: 'Sora', sans-serif; }
.faq-question i, .faq-q i { color: var(--brand-primary); transition: transform 0.3s; }
.faq-item.open .faq-question i, .faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-answer, .faq-a { max-height: 0; overflow: hidden; padding: 0 24px; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--text-body); }
.faq-item.open .faq-answer, .faq-item.open .faq-a { max-height: 800px; padding: 0 24px 20px; }

/* ---- QUOTE + CTA ---- */
.quote-section { padding: 80px 24px; background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1200px; margin: 0 auto; }
@media (max-width: 900px) { .quote-section { grid-template-columns: 1fr; } }
.quote-features { display: grid; gap: 12px; margin-top: 16px; }
.quote-feature { display: flex; align-items: center; gap: 10px; color: var(--text-body); }
.quote-feature i { color: var(--brand-primary); }
.cta-banner { background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark)); color: var(--text-light); text-align: center; padding: 64px 24px; }
.cta-banner h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 12px; }
.cta-banner p { opacity: 0.95; margin-bottom: 24px; }

/* ---- SUB-PAGE: PAGE HERO + SECTION + CTA CARD ---- */
.page-hero { background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%); color: var(--text-light); padding: 140px 24px 80px; text-align: center; }
.page-hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 16px; line-height: 1.1; }
.page-hero p { font-size: 1.15rem; max-width: 720px; margin: 0 auto; opacity: 0.95; }
.page-hero .breadcrumbs { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; font-size: 0.9rem; opacity: 0.85; }
.page-hero .breadcrumbs a { color: var(--brand-light); text-decoration: none; }
.section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.section.alt { background: var(--off-white); max-width: none; padding: 80px 0; }
.section.alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 24px; }
.section h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 16px; color: var(--text-dark); }
.section h3 { font-family: 'Sora', sans-serif; font-size: 1.35rem; font-weight: 600; margin: 24px 0 12px; color: var(--text-dark); }
.section p { color: var(--text-body); margin-bottom: 16px; font-size: 1.05rem; line-height: 1.7; }
.section ul, .section ol { margin: 0 0 16px 24px; color: var(--text-body); }
.section ul li, .section ol li { margin-bottom: 8px; line-height: 1.7; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.cta-card { background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%); color: var(--text-light); padding: 48px 32px; border-radius: var(--radius-lg); text-align: center; margin: 48px auto; max-width: 880px; box-shadow: var(--shadow-brand); }
.cta-card h2 { color: var(--text-light); }
.cta-card p { color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.cta-card .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FEATURE / CONTACT GRIDS ---- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 32px; }
.feature-card { background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark)); color: var(--brand-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.15rem; margin: 0 0 8px; }
.feature-card p { font-size: 0.95rem; margin: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); }
.contact-card .icon-circle { width: 48px; height: 48px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-primary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 12px; }
form.lead-form { display: flex; flex-direction: column; gap: 14px; }
form.lead-form input, form.lead-form textarea, form.lead-form select { padding: 14px 16px; border: 1px solid var(--border-color); border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; background: var(--white); }
form.lead-form textarea { min-height: 120px; resize: vertical; }
form.lead-form button { background: var(--brand-primary); color: var(--text-light); padding: 14px 28px; border: none; border-radius: 999px; font-weight: 700; cursor: pointer; font-size: 1rem; transition: var(--transition); }
form.lead-form button:hover { background: var(--brand-dark); transform: translateY(-2px); }
table.info-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; }
table.info-table th, table.info-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border-color); }
table.info-table th { background: var(--brand-soft); color: var(--text-dark); font-weight: 700; }
.callout { background: var(--brand-softer); border-left: 4px solid var(--brand-primary); padding: 20px 24px; border-radius: var(--radius-sm); margin: 24px 0; }

/* ---- FOOTER ---- */
.footer { background: #1A1D21; color: rgba(255,255,255,0.85); padding: 60px 24px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .nav-logo-text { color: var(--white); }
.footer h4 { color: var(--white); font-family: 'Sora', sans-serif; margin-bottom: 14px; }
.footer a { color: rgba(255,255,255,0.7); text-decoration: none; display: block; font-size: 0.92rem; margin-bottom: 6px; transition: color 0.2s; }
.footer a:hover { color: var(--brand-light); }
.footer-brand p { font-size: 0.92rem; line-height: 1.6; max-width: 380px; }
.footer-bottom { max-width: 1200px; margin: 30px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 0.88rem; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { font-size: 1.2rem; color: rgba(255,255,255,0.6); }
.footer-socials a:hover { color: var(--brand-light); }

/* ---- STICKY MOBILE CTA ---- */
.sticky-mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border-color); box-shadow: 0 -4px 12px rgba(0,0,0,0.05); padding: 10px 12px; z-index: 999; display: none; }
.sticky-cta-inner { display: flex; gap: 8px; max-width: 600px; margin: 0 auto; }
.sticky-btn { flex: 1; padding: 12px; border-radius: 999px; text-align: center; font-weight: 700; font-size: 0.9rem; text-decoration: none; }
.sticky-btn-call { background: var(--brand-primary); color: var(--white); }
.sticky-btn-quote { background: var(--brand-light); color: var(--text-dark); }
@media (max-width: 768px) { .sticky-mobile-cta { display: block; } body { padding-bottom: 70px; } }

/* ---- REVEAL ANIMATION ---- */
.reveal, .reveal-left, .reveal-right { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left { transform: translateX(-20px); }
.reveal-right { transform: translateX(20px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0, 0); }

/* ---- ARTICLE PAGE ---- */
.article-section { padding: 70px 24px; max-width: 1200px; margin: 0 auto; }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 50px; }
@media (max-width: 1024px) { .article-grid { grid-template-columns: 1fr; } }
.article-main h2 { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 700; margin: 32px 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-color); }
.article-main h3 { font-family: 'Sora', sans-serif; font-size: 1.2rem; color: var(--brand-primary); margin: 24px 0 12px; }
.article-main p { color: var(--text-body); margin-bottom: 16px; font-size: 1.02rem; line-height: 1.8; }
.article-main figure { margin: 36px 0; }
.article-main figure img { max-height: 420px; width: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.article-main figcaption { font-style: italic; color: var(--text-muted); text-align: center; font-size: 0.85rem; margin-top: 8px; }
.article-sidebar { position: sticky; top: 90px; align-self: start; display: grid; gap: 18px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.inline-cta { text-align: center; margin: 24px 0 32px; }
.inline-cta .subtitle { display: block; margin-top: 8px; color: var(--text-muted); font-style: italic; font-size: 0.9rem; max-width: 520px; margin: 8px auto 0; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 36px 0; }
@media (max-width: 600px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-grid figure { margin: 0; }
.ba-grid figure img { height: 240px; }
.ba-label { background: var(--light-gray); text-transform: uppercase; font-weight: 700; font-size: 0.82rem; padding: 8px; text-align: center; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.ba-label.after { background: var(--brand-soft); }
.ba-section { padding: 80px 24px; background: var(--off-white); }
