/* ==========================================================================
   Gilang IAGD — Calon Ketua IAGD ITB 2026–2029
   Stylesheet: layout, components, animations
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500;600;700&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  --accent: oklch(62% 0.19 48);
  --accent-dark: oklch(50% 0.19 48);
  --accent-light: oklch(72% 0.19 48);
  --accent-pale: oklch(96% 0.03 55);
  --accent-label: oklch(72% 0.16 50);
  --accent-label-dark: oklch(50% 0.16 48);

  --navy-900: oklch(32% 0.07 250);
  --navy-800: oklch(37% 0.08 250);
  --navy-700: oklch(45% 0.06 250);
  --navy-hero-1: oklch(46% 0.09 250);
  --navy-hero-2: oklch(38% 0.08 250);
  --navy-hero-3: oklch(34% 0.07 250);

  --bg: oklch(97% 0.008 250);
  --bg-soft: oklch(99% 0.004 250);
  --bg-header: oklch(99% 0.006 60 / 0.92);
  --border: oklch(88% 0.02 250);
  --border-soft: oklch(90% 0.02 250);

  --text-on-dark: oklch(90% 0.015 250);
  --text-muted-1: oklch(58% 0.03 250);
  --text-muted-2: oklch(50% 0.03 250);
  --text-muted-3: oklch(42% 0.04 250);
  --text-muted-4: oklch(40% 0.04 250);
  --text-muted-5: oklch(35% 0.05 250);
  --text-muted-6: oklch(30% 0.05 250);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  font-family: 'Work Sans', sans-serif;
  color: var(--text-muted-6);
}

h1, h2, h3 { font-family: 'Lora', serif; margin: 0; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; display: block; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.eyebrow { color: var(--accent); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; }
.eyebrow--light { color: var(--accent-label); }

.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: 30px; color: var(--navy-900); margin-top: 10px; }
.section-head .lead { max-width: 640px; margin: 14px auto 0; font-size: 15.5px; line-height: 1.7; color: var(--text-muted-4); }

.hint { text-align: center; font-size: 13.5px; color: var(--text-muted-2); margin: -20px 0 26px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Work Sans', sans-serif; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; white-space: nowrap; transition: transform .18s ease, background .18s ease;
}
.btn--pill { border-radius: 26px; padding: 14px 28px; }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -10px oklch(62% 0.19 48 / 0.9); }
.btn--accent:hover { color: #fff; transform: translateY(-2px); }
.btn--outline { border: 1.5px solid oklch(70% 0.03 250 / 0.6); color: #fff; background: transparent; font-weight: 600; }
.btn--outline:hover { color: #fff; background: oklch(100% 0 0 / 0.08); }
.btn--ghost { background: transparent; border: 1.5px solid oklch(80% 0.03 250 / 0.5); color: #fff; font-weight: 600; font-size: 13.5px; padding: 10px 22px; }
.btn--ghost:hover { color: #fff; background: oklch(100% 0 0 / 0.1); }

/* ---------------------------- Header ---------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg-header); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: 1160px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px 16px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.brand__logo { height: 34px; width: auto; flex-shrink: 0; }
.brand__number {
  width: 34px; height: 34px; border-radius: 8px; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.brand__name { font-family: 'Lora', serif; font-weight: 600; font-size: 16px; color: var(--navy-900); white-space: nowrap; }
.site-nav { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13.5px; font-weight: 500; }
.site-nav a { color: var(--text-muted-5); }

/* ---------------------------- Hero ---------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(circle at 20% 15%, var(--navy-hero-1) 0%, var(--navy-hero-2) 55%, var(--navy-hero-3) 100%);
}
.hero__deco { position: absolute; pointer-events: none; }
.hero__deco--tr { top: -60px; right: -60px; width: 300px; height: 300px; }
.hero__deco--tr svg { width: 100%; height: 100%; }
.hero__deco--bl { bottom: 0; left: 0; width: 340px; height: 190px; overflow: visible; }
.hero__deco--bl .deco-contour-svg { position: absolute; bottom: -70px; left: -80px; width: 320px; height: 320px; }
.hero__deco--bl .deco-skyline-svg { position: absolute; bottom: 0; left: 0; width: 340px; height: 140px; }

.contour-ring { fill: none; stroke: var(--accent-light); stroke-width: 1.6; }
.contour-ring:nth-child(1) { opacity: 0.12; }
.contour-ring:nth-child(2) { opacity: 0.18; }
.contour-ring:nth-child(3) { opacity: 0.24; }
.contour-ring:nth-child(4) { opacity: 0.3; }
.contour-ring--cool { stroke: oklch(85% 0.02 250); }

.skyline-fill { fill: oklch(78% 0.02 250); opacity: 0.16; }
.skyline-antenna { stroke: oklch(78% 0.02 250); stroke-width: 1.5; opacity: 0.22; }
.skyline-antenna-dot { fill: var(--accent-light); opacity: 0.55; }
.hero__inner {
  max-width: 1160px; margin: 0 auto; padding: 70px 24px 80px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 40px; align-items: center; position: relative;
}
.hero__content { min-width: 0; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff;
  padding: 7px 16px; border-radius: 20px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.03em;
  margin-bottom: 22px; flex-wrap: wrap; transform: rotate(-1.5deg);
}
.hero__title { font-size: 46px; line-height: 1.14; color: #fff; margin-bottom: 18px; }
.hero__title span { color: var(--accent-light); }
.hero__lead { font-size: 17px; line-height: 1.65; color: var(--text-on-dark); max-width: 520px; }
.hero__pillars { display: flex; gap: 10px; margin: 22px 0 28px; flex-wrap: wrap; align-items: center; }
.hero__pillars span:not(.divider) { font-family: 'Lora', serif; font-weight: 600; color: var(--accent-label); font-size: 15px; }
.hero__pillars .divider { width: 22px; height: 2px; background: oklch(60% 0.05 250); border-radius: 2px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__hashtag { margin-top: 26px; font-family: 'Lora', serif; font-style: italic; color: var(--accent-label); font-size: 15px; }

.hero__portrait { position: relative; display: flex; justify-content: center; align-items: center; min-height: 420px; }
.hero__portrait-glow {
  position: absolute; width: min(300px, 90%); aspect-ratio: 1; border-radius: 50%;
  background: oklch(62% 0.19 48 / 0.28); filter: blur(2px);
}
.hero__photo {
  position: relative; width: 100%; max-width: 330px; aspect-ratio: 3/4; height: auto;
  object-fit: cover; object-position: center 18%; cursor: zoom-in; transform: rotate(-2deg);
  clip-path: polygon(6% 2%, 30% 6%, 52% 1%, 74% 7%, 96% 3%, 100% 26%, 95% 50%, 100% 73%, 93% 97%, 70% 93%, 48% 99%, 26% 94%, 4% 98%, 1% 74%, 6% 50%, 0% 27%);
  filter: drop-shadow(0 22px 40px oklch(15% 0.05 250 / 0.55));
  transition: transform .25s ease;
}
.hero__photo:hover { transform: rotate(0deg) scale(1.02); }
.hero__caption {
  position: absolute; bottom: 6px; left: -4px; background: #fff; border-radius: 4px; padding: 14px 16px;
  max-width: 230px; transform: rotate(-3deg); box-shadow: 0 14px 30px -12px oklch(15% 0.05 250 / 0.6);
  font-size: 12.5px; color: var(--text-muted-5); line-height: 1.45;
}
.hero__itb-logo {
  position: absolute; top: -10px; right: -8px; width: 120px; height: auto;
  filter: drop-shadow(0 8px 16px oklch(25% 0.05 250 / 0.55));
}
.hero__flag { position: absolute; top: 84px; right: 0; display: flex; gap: 6px; transform: rotate(8deg); }
.hero__flag span { width: 18px; height: 5px; border-radius: 3px; background: #fff; opacity: 0.85; }
.hero__flag span:nth-child(2) { opacity: 0.6; }
.hero__flag span:nth-child(3) { opacity: 1; background: var(--accent-light); }

/* ---------------------------- Digital twin ---------------------------- */
.twin { background: var(--bg); padding: 60px 24px; overflow: hidden; }
.twin__inner {
  max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 40px; align-items: center; background: var(--navy-800); border-radius: 24px; padding: 40px 32px;
}
.twin__text h2 { font-size: 28px; color: #fff; margin-top: 10px; margin-bottom: 14px; }
.twin__text p { font-size: 15px; line-height: 1.75; color: var(--text-on-dark); }
.twin__scene { display: flex; justify-content: center; perspective: 900px; min-width: 0; overflow: hidden; }
.twin__cube-wrap { position: relative; width: 260px; height: 230px; max-width: 100%; flex-shrink: 0; }
.twin__cube { position: absolute; inset: 0; transform-style: preserve-3d; animation: rotateBuilding 16s linear infinite; }
.twin__face {
  position: absolute; width: 160px; height: 200px; left: 50px; top: 15px;
  border: 1px solid oklch(62% 0.16 48 / 0.6);
  background: repeating-linear-gradient(0deg, oklch(45% 0.14 45 / 0.35) 0 1px, transparent 1px 20px),
              repeating-linear-gradient(90deg, oklch(45% 0.14 45 / 0.35) 0 1px, transparent 1px 20px),
              oklch(30% 0.03 60 / 0.6);
  transform: translateZ(80px);
}
.twin__face--side { transform: rotateY(90deg) translateZ(80px); border-color: oklch(58% 0.16 48 / 0.5); background: repeating-linear-gradient(0deg, oklch(45% 0.14 45 / 0.3) 0 1px, transparent 1px 20px), repeating-linear-gradient(90deg, oklch(45% 0.14 45 / 0.3) 0 1px, transparent 1px 20px), oklch(26% 0.03 60 / 0.6); }
.twin__face--top { height: 160px; transform: rotateX(90deg) translateZ(20px); border-color: oklch(68% 0.15 50 / 0.6); background: repeating-linear-gradient(0deg, oklch(45% 0.14 45 / 0.4) 0 1px, transparent 1px 20px), repeating-linear-gradient(90deg, oklch(45% 0.14 45 / 0.4) 0 1px, transparent 1px 20px), oklch(35% 0.03 60 / 0.6); }
.twin__scan {
  position: absolute; left: 50px; top: 15px; width: 160px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  box-shadow: 0 0 12px oklch(70% 0.15 45 / 0.8); animation: scanSweep 3.2s ease-in-out infinite;
}
.twin__dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-light); animation: pulseDot 2.4s ease-in-out infinite; }
.twin__coord { position: absolute; font-family: monospace; font-size: 10px; color: oklch(68% 0.15 50 / 0.8); }
.twin__coord--x { top: 4px; right: 20px; }
.twin__coord--y { bottom: 2px; left: -6px; }

