/* ============================================
   trackbar 3.0 – Editorial Sport Style
   ============================================ */

:root {
  --red:    #e30613;
  --teal:   #7bc800;
  --black:  #0a0a0a;
  --white:  #ffffff;
  --gray:   #f0f0f0;
  --gray-mid: #888888;
  --font-display: 'Barlow Condensed', sans-serif;
  --font:         'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(180deg, #131313 0%, var(--black) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 1;
  transition: opacity 0.2s;
}

.nav-logos:hover { opacity: 0.7; }

.nav-logo-cf  { height: 28px; mix-blend-mode: screen; }
.nav-logo-egym { height: 28px; width: auto; filter: brightness(0) invert(1); }
.nav-logo-tb  { height: 28px; width: auto; mix-blend-mode: screen; }

.nav-divider {
  color: var(--gray-mid);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(135deg, #e30613 0%, #b8000f 100%);
  color: var(--white);
  padding: 10px 20px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(227,6,19,0.3);
}

.nav-cta:hover {
  background: linear-gradient(135deg, #ff2030 0%, #e30613 100%);
  box-shadow: 0 4px 20px rgba(227,6,19,0.5);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 60px;
  background: var(--black);
}

.hero-media {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0) 35%, #0a0a0a 95%);
  pointer-events: none;
  z-index: 1;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border-right: 2px solid var(--red);
}

.hero-placeholder span,
.media-placeholder span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
}

.hero-content {
  background: linear-gradient(145deg, #141414 0%, var(--black) 60%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline .accent {
  background: linear-gradient(90deg, var(--red) 0%, #ff3d2e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e30613 0%, #b8000f 100%);
  color: var(--white);
  padding: 16px 32px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  align-self: flex-start;
  box-shadow: 0 4px 20px rgba(227,6,19,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff2030 0%, #e30613 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(227,6,19,0.5);
}

/* ============================================
   TRACKBAR USP
   ============================================ */
.trackbar-usp {
  background: linear-gradient(180deg, #ebebeb 0%, #ffffff 55%);
  border-top: 4px solid var(--black);
}

.usp-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.usp-text {
  padding: 80px 64px 80px max(32px, calc((100vw - 1200px) / 2 + 32px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 2px solid var(--black);
}

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.usp-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.usp-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
  max-width: 440px;
  margin-bottom: 36px;
}

.usp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.usp-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}

.usp-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  flex-shrink: 0;
}

.usp-media {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.usp-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e8e8;
}

/* ============================================
   BOOKING
   ============================================ */
.booking {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(227,6,19,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #111 0%, var(--black) 100%);
  border-top: 4px solid var(--red);
  padding: 72px 32px 80px;
}

.booking-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.booking-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px 48px;
  margin-bottom: 40px;
}

.booking-header-left { grid-column: 1; }
.booking-header-right { grid-column: 2; }

.booking-header .section-label { color: var(--red); }

.booking-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.booking-sub {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Trust-Signale */
.booking-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 4px;
}

.booking-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-trust-item::before {
  content: '✓';
  color: #4caf50;
  font-size: 13px;
  font-weight: 700;
}

.booking-desktop { display: none; }
.booking-mobile  { display: block; }

/* ---- Booking iframe ------------------------------------ */
.booking-iframe-wrap {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  /* Höhe dynamisch per JS, Mindestwert für Ladestate */
  min-height: 900px;
}

.booking-iframe-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #111;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  z-index: 1;
}
.booking-iframe-loading.hidden { display: none; }

.booking-iframe-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: bspin 0.8s linear infinite;
}
@keyframes bspin { to { transform: rotate(360deg); } }

.booking-iframe {
  width: 100%;
  height: 900px;
  border: none;
  display: block;
  opacity: 0;
  transition: opacity 0.3s;
}
.booking-iframe.loaded { opacity: 1; }

.booking-iframe-blocked {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
  background: #111;
}
.booking-iframe-blocked[hidden] { display: none; }
.booking-iframe-blocked-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
}
.booking-iframe-blocked-sub {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  max-width: 400px;
  line-height: 1.5;
}

/* ============================================
   FULL WORKOUT
   ============================================ */
