/* =========================================================
   BUMDES PUTRA SAMUDRA PATIMBAN — Premium Style
   Aesthetic: Refined Maritime — Dark Navy + Gold
   File: public/css/style.css
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --navy:        #0a1628;
  --navy-2:      #0f2040;
  --navy-3:      #1a3560;
  --gold:        #c9a84c;
  --gold-lt:     #f0d080;
  --teal:        #00c9a7;
  --white:       #f8f5f0;
  --muted:       #8899b0;
  --surface:     #f2ede6;
  --card-bg:     #ffffff;
  --text:        #1a2a44;

  --radius-lg:   24px;
  --radius-xl:   36px;
  --shadow-soft: 0 8px 40px rgba(10, 22, 40, 0.10);
  --shadow-card: 0 20px 60px rgba(10, 22, 40, 0.08);
  --transition:  0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* =========================================================
   NAVBAR
   ========================================================= */
#main-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6%;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

#main-navbar.scrolled {
  padding: 16px 6%;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}

/* Brand */
.nav-brand { display: flex; flex-direction: column; gap: 2px; }

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-clock {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
}

.brand-date { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 400; }

.brand-clock,
.brand-date {
  transition: opacity 0.3s ease, max-height 0.3s ease;
  max-height: 30px;
  overflow: hidden;
}

#main-navbar.scrolled .brand-clock,
#main-navbar.scrolled .brand-date { opacity: 0; max-height: 0; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 8px; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.nav-link.cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border-color: var(--gold);
}

.nav-link.cta:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-1px);
}


/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.55) 0%,
    rgba(10,22,40,0.30) 40%,
    rgba(10,22,40,0.85) 100%
  );
}

/* Grain texture */
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 120px 6% 160px;
  max-width: 780px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 100px;
  color: var(--gold-lt);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}

.hero-tag span {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title em { color: var(--gold); font-style: normal; }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

/* CTA Buttons — tinggi seragam */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 100px;
  line-height: 1;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.35);
  line-height: 1;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 38px; right: 6%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5));
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

.hero-scroll-hint p {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ── STATS STRIP (FIXED: satu unit simetris) ── */
.hero-stats {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;

  /* Satu panel menyatu */
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  overflow: hidden;

  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.stat-chip {
  padding: 16px 40px;
  text-align: center;
  position: relative;
  flex-shrink: 0;
}

/* Divider vertikal tipis antar chip */
.stat-chip + .stat-chip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.stat-chip strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.stat-chip span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
  margin-top: 4px;
  white-space: nowrap;
}


/* =========================================================
   SHARED SECTION LAYOUT
   ========================================================= */
.section { padding: 100px 6%; }

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -1px;
}

.section-sub {
  font-size: 1rem;
  color: #6a7a8e;
  line-height: 1.8;
  max-width: 520px;
  margin-top: 14px;
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */
#tentang {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.pillar {
  padding: 22px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid #e8e2d9;
  transition: var(--transition);
}

.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

.pillar-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.pillar h5 { font-weight: 700; font-size: 0.9rem; color: var(--text); margin-bottom: 6px; }
.pillar p  { font-size: 0.8rem; color: #7a8a9a; line-height: 1.6; }

/* Visual col */
.about-visual { position: relative; }

.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10,22,40,0.16);
}

.about-img-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--navy);
  color: #fff;
  padding: 22px 26px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(10,22,40,0.25);
}

.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.about-badge span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

.about-deco {
  position: absolute;
  top: -24px; right: -24px;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 100%);
  border-radius: 30px;
  opacity: 0.25;
  z-index: -1;
}


/* =========================================================
   KATEGORI SECTION
   ========================================================= */
#kategori { background: var(--surface); }

.kategori-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.kategori-header .section-sub { margin: 14px auto 0; }

.kategori-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.kat-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  border: 1px solid #e8e2d9;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.kat-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.kat-card.blue::before  { background: linear-gradient(135deg, rgba(59,130,246,0.04) 0%, transparent 70%); }
.kat-card.green::before { background: linear-gradient(135deg, rgba(16,185,129,0.04) 0%, transparent 70%); }

.kat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: transparent; }
.kat-card:hover::before { opacity: 1; }

.kat-icon-wrap {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 28px;
}