/* ---------------------------- Visi & Misi ---------------------------- */
.visi { max-width: 1160px; margin: 0 auto; padding: 56px 24px; }
.visi__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.visi__inner h2 { font-size: 30px; color: var(--navy-900); margin-bottom: 16px; }
.visi__inner p { font-size: 17px; line-height: 1.7; color: var(--text-muted-4); }

/* ---------------------------- Program ---------------------------- */
.program { background: var(--bg-soft); padding: 64px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.program__inner { max-width: 1160px; margin: 0 auto; }
.program__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: default;
  transition: transform .35s cubic-bezier(.34,1.3,.64,1), box-shadow .35s ease, border-color .35s ease;
}
.card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.34,1.3,.64,1);
}
.card:hover, .card:focus-within {
  transform: translateY(-8px);
  border-color: oklch(62% 0.19 48 / 0.35);
  box-shadow: 0 26px 46px -28px oklch(37% 0.08 250 / 0.55);
}
.card:hover::before, .card:focus-within::before { transform: scaleX(1); }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent-pale); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: transform .4s cubic-bezier(.34,1.3,.64,1), background .3s ease, color .3s ease;
}
.card:hover .card__icon, .card:focus-within .card__icon {
  background: var(--accent); color: #fff;
  transform: scale(1.1) rotate(-6deg);
}
.card__tag { font-family: 'Lora', serif; font-weight: 700; color: var(--accent); font-size: 15px; margin-bottom: 10px; }
.card h3 { font-size: 19px; color: var(--navy-900); margin-bottom: 8px; transition: color .3s ease; }
.card p { font-size: 14.5px; line-height: 1.65; color: var(--text-muted-3); }

