/* ============================================================
   A-Support — Industrial Premium Design System
   Kleuren: #242424, #00A1E4, #8C705F, #F4ACB7, #C1CAC1
   ============================================================ */

:root {
  --primary-dark: #242424;
  --accent-blue: #00A1E4;
  --warm-taupe: #8C705F;
  --soft-pink: #F4ACB7;
  --sage: #C1CAC1;
  --white: #fafafa;
  --text-muted: rgba(250, 250, 250, 0.75);
  --card-radius: 20px;
  --pill-radius: 9999px;
  --nav-height: 72px;
  --section-padding: clamp(3rem, 8vw, 6rem);
  --container-max: 1200px;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--primary-dark);
  background-image: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 161, 228, 0.08), transparent),
                    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(140, 112, 95, 0.06), transparent);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
}
a:hover { text-decoration: underline; }
a:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
}

/* Typography */
.heading-condensed {
  font-family: 'Bebas Neue', 'Oswald', 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

h1, .h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin: 0 0 0.5em;
}
h2, .h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.75em;
}
h3, .h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}
p:last-child { margin-bottom: 0; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.section {
  padding: var(--section-padding) 0;
}

.section--dark {
  background: rgba(0, 0, 0, 0.2);
}

/* Navbar — pill, blur, fixed over hero */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5rem clamp(1rem, 4vw, 2rem) 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  padding: 0.5rem 1.25rem;
  border-radius: var(--pill-radius);
  background: rgba(36, 36, 36, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(193, 202, 193, 0.2);
}

.navbar-logo {
  font-family: 'Bebas Neue', 'Oswald', 'Anton', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
}
.navbar-logo:hover {
  color: var(--white);
  text-decoration: none;
}
.navbar-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  display: block;
  padding: 0.6rem 1rem;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--pill-radius);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
  background: rgba(193, 202, 193, 0.15);
  text-decoration: none;
}
.nav-links a.active {
  background: rgba(0, 161, 228, 0.25);
  color: var(--accent-blue);
  text-decoration: none;
}
.nav-links a:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(193, 202, 193, 0.3);
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
}
@media (min-width: 768px) {
  .nav-toggle { display: none; }
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle .icon-close { display: none; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  z-index: 999;
  background: var(--primary-dark);
  padding: 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.is-open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu a {
  display: block;
  padding: 1rem;
  min-height: 44px;
  color: var(--white);
  font-size: 1.125rem;
  border-bottom: 1px solid rgba(193, 202, 193, 0.2);
}
.mobile-menu a:hover { text-decoration: none; background: rgba(0,0,0,0.2); }
.mobile-menu a.active { color: var(--accent-blue); }

/* Main: ruimte voor vaste navbar op alle pagina's */
main {
  padding-top: var(--nav-height);
}

/* Hero: fullscreen, trekt onder navbar; alleen op homepage */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: calc(-1 * var(--nav-height));
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(36, 36, 36, 0.75) 0%,
    rgba(36, 36, 36, 0.5) 40%,
    rgba(36, 36, 36, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  color: var(--white);
  margin-bottom: 0.5em;
}
.hero-subline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--pill-radius);
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 161, 228, 0);
  transition: transform 0.2s ease, box-shadow 0.35s ease, background 0.2s, border-color 0.2s;
}
.btn:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}

.btn-primary {
  background: var(--accent-blue);
  color: var(--white);
  border-color: var(--accent-blue);
}
.btn-primary:hover {
  background: #0090c9;
  border-color: #0090c9;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 161, 228, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--sage);
}
.btn-outline:hover {
  background: rgba(193, 202, 193, 0.1);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: rgba(36, 36, 36, 0.6);
  border: 1px solid rgba(193, 202, 193, 0.25);
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
  transition: transform 0.3s ease, box-shadow 0.4s ease, border-color 0.2s;
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .card { transition: none; }
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(193, 202, 193, 0.4);
}

.card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.card-title {
  color: var(--white);
  margin-bottom: 0.5em;
}
.card p { margin-bottom: 1rem; }

/* USP bar */
.usp-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--card-radius);
  border: 1px solid rgba(193, 202, 193, 0.2);
}
.usp-bar span {
  color: var(--sage);
  font-weight: 500;
  padding: 0.25em 0.4em;
  margin: 0 -0.1em;
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease;
}
.usp-bar span:hover {
  color: var(--accent-blue);
  background: rgba(0, 161, 228, 0.15);
}
.usp-bar span::after {
  content: ' • ';
  margin-left: 0.6rem;
  color: rgba(193, 202, 193, 0.5);
}
.usp-bar span:last-child::after { display: none; }

