/* ============================================
   JUSTIN ROZENDAAL — Coaching & Strategie
   Boutique consulting aesthetic
   ============================================ */

/* -- Design tokens ------------------------------------------------- */
:root {
  /* OKLCH palette — neutrals tinted toward gold (hue ~85) */
  --color-bg:        oklch(11% 0.008 85);
  --color-surface:   oklch(14% 0.008 85);
  --color-elevated:  oklch(17% 0.01 85);
  --color-accent:    oklch(73% 0.12 85);
  --color-accent-hover: oklch(78% 0.1 85);
  --color-accent-subtle: oklch(73% 0.12 85 / 0.12);
  --color-text:      oklch(85% 0.01 85);
  --color-text-secondary: oklch(62% 0.01 85);
  --color-text-tertiary:  oklch(45% 0.008 85);
  --color-border:    oklch(22% 0.01 85);

  /* Spacing — 4pt scale */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Typography */
  --font-display: 'Bodoni Moda', serif;
  --font-body:    'Hanken Grotesk', sans-serif;

  /* Misc */
  --radius:      4px;
  --radius-lg:   8px;
  --max-w:       1200px;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* -- Reset & base -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  font-weight: 400;
  font-size: 1rem;
}

/* Sections that need position:relative for dividers */
.aanpak,
.waarom,
.contact,
.samenwerken {
  position: relative;
}

/* Film grain texture — applied across the whole page */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.055;
  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.85' 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: 200px 200px;
}

/* Divider gradient — gold shimmer between sections */
.aanpak::after,
.over::after,
.waarom::after,
.reviews::after,
.samenwerken::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, oklch(73% 0.12 85 / 0.3) 30%, oklch(73% 0.12 85 / 0.5) 50%, oklch(73% 0.12 85 / 0.3) 70%, transparent);
  z-index: 2;
}
/* Sections that already have border-top: remove the double line */
.over::after { bottom: auto; top: 0; display: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-lg); }

/* Eyebrow pattern — reused across sections */
[class*="__eyebrow"] {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

/* -- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px var(--space-lg);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-out-quart);
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, oklch(68% 0.13 75), oklch(76% 0.13 85), oklch(70% 0.11 90));
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--color-bg);
  border-color: oklch(70% 0.12 85 / 0.4);
  transition: all 0.5s var(--ease-out-quart);
}
.btn--primary:hover {
  background-position: 100% 50%;
  border-color: oklch(76% 0.12 85 / 0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px oklch(70% 0.12 85 / 0.25);
}
.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: oklch(55% 0.06 85 / 0.35);
}
.btn--outline:hover {
  border-color: oklch(73% 0.12 85 / 0.6);
  color: var(--color-accent);
  box-shadow: 0 0 16px oklch(70% 0.12 85 / 0.1);
}
.btn--sm { padding: 8px var(--space-md); font-size: 0.8rem; }
.btn--lg { padding: var(--space-md) var(--space-xl); font-size: 0.9rem; }
.btn--full { width: 100%; }

/* -- Navbar -------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-lg) 0;
  transition: all 0.5s var(--ease-out-quart);
}
.nav.scrolled {
  background: oklch(11% 0.008 85 / 0.92);
  padding: 14px 0;
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--color-border);
}
.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav__links a {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 0.825rem;
  letter-spacing: 0.5px;
  transition: color 0.3s var(--ease-out-quart);
}
.nav__links a:not(.btn):hover { color: var(--color-accent); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: all 0.3s var(--ease-out-quart);
}

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: oklch(11% 0.008 85 / 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: var(--space-xl) var(--space-lg);
    gap: var(--space-md);
    border-bottom: 1px solid var(--color-border);
  }
  .nav__links.open { display: flex; }
  .nav { background: oklch(11% 0.008 85 / 0.92); padding: var(--space-md) 0; backdrop-filter: blur(16px); }
}

/* -- Hero ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(1) contrast(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 70%, oklch(55% 0.08 85 / 0.06), transparent 60%),
    linear-gradient(180deg, oklch(11% 0.008 85 / 0.7) 0%, oklch(11% 0.008 85 / 0.35) 40%, oklch(11% 0.008 85 / 0.8) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: var(--space-5xl) var(--space-lg) var(--space-4xl);
  max-width: 720px;
  width: 100%;
  margin-right: auto;
}
.hero__title {
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}
.hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #ffffff;
  margin-bottom: var(--space-2xl);
  max-width: 520px;
  line-height: 1.85;
}
.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-tertiary);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--color-accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

@media (max-width: 768px) {
  .hero__content { text-align: center; margin: 0 auto; padding: var(--space-4xl) var(--space-lg) var(--space-3xl); }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
}

/* -- Aanpak / 4 fases ---------------------------------------------- */
.aanpak {
  padding: var(--space-5xl) 0 var(--space-4xl);
  background: var(--color-surface);
}
.aanpak__header {
  margin-bottom: var(--space-3xl);
}
.aanpak__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-text);
  font-weight: 400;
}
.aanpak__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
}
.aanpak__fase {
  background: var(--color-surface);
  padding: var(--space-xl) var(--space-lg);
  transition: background 0.5s var(--ease-out-quart);
}
.aanpak__fase:hover {
  background: var(--color-elevated);
}
.aanpak__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: var(--space-lg);
}
.aanpak__fase h3 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}
.aanpak__fase p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 65ch;
}

@media (max-width: 900px) {
  .aanpak__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .aanpak__grid { grid-template-columns: 1fr; }
}

