/* ==========================================================================
   Yayasan Islam Mustaqbal Lana — Design System
   Tema: minimalis, hangat, islami (meniru azzamamry-lab.github.io/YayasanMustLana)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg: #faf9f5;            /* krem hangat */
  --surface: #ffffff;
  --surface-2: #f4f2ec;
  --ink: #1e2420;           /* teks utama */
  --muted: #6b736e;         /* teks sekunder */
  --line: #e8e5dc;          /* garis pemisah */

  --primary: #0f766e;       /* hijau islami */
  --primary-dark: #115e59;
  --primary-soft: #e9f5f2;
  --accent: #c89b3c;        /* aksen emas */
  --accent-soft: #faf3e2;
  --danger: #b45309;

  --white: #ffffff;

  --font-sans: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-arabic: "Amiri", "Times New Roman", serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(30, 36, 32, 0.05), 0 4px 14px rgba(30, 36, 32, 0.05);
  --shadow-md: 0 6px 24px rgba(30, 36, 32, 0.09);
  --shadow-lg: 0 18px 48px rgba(30, 36, 32, 0.14);

  --container: 1140px;
  --section-pad: 104px;
  --nav-h: 72px;

  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --t-fast: 0.18s;
  --t-med: 0.32s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
code { font-size: 0.9em; background: var(--surface-2); padding: 2px 7px; border-radius: 6px; }

::selection { background: var(--primary); color: var(--white); }

:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.45);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section { padding-block: var(--section-pad); }
.section-tint { background: linear-gradient(180deg, #f6f4ee 0%, var(--bg) 100%); }

/* ---------- Heading umum ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.eyebrow-light { color: #cde8e3; }
.eyebrow-light .eyebrow-dot { background: #e7c789; box-shadow: 0 0 0 4px rgba(231, 199, 137, 0.25); }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-title {
  margin: 14px 0 14px;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-desc { color: var(--muted); font-size: 1.02rem; margin: 0; }

.accent {
  position: relative;
  color: var(--primary);
}
.accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='6' viewBox='0 0 20 6'%3E%3Cpath d='M0 4.5Q5 0 10 4.5T20 4.5' fill='none' stroke='%23c89b3c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x bottom / 20px 6px;
  z-index: -1;
}

/* ---------- Tombol ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  will-change: transform;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.28);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(15, 118, 110, 0.34); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

.btn-light {
  background: var(--white);
  color: var(--primary-dark);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18); }

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }

.play-dot {
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease),
              backdrop-filter var(--t-med) var(--ease);
}
.navbar.scrolled {
  background: rgba(250, 249, 245, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(30, 36, 32, 0.06);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.32);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.06rem; font-weight: 800; letter-spacing: -0.01em; }
.brand-text small { font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav-link:hover { color: var(--primary); background: var(--primary-soft); }
.nav-link.active { color: var(--primary); background: var(--primary-soft); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--surface);
}
.nav-toggle span {
  height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   PAGE HERO (halaman dalam)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 64px;
  text-align: center;
  overflow: hidden;
}
.page-hero-inner { position: relative; max-width: 760px; }
.page-hero-title {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.page-hero-desc { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* ==========================================================================
   HERO (beranda)
   ========================================================================== */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 84px) 0 96px;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(720px 460px at 88% -10%, rgba(15, 118, 110, 0.10), transparent 62%),
    radial-gradient(560px 420px at -6% 108%, rgba(200, 155, 60, 0.10), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 6l6 16 16 6-16 6-6 16-6-16-16-6 16-6z' fill='none' stroke='%230f766e' stroke-opacity='0.05'/%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}

.hero-copy { position: relative; }

.hero-title {
  margin: 20px 0 18px;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.hero-sub {
  margin: 0 0 32px;
  max-width: 540px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 560px;
  margin: 0;
}
.stat {
  padding: 14px 8px 10px;
  border-top: 2px solid var(--line);
}
.stat dt { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--primary-dark); }
.stat dt span { color: var(--accent); }
.stat dd { margin: 2px 0 0; font-size: 0.78rem; font-weight: 600; color: var(--muted); }

/* Media hero */
.hero-media { position: relative; justify-self: center; }

.hero-frame {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 220px 220px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }

.frame-ring {
  position: absolute;
  inset: -16px;
  border: 2px dashed rgba(15, 118, 110, 0.28);
  border-radius: 240px 240px 34px 34px;
  pointer-events: none;
  animation: spin-slow 46s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-badge {
  position: absolute;
  left: -34px;
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  animation: float 5.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.badge-icon {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}
.badge-icon svg { width: 20px; height: 20px; }
.hero-badge strong { display: block; font-size: 0.86rem; }
.hero-badge small { color: var(--muted); font-size: 0.74rem; }

.arabic-quote {
  position: absolute;
  right: -6px;
  top: -34px;
  margin: 0;
  font-family: var(--font-arabic);
  font-size: 1.7rem;
  color: var(--primary);
  opacity: 0.85;
  transform: rotate(-6deg);
  text-shadow: 0 2px 10px rgba(15, 118, 110, 0.15);
}

/* ==========================================================================
   TENTANG
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-media::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 130px; height: 130px;
  border-radius: 24px;
  background: var(--accent-soft);
  z-index: -1;
}

.about-exp {
  position: absolute;
  right: -18px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.35);
}
.about-exp strong { font-size: 2rem; line-height: 1; }
.about-exp span { font-size: 0.78rem; font-weight: 600; line-height: 1.35; }

.about-body h3 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.about-body > p { color: var(--muted); margin: 0 0 26px; }

.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 26px;
}
.mv-card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: rgba(15, 118, 110, 0.35); }
.mv-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 14px;
}
.mv-icon svg { width: 22px; height: 22px; }
.mv-card h4 { margin: 0 0 6px; font-size: 1.02rem; }
.mv-card p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.value-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.value-list li span { color: var(--accent); }

/* ==========================================================================
   PROGRAM
   ========================================================================== */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  position: relative;
  padding: 34px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  overflow: hidden;
}
.program-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.program-card:hover::after { transform: scaleX(1); }

.program-icon {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.3);
  margin-bottom: 22px;
}
.program-icon svg { width: 28px; height: 28px; }

.program-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.program-card p { margin: 0 0 20px; color: var(--muted); font-size: 0.93rem; line-height: 1.6; }

.program-tag {
  display: inline-block;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

/* ==========================================================================
   VIDEO
   ========================================================================== */
.video-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1210;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--t-med) var(--ease);
}
.video-frame:hover { box-shadow: var(--shadow-lg); }
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.video-featured .video-frame { border-radius: var(--radius-lg); }

.video-caption {
  margin: 16px 0 0;
  font-size: 1.12rem;
  font-weight: 700;
}

.video-side { display: flex; flex-direction: column; gap: 28px; }

.video-item .video-frame { box-shadow: var(--shadow-sm); }

.video-meta { display: flex; align-items: flex-start; gap: 10px; margin-top: 12px; }
.video-ts {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.video-meta h4 { margin: 0; font-size: 0.93rem; line-height: 1.45; }

/* ==========================================================================
   GALERI
   ========================================================================== */
.gallery-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--surface-2);
  border-radius: 999px;
  margin: 0 auto 36px;
  justify-content: center;
  width: fit-content;
}
.tab-btn {
  padding: 11px 26px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  transition: all var(--t-fast) var(--ease);
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.is-active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface-2);
  animation: fade-up 0.5s var(--ease) both;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(180deg, transparent 42%, rgba(12, 18, 15, 0.82));
  color: var(--white);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  align-self: flex-start;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4d38a;
}
.gallery-overlay p { margin: 0; font-size: 0.9rem; font-weight: 600; line-height: 1.4; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(12, 18, 15, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 24px;
}
.lightbox.is-open { display: flex; }

.lightbox-body {
  margin: 0;
  max-width: min(920px, 92vw);
  text-align: center;
  animation: zoom-in 0.3s var(--ease);
}
@keyframes zoom-in {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-body img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.lightbox-body figcaption {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 22px; right: 26px;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.24); transform: rotate(90deg); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid; place-items: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background var(--t-fast) var(--ease);
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.24); }
.lb-prev { left: 26px; }
.lb-next { right: 26px; }