/* Licenties list */
.licenties-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.licenties-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}
.licenties-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
}

/* Timeline */
.timeline-section .section-title { text-align: center; margin-bottom: 2rem; }

.timeline-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.timeline-filters button {
  padding: 0.5rem 1rem;
  min-height: 44px;
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 500;
  color: var(--sage);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(193, 202, 193, 0.3);
  border-radius: var(--pill-radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.timeline-filters button:hover,
.timeline-filters button.active {
  background: rgba(0, 161, 228, 0.2);
  color: var(--accent-blue);
  border-color: var(--accent-blue);
}
.timeline-filters button:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
}
.timeline-track {
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-blue), var(--warm-taupe));
  border-radius: 2px;
  opacity: 0.4;
}
.timeline-line-progress {
  position: absolute;
  left: 12px;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--accent-blue);
  border-radius: 2px;
  transition: height 0.5s ease;
}

/* Tijdlijn-lijst: fade bij filterwissel */
#timeline-list {
  transition: opacity 0.22s ease;
}
#timeline-list.timeline-list--filtering {
  opacity: 0;
}

@keyframes timeline-item-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 2rem;
  opacity: 0;
  animation: timeline-item-in 0.35s ease forwards;
}
.timeline-item:nth-child(1) { animation-delay: 0.02s; }
.timeline-item:nth-child(2) { animation-delay: 0.05s; }
.timeline-item:nth-child(3) { animation-delay: 0.08s; }
.timeline-item:nth-child(4) { animation-delay: 0.11s; }
.timeline-item:nth-child(5) { animation-delay: 0.14s; }
.timeline-item:nth-child(6) { animation-delay: 0.17s; }
.timeline-item:nth-child(7) { animation-delay: 0.2s; }
.timeline-item:nth-child(8) { animation-delay: 0.23s; }
.timeline-item:nth-child(9) { animation-delay: 0.26s; }
.timeline-item:nth-child(10) { animation-delay: 0.29s; }
.timeline-item:nth-child(n+11) { animation-delay: 0.32s; }
.timeline-item:last-child { padding-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  .timeline-item { animation: none; opacity: 1; }
  #timeline-list.timeline-list--filtering { transition: none; }
}

.timeline-dot {
  position: absolute;
  left: 6px;
  top: 0.35em;
  width: 14px;
  height: 14px;
  background: var(--primary-dark);
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  z-index: 1;
}
.timeline-item[data-category="petrochemie"] .timeline-dot { border-color: var(--warm-taupe); }
.timeline-item[data-category="groot-metaal"] .timeline-dot { border-color: var(--accent-blue); }
.timeline-item[data-category="installatie"] .timeline-dot { border-color: var(--sage); }

.timeline-period {
  font-weight: 600;
  color: var(--accent-blue);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.timeline-company { font-weight: 600; color: var(--white); }
.timeline-category {
  font-size: 0.8rem;
  color: var(--sage);
  margin-top: 0.25rem;
}

/* Page hero (inner pages): volle breedte foto met tekst erover */
/* Page hero: trekt onder navbar (MVK, IWS, Contact) — nav ligt transparant over de afbeelding */
.page-hero {
  position: relative;
  min-height: 50vh;
  margin-top: calc(-1 * var(--nav-height));
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(36, 36, 36, 0.6) 0%,
    rgba(36, 36, 36, 0.5) 50%,
    rgba(36, 36, 36, 0.85) 100%);
}
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.page-hero .hero-content .h1 {
  margin-bottom: 0;
  color: var(--white);
}
.page-hero .hero-content .page-hero-intro {
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Legacy page-header (fallback) */
.page-header {
  padding: 4rem 0 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
}
.page-header .h1 { margin-bottom: 0.5rem; }
.page-header-img {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: var(--card-radius);
  margin: 1.5rem auto 0;
  display: block;
  border: 1px solid rgba(193, 202, 193, 0.2);
}
.content-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(193, 202, 193, 0.2);
}

