/* ==========================================================================
   CSS PAGES - HOME.CSS (Beranda)
   Fundraising-focused redesign
   --------------------------------------------------------------------------
   CATATAN: Duplikasi hasil merge redesign.css lama sudah dibersihkan.
   Setiap selector kini didefinisikan SATU kali dengan nilai final.
   ========================================================================== */

/* ─── 1. HERO SECTION ──────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: auto;
  min-height: 520px;
  display: flex;
  align-items: flex-start;
  color: var(--white);
  background-color: var(--green-dark);
  overflow: hidden;
  padding-bottom: 6.5rem;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 20s infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to right,
    rgba(5, 30, 16, 0.80) 0%,
    rgba(5, 30, 16, 0.60) 55%,
    rgba(5, 30, 16, 0.25) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  /* max-width dihapus: sudah di-handle oleh .container (1200px) */
  padding-top: 8rem;         /* Jarak konsisten: 6rem (tinggi navbar) + 2rem (jarak napas) */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hero copy (desktop side-by-side layout) */
.hero-copy { max-width: 690px; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(200, 151, 62, 0.15);
  border: 1px solid rgba(200, 151, 62, 0.5);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #E8C47A;   /* Gold terang — terbaca di atas dark bg */
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', var(--font-sans), sans-serif;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  max-width: 880px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.title-line-1 {
  display: block;
  font-size: clamp(1.4rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
  color: #FFFFFF;
}

.title-line-highlight {
  display: block;
  font-size: clamp(1.6rem, 4.2vw, 3.2rem);
  color: #E8C47A;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.title-line-sub {
  display: block;
  font-size: clamp(1.4rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #FFFFFF;
}

.hero-description {
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  font-weight: 600;
  margin-bottom: 2.25rem;
  color: #FFFFFF;
  max-width: 680px;
  line-height: 1.65;
}

.hero-highlights-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-star-icon {
  width: 14px;
  height: 14px;
  color: #E8C47A;
  fill: #E8C47A;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Pulse animation pada tombol donasi utama */
.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(166, 206, 57, 0.5); }
  50%       { box-shadow: 0 0 0 12px rgba(166, 206, 57, 0); }
}

/* ─── HERO DONATION CARD (desktop) ─────────────────────────────────────── */
.hero-donation-card {
  padding: 1.5rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(14px);
}

.hero-card-kicker {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-donation-card strong {
  display: block;
  margin: 0.45rem 0 0.35rem;
  color: var(--green-dark);
  font-family: var(--font-display, Georgia);
  font-size: 2.25rem;
  line-height: 1.1;
}

.hero-donation-card p { font-size: 0.86rem; line-height: 1.6; }

.hero-donation-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.hero-donation-card > a:hover { background: var(--green-dark); }

.hero-card-foot {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.69rem;
}

/* ─── HERO QUICK NAV GRID (mobile only, diaktifkan via media query) ────── */
.hero-quick-nav {
  display: none;   /* Desktop: navigasi sudah di navbar — sembunyikan */
}

.hero-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem 0.5rem;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s ease, color 0.2s ease;
  text-align: center;
}

.hero-quick-item:hover {
  background: var(--cream);
  color: var(--green);
}

.hero-quick-item i {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--green);
  flex-shrink: 0;
}

/* ─── 2. QUICK ACCESS MENU ─────────────────────────────────────────────── */
.quick-access-section {
  position: relative;
  z-index: 4;
  margin-top: -4.5rem;
  padding-bottom: 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-300);
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  text-align: center;
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  color: #111827;
  font-weight: 700;
  font-size: 0.85rem;
}

.quick-item i {
  font-size: 1.75rem;
  color: var(--green);
  margin-bottom: 0.75rem;
  transition: var(--transition-normal);
}

.quick-item:hover {
  background-color: var(--green);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quick-item:hover i { color: var(--lime); transform: scale(1.1); }

/* ─── 3. STATS COUNTER ─────────────────────────────────────────────────── */
.stats-counter-section {
  background: var(--green-dark);
  padding: 3rem 0;
  border-bottom: none;
}

.stats-counter-section .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Stats section intro label */
.stats-intro {
  text-align: center;
  padding-bottom: 1.5rem;
}
.stats-intro span { color: var(--lime); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.stats-intro p {
  margin-top: 0.45rem;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.5;
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-counter-card {
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}

.stat-counter-card:last-child { border-right: none; }

.stat-counter-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(200, 151, 62, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  color: var(--lime);
}

.stat-counter-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.stat-counter-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ─── 4. PROGRAM DONASI (Fundraising Cards) ────────────────────────────── */
/* Nilai final hasil dedup: gap 1.25rem, border tipis, shadow saat hover saja */
.fundraising-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fundraising-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(10,63,48,0.1);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.fundraising-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10,63,48,0.22);
}

.fundraising-img-wrapper {
  position: relative;
  aspect-ratio: 1.45;
  overflow: hidden;
}

.fundraising-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.fundraising-card:hover .fundraising-img-wrapper img {
  transform: scale(1.06);
}

.fundraising-category {
  display: none;
}

.fundraising-body {
  padding: 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fundraising-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7rem;
}

.fundraising-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
}