/* ==========================================================================
   TESTIMONI
   ========================================================================== */
.testimoni__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimoni__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.testimoni__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimoni__card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 22px;
  font-family: var(--font-arabic);
  font-size: 4rem;
  line-height: 1;
  color: var(--primary-soft);
}  .testimoni__card p {
    position: relative;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 20px;
    padding-left: 14px;
  }
.testimoni__author strong { display: block; color: var(--primary-dark); font-weight: 700; font-size: 0.95rem; }
.testimoni__author span { font-size: 0.82rem; color: var(--accent); font-weight: 600; }

/* ==========================================================================
   KONTAK
   ========================================================================== */
.kontak__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.kontak__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kontak__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.kontak__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.kontak__icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 1.2rem;
}
.kontak__card h4 { margin: 0 0 4px; font-size: 0.95rem; }
.kontak__card p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

.kontak__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.kontak__form input,
.kontak__form textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.kontak__form input::placeholder,
.kontak__form textarea::placeholder { color: #9aa49d; }
.kontak__form input:focus,
.kontak__form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}
.kontak__form textarea { resize: vertical; }
.kontak__form .btn { align-self: flex-start; }

/* ==========================================================================
   DONASI
   ========================================================================== */
/* Panel profil yayasan (gaya CTA referensi) */
.donasi__profile {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0f766e 0%, #115e59 55%, #0b4a45 100%);
  color: var(--white);
  overflow: hidden;
  padding: 56px 48px;
  box-shadow: 0 24px 60px rgba(15, 118, 110, 0.3);
}
.donasi__profile .cta-pattern { opacity: 0.16; }
.donasi__profile-inner { position: relative; }

.donasi__profile-top {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.donasi__profile-logo {
  display: grid; place-items: center;
  width: 76px; height: 76px;
  flex-shrink: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.donasi__profile-logo svg { width: 40px; height: 40px; }

.donasi__profile-tag {
  display: inline-block;
  background: rgba(231, 199, 137, 0.22);
  color: #f4d38a;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 700;
}

.donasi__profile-name {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  font-weight: 800;
  line-height: 1.2;
}

.donasi__profile-desc {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 700px;
}

.donasi__profile-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
  margin: 0 0 18px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.85);
}

.donasi__profile-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.donasi__profile-legal span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.3rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cde8e3;
}

.donasi__profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.donasi__profile-stats div {
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}
.donasi__profile-stats span {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: #f4d38a;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

/* Grid formulir + ringkasan */
.donasi__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: start;
}

.donasi__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.donasi__card-title {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.donasi__form { display: flex; flex-direction: column; }

/* Chip pilihan (program & nominal) */
.donasi__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.donasi__chip { position: relative; cursor: pointer; }
.donasi__chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.donasi__chip span {
  display: block;
  padding: 10px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.donasi__chip:hover span { border-color: var(--primary); color: var(--primary); }
.donasi__chip input:checked + span {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.25);
}
.donasi__chip input:focus-visible + span,
.donasi__method input:focus-visible + .donasi__method-body {
  outline: 3px solid rgba(15, 118, 110, 0.45);
  outline-offset: 2px;
}

.donasi__chip--amount span {
  min-width: 112px;
  text-align: center;
}

/* Input form */
.donasi__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.donasi__input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
  margin-bottom: 14px;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.donasi__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}
.donasi__input:disabled {
  background: var(--surface-2);
  cursor: not-allowed;
}
.donasi__input::placeholder { color: #9aa49d; }

/* Metode pembayaran */
.donasi__methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.donasi__method { position: relative; cursor: pointer; }
.donasi__method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.donasi__method-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  padding: 16px 8px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: all 0.2s var(--ease);
  height: 100%;
}
.donasi__method:hover .donasi__method-body { border-color: var(--primary); }
.donasi__method input:checked + .donasi__method-body {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.22);
}
.donasi__method-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.donasi__method strong { color: var(--ink); font-size: 0.92rem; }
.donasi__method small { color: var(--muted); font-size: 0.74rem; }

