
:root {
  --green-950: #063b18;
  --green-900: #07511f;
  --green-800: #0a5d25;
  --green-700: #087526;
  --green-600: #088726;
  --green-100: #e7f6e8;
  --green-50: #f5fbf5;
  --gold-500: #d1ce20;
  --gold-400: #e5dc3e;
  --gold-100: #fbf8d7;
  --ink: #15221a;
  --muted: #657169;
  --line: #dfe8e1;
  --white: #ffffff;
  --surface: #f8fbf8;
  --shadow-sm: 0 10px 30px rgba(5, 74, 28, .08);
  --shadow-md: 0 20px 60px rgba(5, 74, 28, .13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 10px; z-index: 1000; padding: 10px 14px; background: #fff; color: var(--green-900); border-radius: 10px; }
.skip-link:focus { left: 12px; }

.topbar { background: var(--green-950); color: rgba(255,255,255,.86); font-size: 13px; }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar strong { color: var(--gold-400); font-weight: 700; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7,81,31,.08);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo { width: 52px; height: 52px; flex: 0 0 auto; filter: drop-shadow(0 5px 8px rgba(5,74,28,.12)); }
.brand-copy { min-width: 0; }
.brand-title { font-size: 16px; font-weight: 850; letter-spacing: -.02em; color: var(--green-950); line-height: 1.15; }
.brand-subtitle { font-size: 11px; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: .09em; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 10px 12px; border-radius: 11px; font-size: 14px; font-weight: 650; color: #344039; transition: .2s ease; }
.nav-links a:hover, .nav-links a.active { background: var(--green-50); color: var(--green-800); }
.nav-links a.active { box-shadow: inset 0 0 0 1px rgba(8,135,38,.11); }
.menu-toggle { display: none; border: 0; background: var(--green-50); color: var(--green-900); width: 44px; height: 44px; border-radius: 13px; cursor: pointer; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 999px; position: relative; margin: auto; transition: .2s; }
.menu-toggle span::before, .menu-toggle span::after { content: ''; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(209,206,32,.22), transparent 25%),
    radial-gradient(circle at 15% 87%, rgba(8,135,38,.14), transparent 24%),
    linear-gradient(135deg, #f9fcf7 0%, #f4fbf4 56%, #fffdf0 100%);
  border-bottom: 1px solid rgba(7,81,31,.07);
}
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(8,117,38,.08); }
.hero::before { width: 520px; height: 520px; right: -250px; top: -250px; }
.hero::after { width: 340px; height: 340px; right: -120px; top: -120px; }
.hero-grid { min-height: 620px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 54px; padding-block: 72px; position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border-radius: 999px; background: var(--green-100); color: var(--green-800); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 4px rgba(209,206,32,.15); }
.hero h1 { margin: 19px 0 18px; font-size: clamp(42px, 6vw, 72px); line-height: 1.03; letter-spacing: -.052em; color: var(--green-950); max-width: 760px; }
.hero h1 span { color: var(--green-600); }
.hero-lead { font-size: 18px; color: #526057; max-width: 660px; margin: 0 0 30px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; justify-content: center; align-items: center; gap: 9px; padding: 13px 18px; border-radius: 13px; font-size: 14px; font-weight: 800; border: 1px solid transparent; transition: .2s ease; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--green-700), var(--green-900)); box-shadow: 0 12px 26px rgba(7,81,31,.18); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 34px rgba(7,81,31,.23); }
.btn-secondary { color: var(--green-900); background: #fff; border-color: var(--line); }
.btn-secondary:hover { border-color: #bdd6c3; background: var(--green-50); }
.hero-note { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px; color: var(--muted); font-size: 13px; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note i { width: 7px; height: 7px; border-radius: 50%; background: var(--green-600); display: inline-block; }
.hero-visual { position: relative; display: grid; place-items: center; min-height: 450px; }
.hero-emblem { width: min(100%, 420px); aspect-ratio: 1; display: grid; place-items: center; position: relative; }
.hero-emblem::before { content: ''; position: absolute; inset: 2%; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); }
.hero-emblem::after { content: ''; position: absolute; inset: -6%; border-radius: 50%; border: 1px dashed rgba(8,117,38,.18); }
.hero-emblem img { width: 92%; position: relative; z-index: 1; }
.floating-card { position: absolute; right: 0; bottom: 36px; z-index: 2; background: rgba(255,255,255,.94); border: 1px solid rgba(7,81,31,.1); border-radius: 18px; padding: 14px 17px; box-shadow: var(--shadow-sm); min-width: 190px; }
.floating-card strong { display: block; font-size: 20px; color: var(--green-900); line-height: 1.1; }
.floating-card span { font-size: 12px; color: var(--muted); }

.section { padding: 88px 0; }
.section-soft { background: var(--surface); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 36px; }
.section-kicker { color: var(--green-700); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; font-weight: 850; margin-bottom: 8px; }
.section-title { margin: 0; font-size: clamp(30px, 4vw, 44px); letter-spacing: -.035em; line-height: 1.12; color: var(--green-950); }
.section-desc { color: var(--muted); max-width: 620px; margin: 10px 0 0; }
.text-link { color: var(--green-700); font-size: 14px; font-weight: 800; white-space: nowrap; }
.text-link:hover { color: var(--green-900); }

.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: -44px; position: relative; z-index: 3; }
.stat-card { background: #fff; border: 1px solid rgba(7,81,31,.09); border-radius: 20px; padding: 22px; box-shadow: var(--shadow-sm); }
.stat-value { color: var(--green-900); font-size: 28px; font-weight: 900; letter-spacing: -.03em; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }
.stat-accent { width: 34px; height: 4px; background: linear-gradient(90deg,var(--gold-500),var(--green-600)); border-radius: 999px; margin-bottom: 15px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.info-panel { border-radius: var(--radius-lg); padding: 34px; background: linear-gradient(140deg, var(--green-950), var(--green-700)); color: #fff; min-height: 100%; position: relative; overflow: hidden; }
.info-panel::after { content:''; width: 220px; height: 220px; border-radius: 50%; border: 35px solid rgba(255,255,255,.05); position:absolute; right:-80px; bottom:-80px; }
.info-panel .section-kicker { color: var(--gold-400); }
.info-panel h2 { font-size: 36px; line-height: 1.15; letter-spacing: -.035em; margin: 8px 0 14px; }
.info-panel p { color: rgba(255,255,255,.8); max-width: 560px; }
.info-list { display: grid; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.info-row { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row dt { color: var(--muted); font-size: 13px; }
.info-row dd { margin: 0; font-weight: 750; color: #27342c; }

.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { border: 1px solid var(--line); border-radius: 22px; padding: 26px; background: #fff; transition: .2s ease; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: #c9dccd; }
.icon-box { width: 46px; height: 46px; border-radius: 14px; background: var(--green-100); color: var(--green-800); display: grid; place-items: center; font-weight: 900; margin-bottom: 18px; }
.feature-card h3 { margin: 0 0 8px; font-size: 19px; color: var(--green-950); }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

.empty-state { border: 1px dashed #bdd6c3; background: linear-gradient(145deg,#fbfefb,#f5fbf5); border-radius: 28px; padding: 48px; text-align: center; }
.empty-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 22px; background: #fff; border: 1px solid var(--line); color: var(--green-700); font-size: 26px; box-shadow: var(--shadow-sm); }
.empty-state h2, .empty-state h3 { margin: 0 0 8px; color: var(--green-950); }
.empty-state p { max-width: 660px; margin: 0 auto; color: var(--muted); }

.page-hero { padding: 72px 0 60px; background: linear-gradient(135deg,#f4fbf4,#fffdf2); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::after { content:''; position:absolute; width:340px; height:340px; border: 65px solid rgba(8,135,38,.04); border-radius:50%; right:-130px; top:-140px; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 17px; }
.breadcrumb a { color: var(--green-700); font-weight: 700; }
.page-hero h1 { margin: 0 0 14px; color: var(--green-950); font-size: clamp(38px,5vw,58px); letter-spacing: -.045em; line-height: 1.05; }
.page-hero p { margin: 0; max-width: 700px; color: #5f6a63; font-size: 17px; }

.profile-grid { display:grid; grid-template-columns: .78fr 1.22fr; gap: 28px; align-items:start; }
.logo-card { position: sticky; top: 110px; padding: 30px; border-radius: 28px; background: var(--green-50); border:1px solid var(--line); text-align:center; }
.logo-card img { width:min(100%,300px); margin:0 auto 20px; }
.logo-card h2 { margin:0 0 5px; color:var(--green-950); font-size:24px; }
.logo-card p { margin:0; color:var(--muted); font-size:14px; }
.data-card { border:1px solid var(--line); border-radius:28px; overflow:hidden; background:#fff; }
.data-card-head { padding:24px 26px; background:var(--green-950); color:#fff; }
.data-card-head h2 { margin:0; font-size:22px; }
.data-list { margin:0; }
.data-item { display:grid; grid-template-columns:220px 1fr; gap:22px; padding:17px 26px; border-bottom:1px solid var(--line); }
.data-item:last-child { border-bottom:0; }
.data-item dt { color:var(--muted); font-size:13px; }
.data-item dd { margin:0; font-weight:720; }
.badge { display:inline-flex; align-items:center; gap:6px; padding:5px 9px; border-radius:999px; background:var(--green-100); color:var(--green-800); font-size:12px; font-weight:800; }

.person-card { border:1px solid var(--line); border-radius:24px; padding:24px; display:flex; align-items:center; gap:18px; background:#fff; max-width:640px; }
.avatar-placeholder { width:74px; height:74px; flex:0 0 auto; border-radius:20px; background:linear-gradient(140deg,var(--green-100),var(--gold-100)); display:grid; place-items:center; color:var(--green-800); font-size:24px; font-weight:900; border:1px solid rgba(8,117,38,.08); }
.person-card h3 { margin:0 0 2px; color:var(--green-950); }
.person-role { font-size:13px; font-weight:800; color:var(--green-700); }
.person-note { font-size:13px; color:var(--muted); margin-top:6px; }

.contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:24px; align-items:stretch; }
.contact-card { padding:30px; border:1px solid var(--line); border-radius:28px; background:#fff; }
.contact-card h2 { margin:0 0 20px; color:var(--green-950); }
.contact-item { display:grid; grid-template-columns:42px 1fr; gap:13px; padding:15px 0; border-bottom:1px solid var(--line); }
.contact-item:last-child { border-bottom:0; }
.contact-dot { width:42px; height:42px; border-radius:13px; display:grid; place-items:center; background:var(--green-100); color:var(--green-800); font-size:14px; font-weight:900; }
.contact-item small { display:block; color:var(--muted); margin-bottom:2px; }
.contact-item strong { display:block; font-size:14px; }
.map-wrap { min-height:460px; border:1px solid var(--line); border-radius:28px; overflow:hidden; background:#eef4ef; }
.map-wrap iframe { width:100%; height:100%; min-height:460px; border:0; }

.source-note { font-size:12px; color:var(--muted); border-left:3px solid var(--gold-500); padding-left:12px; margin-top:22px; }
.cta-band { border-radius: 30px; padding: 34px; background: linear-gradient(135deg,var(--green-950),var(--green-700)); color:#fff; display:flex; align-items:center; justify-content:space-between; gap:28px; overflow:hidden; position:relative; }
.cta-band::after { content:''; position:absolute; width:230px; height:230px; border-radius:50%; border:34px solid rgba(255,255,255,.05); right:-70px; top:-100px; }
.cta-band h2 { margin:0 0 7px; font-size:28px; letter-spacing:-.025em; }
.cta-band p { margin:0; color:rgba(255,255,255,.72); }
.cta-band .btn { position:relative; z-index:1; background:#fff; color:var(--green-900); }

.footer { background: #041f0d; color: rgba(255,255,255,.72); padding: 58px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.5fr .7fr .9fr; gap:40px; }
.footer-brand { display:flex; align-items:center; gap:14px; margin-bottom:14px; }
.footer-brand img { width:58px; }
.footer-brand strong { color:#fff; display:block; font-size:17px; }
.footer-brand span { font-size:12px; }
.footer p { margin:0; font-size:13px; max-width:470px; }
.footer h4 { color:#fff; margin:0 0 14px; font-size:14px; }
.footer-links { display:grid; gap:8px; font-size:13px; }
.footer-links a:hover { color:var(--gold-400); }
.footer-bottom { margin-top:42px; padding-top:20px; border-top:1px solid rgba(255,255,255,.09); display:flex; align-items:center; justify-content:space-between; gap:20px; font-size:12px; }

.reveal { opacity:0; transform:translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns:1fr; min-height:auto; gap:20px; padding-block:60px 80px; }
  .hero-copy { max-width:760px; }
  .hero-visual { min-height:360px; }
  .hero-emblem { width:min(70vw,360px); }
  .floating-card { right:8%; bottom:10px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .two-col, .profile-grid, .contact-grid { grid-template-columns:1fr; }
  .logo-card { position:static; }
  .cards-3 { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > :first-child { grid-column:1/-1; }
}

@media (max-width: 820px) {
  .topbar { display:none; }
  .menu-toggle { display:block; }
  .nav { min-height:70px; }
  .nav-links { position:absolute; top:70px; left:20px; right:20px; display:none; flex-direction:column; align-items:stretch; padding:12px; background:#fff; border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow-md); }
  .nav-links.open { display:flex; }
  .nav-links a { padding:12px 14px; }
  .section { padding:68px 0; }
  .section-head { align-items:start; flex-direction:column; gap:10px; }
}

@media (max-width: 600px) {
  .container { width:min(calc(100% - 28px), var(--container)); }
  .brand-subtitle { display:none; }
  .hero-grid { padding-block:46px 64px; }
  .hero h1 { font-size:42px; }
  .hero-lead { font-size:16px; }
  .hero-visual { min-height:315px; }
  .floating-card { right:0; bottom:0; }
  .stats-grid { grid-template-columns:1fr 1fr; gap:10px; margin-top:-28px; }
  .stat-card { padding:16px; border-radius:16px; }
  .stat-value { font-size:22px; }
  .cards-3 { grid-template-columns:1fr; }
  .info-panel, .empty-state, .contact-card { padding:26px; }
  .info-row, .data-item { grid-template-columns:1fr; gap:4px; padding:15px 18px; }
  .data-card-head { padding:20px; }
  .person-card { align-items:flex-start; }
  .cta-band { flex-direction:column; align-items:flex-start; padding:28px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-grid > :first-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
  .page-hero { padding:54px 0 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition:none !important; animation:none !important; }
  .reveal { opacity:1; transform:none; }
}


/* Guru & staf */
.staff-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.staff-grid .person-card { max-width:none; min-width:0; }

/* Struktur organisasi */
.org-chart { display:grid; gap:24px; }
.org-row { display:grid; gap:14px; }
.org-row-top { grid-template-columns:repeat(2,minmax(0,1fr)); max-width:780px; width:100%; margin-inline:auto; }
.org-row-support { grid-template-columns:repeat(3,minmax(0,1fr)); }
.org-row-six { grid-template-columns:repeat(3,minmax(0,1fr)); }
.org-card { border:1px solid var(--line); border-radius:18px; background:#fff; overflow:hidden; text-align:center; box-shadow:var(--shadow-sm); }
.org-card span { display:block; padding:10px 12px; background:var(--green-100); color:var(--green-800); font-size:12px; font-weight:850; letter-spacing:.035em; }
.org-card strong { display:flex; min-height:70px; padding:14px 12px; align-items:center; justify-content:center; color:var(--green-950); font-size:14px; line-height:1.35; }
.org-card.org-primary span { background:var(--green-900); color:#fff; }
.org-divider { display:flex; align-items:center; gap:14px; color:var(--green-700); font-size:12px; font-weight:850; letter-spacing:.09em; text-transform:uppercase; }
.org-divider::before, .org-divider::after { content:''; height:1px; background:var(--line); flex:1; }
.org-students { padding:18px; border-radius:18px; background:linear-gradient(135deg,var(--green-900),var(--green-700)); color:#fff; text-align:center; font-weight:850; letter-spacing:.02em; }

@media (max-width: 980px) {
  .staff-grid { grid-template-columns:1fr; }
  .org-row-six { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 700px) {
  .org-row-top, .org-row-support, .org-row-six { grid-template-columns:1fr; }
}