/* Progress bar fundraising */
.fundraising-progress-wrap {
  margin-bottom: 0.75rem;
}

.fundraising-progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.fundraising-collected {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
}

.fundraising-pct {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.fundraising-progress-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 100px;
  overflow: hidden;
}

.fundraising-progress-fill {
  height: 100%;
  background: var(--lime);
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  width: 0;
}

.fundraising-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.fundraising-donatur {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.fundraising-cta {
  display: block;
  text-align: center;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem;
  border-radius: 999px;
  transition: var(--transition-normal);
  text-decoration: none;
}

.fundraising-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ─── 5. ALUMNI STORY SECTION ───────────────────────────────────────────── */
.alumni-section {
  background: #fff;
}

.alumni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.alumni-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 1.7rem;
  border: 0;
  transition: var(--transition-normal);
}

.alumni-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.alumni-photo {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--gray-300);
}

.alumni-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.alumni-quote-icon {
  font-size: 2.5rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

.alumni-quote {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.alumni-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-dark);
  display: block;
}

.alumni-role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Impact statement bawah alumni */
.alumni-impact-bar {
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.alumni-impact-text {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  flex: 1;
}

.alumni-impact-text strong {
  color: var(--gold-mid);
  font-size: 1.15rem;
}

/* ─── 6. GALLERY PREVIEW ────────────────────────────────────────────────── */
.home-gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.home-gallery-preview-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
}

.home-gallery-preview-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.home-gallery-preview-item:hover img { transform: scale(1.08); }

.home-gallery-preview-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,63,48,0.28), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.home-gallery-preview-item:hover::after { opacity: 1; }

/* ─── 7. NEWS ───────────────────────────────────────────────────────────── */
.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.news-card {
  border: 1px solid rgba(10,63,48,0.1);
  box-shadow: none;
  border-radius: var(--radius-xl);
  background: var(--white);
}

.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* ─── 8. DONATION CTA BANNER ────────────────────────────────────────────── */
.donation-cta-banner {
  background: var(--green-dark);
  color: var(--white);
  padding: clamp(3rem, 7vw, 5rem);
  border-radius: var(--radius-2xl);
  box-shadow: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.donation-cta-banner::before {
  content: '';
  position: absolute;
  top: auto; left: auto; right: -12%; bottom: -60%;
  width: 430px; height: 430px;
  border: 80px solid rgba(255,255,255,0.035);
  border-radius: 50%;
  background: none;
}

.donation-cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.donation-cta-desc {
  max-width: 650px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
}

/* ─── INNER PAGE HERO (shared style) ────────────────────────────────────── */
.page-hero { padding-top: 9.5rem; padding-bottom: 5rem; background: var(--green-dark); }
.page-hero::before { background: radial-gradient(circle at 75% 30%, rgba(200,151,62,0.14), transparent 42%); }
.page-title { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.04em; }

/* ─── 9. FLOATING DONATE BAR (Mobile only) ──────────────────────────────── */
.floating-donate-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0.85rem 1.25rem;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  border-top: 1px solid var(--gray-300);
}

.floating-donate-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #D4A03A, #C8973E);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem;
  border-radius: var(--radius-lg);
  width: 100%;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
  animation: btnPulse 2.5s ease-in-out infinite;
}