/* -- Over / Begeleiding -------------------------------------------- */
.over {
  position: relative;
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
}
.over__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}
.over__image {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.over__content {
  padding-top: var(--space-xl);
}
.over__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-weight: 400;
}
.over__content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.85;
  max-width: 55ch;
}
.over__lijst {
  margin: var(--space-xl) 0 var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.over__lijst li {
  font-size: 0.9rem;
  color: var(--color-text);
  padding-left: var(--space-lg);
  position: relative;
}
.over__lijst li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--color-accent);
}
.over__stats {
  display: flex;
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}
.stat-item__getal {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
  white-space: nowrap;
}
.stat-item__label {
  font-size: 0.7rem;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@media (max-width: 768px) {
  .over__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .over__image { aspect-ratio: 16/10; }
  .over__content { padding-top: 0; }
}

/* -- Waarom -------------------------------------------------------- */
.waarom {
  padding: var(--space-5xl) 0;
  background: var(--color-surface);
}
.waarom__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-4xl);
  align-items: center;
}
.waarom__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-weight: 400;
}
.waarom__content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.85;
  max-width: 55ch;
}
.waarom__content .btn { margin-top: var(--space-lg); }
.waarom__image {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 768px) {
  .waarom__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .waarom__image { aspect-ratio: 16/10; }
}

/* -- Reviews ------------------------------------------------------- */
.reviews {
  position: relative;
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
}
.reviews__header {
  margin-bottom: var(--space-3xl);
}
.reviews__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-text);
  font-weight: 400;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
}
.review-card {
  background: var(--color-bg);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
}
.review-card__tekst {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-xl);
}
.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card__meta cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card__meta strong {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.85rem;
}
.review-card__meta span {
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
  letter-spacing: 0.5px;
}

.reviews__placeholder {
  padding: var(--space-2xl) var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.reviews__placeholder p {
  color: var(--color-text-tertiary);
  font-size: 0.9rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* -- Samenwerken --------------------------------------------------- */
.samenwerken {
  position: relative;
  padding: var(--space-5xl) 0;
  overflow: hidden;
}
.samenwerken__bg { position: absolute; inset: 0; }
.samenwerken__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.3;
}
.samenwerken__bg-overlay {
  position: absolute;
  inset: 0;
  background: oklch(11% 0.01 85 / 0.88);
}
.samenwerken__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.samenwerken__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: var(--space-2xl);
  font-weight: 400;
}
.samenwerken__stappen {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-2xl);
}
.samenwerken__stap {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid oklch(100% 0 0 / 0.06);
}
.samenwerken__stap:last-child { border-bottom: none; }
.samenwerken__num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-accent);
  opacity: 0.5;
  line-height: 1.5;
  min-width: 28px;
}
.samenwerken__stap h3 {
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-text);
  margin-bottom: 4px;
}
.samenwerken__stap p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* -- Contact ------------------------------------------------------- */
.contact {
  padding: var(--space-5xl) 0;
  background: var(--color-surface);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-4xl);
  align-items: start;
}
.contact__info h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-weight: 400;
}
.contact__info > p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.85;
  max-width: 45ch;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}
.contact__detail svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--color-accent);
}
.contact__detail a {
  color: var(--color-text-secondary);
  transition: color 0.3s var(--ease-out-quart);
}
.contact__detail a:hover { color: var(--color-accent); }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.form-group input,
.form-group textarea {
  background: oklch(11% 0.008 85 / 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px var(--space-md);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out-quart);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-tertiary);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  background: oklch(11% 0.008 85 / 0.8);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .form-row { grid-template-columns: 1fr; }
}

/* -- Footer -------------------------------------------------------- */
.footer {
  background: var(--color-bg);
  padding: var(--space-3xl) 0 0;
  color: var(--color-text-secondary);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  display: block;
  margin-bottom: var(--space-sm);
}
.footer__brand p {
  font-size: 0.825rem;
  color: #ffffff;
  max-width: 280px;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}
.footer__social {
  display: flex;
  gap: var(--space-sm);
}
.footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-quart);
}
.footer__social a:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}
.footer__social svg { width: 14px; height: 14px; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: #ffffff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.footer__col li { margin-bottom: var(--space-sm); }
.footer__col a, .footer__col li {
  font-size: 0.825rem;
  color: #ffffff;
  transition: color 0.3s var(--ease-out-quart);
}
.footer__col a:hover { color: var(--color-accent); }
.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
}
.footer__bottom a { color: var(--color-accent); }
.footer__credit,
.footer__credit a { color: var(--color-text-tertiary); }
.footer__credit a:hover { color: var(--color-accent); }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* -- Scroll-reveal animations -------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

/* Image reveal — scale-down + fade-in when scrolled into view */
[data-image-reveal] {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s var(--ease-out-expo), transform 1.3s var(--ease-out-expo);
  will-change: opacity, transform;
}
[data-image-reveal].revealed {
  opacity: 1;
  transform: scale(1);
}

/* Parallax target — JS writes --py (parallax Y offset in px) */
[data-parallax] {
  will-change: transform;
  transform: translate3d(0, var(--py, 0px), 0);
}
/* Full-bleed cover images need scale buffer so translateY never exposes edges */
.hero__image[data-parallax],
.samenwerken__bg-image[data-parallax] {
  transform: translate3d(0, var(--py, 0px), 0) scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  [data-reveal].revealed { transition: none; }
  [data-image-reveal] { opacity: 1; transform: none; }
  [data-image-reveal].revealed { transition: none; }
  [data-parallax] { transform: none !important; will-change: auto; }
  * { transition-duration: 0.01ms !important; }
}
