/* ========================================
   TruLight of the Midlands — Design System
   Colors: Gold #FEC404 / Black #111111
   Font: Inter (Google Fonts)
   Vibe: Premium luxury — white, gold, minimal dark
   ======================================== */

:root {
  --color-primary: #FEC404;
  --color-secondary: #111111;
  --color-accent: #FFD54F;
  --color-dark: #0a0a0a;
  --color-bg: #FFFFFF;
  --color-bg-alt: #FAFAFA;
  --color-bg-dark: #0d0d0d;
  --color-text: #1a1a1a;
  --color-text-light: #FFFFFF;
  --color-muted: #666666;
  --color-border: #E5E5E5;
  --color-success: #4CAF50;
  --color-error: #E53935;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-glow: 0 0 30px rgba(254, 196, 4, 0.2);
  --spacing-section: 5rem;
  --spacing-section-sm: 3.5rem;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

/* ── 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: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-bg-dark); text-decoration: underline; }
a.btn:hover { text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--color-primary); color: var(--color-secondary); padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm); font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ── Container ── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.03em;
  border: 2px solid transparent; transition: all var(--transition);
  text-decoration: none; line-height: 1.2;
}
.btn--primary, .hero .btn--primary, .section-dark .btn--primary {
  background: var(--color-primary); color: var(--color-secondary) !important; border-color: var(--color-primary);
}
.btn--primary:hover, .hero .btn--primary:hover, .section-dark .btn--primary:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-secondary) !important; transform: translateY(-2px); box-shadow: var(--shadow-glow); text-decoration: none; }
.btn--secondary, .hero .btn--secondary, .section-dark .btn--secondary {
  background: transparent; color: var(--color-text-light) !important; border-color: var(--color-text-light);
}
.btn--secondary:hover { background: var(--color-text-light); color: var(--color-secondary) !important; text-decoration: none; }
.btn--dark, .hero .btn--dark, .section-dark .btn--dark {
  background: var(--color-secondary); color: var(--color-text-light) !important; border-color: var(--color-secondary);
}
.btn--dark:hover { background: var(--color-bg-dark); border-color: var(--color-bg-dark); color: var(--color-text-light) !important; transform: translateY(-2px); text-decoration: none; }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--color-secondary); box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.75rem; padding-bottom: 0.75rem;
}
.header__logo img { height: 70px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 1.5rem; }
.header__nav a {
  color: var(--color-text-light); font-weight: 500; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.04em; padding: 0.25rem 0;
  border-bottom: 2px solid transparent; transition: all var(--transition);
}
.header__nav a:hover, .header__nav a.active {
  color: var(--color-primary); border-bottom-color: var(--color-primary);
}
.header__actions { display: flex; align-items: center; gap: 1rem; }
.header__phone {
  color: var(--color-text-light); font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.header__phone:hover { color: var(--color-primary); }
.header__phone svg { width: 16px; height: 16px; }
.header__toggle {
  display: none; background: none; border: none; padding: 0.5rem;
  color: var(--color-text-light); cursor: pointer;
}
.header__toggle svg { width: 28px; height: 28px; }
.nav-close { display: none; }

/* ── Mobile Nav ── */
@media (max-width: 968px) {
  .header__nav {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--color-secondary); flex-direction: column; justify-content: flex-start;
    padding: 5rem 2rem 2rem; gap: 0; transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.3); z-index: 1001;
  }
  .header__nav.open { right: 0; }
  .header__nav a { padding: 1rem 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 1rem; }
  .header__toggle { display: block; }
  .nav-close {
    position: absolute; top: 1rem; right: 1rem; background: none; border: none;
    color: var(--color-text-light); cursor: pointer; font-size: 1.5rem; padding: 0.5rem;
  }
  .header__phone span { display: none; }
}

/* ── Hero ── */
.hero {
  position: relative; background: var(--color-secondary); color: var(--color-text-light);
  padding: var(--spacing-section) 0; overflow: hidden; min-height: 500px;
  display: flex; align-items: center;
}
.hero--home { min-height: 600px; padding: 6rem 0; }
.hero--inner { min-height: 320px; padding: 4rem 0; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(17,17,17,0.55) 100%);
  z-index: 1;
}
.hero::after {
  content: ''; position: absolute; bottom: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(254,196,4,0.06) 0%, transparent 70%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--color-text-light); margin-bottom: 1rem; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.125rem; max-width: 600px; }
.hero .section-label { color: var(--color-primary); }
.hero .btn--secondary { border-color: rgba(255,255,255,0.6); }
.hero .btn--secondary:hover { border-color: var(--color-text-light); background: var(--color-text-light); color: var(--color-secondary); }
.hero a { color: var(--color-primary); }
.hero a:hover { color: var(--color-accent); }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
  font-size: 0.85rem; margin-bottom: 1.25rem;
}
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { color: rgba(255,255,255,0.5); }
.breadcrumbs .current { color: var(--color-primary); }
/* Breadcrumbs on light backgrounds (blog articles, legal pages) */
.breadcrumbs--light { margin: 1.5rem 0; }
.breadcrumbs--light a { color: var(--color-muted); }
.breadcrumbs--light a:hover { color: var(--color-primary); }
.breadcrumbs--light span { color: var(--color-border); }
.breadcrumbs--light .current { color: var(--color-text); }