.fullworkout {
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(227,6,19,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  border-top: 4px solid var(--red);
  padding: 96px 32px;
}

.fullworkout-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.fullworkout-header {
  text-align: center;
  margin-bottom: 56px;
}

.fullworkout-header .section-label {
  color: var(--red);
}

.fullworkout-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.fullworkout-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.fullworkout-video-wrap {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 1px rgba(227,6,19,0.15),
    0 24px 80px rgba(0,0,0,0.7);
}

.fullworkout-video {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #000;
}

/* ============================================
   STUDIO
   ============================================ */
.studio {
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
  border-top: 4px solid var(--black);
  padding: 72px 32px;
}

.studio-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.studio-block {
  padding: 0 48px 0 0;
  border-right: 1px solid #e0e0e0;
  margin-right: 48px;
}

.studio-block:last-child {
  border-right: none;
  margin-right: 0;
}

.studio-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.studio-address {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
}

.studio-phone {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.studio-phone:hover { color: var(--red); }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 24px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.hours-grid span:nth-child(odd) {
  font-weight: 600;
  color: var(--black);
}

.studio-mail {
  font-size: 14px;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
  transition: color 0.2s;
}

.studio-mail:hover { color: var(--red); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, #0f0f0f 0%, #050505 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-cf  { height: 24px; mix-blend-mode: screen; }
.footer-logo-egym { height: 24px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-tb  { height: 24px; width: auto; mix-blend-mode: screen; }

.footer-divider {
  color: var(--gray-mid);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

/* ============================================
   RESPONSIVE – TABLET (max 900px)
   ============================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    height: 62vw;
    min-height: 280px;
    max-height: 480px;
    position: relative;
  }

  .hero-media::after {
    background: linear-gradient(to bottom, rgba(10,10,10,0) 20%, #0a0a0a 100%);
  }

  .hero-content { padding: 48px 28px 60px; }

  .usp-grid { grid-template-columns: 1fr; }

  .usp-text {
    padding: 56px 28px;
    border-right: none;
    border-bottom: 2px solid var(--black);
  }

  .usp-media {
    min-height: 320px;
    position: relative;
  }

  .fullworkout { padding: 64px 24px; }

  .studio-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .studio-block {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 0 40px 0;
    margin-right: 0;
  }

  .studio-block:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ============================================
   RESPONSIVE – MOBILE (max 600px)
   ============================================ */
@media (max-width: 600px) {
  /* NAV */
  .nav-inner   { padding: 0 16px; }
  .nav-logos   { gap: 8px; }
  .nav-logo-cf { height: 22px; }
  .nav-logo-egym { height: 22px; }
  .nav-logo-tb  { height: 18px; }
  .nav-divider  { font-size: 12px; }
  .nav-logo-tb, .nav-divider:last-of-type { display: none; }
  .nav-cta { font-size: 11px; padding: 8px 12px; letter-spacing: 0.05em; }

  /* HERO */
  .hero-media { height: 70vw; min-height: 260px; }
  .hero-content { padding: 36px 20px 52px; }
  .hero-headline { font-size: clamp(38px, 11vw, 56px); }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .hero-label { font-size: 11px; letter-spacing: 0.12em; }

  /* BUTTONS – full width auf Mobile */
  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
    font-size: 14px;
  }

  /* USP */
  .usp-text { padding: 44px 20px; }
  .usp-headline { font-size: clamp(32px, 9vw, 48px); }
  .usp-body { font-size: 15px; }
  .usp-media { min-height: 260px; }

  /* BOOKING */
  .booking { padding: 48px 16px 60px; }
  .booking-header { grid-template-columns: 1fr; }
  .booking-header-right { grid-column: 1; }
  .booking-headline { font-size: clamp(34px, 10vw, 56px); }
  .booking-trust { flex-direction: row; flex-wrap: wrap; gap: 8px 20px; }
  .booking-trust-item { font-size: 11px; }
  .booking-iframe-wrap { min-height: 680px; border-radius: 8px; }
  .booking-iframe { height: 680px; }

  /* FULL WORKOUT */
  .fullworkout { padding: 52px 16px; }
  .fullworkout-headline { font-size: clamp(38px, 11vw, 64px); }
  .fullworkout-sub { font-size: 14px; }

  /* STUDIO */
  .studio { padding: 48px 20px; }
  .studio-name { font-size: 18px; }
  .hours-grid { font-size: 13px; }

  /* FOOTER */
  .footer { padding: 28px 20px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-logos { justify-content: center; }
  .footer-links { justify-content: center; }
}

/* ============================================
   RESPONSIVE – SEHR KLEINE SCREENS (max 380px)
   ============================================ */
@media (max-width: 380px) {
  .hero-headline { font-size: 36px; }
  .nav-logo-egym { display: none; }
  .nav-divider:first-of-type { display: none; }
}

/* ============================================
   MEMBERSHIP SECTION
   ============================================ */
.membership {
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(227,6,19,0.12) 0%, transparent 65%),
    linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  border-top: 4px solid var(--red);
  padding: 96px 32px;
  text-align: center;
}

.membership-inner {
  max-width: 700px;
  margin: 0 auto;
}

.membership-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.membership-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-membership {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 18px 44px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-membership:hover { background: #c0000f; }
.btn-membership:active { transform: scale(0.97); }

/* ============================================
   MEMBERSHIP POPUP
   ============================================ */
.mship-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
  animation: mship-fadein 0.2s ease;
}
.mship-overlay[hidden] { display: none; }

@keyframes mship-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.mship-modal {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: mship-slidein 0.25s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}

@keyframes mship-slidein {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

.mship-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.mship-modal-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mship-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  flex-shrink: 0;
}
.mship-close:hover {
  background: rgba(227,6,19,0.3);
  border-color: rgba(227,6,19,0.5);
  color: #fff;
}

.mship-modal-body {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 500px;
}

/* Loading spinner */
.mship-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}
.mship-loading.mship-loading--hidden { display: none; }

.mship-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: mship-spin 0.8s linear infinite;
}
@keyframes mship-spin { to { transform: rotate(360deg); } }

/* iframe */
.mship-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  inset: 0;
}
.mship-iframe--loaded { opacity: 1; }

/* Fallback */
.mship-blocked {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px;
  text-align: center;
}
.mship-blocked[hidden] { display: none; }
.mship-blocked-icon { font-size: 48px; }
.mship-blocked-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
}
.mship-blocked-sub { color: rgba(255,255,255,0.5); font-size: 14px; }
.mship-open-btn { margin-top: 8px; }

/* Responsive */
@media (max-width: 600px) {
  .membership { padding: 64px 20px; }
  .mship-modal { max-height: 96vh; border-radius: 8px; }
  .mship-modal-body { min-height: 400px; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.22s; }
[data-reveal-delay="3"] { transition-delay: 0.36s; }
[data-reveal-delay="4"] { transition-delay: 0.50s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; }
}
