:root {
  --ink: #f7f2e7;
  --muted: #c8d2cf;
  --dark: #050706;
  --coal: #101411;
  --panel: #151b18;
  --line: rgba(255, 255, 255, .16);
  --gold: #d7ad61;
  --gold-2: #f2d08d;
  --teal: #2aa89c;
  --green: #83b979;
  --red: #a84738;
  --paper: #f6f4ec;
  --paper-ink: #17211d;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--dark);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(4, 7, 6, .58);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
}
.site-header.is-scrolled { background: rgba(4, 7, 6, .92); }
.brand img { width: 142px; height: auto; object-fit: contain; }
.site-menu {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: rgba(255, 255, 255, .78);
}
.site-menu a { padding: 12px 0; border-bottom: 2px solid transparent; }
.site-menu a:hover,
.site-menu a.is-active { color: var(--gold-2); border-color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.link-login { font-size: 13px; color: rgba(255,255,255,.8); }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #16120a;
  border: 1px solid rgba(255, 255, 255, .35);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(0,0,0,.3);
}
.btn:hover { filter: brightness(1.05); }
.btn-small { min-height: 38px; padding: 0 18px; font-size: 12px; }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--ink);
  border-color: rgba(255,255,255,.38);
}
.text-link {
  color: var(--gold-2);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.42), rgba(0,0,0,.18)),
    linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.12) 52%, rgba(0,0,0,.58) 100%);
}
.hero-content {
  position: relative;
  width: min(860px, calc(100% - 36px));
  margin: 0 0 126px clamp(18px, 7vw, 110px);
}
.kicker {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero h1,
.article-title h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7.8vw, 92px);
  line-height: .95;
  font-weight: 700;
  text-shadow: 0 16px 38px rgba(0,0,0,.55);
}
.hero p:not(.kicker) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 2vw, 20px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.latest-strip {
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  right: clamp(18px, 4vw, 58px);
  bottom: 24px;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.18);
}
.latest-strip > span,
.latest-strip a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 20px;
  background: rgba(7, 10, 9, .78);
}
.latest-strip > span {
  min-width: 135px;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
}
.latest-strip a { color: rgba(255,255,255,.82); font-size: 14px; }
.latest-strip b { color: var(--teal); font-size: 11px; text-transform: uppercase; }

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 58px);
}
.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-heading.narrow { text-align: center; margin-inline: auto; }
.section-heading h2,
.feature-copy h2,
.cta-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1.02;
}
.section-heading p:not(.kicker),
.feature-copy p {
  color: var(--muted);
  font-size: 17px;
}

.intro-section {
  background: var(--paper);
  color: var(--paper-ink);
}
.intro-section .section-heading p:not(.kicker) { color: #4f5c57; }
.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.news-card {
  background: #fff;
  border: 1px solid #e2ded2;
  color: var(--paper-ink);
}
.news-card a { display: grid; height: 100%; }
.news-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.news-card span {
  margin: 18px 18px 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.news-card h3 {
  margin: 8px 18px 8px;
  font-size: 20px;
  line-height: 1.18;
}
.news-card p {
  margin: 0 18px 20px;
  color: #56615d;
  font-size: 14px;
}
.news-card-large {
  grid-column: span 2;
}
.news-card-large h3 { font-size: clamp(26px, 3vw, 38px); }
.ranking {
  position: sticky;
  top: 92px;
  padding: 24px;
  background: #111713;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,.18);
}
.ranking h2 { margin: 0 0 18px; font-family: Georgia, "Times New Roman", serif; }
.ranking a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.86);
}
.ranking span { color: var(--gold-2); font-weight: 900; }

.feature-world {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(76px, 9vw, 130px) clamp(18px, 5vw, 74px);
  background:
    linear-gradient(180deg, rgba(6, 10, 9, .92), rgba(15, 24, 20, .97)),
    url("../img/zona-aksi-pantai.png") center / cover fixed;
}
.feature-copy p { max-width: 600px; }
.feature-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.feature-panels article {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
}
.feature-panels img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.feature-panels h3,
.feature-panels p { margin-inline: 18px; }
.feature-panels h3 { margin-bottom: 4px; font-size: 22px; }
.feature-panels p { margin-top: 0; color: var(--muted); }

