/* ═══════════════════════════════════════════════════════════════════════════
   endahnyawit.id — style.css
   Palet: Hijau Gelap #1B5E20 | Emas #C9A227 | Krem #F9F9F6
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --hijau: #1b5e20;
  --hijau-mid: #2e7d32;
  --hijau-light: #4caf50;
  --emas: #c9a227;
  --emas-light: #e8c55a;
  --krem: #f9f9f6;
  --putih: #ffffff;
  --abu: #6b7280;
  --abu-dark: #374151;
  --teks: #1a1a1a;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--teks);
  background: var(--putih);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}

/* ─── CONTAINER ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── TYPOGRAPHY ───────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  color: var(--hijau);
}

/* ─── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--emas);
  color: #1a1a1a;
}
.btn--gold:hover {
  background: var(--emas-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}
.btn--outline {
  background: transparent;
  border-color: var(--emas);
  color: var(--emas);
}
.btn--outline:hover {
  background: var(--emas);
  color: #1a1a1a;
  transform: translateY(-2px);
}
.btn--outline-green {
  background: transparent;
  border-color: var(--hijau);
  color: var(--hijau);
}
.btn--outline-green:hover {
  background: var(--hijau);
  color: var(--putih);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--putih);
  color: var(--hijau);
}
.btn--white:hover {
  background: var(--krem);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--putih);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
}
.btn--sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.875rem;
}
.btn--full {
  width: 100%;
  justify-content: center;
}

/* ─── NAVBAR ───────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 94, 32, 0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar__brand {
  display: flex;
  align-items: center;
}
.navbar__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.navbar__logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--hijau);
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__link {
  font-weight: 500;
  color: var(--abu-dark);
  position: relative;
  transition: color var(--transition);
}
.navbar__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emas);
  transition: width var(--transition);
}
.navbar__link:hover,
.navbar__link.active {
  color: var(--hijau);
}
.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hijau);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── FLASH MESSAGES ───────────────────────────────────────────────────────── */
.flash-container {
  position: fixed;
  top: calc(var(--navbar-h) + 1rem);
  right: 1rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 400px;
}
.flash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s ease;
}
.flash--success {
  background: var(--hijau);
  color: var(--putih);
}
.flash__close {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0.8;
}
.flash__close:hover {
  opacity: 1;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ─── SECTIONS ─────────────────────────────────────────────────────────────── */
.section {
  padding: 5rem 0;
}
.section--light {
  background: var(--krem);
  padding: 5rem 0;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emas);
  margin-bottom: 0.75rem;
}
.section__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--hijau);
  margin-bottom: 0.75rem;
}
.section__subtitle {
  color: var(--abu);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}
.section__action {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: var(--navbar-h) 0 0;
  overflow: hidden;
  margin-bottom: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hutan_sawit_hd.png");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3, 30, 3, 0.92) 0%,
    rgba(8, 50, 8, 0.70) 45%,
    rgba(5, 35, 5, 0.35) 75%,
    rgba(0, 0, 0, 0.50) 100%
  );
}
.hero__bg::after {
  display: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 3rem 0 5rem;
}
.hero__badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--emas-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--putih);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero__title--gold {
  color: var(--emas);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__scroll-indicator {
  display: none;
}
.hero__scroll-arrow {
  display: none;
}

/* ─── STATS ─────────────────────────────────────────────────────────────────── */
.stats {
  background-image: url("../images/hutan_sawit_hd.png");
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  padding: 3rem 0;
  margin-top: -2px;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3, 30, 3, 0.92) 0%,
    rgba(8, 50, 8, 0.70) 45%,
    rgba(5, 35, 5, 0.35) 75%,
    rgba(0, 0, 0, 0.50) 100%
  );
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item__number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--emas);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item__label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ─── ARTIKEL GRID ─────────────────────────────────────────────────────────── */
.artikel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.artikel-grid--full {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.artikel-card {
  background: var(--putih);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.artikel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.artikel-card__img-wrap {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.artikel-card__img-placeholder {
  font-size: 5rem;
  opacity: 0.4;
  transition: var(--transition);
}
.artikel-card:hover .artikel-card__img-placeholder {
  transform: scale(1.1);
}
.artikel-card__kategori {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--emas);
  color: #1a1a1a;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.artikel-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.artikel-card__tanggal {
  font-size: 0.8rem;
  color: var(--abu);
  margin-bottom: 0.5rem;
}
.artikel-card__judul {
  font-size: 1.1rem;
  color: var(--hijau);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.artikel-card__excerpt {
  font-size: 0.9rem;
  color: var(--abu);
  margin-bottom: 1.25rem;
  flex: 1;
}
.artikel-card__link {
  font-weight: 700;
  color: var(--emas);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}
.artikel-card__link:hover {
  gap: 0.75rem;
}
.artikel-card__link span {
  transition: var(--transition);
}

/* ─── LAYANAN ───────────────────────────────────────────────────────────────── */
.layanan {
  padding: 5rem 0;
  background: var(--krem);
}
.layanan__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.layanan__item {
  background: var(--putih);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.layanan__item:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--emas);
  box-shadow: var(--shadow-lg);
}
.layanan__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.layanan__item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--hijau);
}
.layanan__item p {
  font-size: 0.9rem;
  color: var(--abu);
  line-height: 1.6;
}