.kat-card.blue  .kat-icon-wrap { background: #eff6ff; }
.kat-card.green .kat-icon-wrap { background: #ecfdf5; }

.kat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.kat-card p { font-size: 0.9rem; color: #7a8a9a; line-height: 1.75; flex: 1; }

.kat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.kat-card.blue  .kat-link { color: #3b82f6; }
.kat-card.green .kat-link { color: #10b981; }
.kat-link:hover { gap: 14px; }
.kat-link .arrow { font-size: 1rem; }


/* =========================================================
   PRODUK SECTION
   ========================================================= */
#produk { background: #fff; }

.produk-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.produk-header .section-sub { margin-top: 8px; }

.produk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.produk-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #ede8e0;
  transition: var(--transition);
  position: relative;
}

.produk-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }

.produk-img-wrap { position: relative; overflow: hidden; }

.produk-img-wrap img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}

.produk-card:hover .produk-img-wrap img { transform: scale(1.07); }

.produk-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--gold);
}

.produk-body { padding: 22px 24px 26px; }
.produk-body h4 { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.produk-price  { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 800; color: var(--navy-3); margin-bottom: 18px; }

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: var(--navy);
  color: #fff;
  transition: all 0.25s ease;
}

.btn-buy:hover { background: var(--navy-3); transform: translateY(-1px); }
.btn-buy.alt   { background: var(--surface); color: var(--navy); border: 1.5px solid #ddd; }
.btn-buy.alt:hover { background: var(--navy); color: #fff; border-color: var(--navy); }


/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--navy);
  padding: 56px 6%;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand .brand-name-f {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 800;
}

.footer-brand p { font-size: 0.82rem; color: var(--muted); max-width: 240px; line-height: 1.7; }

.footer-col-title {
  font-size: 0.72rem;
  color: #8899b0;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom .made-by { color: var(--gold); opacity: 0.55; font-size: 0.75rem; }


/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1),
              transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}


/* =========================================================
   HAMBURGER BUTTON
   ========================================================= */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  cursor: pointer;
  padding: 9px 10px;
  transition: background 0.25s ease;
}

.hamburger-btn:hover { background: rgba(255,255,255,0.15); }

.hamburger-btn .hbar {
  display: block;
  width: 100%; height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), opacity 0.2s ease;
}

.hamburger-btn.active .hbar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.active .hbar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.active .hbar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* =========================================================
   MOBILE DRAWER
   ========================================================= */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 998;
  transform: translateY(-110%);
  transition: transform 0.38s cubic-bezier(0.23,1,0.32,1);
  padding-top: 76px;
}

.mobile-drawer.open { transform: translateY(0); }

.drawer-inner {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  padding: 12px 0 24px;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 28px;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s ease, background 0.2s ease;
}

.drawer-link i { font-size: 1rem; color: var(--gold); width: 18px; }
.drawer-link:hover { color: #fff; background: rgba(255,255,255,0.04); }

.drawer-divider { height: 1px; background: rgba(201,168,76,0.12); margin: 8px 28px; }

.drawer-actions { display: flex; gap: 12px; padding: 16px 28px 0; }

.drawer-btn {
  flex: 1;
  padding: 13px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.drawer-btn.outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.drawer-btn.outline:hover { background: rgba(255,255,255,0.07); }
.drawer-btn.gold { background: var(--gold); color: var(--navy); border: 1px solid var(--gold); }
.drawer-btn.gold:hover { background: var(--gold-lt); }

.drawer-backdrop {
  display: none;
  position: fixed; inset: 0;
  z-index: 997;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
}
.drawer-backdrop.open { background: rgba(0,0,0,0.45); }


/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet */
@media (max-width: 900px) {
  #tentang { grid-template-columns: 1fr; gap: 48px; padding: 72px 6%; }
  .about-visual { display: none; }
}

/* Switch to hamburger */
.nav-desktop { display: flex; }

@media (max-width: 768px) {
  .nav-desktop    { display: none !important; }
  .hamburger-btn  { display: flex; }
  .mobile-drawer  { display: block; }
  .drawer-backdrop{ display: block; }

  #main-navbar          { padding: 18px 5%; }
  #main-navbar.scrolled { padding: 13px 5%; }

  .hero-content { padding: 100px 5% 160px; }


  .hero-scroll-hint { display: none; }

  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; }

  .section { padding: 64px 5%; }

  .about-pillars    { grid-template-columns: 1fr; }
  .produk-header    { flex-direction: column; align-items: flex-start; }
  .kategori-grid    { grid-template-columns: 1fr; }
  .footer-inner     { flex-direction: column; gap: 32px; }
  .footer-bottom    { flex-direction: column; text-align: center; }
}

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

}