.card.reveal { opacity: 0; transform: translateY(24px); }
.card.reveal.is-visible { opacity: 1; transform: translateY(0); }
.card.reveal:hover, .card.reveal.is-visible:hover, .card.reveal:focus-within { transform: translateY(-8px); }

/* ---------------------------- Events ---------------------------- */
.event { max-width: 1160px; margin: 0 auto; padding: 64px 24px; }
.event__chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 26px; }
.chip {
  font-family: 'Work Sans', sans-serif; font-size: 14.5px; font-weight: 600;
  padding: 12px 22px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid oklch(86% 0.04 55); background: var(--accent-pale); color: oklch(42% 0.08 55);
  transition: all .25s cubic-bezier(.34,1.3,.64,1);
}
.chip.is-active {
  padding: 14px 26px; border-color: var(--accent); background: var(--accent); color: #fff;
  transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 26px -14px oklch(62% 0.19 48 / 0.95);
}
.event__panel {
  max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 30px 32px; text-align: center; box-shadow: 0 18px 38px -28px oklch(37% 0.08 250 / 0.9);
}
.event__panel h3 { font-size: 22px; color: var(--navy-900); margin-bottom: 10px; }
.event__panel p { font-size: 15.5px; line-height: 1.7; color: var(--text-muted-3); margin: 0; }