/* Content block */
.content-block {
  max-width: 720px;
  margin: 0 auto;
}
.content-block ul {
  margin: 1em 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
}
.content-block li { margin-bottom: 0.5rem; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-card {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(193, 202, 193, 0.2);
  border-radius: var(--card-radius);
}

.contact-grid-two { margin-bottom: 0; }

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.contact-info-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(193, 202, 193, 0.15);
  color: var(--text-muted);
}
.contact-info-list li:last-of-type { border-bottom: none; }
.contact-info-list a { color: var(--accent-blue); }
.contact-info-list a:hover { text-decoration: none; }
.contact-info-list .btn { margin-top: 0.25rem; }

.contact-cta { margin: 0; }

.btn-sm {
  padding: 0.5rem 1rem;
  min-height: 40px;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: var(--white);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(193, 202, 193, 0.3);
  border-radius: 12px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 250, 250, 0.4);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 161, 228, 0.2);
}
.form-group input.error,
.form-group textarea.error {
  border-color: var(--soft-pink);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-checkbox input {
  width: auto;
  margin-top: 0.25rem;
  min-width: 20px;
  height: 20px;
}
.form-checkbox label { margin-bottom: 0; }

.form-success {
  padding: 1.25rem;
  background: rgba(0, 161, 228, 0.15);
  border: 1px solid var(--accent-blue);
  border-radius: 12px;
  color: var(--white);
  margin-bottom: 1rem;
  display: none;
}
.form-success.is-visible { display: block; }

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(193, 202, 193, 0.2);
  margin-top: 4rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links a {
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--accent-blue); text-decoration: none; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 100;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: #0090c9; }
.back-to-top:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: none; }
}

/* Reveal animations (scroll-based) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sectie: alle directe kinderen van .container / .content-block faden in bij scroll */
.reveal-children .container > *,
.reveal-children .content-block > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.reveal-children.is-visible .container > *,
.reveal-children.is-visible .content-block > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-children .container > *:nth-child(1),
.reveal-children .content-block > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-children .container > *:nth-child(2),
.reveal-children .content-block > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-children .container > *:nth-child(3),
.reveal-children .content-block > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-children .container > *:nth-child(4),
.reveal-children .content-block > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-children .container > *:nth-child(5),
.reveal-children .content-block > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-children .container > *:nth-child(6),
.reveal-children .content-block > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-children .container > *:nth-child(7),
.reveal-children .content-block > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-children .container > *:nth-child(8),
.reveal-children .content-block > *:nth-child(8) { transition-delay: 0.4s; }
.reveal-children .container > *:nth-child(9),
.reveal-children .content-block > *:nth-child(9) { transition-delay: 0.45s; }
.reveal-children .container > *:nth-child(10),
.reveal-children .content-block > *:nth-child(10) { transition-delay: 0.5s; }
.reveal-children .container > *:nth-child(n+11),
.reveal-children .content-block > *:nth-child(n+11) { transition-delay: 0.55s; }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.15s; }
.stagger > *:nth-child(4) { transition-delay: 0.2s; }
.stagger > *:nth-child(5) { transition-delay: 0.25s; }
.stagger > *:nth-child(6) { transition-delay: 0.3s; }
.stagger > *:nth-child(7) { transition-delay: 0.35s; }
.stagger > *:nth-child(8) { transition-delay: 0.4s; }
.stagger > *:nth-child(9) { transition-delay: 0.45s; }
.stagger > *:nth-child(10) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .stagger > *,
  .reveal-children .container > *,
  .reveal-children .content-block > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Placeholder for missing images */
.img-placeholder {
  background: linear-gradient(135deg, rgba(0, 161, 228, 0.15) 0%, rgba(140, 112, 95, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 0.875rem;
}
.hero-bg.img-placeholder { min-height: 100%; }
.hero-bg.img-placeholder img { display: none; }
.page-hero .hero-bg.img-placeholder { min-height: 50vh; }
.card.img-placeholder .card-image { display: none; }
.card.img-placeholder { min-height: 200px; }
.page-header.img-placeholder .page-header-img { display: none; }
.page-header.img-placeholder { min-height: 120px; }
figure.img-placeholder .content-img { display: none; }
figure.img-placeholder { min-height: 120px; }

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.intro-text { max-width: 640px; margin-left: auto; margin-right: auto; }
.contact-intro { max-width: 560px; margin: 0 auto; }
.contact-card.reveal:last-of-type { margin-bottom: 0; }
.contact-card-extra { margin-bottom: 2rem; }
