/* ============================================================
   JARDIN DE BRABANT — styles.css
   Premium redesign — hand-crafted, no frameworks
   ============================================================ */

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --green-deepest: #0F2A1D;
  --green-dark:    #1B4332;
  --green-mid:     #2D6A4F;
  --green-light:   #52B788;
  --cream:         #F5F0E8;
  --cream-dark:    #EDE8DF;
  --white-soft:    #FAFAF7;
  --gold:          #B8860B;
  --gold-light:    #D4A843;
  --brown-dark:    #3E2C1C;
  --text-dark:     #1A1A1A;
  --text-muted:    #5C5446;
  --wa-green:      #25D366;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --max-w: 1280px;
  --pad-x: clamp(1.25rem, 5vw, 5rem);
  --section-pad: clamp(4rem, 8vw, 8rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── BASE ────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white-soft);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── GRAIN TEXTURE ───────────────────────────────────────── */
.grain { position: relative; }
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── DARK SECTION ────────────────────────────────────────── */
.dark-section { background: var(--green-deepest); }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.display-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green-dark);
}
.display-heading em { font-style: italic; color: var(--gold); }
.display-heading--light { color: #fff; }
.display-heading--light em { color: var(--green-light); }

.label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.label--light { color: var(--green-light); }

.body-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-top: 2rem;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal-section {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal-section.visible { opacity: 1; transform: translateY(0); }

.stagger-child {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.stagger-child.visible { opacity: 1; transform: translateY(0); }

/* ── LANGUAGE TOGGLE ─────────────────────────────────────── */
.lang-toggle {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(15, 42, 29, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 2rem;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.12);
}
.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  transition: color 0.2s;
}
.lang-btn.active { color: #fff; font-weight: 700; }
.lang-btn:hover  { color: rgba(255,255,255,0.85); }
.lang-sep { color: rgba(255,255,255,0.2); font-size: 0.7rem; user-select: none; }

/* ── WHATSAPP BUTTONS ────────────────────────────────────── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--wa-green);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: 3rem;
  position: relative;
  overflow: visible;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  cursor: pointer;
}

.btn-wa::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 3rem;
  background: var(--wa-green);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s, transform 0.3s;
  animation: waPulse 5s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 65%, 100% { opacity: 0; transform: scale(1); }
  32%  { opacity: 0.35; transform: scale(1.2); }
}

.btn-wa:hover  { transform: translateY(-2px) scale(1.03); }
.btn-wa:active { transform: scale(0.97); }

.btn-wa--hero {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  padding: 1rem 2.25rem;
  box-shadow: 0 6px 30px rgba(37,211,102,0.4);
}
.btn-wa--cta {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  padding: 1.2rem 3rem;
  box-shadow: 0 8px 40px rgba(37,211,102,0.5);
}
.btn-wa--mid {
  font-size: 1rem;
  padding: 0.9rem 2rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa--small {
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  margin-top: 1.75rem;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}
.btn-wa--dark  { background: var(--green-dark); }
.btn-wa--dark:hover { background: var(--green-mid); }
.btn-wa--green { background: var(--wa-green); }

.wa-svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-wa--hero .wa-svg { width: 22px; height: 22px; }
.btn-wa--cta .wa-svg  { width: 26px; height: 26px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.08) 0%,
    rgba(5,15,10,0.3) 45%,
    rgba(5,20,12,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--pad-x);
  padding-bottom: clamp(4rem, 9vh, 7rem);
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--green-light); display: block; }

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  margin-bottom: 2.75rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: dropLine 2s ease-in-out infinite;
}
@keyframes dropLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: top; opacity: 0.9; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ── INTRO ───────────────────────────────────────────────── */
.intro {
  background: var(--cream);
  padding: var(--section-pad) var(--pad-x);
}
.intro-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.intro-text .display-heading { margin-bottom: 1.5rem; }
.intro-photos {
  position: relative;
  height: 480px;
}
.intro-photo {
  position: absolute;
  overflow: hidden;
}
.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.intro-photo:hover img { transform: scale(1.04); }

.intro-photo--main {
  top: 0; left: 0;
  width: 75%;
  height: 78%;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}
.intro-photo--secondary {
  bottom: 0; right: 0;
  width: 52%;
  height: 58%;
  border: 5px solid var(--cream);
  box-shadow: -10px -10px 0 var(--green-light);
}

/* ── STATS ───────────────────────────────────────────────── */
.stats {
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--pad-x);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 1rem 2rem;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.65rem;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  font-size: 0.72rem;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── SERVICES ────────────────────────────────────────────── */
.services { background: var(--white-soft); }

.services-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad) var(--pad-x) clamp(2rem, 4vw, 3.5rem);
}

/* Base service block — shared */
.svc {
  display: grid;
  min-height: 560px;
}
.svc--ltr { grid-template-columns: 55% 45%; }
.svc--rtl { grid-template-columns: 45% 55%; }

.svc--rtl .svc-photo { order: 2; }
.svc--rtl .svc-body  { order: 1; }

.svc-photo {
  overflow: hidden;
  background: var(--green-dark);
}
.svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.svc:hover .svc-photo img { transform: scale(1.04); }

.svc-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4.5rem);
}
.svc-body--cream { background: var(--cream); }
.svc-body--white { background: var(--white-soft); }

.svc-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
  color: rgba(27,67,50,0.08);
  line-height: 1;
  margin-bottom: 0.25rem;
  display: block;
  user-select: none;
}
.svc-num--light { color: rgba(255,255,255,0.18); }