/* ---------------------------- Tentang ---------------------------- */
.tentang { background: var(--navy-800); padding: 64px 24px; }
.tentang__inner {
  max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 40px; align-items: start;
}
.tentang__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tentang__gallery img { width: 100%; object-fit: cover; border-radius: 12px; cursor: zoom-in; transition: transform .22s ease; }
.tentang__gallery img:hover { transform: rotate(0deg) scale(1.02); }
.tentang__gallery img.span2 { grid-column: 1/3; height: 220px; transform: rotate(-1deg); }
.tentang__gallery img:nth-of-type(2) { height: 150px; transform: rotate(1.2deg); }
.tentang__gallery img:nth-of-type(3) { height: 150px; transform: rotate(-1.4deg); }
.tentang__quote {
  grid-column: 1/3; display: flex; align-items: center; gap: 16px; background: var(--navy-700);
  border-radius: 14px; padding: 14px 18px;
}
.tentang__quote img { height: 150px; width: auto; flex-shrink: 0; animation: floatMascot 3.6s ease-in-out infinite; }
.tentang__quote p { margin: 0; font-family: 'Lora', serif; font-style: italic; font-size: 15px; line-height: 1.6; color: #fff; }
.tentang__content h2 { font-size: 28px; color: #fff; margin-top: 10px; margin-bottom: 16px; }
.tentang__content > p { font-size: 15px; line-height: 1.75; color: var(--text-on-dark); margin-bottom: 14px; }
.tentang__stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 10px; }
.stat { background: var(--navy-700); border-radius: 10px; padding: 14px; font-size: 13px; color: var(--text-on-dark); line-height: 1.5; }
.tentang__lists { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; margin-top: 26px; }
.list-label { color: var(--accent-label); font-weight: 600; font-size: 13px; letter-spacing: 0.03em; margin-bottom: 8px; }
.tentang__lists ul { margin: 0; padding-left: 18px; color: var(--text-on-dark); font-size: 14px; line-height: 1.7; }

/* ---------------------------- Journey ---------------------------- */
.journey { max-width: 1160px; margin: 0 auto; padding: 64px 24px; }
.journey__track { position: relative; margin-bottom: 26px; }
.journey__line {
  position: absolute; top: 44px; left: 8%; right: 8%; height: 3px;
  background: repeating-linear-gradient(90deg, oklch(80% 0.08 55) 0 10px, transparent 10px 20px); border-radius: 2px;
}
.journey__steps {
  position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 16px;
}
.journey__step {
  background: none; border: none; padding: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform .25s cubic-bezier(.34,1.3,.64,1);
}
.journey__step.is-active { transform: translateY(-4px); }
.journey__ring {
  width: 74px; height: 74px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--accent); border: 2.5px solid var(--accent);
  box-shadow: 0 6px 16px -12px oklch(37% 0.08 250 / 0.8);
  transition: all .28s cubic-bezier(.34,1.3,.64,1);
}
.journey__step.is-active .journey__ring {
  background: var(--accent); color: #fff;
  box-shadow: 0 0 0 8px oklch(62% 0.19 48 / 0.15), 0 14px 26px -16px oklch(62% 0.19 48 / 0.9);
}
.journey__label { font-weight: 600; color: var(--navy-900); font-size: 14.5px; text-align: center; }
.journey__desc-box {
  max-width: 660px; margin: 0 auto 26px; background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 22px 26px; text-align: center; box-shadow: 0 16px 34px -28px oklch(37% 0.08 250 / 0.9);
}
.journey__desc-box p { font-size: 15px; line-height: 1.7; color: var(--text-muted-3); margin: 0; }
.journey__quote { background: oklch(94% 0.05 55 / 0.5); border-radius: 16px; padding: 26px 30px; text-align: center; }
.journey__quote p { font-family: 'Lora', serif; font-size: 18px; color: oklch(30% 0.05 45); margin: 0; }