/* ─── CTA BANNER ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--hijau) 0%, #145214 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "🌴";
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20rem;
  opacity: 0.04;
}
.cta-banner__content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-banner__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--putih);
  margin-bottom: 1rem;
}
.cta-banner__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── PAGE HERO ─────────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--hijau) 0%, #145214 100%);
  padding: calc(var(--navbar-h) + 3rem) 0 3.5rem;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--putih);
  margin-bottom: 0.75rem;
}
.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── ARTIKEL TOOLBAR ───────────────────────────────────────────────────────── */
.artikel-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.search-input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.search-input:focus {
  border-color: var(--emas);
}
.filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 2px solid #e5e7eb;
  background: var(--putih);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--abu-dark);
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--hijau);
  color: var(--hijau);
}
.filter-btn.active {
  background: var(--hijau);
  border-color: var(--hijau);
  color: var(--putih);
}
.no-result {
  text-align: center;
  color: var(--abu);
  padding: 3rem 0;
  font-size: 1.1rem;
}

/* ─── DETAIL ARTIKEL ────────────────────────────────────────────────────────── */
.artikel-hero {
  background: var(--krem);
  padding: calc(var(--navbar-h) + 3rem) 0 3.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.artikel-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.artikel-hero__tanggal {
  color: var(--abu);
  font-size: 0.9rem;
}
.artikel-hero__judul {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--hijau);
  margin-bottom: 1rem;
  max-width: 800px;
}
.artikel-hero__excerpt {
  color: var(--abu-dark);
  font-size: 1.05rem;
  max-width: 700px;
  line-height: 1.7;
}
.artikel-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.artikel-konten {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--teks);
}
.artikel-konten h3 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--hijau);
}
.artikel-konten p {
  margin-bottom: 1.25rem;
}
.artikel-konten ul,
.artikel-konten ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
  list-style: disc;
}
.artikel-konten ol {
  list-style: decimal;
}
.artikel-konten li {
  margin-bottom: 0.4rem;
}
.artikel-konten strong {
  color: var(--hijau);
}

/* Sidebar */
.artikel-sidebar {
  position: sticky;
  top: calc(var(--navbar-h) + 1.5rem);
}
.sidebar-box {
  background: var(--putih);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  border-top: 4px solid transparent;
}
.sidebar-box--gold {
  border-top-color: var(--emas);
}
.sidebar-box__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.sidebar-box h3 {
  font-size: 1.1rem;
  color: var(--hijau);
  margin-bottom: 0.75rem;
}
.sidebar-box p {
  font-size: 0.9rem;
  color: var(--abu);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.sidebar-artikel {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f3f4f6;
  transition: var(--transition);
}
.sidebar-artikel:last-child {
  border-bottom: none;
}
.sidebar-artikel:hover {
  color: var(--hijau);
}
.sidebar-artikel__kategori {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--emas);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sidebar-artikel__judul {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--abu-dark);
}
.sidebar-artikel:hover .sidebar-artikel__judul {
  color: var(--hijau);
}

/* ─── KONTAK ────────────────────────────────────────────────────────────────── */
.kontak-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.kontak-info h2,
.kontak-form-wrap h2 {
  font-size: 1.75rem;
  color: var(--hijau);
  margin-bottom: 0.75rem;
}
.kontak-info__desc {
  color: var(--abu);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.kontak-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.kontak-item__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--krem);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kontak-item h4 {
  font-size: 1rem;
  color: var(--hijau);
  margin-bottom: 0.2rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.kontak-item a {
  color: var(--emas);
  font-weight: 600;
}
.kontak-item p {
  font-size: 0.875rem;
  color: var(--abu);
}

/* Form */
.kontak-form-wrap {
  background: var(--krem);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--abu-dark);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--teks);
  background: var(--putih);
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-control:focus {
  border-color: var(--emas);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
textarea.form-control {
  min-height: 120px;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
.footer {
  background: #0d3b0d;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__name {
  font-size: 1.5rem;
  color: var(--putih);
  margin-bottom: 0.75rem;
}
.footer__tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer__links h4,
.footer__contact h4 {
  color: var(--emas);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer__links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  transition: color var(--transition);
}
.footer__links a:hover {
  color: var(--emas);
}
.footer__contact p,
.footer__contact a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  display: block;
  transition: color var(--transition);
}
.footer__contact a:hover {
  color: var(--emas);
}
.footer__bottom {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── ANIMATIONS ────────────────────────────────────────────────────────────── */
@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}
@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 12px));
  }
}

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos-delay="100"] {
  transition-delay: 0.1s;
}
[data-aos-delay="200"] {
  transition-delay: 0.2s;
}
[data-aos-delay="300"] {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .layanan__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .artikel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .artikel-layout {
    grid-template-columns: 1fr;
  }
  .artikel-sidebar {
    position: static;
  }
  .kontak-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --navbar-h: 64px;
  }
  .navbar__menu {
    display: none;
    position: absolute;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    background: var(--putih);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    border-top: 2px solid var(--emas);
  }
  .navbar__menu.open {
    display: flex;
  }
  .navbar__toggle {
    display: flex;
  }
  .artikel-grid {
    grid-template-columns: 1fr;
  }
  .layanan__grid {
    grid-template-columns: 1fr;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__cta {
    flex-direction: column;
  }
  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }
  .artikel-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}
