/* Generated stylesheet for ContentMate website */
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --accent: #1d4ed8;
  --accent-2: #f97316;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --light-gray: #f9fafb;
  --font-heading: 'League Spartan', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; }



body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background: radial-gradient(circle at 20% 20%, #ffffff, var(--bg));
  color: var(--text);
}

.inner {
  width: min(1200px, 95vw);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Sections */
.section {
  padding: var(--spacing-xl) 0;
}

.section h1, .section h2, .section h3, .section h4 {
  margin-top: 0;
  color: var(--text);
  font-family: var(--font-heading);
}

.section h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; }
.section h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: var(--spacing-md); }
.section h3 { font-size: 1.25rem; }

.section-intro { font-size: 1.125rem; color: #6b7280; margin-bottom: var(--spacing-lg); }

/* Hero Section */
.section-hero {
  padding: 0;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, #ffffff 0%, var(--bg) 100%);
  text-align: center;
}

.hero-overlay {
  width: 100%;
  padding: clamp(4rem, 12vh, 8rem) 0;
}

.section-hero h1 { margin-bottom: var(--spacing-md); }
.hero-subtitle { font-size: 1.2rem; color: #6b7280; margin-bottom: var(--spacing-lg); max-width: 640px; margin-left: auto; margin-right: auto; }

/* Full-bleed hero: strong brand-colour background, white text */
.section-hero-full-bleed {
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  min-height: 100vh;
}
.section-hero-full-bleed h1,
.section-hero-full-bleed .hero-subtitle,
.section-hero-full-bleed .hero-eyebrow { color: white; }
.section-hero-full-bleed .hero-subtitle { color: rgba(255,255,255,.85); }
.section-hero-full-bleed .btn-secondary { border-color: rgba(255,255,255,.6); color: white; }
.section-hero-full-bleed .btn-secondary:hover { background: rgba(255,255,255,.15); }

/* Image hero — fix double-padding: section has no padding, overlay carries it */
.section-hero-image { padding: 0; }
.section-hero-image .hero-overlay {
  background: rgba(0, 0, 0, 0.48);
  padding: clamp(4rem, 12vh, 8rem) 0;
}
.section-hero-image h1,
.section-hero-image .hero-subtitle,
.section-hero-image .hero-eyebrow { color: white; }
.section-hero-image .hero-subtitle { color: rgba(255,255,255,.85); }

/* Split-image hero: 50/50 content-left / image-right */
.section-hero-split-image { padding: 0; min-height: 75vh; display: block; }
.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}
.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: clamp(3rem, 8vh, 6rem) clamp(2rem, 6vw, 5rem);
}
.hero-split-content .cta-buttons { justify-content: flex-start; }
.hero-split-content .hero-subtitle { margin-left: 0; margin-right: 0; }
.hero-split-media {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
@media (max-width: 768px) {
  .hero-split-grid { grid-template-columns: 1fr; }
  .hero-split-media { min-height: 50vw; order: -1; }
  .hero-split-content { text-align: center; align-items: center; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-lg);
  margin: var(--spacing-sm);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-secondary:hover { background: var(--accent); color: white; }

.btn-large { padding: var(--spacing-lg) var(--spacing-xl); font-size: 1.125rem; }

.cta-buttons { display: flex; justify-content: center; gap: var(--spacing-md); flex-wrap: wrap; }

/* Grid layouts */
.grid { display: grid; gap: var(--spacing-lg); margin-top: var(--spacing-lg); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* Features section */
.section-features { background: var(--light-gray); }
.section-features .card h3 { color: var(--accent); }

/* Testimonials */
.section-testimonials { background: var(--light-gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--spacing-lg); margin-top: var(--spacing-lg); }

.testimonial {
  padding: var(--spacing-xl) var(--spacing-lg);
  background: white;
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: '“';
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 12px;
  left: 20px;
}

.testimonial blockquote { margin: var(--spacing-sm) 0 var(--spacing-md); font-style: italic; line-height: 1.7; }
.testimonial figcaption strong { display: block; color: var(--text); font-weight: 700; }
.testimonial figcaption span { font-size: 0.875rem; color: var(--accent); }

/* Services */
.services-list { display: grid; gap: var(--spacing-lg); margin-top: var(--spacing-lg); }

/* Default (stacked) variant */
.service-item {
  padding: var(--spacing-lg);
  border-bottom: 2px solid var(--light-gray);
}
.service-item:last-child { border-bottom: none; }
.service-item h3 { color: var(--accent); margin-bottom: var(--spacing-sm); }

/* Cards variant */
.section-services-cards .services-list {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.section-services-cards .service-item {
  background: white;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--accent);
  transition: box-shadow .2s, transform .2s;
}
.section-services-cards .service-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* With-prices variant */
.section-services-with-prices .services-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.section-services-with-prices .service-item {
  background: white;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
}

/* Contact Form */
.section-contact { background: var(--light-gray); }

.contact-form {
  max-width: 500px;
  margin: var(--spacing-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-md); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.contact-form input,
.contact-form textarea {
  padding: var(--spacing-md);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .15s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }

.contact-form button { align-self: flex-start; }

.form-status { font-size: 0.875rem; margin-top: var(--spacing-sm); min-height: 1.2em; }
.form-status-error { color: #dc2626; }
.form-success { background: #d1fae5; border: 1px solid #6ee7b7; border-radius: var(--radius); padding: var(--spacing-md) var(--spacing-lg); color: #065f46; }

/* CTA Band */
.section-cta { background: var(--accent); color: white; text-align: center; }
.section-cta h2, .section-cta p { color: white; }
.section-cta .btn-primary { background: white; color: var(--accent); }

/* Hero image overlay */
.section-hero-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.section-hero-image .hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: clamp(3rem, 10vh, 6rem) 0;
}

.section-hero-image h1,
.section-hero-image .hero-subtitle { color: white; }

.hero-overlay { width: 100%; }

/* Card images */
.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  display: block;
  margin: calc(-1 * var(--spacing-lg)) calc(-1 * var(--spacing-lg)) var(--spacing-md);
  width: calc(100% + 2 * var(--spacing-lg));
  max-width: calc(100% + 2 * var(--spacing-lg));
}

/* Header & Footer */
.site-header {
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .inner { display: flex; align-items: center; justify-content: space-between; gap: var(--spacing-lg); flex-wrap: wrap; }

.site-logo { height: 48px; width: auto; display: block; }
.site-name, .site-brand { font-size: 1.5rem; font-weight: 700; color: var(--text); text-decoration: none; }
.site-name:hover { color: var(--accent); }
.site-header h1 { margin: 0; }

.site-nav { display: flex; gap: var(--spacing-lg); flex-wrap: wrap; align-items: center; }
.site-nav a { color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--accent); }

/* Header phone number */
.header-phone {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin-right: var(--spacing-md);
}
.header-phone:hover { opacity: 0.8; }
@media (max-width: 480px) { .header-phone { display: none; } }

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--accent);
  padding: 0;
}
.mobile-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 56px; }
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius);
}
.nav-toggle:hover { background: rgba(0,0,0,.05); }
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    gap: var(--spacing-md);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-size: 1rem; padding: var(--spacing-sm) 0; width: 100%; border-bottom: 1px solid #f1f5f9; }
  .site-nav a:last-child { border-bottom: none; }
}