/* ---------------------------- Gallery ---------------------------- */
.gallery { max-width: 1160px; margin: 0 auto; padding: 64px 24px; }
.gallery__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.gallery__grid img {
  flex: 1 1 260px; max-width: 260px; height: 260px; object-fit: cover; border-radius: 14px; cursor: zoom-in;
  box-shadow: 0 12px 26px -16px oklch(22% 0.06 250 / 0.8); transition: transform .3s cubic-bezier(.34,1.3,.64,1), box-shadow .3s ease;
}
.gallery__grid img:hover { transform: rotate(0deg) scale(1.05); box-shadow: 0 20px 36px -18px oklch(22% 0.06 250 / 0.9); }
.gallery__grid img:nth-child(1) { transform: rotate(-1.5deg); }
.gallery__grid img:nth-child(2) { transform: rotate(1.2deg); }
.gallery__grid img:nth-child(3) { transform: rotate(-1deg); }
.gallery__grid img:nth-child(4) { transform: rotate(1.6deg); }
.gallery__grid img:nth-child(5) { transform: rotate(-1.2deg); }
.gallery__grid img:nth-child(6) { transform: rotate(1.4deg); }

/* ---------------------------- Instagram ---------------------------- */
.instagram { background: var(--bg-soft); padding: 64px 24px; border-top: 1px solid var(--border); text-align: center; }
.instagram .hint a { color: var(--accent); font-weight: 600; }
.instagram__grid {
  max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.instagram__post {
  position: relative; display: block; aspect-ratio: 1; border-radius: 12px; overflow: hidden;
  box-shadow: 0 10px 22px -16px oklch(22% 0.06 250 / 0.7);
}
.instagram__post img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.instagram__post:hover img { transform: scale(1.06); }
.instagram__play {
  position: absolute; top: 10px; right: 10px; width: 26px; height: 26px; border-radius: 50%;
  background: oklch(15% 0.04 250 / 0.55); color: #fff; display: flex; align-items: center; justify-content: center;
}
.instagram__overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: oklch(37% 0.08 250 / 0); transition: background .25s ease; opacity: 0;
}
.instagram__post:hover .instagram__overlay { background: oklch(20% 0.05 250 / 0.35); opacity: 1; }
.instagram__cta { margin-top: 28px; }
.btn--outline-dark { border: 1.5px solid var(--navy-900); color: var(--navy-900); background: transparent; font-weight: 600; }
.btn--outline-dark:hover { color: #fff; background: var(--navy-900); }

.instagram__follow {
  max-width: 420px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: var(--accent);
}
.instagram__follow p { color: var(--text-muted-3); font-size: 15px; line-height: 1.65; margin: 0; }

/* ---------------------------- Aspirasi ---------------------------- */
.aspirasi { background: var(--bg-soft); padding: 64px 24px; border-top: 1px solid var(--border); }
.aspirasi__inner { max-width: 1160px; margin: 0 auto; }
.aspirasi__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; align-items: start; }
.aspirasi__form {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.aspirasi__form h3 { font-size: 20px; color: var(--navy-900); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-muted-4); }
.field input, .field select, .field textarea {
  padding: 11px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-family: 'Work Sans', sans-serif; font-size: 14px; color: var(--text-muted-6); outline: none; background: #fff;
}
.field textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr)); gap: 12px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-note { font-size: 12.5px; color: var(--text-muted-1); }
.form-note.is-error { color: var(--accent-dark); }