/* ── Section Label / Eyebrow ── */
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--color-secondary); margin-bottom: 0.75rem;
}

/* ── Sections ── */
section { padding: var(--spacing-section) 0; }
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: var(--color-secondary); color: var(--color-text-light); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-text-light); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-dark .section-label { color: var(--color-primary); }
.section-dark a { color: var(--color-primary); }
.section-dark a:hover { color: var(--color-accent); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header p { color: var(--color-muted); margin-top: 0.75rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }
.mt-2 { margin-top: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }

/* ── Grid Layouts ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 968px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── Split Layout ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

/* ── Cards ── */
.card {
  background: var(--color-bg); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); transition: all var(--transition);
  border: 1px solid var(--color-border);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card--dark {
  background: var(--color-bg-dark); border-color: rgba(254,196,4,0.1);
  color: var(--color-text-light);
}
.card--dark h3, .card--dark h4 { color: var(--color-text-light); }
.card--dark p { color: rgba(255,255,255,0.75); }
.card__icon {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.05); color: var(--color-secondary); margin-bottom: 1.25rem;
}
.card--dark .card__icon { background: rgba(254,196,4,0.15); color: var(--color-primary); }
.card__icon svg { width: 28px; height: 28px; }
.card-img {
  position: relative; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0;
  margin: -2rem -2rem 1.5rem -2rem; aspect-ratio: 16/10;
}
.card h3 { margin-bottom: 0.75rem; }

/* ── Service Card (linked) ── */
.service-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--color-bg); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition);
  border: 1px solid var(--color-border); border-bottom: 3px solid var(--color-primary);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }
.service-card__img {
  position: relative; overflow: hidden; aspect-ratio: 16/9;
}
.service-card__body { padding: 1.75rem; }
.service-card h3 { color: var(--color-secondary); margin-bottom: 0.5rem; }
.service-card p { color: var(--color-text); font-size: 0.95rem; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--color-secondary); font-weight: 600; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.03em; margin-top: 1rem;
}
.service-card:hover .service-card__link { color: var(--color-primary); }

/* ── Area Card ── */
.area-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem;
  background: var(--color-bg); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); border: 1px solid var(--color-border);
  text-decoration: none; color: var(--color-text); transition: all var(--transition);
  font-weight: 500;
}
.area-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--color-primary); border-color: var(--color-primary); }
a.area-card, .section-dark a.area-card { color: var(--color-text) !important; }
a.area-card:hover, .section-dark a.area-card:hover { color: var(--color-secondary) !important; }
.area-card svg, .section-dark .area-card svg { width: 20px; height: 20px; color: var(--color-secondary); flex-shrink: 0; }
.area-card:hover svg { color: var(--color-primary); }

/* ── Trust Bar ── */
.trust-bar { background: var(--color-bg-dark); padding: 1.5rem 0; border-top: 2px solid var(--color-primary); }
.trust-bar .container {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.75rem; color: var(--color-text-light);
}
.trust-item svg { width: 24px; height: 24px; color: var(--color-primary); }
.trust-item strong { font-size: 1.2rem; }
.trust-item span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ── Stats ── */
.stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 3rem; padding: 2rem 0; }
.stat { text-align: center; }
.stat__number { font-size: 2.5rem; font-weight: 800; color: var(--color-secondary); line-height: 1; }
.section-dark .stat__number { color: var(--color-primary); }
.stat__label { font-size: 0.9rem; color: var(--color-text); margin-top: 0.25rem; }
.section-dark .stat__label { color: rgba(255,255,255,0.7); }