.role-section {
  padding: clamp(66px, 8vw, 110px) clamp(18px, 4vw, 58px);
  background: #090c0b;
}
.role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.role-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    #121714;
}
.role-grid span { color: var(--gold-2); font-weight: 900; }
.role-grid h3 { margin: 12px 0 10px; font-size: 24px; }
.role-grid p { margin: 0; color: var(--muted); }

.gallery-section {
  padding: clamp(66px, 8vw, 110px) clamp(18px, 4vw, 58px);
  background: #111712;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 12px;
}
.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #000;
  min-height: 240px;
}
.gallery-grid figure:first-child { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 6px 10px;
  background: rgba(0,0,0,.62);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(46px, 6vw, 74px) clamp(18px, 5vw, 74px);
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.36)),
    url("../img/apresiasi-relawan.png") center / cover;
}
.cta-band h2 { max-width: 760px; }

.faq-section {
  background: var(--paper);
  color: var(--paper-ink);
}
.faq-list,
.faq-inline {
  max-width: 900px;
}
details {
  border-top: 1px solid rgba(0,0,0,.15);
  padding: 18px 0;
}
summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}
details p { color: #56615d; }

.article-hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.article-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.4)),
    linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.08));
}
.article-title {
  position: relative;
  max-width: 980px;
  padding: 140px clamp(18px, 6vw, 88px) 64px;
}
.article-title h1 { font-size: clamp(38px, 6vw, 74px); }
.article-title p:not(.kicker) {
  max-width: 760px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
}
.breadcrumb { color: rgba(255,255,255,.7); font-size: 13px; }
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: rgba(255,255,255,.78);
}
.meta-row span,
.meta-row a {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.28);
  font-size: 13px;
}
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) 330px;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(48px, 7vw, 86px) clamp(18px, 6vw, 88px);
  background: var(--paper);
  color: var(--paper-ink);
}
.article-body p {
  font-size: 18px;
  color: #32413c;
}
.article-body h2,
.side-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}
.article-note {
  margin: 32px 0;
  padding: 24px;
  background: #fff;
  border-left: 4px solid var(--teal);
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
}
.article-note ul { padding-left: 20px; color: #40504a; }
.article-side {
  display: grid;
  align-content: start;
  gap: 18px;
}
.side-card {
  padding: 22px;
  background: #101612;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,.22);
}
.side-card p { color: var(--muted); }
.side-card.compact a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.84);
}
.related-section {
  background: #0c100e;
}
.compact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.site-footer {
  padding: 42px clamp(18px, 4vw, 58px);
  background: #050706;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
  align-items: start;
}
.site-footer p,
.footer-note span { color: rgba(255,255,255,.66); }
.site-footer nav {
  display: grid;
  gap: 10px;
}
.site-footer a { color: rgba(255,255,255,.76); }
.footer-note { display: grid; gap: 8px; }
.footer-note strong { color: var(--gold-2); }

@media (max-width: 1060px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-toggle {
    display: inline-flex;
    min-height: 38px;
    padding: 0 14px;
    align-items: center;
    background: rgba(255,255,255,.08);
    color: var(--ink);
    border: 1px solid var(--line);
  }
  .site-menu,
  .header-actions {
    display: none;
  }
  .site-header.is-open .site-menu,
  .site-header.is-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .site-header.is-open .site-menu { gap: 0; }
  .site-header.is-open .site-menu a { padding: 12px 0; }
  .site-header.is-open .header-actions { grid-template-columns: 1fr 1fr; }
  .latest-strip,
  .news-layout,
  .feature-world,
  .article-shell,
  .footer-inner { grid-template-columns: 1fr; }
  .news-grid,
  .compact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ranking { position: static; }
  .role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .hero-content { margin: 0 18px 170px; }
  .latest-strip {
    grid-template-columns: 1fr;
    bottom: 14px;
  }
  .latest-strip a:nth-of-type(n+3) { display: none; }
  .hero h1 { font-size: 42px; }
  .hero-actions,
  .cta-band { align-items: stretch; flex-direction: column; }
  .news-grid,
  .compact-grid,
  .feature-panels,
  .role-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .news-card-large { grid-column: auto; }
  .gallery-grid figure:first-child { grid-row: auto; }
  .article-title { padding-top: 120px; }
  .article-body p { font-size: 16px; }
}