/* Sembunyikan floating donate bar di desktop */
@media (min-width: 769px) {
  .floating-donate-bar { display: none !important; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */

/* 1024px — tablet landscape */
@media (max-width: 1024px) {
  .quick-grid         { grid-template-columns: repeat(3, 1fr); }
  .stats-counter-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-counter-grid .stat-counter-card:last-child { grid-column: span 2; }
  .fundraising-grid   { grid-template-columns: repeat(2, 1fr); }
  .home-news-grid     { grid-template-columns: repeat(2, 1fr); }
  .home-gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content       { max-width: 100%; }
  .stats-counter-section .container { gap: 1rem; }
}

/* 768px — mobile */
@media (max-width: 768px) {
  /* ── Hero mobile ── */
  .hero-section {
    align-items: flex-start;
    height: auto;
    min-height: auto;
    padding-bottom: 5.5rem;
  }
  .hero-content {
    padding-top: 5.75rem;
    padding-bottom: 1.5rem;
  }
  .hero-donation-card  { display: none; }   /* Sembunyikan kartu di mobile */
  .hero-quick-nav {                          /* Aktifkan quick nav di mobile */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255,255,255,0.96);
    border-radius: 1.25rem;
    overflow: hidden;
    margin-top: 1.25rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  }
  .hero-title          { font-family: 'Plus Jakarta Sans', var(--font-sans), sans-serif; font-size: 2.25rem; max-width: 100%; line-height: 1.3; }
  .title-line-1        { display: block; font-size: clamp(1.35rem, 5.2vw, 1.7rem); line-height: 1.3; margin-bottom: 0.35rem; }
  .title-line-2        { display: block; font-size: 1rem; margin-top: 0; }
  .highlight-yatim     { display: block; font-size: clamp(1.75rem, 6.8vw, 2.15rem); line-height: 1.25; color: #F3D082; font-weight: 800; margin-bottom: 0.35rem; text-shadow: 0 4px 20px rgba(0,0,0,0.6); }
  .title-line-sub      { display: block; font-size: clamp(1.3rem, 4.8vw, 1.55rem); color: #FFFFFF; font-weight: 700; line-height: 1.3; }
  .hero-description    { font-size: 0.95rem; }
  .hero-desc-br        { display: none; }
  .quick-grid          { grid-template-columns: repeat(3, 1fr); }
  .quick-access-section { margin-top: -4.5rem; }

  /* Stats counter — kecilkan agar tidak terpotong */
  .stats-counter-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-counter-card   {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0.75rem;
  }
  .stat-counter-card:last-child {
    grid-column: span 2;
    border-bottom: none;
  }
  .stat-counter-number {
    font-size: 1.6rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .stat-counter-label  { font-size: 0.78rem; }

  .fundraising-grid        { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
  .fundraising-card        { border-radius: 16px; border: 1px solid #f3f4f6; box-shadow: 0 4px 14px rgba(0,0,0,0.04); }
  .fundraising-img-wrapper { aspect-ratio: 1.15 / 1; }
  .fundraising-body        { padding: 0.75rem 0.7rem 0.95rem; gap: 0; }
  .fundraising-title       { font-size: 0.82rem; font-weight: 600; line-height: 1.4; height: 2.8em; margin-bottom: 0.5rem; color: #374151; letter-spacing: -0.01em; }
  .fundraising-desc        { display: none; }
  .fundraising-progress-bar{ height: 4px; background: #e5e7eb; margin-bottom: 0.4rem; }
  .fundraising-collected   { font-size: 0.85rem; font-weight: 700; color: #111827; }
  .fundraising-pct         { font-size: 0.68rem; font-weight: 500; color: #9ca3af; }
  .fundraising-meta        { display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; font-size: 0.7rem; color: #6b7280; font-weight: 500; margin-bottom: 0.6rem; }
  .fundraising-meta span   { margin-left: 0 !important; white-space: nowrap; }
  .fundraising-cta         { display: flex !important; margin-top: auto; width: 100%; }
  .fundraising-cta .btn    { width: 100%; font-size: 0.75rem; padding: 0.48rem 0.25rem; font-weight: 700; border-radius: 8px; justify-content: center; }
  .alumni-grid         { grid-template-columns: 1fr; }
  .alumni-card         { flex-direction: column; }
  .alumni-impact-bar   { flex-direction: column; text-align: center; gap: 1rem; }
  .home-news-grid      { grid-template-columns: 1fr; }
  .home-gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .donation-cta-banner { padding: 2.5rem 1.5rem; }
  .donation-cta-title  { font-size: 1.6rem; }
  /* floating-donate-bar visibility dikontrol sepenuhnya oleh JS (home.js)
     agar tidak muncul sebelum hero di-check oleh IntersectionObserver */
}

/* 480px — very small screens */
@media (max-width: 480px) {
  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    padding: 1rem;
  }
  .quick-item {
    padding: 0.9rem 0.25rem;
    font-size: 0.75rem;
    gap: 0.4rem;
    border-radius: var(--radius-md);
  }
  .quick-item i {
    width: 1.75rem;
    height: 1.75rem;
  }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
  .home-gallery-preview-grid { grid-template-columns: 1fr 1fr; }
}

/* Reduced motion (aksesibilitas) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