/* ── Testimonial ── */
.testimonial {
  background: var(--color-bg); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); border: 1px solid var(--color-border);
}
.testimonial__stars { color: var(--color-primary); margin-bottom: 0.75rem; font-size: 1.2rem; letter-spacing: 2px; }
.testimonial__text { font-style: italic; color: var(--color-text); margin-bottom: 1rem; line-height: 1.7; }
.testimonial__author { font-weight: 600; color: var(--color-secondary); }
.testimonial__service { font-size: 0.85rem; color: var(--color-muted); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--color-border); }
.section-dark .faq-item { border-bottom-color: rgba(255,255,255,0.1); }
.faq-item__question {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  padding: 1.25rem 0; background: none; border: none; cursor: pointer;
  font-size: 1.05rem; font-weight: 600; color: var(--color-secondary); text-align: left;
  font-family: var(--font-body); transition: color var(--transition);
}
.faq-item__question:hover { color: var(--color-bg-dark); }
.section-dark .faq-item__question { color: var(--color-text-light); }
.section-dark .faq-item__question:hover { color: var(--color-primary); }
.faq-item__icon {
  font-size: 1.5rem; font-weight: 300; color: var(--color-secondary);
  transition: transform var(--transition); flex-shrink: 0; margin-left: 1rem;
}
.section-dark .faq-item__icon { color: var(--color-primary); }
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item__answer.open { max-height: 600px; padding-bottom: 1.25rem; }
.faq-item__answer p { color: var(--color-text); font-size: 0.95rem; line-height: 1.8; }
.section-dark .faq-item__answer p { color: rgba(255,255,255,0.7); }

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.9rem;
  color: var(--color-secondary); margin-bottom: 0.4rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem;
  color: var(--color-text); background: var(--color-bg); transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(254,196,4,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.thanks-msg { text-align: center; padding: 3rem 1rem; }
.thanks-msg h2 { color: var(--color-success); margin-bottom: 0.75rem; }

/* ── CTA Section ── */
.cta-section {
  background: var(--color-primary); padding: var(--spacing-section-sm) 0;
  text-align: center; color: var(--color-secondary);
}
.cta-section h2 { color: var(--color-secondary); margin-bottom: 0.75rem; }
.cta-section p { color: var(--color-bg-dark); max-width: 600px; margin: 0 auto 1.5rem; }

/* ── Gallery ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ── Image Placeholders ── */
.img-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-secondary) 100%);
  color: var(--color-primary); font-size: 0.85rem; text-align: center;
  width: 100%; height: 100%; position: absolute; inset: 0;
}
.img-placeholder span { padding: 1rem; opacity: 0.7; }
.img-real {
  opacity: 0; position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.3s ease;
}
.img-real.loaded { opacity: 1 !important; }

/* ── Events Page ── */
.events-hero {
  background: var(--color-secondary); color: var(--color-text-light);
  text-align: center; padding: 3rem 1rem;
}
.events-hero img { max-width: 200px; margin: 0 auto 1.5rem; }
.events-services { padding: 2rem 1rem; }
.events-contact {
  background: var(--color-bg-dark); color: var(--color-text-light);
  padding: 2rem 1rem; text-align: center;
}
.events-contact a { font-size: 1.5rem; font-weight: 700; }

/* CTA links and buttons override for gold background */
.cta-section a { color: var(--color-secondary); }
.cta-section a:hover { color: var(--color-bg-dark); }
.cta-section .btn--primary { background: var(--color-secondary); color: var(--color-text-light) !important; border-color: var(--color-secondary); }
.cta-section .btn--primary:hover { background: var(--color-bg-dark); border-color: var(--color-bg-dark); color: var(--color-text-light) !important; }
.cta-section .btn--secondary { color: var(--color-secondary) !important; border-color: var(--color-secondary); }
.cta-section .btn--secondary:hover { background: var(--color-secondary); color: var(--color-text-light) !important; }

/* ── Footer ── */
.footer { background: var(--color-secondary); color: var(--color-text-light); padding: 4rem 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; align-items: start;
}
@media (max-width: 968px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }
.footer p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer p a { color: rgba(255,255,255,0.7); }
.footer p a:hover { color: var(--color-primary); }
.footer__brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-top: 1rem; line-height: 1.7; }
.footer__brand img { margin-bottom: 0.5rem; height: 50px; width: auto; }
.footer__social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: var(--color-text-light);
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--color-primary); color: var(--color-secondary); }
.footer__social a svg { width: 18px; height: 18px; }
.footer h4 {
  color: var(--color-primary); font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 1.25rem;
}
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer ul a:hover { color: var(--color-primary); }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem;
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
}
.footer__contact-item svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; margin-top: 3px; }
.footer__contact-item a { color: rgba(255,255,255,0.7); }
.footer__contact-item a:hover { color: var(--color-primary); }
.footer__bottom {
  margin-top: 3rem; padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255,255,255,0.5); }
.footer__legal a:hover { color: var(--color-primary); }

/* ── Utility ── */
.muted { color: var(--color-muted); }
.lead { font-size: 1.125rem; color: var(--color-text); }
.checklist { list-style: none; }
.checklist li {
  padding: 0.4rem 0 0.4rem 1.75rem; position: relative; font-size: 0.95rem;
}
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 0.65rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(0,0,0,0.05);
  border: 2px solid var(--color-secondary);
}
.section-dark .checklist li::before { background: rgba(254,196,4,0.15); border-color: var(--color-primary); }
.divider {
  height: 3px; width: 60px; background: var(--color-primary);
  border-radius: 2px; margin: 1rem 0;
}

/* ── Process Steps ── */
.process-step {
  text-align: center; padding: 1.5rem;
}
.process-step__number {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--color-primary); color: var(--color-secondary); font-weight: 800; font-size: 1.4rem;
  margin: 0 auto 1rem;
}

/* ── Print ── */
@media print {
  .header, .footer, .cta-section { display: none; }
  body { color: #000; }
  section { padding: 1rem 0; }
}
