:root {
  --red: #e32931;
  --red-dark: #bd1b27;
  --blue: #102a64;
  --ink: #14254c;
  --muted: #68738a;
  --paper: #fff;
  --soft: #f1f3f8;
  --line: #dfe3ec;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fffdf9;
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
}
.top-line {
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0 50%, #153d89 50%);
}
.page-header {
  height: 78px;
  padding: 0 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 0.8;
}
.brand b {
  color: var(--red);
}
.brand small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.18em;
}
.brand-mark {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font: 400 29px Arial;
}
.back {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.back:hover {
  color: var(--red);
}
.article-image {
  display: block;
  width: 100%;
  max-height: 360px;
  margin: 30px 0 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  object-fit: cover;
}
.wrap {
  max-width: 1100px;
  margin: auto;
  padding: 82px 7vw;
}
.eyebrow {
  color: var(--red);
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.14em;
}
.eyebrow::before {
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 8px;
  background: var(--red);
  content: "";
  vertical-align: middle;
}
h1,
h2,
h3 {
  letter-spacing: -0.055em;
}
h1 {
  max-width: 800px;
  margin: 20px 0;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
}
h1 em,
h2 em {
  color: var(--red);
  font-family: Georgia, serif;
  font-weight: 400;
}
.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.rule {
  height: 1px;
  margin: 50px 0;
  background: var(--line);
}
.article {
  max-width: 750px;
}
.article h2 {
  margin: 42px 0 14px;
  font-size: 28px;
}
.article p,
.article li {
  color: #53617b;
  font-size: 14px;
  line-height: 1.9;
}
.article ul,
.article ol {
  padding-left: 22px;
}
.article li {
  padding: 5px 0;
}
.article strong {
  color: var(--ink);
}
.callout {
  margin: 35px 0;
  padding: 25px 28px;
  border-left: 4px solid var(--red);
  background: var(--soft);
}
.callout b {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
}
.callout p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.reference {
  padding: 26px;
  border-top: 1px solid var(--line);
  background: var(--soft);
}
.reference h3 {
  margin: 0 0 10px;
  font-size: 15px;
}
.reference ul {
  margin: 0;
  padding-left: 18px;
}
.reference li {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.card {
  min-height: 210px;
  padding: 25px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.doc-image {
  display: block;
  width: calc(100% + 50px);
  height: 145px;
  margin: -25px -25px 22px;
  object-fit: cover;
}
.card span {
  color: var(--red);
  font: 10px "DM Mono";
}
.card h3 {
  margin: 35px 0 9px;
  font-size: 21px;
}
.card p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}
.card a {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
}
.card a:hover {
  text-decoration: underline;
}
.news-list {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}
.news-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.news-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #102a64;
  border-radius: 18px;
}
.news-icon .edu-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--red);
  font-size: 22px;
  background: transparent;
  border-radius: 14px;
  box-shadow: none;
}
.news-icon .edu-icon.flame {
  color: #f2912d;
}
.news-icon .edu-icon.dot {
  color: var(--red);
}
.news-icon-image {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.tag {
  color: var(--red);
  font: 9px "DM Mono";
  letter-spacing: 0.1em;
}
.news-item h3 {
  margin: 7px 0;
  font-size: 20px;
}
.news-item p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.arrow {
  color: var(--red);
  font-size: 20px;
  text-decoration: none;
}
.timeline {
  max-width: 800px;
  margin: 45px 0;
  padding-left: 36px;
  border-left: 1px solid var(--line);
}
.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 22px;
  padding-bottom: 32px;
}
.timeline article::before {
  position: absolute;
  top: 3px;
  left: -42px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: #fff;
  content: "";
}
.timeline time {
  color: var(--red);
  font: 11px "DM Mono";
}
.timeline h3 {
  margin: 0 0 8px;
  font-size: 19px;
}
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 32px;
  justify-content: center;
  align-items: start;
  justify-items: stretch;
}
.member {
  min-height: 150px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.member.pembina,
.member.pelatih {
  background: rgba(227, 41, 49, 0.08);
  border-color: rgba(227, 41, 49, 0.24);
  box-shadow: 0 18px 40px rgba(227, 41, 49, 0.12);
}
.member.pembina {
  border-left: 4px solid var(--red);
}
.member.pelatih {
  border-left: 4px solid rgba(227, 41, 49, 0.8);
}
.member:hover {
  transform: translateY(-2px);
}
.member span {
  color: var(--red);
  font: 9px "DM Mono";
}
.member h3 {
  margin: 28px 0 4px;
  font-size: 18px;
}
.member p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}
.section-title {
  margin: 58px 0 0;
  font-size: 31px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
}
.principles div {
  padding: 20px;
  background: var(--paper);
}
.principles b {
  color: var(--red);
  font: 10px "DM Mono";
}
.principles span {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 800;
}
footer {
  padding: 32px 7vw;
  background: #0a1c45;
  color: #b9c5dd;
  font-size: 10px;
}
body.dark {
  --ink: #edf2ff;
  --muted: #aebbd4;
  --paper: #111d35;
  --soft: #15213b;
  --line: #2c3a58;
  background: #101a31;
}
body.dark .timeline article::before {
  background: #101a31;
}
.theme {
  border: 1px solid var(--line);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
@media (max-width: 700px) {
  .page-header {
    height: 68px;
    padding: 0 5vw;
  }
  .wrap {
    padding: 58px 6vw;
  }
  .cards,
  .board {
    grid-template-columns: 1fr;
  }
  .principles {
    grid-template-columns: 1fr;
  }
  .news-item {
    grid-template-columns: 60px 1fr;
    gap: 15px;
  }
  .news-item .arrow {
    display: none;
  }
  .news-item h3 {
    font-size: 17px;
  }
  .timeline {
    padding-left: 25px;
  }
  .timeline article {
    grid-template-columns: 65px 1fr;
    gap: 10px;
  }
  .timeline article::before {
    left: -31px;
  }
  h1 {
    font-size: 46px;
  }
  .lead {
    font-size: 12px;
  }
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px 0 32px;
}

.info-box {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.info-box h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.info-box ul {
  margin: 0;
  padding-left: 20px;
}

.info-box li {
  padding: 6px 0;
}

.info-box p {
  margin: 8px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.info-box strong {
  color: var(--ink);
}

.note-box {
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 4px solid var(--red);
  background: var(--soft);
}

.note-box h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.note-box p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 700px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   LOGO NAVBAR & FOOTER
=========================== */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand b {
  color: var(--red);
}

.brand small {
  margin-top: 6px;
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

/* Buttons (copied from style.css to ensure pages using page.css show consistent buttons) */
.btn {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  padding: 14px 18px;
  border: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s;
}
.btn span {
  font-size: 18px;
  line-height: 0.8;
}
.primary {
  background: var(--red);
  color: #fff;
}
.primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* ===========================
   HERO IMAGE
=========================== */

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 25px 0;
}
/* Tablet */

@media (max-width: 900px) {
  .hero-visual {
    width: 100%;
    margin-top: 30px;
  }
}

/* HP */

@media (max-width: 600px) {
  .brand-logo {
    width: 36px;
    height: 36px;
  }
}

/* ===========================
        banner 
=========================== */

.hero-banner-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 18px 0 40px;
}

.hero-banner {
  width: 92%;
  max-width: 1100px;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

@media (max-width: 900px) {
  .hero-banner {
    height: 120px;
  }
}

@media (max-width: 600px) {
  .hero-banner {
    width: 95%;
    height: 90px;
  }
}
footer{
    background:#0a1c45;
    color:#b9c5dd;
    padding:50px 7vw 20px;
}

/* isi footer */
.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1.2fr 1fr;
    gap:40px;
    align-items:start;
}

footer small{
    display:block;
    margin-bottom:15px;
    color:#fff;
    font-weight:700;
    letter-spacing:.08em;
}

footer a{
    display:block;
    color:#b9c5dd;
    text-decoration:none;
    margin-bottom:10px;
}

.footer-brand p{
    margin-top:18px;
    line-height:1.8;
}

.footer-pmi {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-pmi img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

/* garis */
.footer-bottom{
    margin-top:40px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#b9c5dd;
    font-size:12px;
}