.svc-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--green-dark);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}
.svc-title--light { color: #fff; }

.svc-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 400px;
}
.svc-desc--light { color: rgba(255,255,255,0.78); }

/* Cinematic full-width service */
.svc--cinematic { display: block; }

.svc-cinema-photo {
  position: relative;
  height: clamp(480px, 65vh, 700px);
  overflow: hidden;
}
.svc-cinema-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.svc--cinematic:hover .svc-cinema-photo img { transform: scale(1.03); }

.svc-cinema-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(0,0,0,0.05) 0%,
    rgba(5,20,12,0.78) 100%
  );
}
.svc-cinema-text {
  position: absolute;
  bottom: 0; right: 0;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 5vw, 5rem);
  max-width: 540px;
  text-align: right;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery {
  background: var(--green-dark);
  padding: var(--section-pad) var(--pad-x);
}
.gallery-header { max-width: var(--max-w); margin: 0 auto 2.5rem; }

.gallery-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  columns: 4;
  column-gap: 0.6rem;
}
.g-item {
  break-inside: avoid;
  margin-bottom: 0.6rem;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  border-radius: 2px;
}
.g-item img {
  width: 100%;
  display: block;
  transition: transform 0.55s var(--ease-out), filter 0.4s;
  filter: brightness(0.95);
}
.g-item:hover img { transform: scale(1.05); filter: brightness(1.05); }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.hiw {
  background: var(--cream);
  padding: var(--section-pad) var(--pad-x);
}
.hiw-inner { max-width: var(--max-w); margin: 0 auto; }
.hiw-header { margin-bottom: clamp(3rem, 5vw, 4.5rem); }

.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.hiw-step {
  flex: 1;
  text-align: center;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}
.hiw-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}
.hiw-step:hover .hiw-circle { background: var(--gold); color: #fff; }

.hiw-text {
  font-size: 0.975rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 260px;
  margin: 0 auto;
}
.hiw-connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  align-self: center;
  margin-bottom: 3.5rem;
}
.hiw-cta {
  text-align: center;
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,20,12,0.75), rgba(15,42,29,0.92));
}
.cta-content {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) var(--pad-x);
  max-width: 740px;
}
.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.cta-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.cta-hint {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.07em;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--brown-dark);
  padding: 3rem var(--pad-x) 1.75rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.6rem;
}
.footer-phone {
  display: block;
  color: var(--green-light);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--wa-green); }
.footer-area {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
}
.footer-lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.footer-lang .lang-btn { min-width: auto; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 1.25rem auto 0;
}
.footer-copy {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.25);
}

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 24px rgba(37,211,102,0.5);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.2s;
  pointer-events: none;
}
.wa-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.wa-float svg { width: 28px; height: 28px; color: #fff; }

.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: 0;
  z-index: -1;
  animation: floatRing 5s ease-in-out infinite;
}
@keyframes floatRing {
  0%, 55%, 100% { opacity: 0; transform: scale(1); }
  27% { opacity: 0.38; transform: scale(1.45); }
}
.wa-float:hover { box-shadow: 0 8px 32px rgba(37,211,102,0.65); transform: scale(1.08); }
.wa-float:active { transform: scale(0.93); }

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.93);
  cursor: pointer;
}
.lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 94vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transform: scale(0.94);
  transition: transform 0.35s var(--ease-out);
}
.lightbox.open .lightbox-img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 2;
  color: rgba(255,255,255,0.65);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s;
}
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-close:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

/* ── 1024px ── */
@media (max-width: 1024px) {
  .gallery-grid { columns: 3; }
  .svc--ltr, .svc--rtl { grid-template-columns: 1fr 1fr; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .intro-inner { grid-template-columns: 1fr; gap: 3rem; }
  .intro-photos { height: 320px; order: -1; }
  .intro-photo--main  { width: 68%; height: 84%; }
  .intro-photo--secondary { width: 48%; height: 54%; }

  .hiw-steps { flex-direction: column; align-items: center; gap: 2rem; }
  .hiw-connector { width: 1px; height: 40px; margin: 0; }
  .hiw-step { padding: 0; width: 100%; max-width: 380px; }
}

/* ── 768px ── */
@media (max-width: 768px) {

  .svc--ltr, .svc--rtl {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .svc--rtl .svc-photo { order: 0; }
  .svc--rtl .svc-body  { order: 1; }
  .svc-photo { height: 300px; }
  .svc-body  { padding: 2.25rem 1.75rem; }
  .svc-num   { font-size: 3.5rem; }

  .svc-cinema-text {
    position: static;
    padding: 2rem 1.75rem;
    background: var(--green-deepest);
    max-width: 100%;
    text-align: left;
  }
  .svc-cinema-photo { height: 340px; }
  .svc-cinema-overlay { background: linear-gradient(to bottom, transparent 50%, rgba(5,20,12,0.6)); }

  .stats-inner { flex-direction: column; gap: 2rem; }
  .stat-divider { width: 60px; height: 1px; }
  .stat-item { padding: 0.5rem; }

  .gallery-grid { columns: 2; }

  .footer-inner { flex-direction: column; }

  .hiw-step { max-width: 100%; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .hero-content { padding-bottom: 5.5rem; }
  .gallery-grid { columns: 1; }
  .wa-float { width: 48px; height: 48px; bottom: 1.25rem; right: 1.25rem; }
  .wa-float svg { width: 24px; height: 24px; }

}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-section, .stagger-child { opacity: 1; transform: none; }
}