/* Detail nomor rekening / e-wallet / QRIS */
.donasi__method-detail { margin-bottom: 16px; }

.donasi__bank {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 20px;
}

.donasi__bank-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(30, 36, 32, 0.12);
}
.donasi__bank-row:last-of-type { border-bottom: none; }
.donasi__bank-row > span:first-child {
  width: 80px;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.9rem;
}
.donasi__bank-row strong {
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 1px;
  flex: 1;
}

.donasi__copy {
  background: var(--accent);
  border: none;
  color: var(--white);
  border-radius: 10px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-sans);
  transition: background 0.2s var(--ease);
  flex-shrink: 0;
}
.donasi__copy:hover { background: #a97e2a; }

.donasi__method-note {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 10px 0 4px;
  text-align: center;
  margin: 0;
}

.donasi__qris {
  text-align: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.donasi__qris-placeholder {
  width: 180px;
  height: 180px;
  margin: 0 auto 14px;
  border-radius: 12px;
  position: relative;
  background-color: var(--surface);
  background-image: conic-gradient(from 0deg, #0f766e 25%, #ffffff 0 50%, #0f766e 0 75%, #ffffff 0);
  background-size: 22px 22px;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.donasi__qris-placeholder::before,
.donasi__qris-placeholder::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border: 7px solid var(--primary);
  background: var(--surface);
}
.donasi__qris-placeholder::before { top: 8px; left: 8px; }
.donasi__qris-placeholder::after { bottom: 8px; right: 8px; }
.donasi__qris-label {
  background: var(--primary);
  color: var(--surface);
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.3rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  z-index: 1;
}

/* Tombol & feedback form */
.donasi__submit {
  width: 100%;
  margin-top: 6px;
  font-size: 1.02rem;
}

.donasi__feedback {
  margin-top: 12px;
  font-weight: 600;
  min-height: 1.4em;
  text-align: center;
  font-size: 0.92rem;
}

/* Sidebar ringkasan & kepercayaan */
.donasi__aside {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.donasi__summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed rgba(30, 36, 32, 0.12);
}
.donasi__summary-row span { color: var(--muted); flex-shrink: 0; }
.donasi__summary-row strong { color: var(--ink); text-align: right; font-weight: 700; overflow-wrap: anywhere; }

.donasi__summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--primary);
}
.donasi__summary-total span { color: var(--muted); font-size: 0.92rem; }
.donasi__summary-total strong {
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.donasi__trust ul { list-style: none; }
.donasi__trust li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--muted);
  border-bottom: 1px dashed rgba(30, 36, 32, 0.1);
}
.donasi__trust li:last-child { border-bottom: none; }

/* ==========================================================================
   MODAL SUKSES DONASI
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 1.5rem;
}
.modal--open { visibility: visible; opacity: 1; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 15, 0.6);
  backdrop-filter: blur(4px);
}

.modal__card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 34px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s var(--ease);
  box-shadow: 0 30px 70px rgba(12, 18, 15, 0.4);
  max-height: 90vh;
  overflow-y: auto;
}
.modal--open .modal__card { transform: translateY(0) scale(1); }

.modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}
.modal__close:hover { color: var(--ink); }

.modal__check {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.4);
  animation: modal-pop 0.45s var(--ease);
}

@keyframes modal-pop {
  0% { transform: scale(0.4); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.modal__title {
  margin: 0 0 10px;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
}

.modal__desc {
  font-size: 0.93rem;
  color: var(--muted);
  margin: 0 0 22px;
}

.modal__detail {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 18px;
  margin-bottom: 22px;
}
.modal__detail div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.9rem;
}
.modal__detail span { color: var(--muted); }
.modal__detail strong { color: var(--ink); text-align: right; }

/* ==========================================================================
   CTA / DONASI
   ========================================================================== */