.aspirasi__list-wrap { display: flex; flex-direction: column; gap: 14px; }
.aspirasi__list-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.aspirasi__list-head > span:first-child { font-weight: 700; font-size: 14px; letter-spacing: 0.03em; color: var(--navy-900); }
.badge { background: var(--accent-pale); color: var(--accent-label-dark); border-radius: 999px; padding: 5px 14px; font-size: 13px; font-weight: 600; }
.badge--sm { padding: 3px 10px; font-size: 11.5px; }
.aspirasi__list { display: flex; flex-direction: column; gap: 12px; }
.empty { border: 1px dashed var(--border); border-radius: 14px; padding: 28px; text-align: center; color: var(--text-muted-2); font-size: 14px; }
.msg-card { background: #fff; border: 1px solid var(--border-soft); border-radius: 14px; padding: 18px 20px; animation: fadeUp .3s ease; }
.msg-card__head { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; align-items: baseline; }
.msg-card__name { font-weight: 700; color: var(--navy-900); font-size: 15px; }
.msg-card__date { font-size: 12px; color: var(--text-muted-1); }
.msg-card__meta { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin: 6px 0 10px; }
.msg-card__meta > span:first-child { font-size: 13px; color: var(--text-muted-2); }
.msg-card p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--text-muted-3); font-style: italic; }

.aspirasi__pager { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.pager-btn {
  display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px;
  padding: 0 6px; border-radius: 8px; font-size: 13.5px; font-weight: 600; text-decoration: none;
  color: var(--text-muted-3); border: 1px solid var(--border); background: #fff; transition: all .18s ease;
}
.pager-btn:hover { border-color: var(--accent); color: var(--accent); }
.pager-btn.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.pager-btn.is-disabled { opacity: 0.4; pointer-events: none; }
.pager-btn--nav { font-weight: 700; }
.pager-ellipsis { color: var(--text-muted-2); padding: 0 2px; font-size: 13.5px; }

/* ---------------------------- Final CTA ---------------------------- */
.cta-final { background: var(--accent); padding: 64px 24px; }
.cta-final__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cta-final__inner h2 { font-size: 30px; color: #fff; margin-bottom: 14px; }
.cta-final__inner > p { font-size: 16px; color: oklch(96% 0.03 55); line-height: 1.7; margin-bottom: 30px; }
.cta-final__social { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-top: 34px; }
.cta-final__hashtag { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; font-family: 'Lora', serif; font-weight: 700; font-style: italic; font-size: 36px; color: #fff; line-height: 1.1; }
.cta-final__links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; font-size: 15px; align-items: center; }
.cta-final__links a { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.cta-final__links a:hover { color: oklch(96% 0.03 55); }

/* ---------------------------- Footer ---------------------------- */
.site-footer { background: var(--navy-800); padding: 26px 24px; text-align: center; }
.site-footer .btn { margin-bottom: 16px; }
.site-footer p { font-size: 13px; color: var(--text-on-dark); margin: 0; }

/* ---------------------------- Lightbox ---------------------------- */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 100; background: oklch(15% 0.04 250 / 0.92);
  display: none; align-items: center; justify-content: center; padding: 32px; cursor: zoom-out;
  animation: fadeUp .2s ease;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 30px 60px -20px oklch(10% 0.04 250 / 0.9); }
.lightbox-close {
  position: absolute; top: 22px; right: 26px; width: 40px; height: 40px; border-radius: 50%;
  background: oklch(100% 0 0 / 0.14); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 600;
}

/* ---------------------------- Animations ---------------------------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rotateBuilding { from { transform: rotateX(-18deg) rotateY(0deg); } to { transform: rotateX(-18deg) rotateY(360deg); } }
@keyframes scanSweep { 0% { transform: translateY(-6px); opacity: 0; } 10% { opacity: 0.9; } 90% { opacity: 0.9; } 100% { transform: translateY(226px); opacity: 0; } }
@keyframes floatMascot { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-8px) rotate(1.5deg); } }
@keyframes pulseDot { 0%, 100% { transform: scale(1); opacity: 0.55; } 50% { transform: scale(1.6); opacity: 1; } }