.section-footer {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg) 0;
  border-top: 1px solid rgba(0,0,0,.08);
  background: var(--light-gray);
  font-size: 0.875rem;
  text-align: center;
}

.section-footer p { margin: 0 0 var(--spacing-md); }

.footer-links { display: flex; justify-content: center; gap: var(--spacing-lg); flex-wrap: wrap; }
.footer-links a { color: var(--accent); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
  .section { padding: var(--spacing-lg) 0; }
  .inner { width: 95vw; }
  .section h1 { font-size: 2rem; }
  .section h2 { font-size: 1.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .btn { display: block; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.section-faq .faq-list { max-width: 760px; margin: var(--spacing-lg) auto 0; display: flex; flex-direction: column; gap: var(--spacing-md); }
.faq-item { background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: var(--spacing-md) var(--spacing-lg); }
.faq-item summary { font-weight: 600; cursor: pointer; color: var(--text); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; color: var(--accent); font-weight: 700; }
.faq-item[open] summary::after { content: '\2013'; }
.faq-answer { margin-top: var(--spacing-sm); color: #6b7280; }
.faq-answer p { margin: 0; }
.section-faq-two-column .faq-list { max-width: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* Gallery */
.section-gallery { background: var(--light-gray); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--spacing-md); margin-top: var(--spacing-lg); }
.gallery-item { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: white; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption { padding: var(--spacing-sm) var(--spacing-md); font-size: 0.875rem; color: #6b7280; }

/* Masonry gallery: CSS columns */
.section-gallery-masonry .gallery-grid {
  display: block;
  column-count: 3;
  column-gap: var(--spacing-md);
}
.section-gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: var(--spacing-md);
}
.section-gallery-masonry .gallery-item img { height: auto; min-height: 160px; }
@media (max-width: 768px) { .section-gallery-masonry .gallery-grid { column-count: 2; } }
@media (max-width: 480px) { .section-gallery-masonry .gallery-grid { column-count: 1; } }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--spacing-lg); margin-top: var(--spacing-lg); align-items: start; }
.pricing-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: var(--spacing-xl) var(--spacing-lg); text-align: center; border: 2px solid transparent; }
.pricing-card-featured { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card h3 { color: var(--accent); }
.pricing-price { font-size: 2.25rem; font-weight: 700; color: var(--text); margin: var(--spacing-md) 0; }
.pricing-period { font-size: 1rem; font-weight: 400; color: #6b7280; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 var(--spacing-lg); text-align: left; }
.pricing-features li { padding: var(--spacing-sm) 0; border-bottom: 1px solid var(--light-gray); }
.pricing-features li:last-child { border-bottom: none; }

/* Hero eyebrow */
.hero-eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; font-weight: 700; color: var(--accent); margin: 0 0 var(--spacing-sm); }

/* Testimonials (v1: quote + author/role) */
.testimonial { margin: 0; }
.testimonial blockquote { margin: 0 0 var(--spacing-md); font-style: italic; }
.testimonial blockquote::before { content: '\201C'; }
.testimonial blockquote::after { content: '\201D'; }
.testimonial figcaption strong { display: block; color: var(--accent); }
.testimonial figcaption span { font-size: 0.875rem; color: #6b7280; }

/* Service prices */
.service-price { display: inline-block; margin-top: var(--spacing-sm); font-weight: 700; color: var(--accent); }

/* Feature card icon */
.card-icon { font-size: 2rem; line-height: 1; margin-bottom: var(--spacing-sm); }

/* Contact details */
.contact-details { list-style: none; padding: 0; margin: 0 0 var(--spacing-lg); display: flex; flex-wrap: wrap; gap: var(--spacing-lg); justify-content: center; }
.contact-details a { color: var(--accent); text-decoration: none; }

/* Footer (v1: columns / legal / social) */
.section-footer .footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--spacing-lg); text-align: left; }
.footer-brand { font-size: 1.25rem; font-weight: 700; color: var(--text); }
.footer-col h4 { margin: 0 0 var(--spacing-sm); font-size: 0.95rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 2px 0; }
.footer-col a { color: var(--accent); text-decoration: none; font-size: 0.9rem; }
.footer-bottom { margin-top: var(--spacing-lg); padding-top: var(--spacing-md); border-top: 1px solid rgba(0,0,0,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--spacing-sm); }

/* Stats band */
.section-stats { background: var(--light-gray); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--spacing-lg); margin-top: var(--spacing-lg); text-align: center; }
.section-stats-cards .stat { background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: var(--spacing-lg); }
.stat-value { display: block; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--accent); line-height: 1.1; }
.stat-label { display: block; margin-top: var(--spacing-sm); color: #6b7280; }

/* Steps / how it works */
.steps-list { list-style: none; counter-reset: none; padding: 0; margin: var(--spacing-lg) 0 0; display: grid; gap: var(--spacing-lg); }
.section-steps-numbered .steps-list { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step { display: flex; gap: var(--spacing-md); align-items: flex-start; }
.step-number { flex: 0 0 auto; width: 2.25rem; height: 2.25rem; border-radius: 999px; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 700; }
.step-body h3 { margin: 0 0 var(--spacing-sm); }
.step-body p { margin: 0; color: #6b7280; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--spacing-lg); margin-top: var(--spacing-lg); }
.team-member { margin: 0; text-align: center; background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: var(--spacing-lg); }
.team-member img, .team-avatar { width: 96px; height: 96px; border-radius: 999px; object-fit: cover; margin: 0 auto var(--spacing-md); display: block; }
.team-avatar { background: var(--light-gray); }
.team-member strong { display: block; }
.team-role { color: var(--accent); font-size: 0.9rem; }
.team-member p { color: #6b7280; font-size: 0.9rem; margin: var(--spacing-sm) 0 0; }

/* Logo cloud */
.logo-cloud { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--spacing-xl); margin-top: var(--spacing-lg); }
.logo-item { height: 44px; width: auto; object-fit: contain; }
.logo-text { height: auto; font-weight: 700; color: #6b7280; font-size: 1.1rem; }
.section-logos-grayscale .logo-item { filter: grayscale(1); opacity: 0.7; transition: all .2s; }
.section-logos-grayscale .logo-item:hover { filter: none; opacity: 1; }

/* Opening hours */
.hours-table { width: min(420px, 100%); margin: var(--spacing-lg) auto 0; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: var(--spacing-sm) var(--spacing-md); border-bottom: 1px solid var(--light-gray); text-align: left; }
.hours-table th { font-weight: 600; }
.hours-table td { text-align: right; color: #6b7280; }
.hours-note { text-align: center; color: #6b7280; font-size: 0.9rem; margin-top: var(--spacing-md); }

/* Before & After */
.before-after-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--spacing-xl); margin-top: var(--spacing-lg); }
.ba-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; border-radius: var(--radius); overflow: hidden; }
.ba-panel { margin: 0; position: relative; }
.ba-panel img { width: 100%; height: 260px; object-fit: cover; display: block; }
.ba-image-placeholder { width: 100%; height: 260px; display: flex; align-items: center; justify-content: center; }
.ba-before-placeholder { background: #e5e7eb; color: #6b7280; font-weight: 600; }
.ba-after-placeholder { background: color-mix(in srgb, var(--accent) 15%, white); color: var(--accent); font-weight: 600; }
.ba-panel figcaption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,.55); color: white; font-size: 0.75rem; font-weight: 700; padding: 4px 8px; text-transform: uppercase; letter-spacing: .05em; }
.ba-label { margin-top: var(--spacing-sm); font-weight: 600; text-align: center; color: var(--text); }

/* Map Embed */
.section-map { padding-bottom: 0; }
.map-address { font-weight: 500; color: var(--accent); margin-bottom: var(--spacing-lg); }
.map-container { margin-top: var(--spacing-lg); }
.map-container iframe { display: block; width: 100%; }
.map-placeholder { background: var(--light-gray); padding: var(--spacing-xl); text-align: center; color: #6b7280; margin-top: var(--spacing-lg); border-radius: var(--radius); }

/* Video Embed */
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin-top: var(--spacing-lg); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: var(--radius); }
.video-placeholder { background: #0f172a; padding: var(--spacing-xl); text-align: center; color: #94a3b8; margin-top: var(--spacing-lg); border-radius: var(--radius); }
.video-caption { text-align: center; color: #6b7280; font-size: 0.875rem; margin-top: var(--spacing-md); }
.section-video-with-text .inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-xl); align-items: center; }
.section-video-with-text .video-wrapper { margin-top: 0; }
@media (max-width: 768px) {
  .section-video-with-text .inner { grid-template-columns: 1fr; }
  .ba-panels { grid-template-columns: 1fr 1fr; }
}

/* Scroll-reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
  .reveal.visible { opacity: 1; transform: none; }
}

/* Accessibility */
a:focus, button:focus, input:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