.cta {
  position: relative;
  margin: 0 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0f766e 0%, #115e59 55%, #0b4a45 100%);
  color: var(--white);
  overflow: hidden;
  text-align: center;
  padding: 88px 24px;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    radial-gradient(500px 300px at 15% 0%, rgba(200, 155, 60, 0.5), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 6l6 16 16 6-16 6-6 16-6-16-16-6 16-6z' fill='none' stroke='white'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 680px; }
.cta h2 {
  margin: 16px 0 16px;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}
.cta p { margin: 0 0 34px; color: rgba(255, 255, 255, 0.85); font-size: 1.02rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  margin-top: 96px;
  padding: 72px 0 0;
  background: #141b17;
  color: #c9d2cc;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 52px;
}

.brand-footer { margin-bottom: 18px; }
.brand-footer .brand-text strong { color: var(--white); }
.brand-footer .brand-text small { color: #8fa39b; }

.footer-brand p { margin: 0 0 22px; color: #9db0a8; max-width: 300px; line-height: 1.7; }

.socials { display: flex; gap: 10px; }
.socials a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #c9d2cc;
  transition: all var(--t-fast) var(--ease);
}
.socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.socials svg { width: 18px; height: 18px; }

.footer-col h4 {
  margin: 4px 0 18px;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: #9db0a8; transition: color var(--t-fast) var(--ease); }
.footer-col a:hover { color: #f4d38a; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #9db0a8;
  line-height: 1.55;
}
.contact-list svg { flex-shrink: 0; margin-top: 3px; color: var(--primary); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #7d9088;
  font-size: 0.82rem;
}
.footer-quran { font-style: italic; }
.footer-quran-src { color: #f4d38a; font-style: normal; font-weight: 600; }

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition: transform var(--t-med) var(--ease);
  animation: float 5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 26px; height: 26px; }

.back-top {
  position: fixed;
  right: 30px;
  bottom: 94px;
  z-index: 90;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t-med) var(--ease);
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--primary); color: var(--white); }
.back-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --section-pad: 84px; }

  .hero-inner { grid-template-columns: 1fr; gap: 72px; }
  .hero-media { justify-self: start; margin-left: 40px; }
  .hero-stats { max-width: 100%; }
  .hero-badge { left: -14px; }

  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-media { max-width: 560px; }

  .program-grid { grid-template-columns: 1fr 1fr; }
  .program-card:last-child { grid-column: 1 / -1; }

  .video-layout { grid-template-columns: 1fr; }
  .video-side { flex-direction: row; }
  .video-side .video-item { flex: 1; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

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

  .donasi__grid { grid-template-columns: 1fr; }
  .donasi__aside { position: static; }
  .donasi__profile { padding: 40px 32px; }
  .donasi__profile-top { flex-direction: column; align-items: center; text-align: center; }
  .donasi__profile-meta { grid-template-columns: 1fr; }
  .donasi__profile-legal { justify-content: center; }
  .donasi__profile-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }

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

@media (max-width: 768px) {
  :root { --section-pad: 72px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 24px 26px;
    background: rgba(250, 249, 245, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 40px rgba(30, 36, 32, 0.12);
    border-top: 1px solid var(--line);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-med) var(--ease);
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { display: block; padding: 13px 16px; font-size: 1rem; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; }

  .nav-toggle { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 56px); }
  .hero-media { margin-left: 0; justify-self: center; }
  .hero-badge { left: 8px; bottom: 24px; }
  .arabic-quote { right: 4px; top: -26px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 8px 18px; }

  .page-hero { padding: calc(var(--nav-h) + 52px) 0 48px; }

  .program-grid { grid-template-columns: 1fr; }
  .program-card:last-child { grid-column: auto; }

  .video-side { flex-direction: column; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

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

  .cta { margin: 0 16px; padding: 64px 22px; border-radius: 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .donasi__methods { grid-template-columns: 1fr; }
  .donasi__row { grid-template-columns: 1fr; }
  .donasi__card { padding: 22px; }
  .donasi__bank-row { flex-wrap: wrap; gap: 8px; }
  .donasi__bank-row > span:first-child { width: auto; }

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

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .mv-cards { grid-template-columns: 1fr; }
  .about-exp { right: 8px; }
  .hero-actions .btn { flex: 1; min-width: 150px; }
  .donasi__profile-stats span { font-size: 1.5rem; }
}

/* ---------- Preferensi pengguna ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
