:root {
  --green-950: #063b3a;
  --green-900: #075754;
  --green-800: #08726e;
  --green-700: #0b8f89;
  --green-600: #18aaa3;
  --green-100: #e8f8f6;
  --green-50: #f3fbfa;
  --gold-700: #08726e;
  --gold-500: #18aaa3;
  --gold-300: #72d9d3;
  --gold-100: #e8f8f6;
  --white: #ffffff;
  --ink: #172322;
  --muted: #64706f;
  --line: #e0e8e7;
  --shadow: 0 18px 50px rgba(6, 59, 58, 0.11);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfdfd;
  line-height: 1.7;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 30%, rgba(114, 217, 211, .30), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f5fbfa 58%, #eaf7f5 100%);
  transition: opacity .65s ease, visibility .65s ease;
}
.loading-screen::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(160deg, transparent 14%, rgba(11, 143, 137, .13) 15%, rgba(11, 143, 137, .02) 70%);
  pointer-events: none;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  width: min(230px, 55vw);
  border-radius: 30px;
  filter: drop-shadow(0 20px 28px rgba(7, 87, 84, .16));
  animation: loaderFloat 2.2s ease-in-out infinite;
}
.loader-orbit {
  position: absolute;
  width: min(300px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(24, 170, 163, .35);
  border-top-color: var(--green-700);
  animation: spin 2.6s linear infinite;
}
.loading-screen p {
  margin: 25px 0 2px;
  color: var(--green-900);
  font-weight: 800;
  letter-spacing: .14em;
  text-align: center;
}
.loading-screen > span { color: var(--muted); font-size: .82rem; text-align: center; }
.loader-line {
  width: min(310px, 72vw);
  height: 4px;
  margin-top: 20px;
  background: #e5eeed;
  border-radius: 99px;
  overflow: hidden;
}
.loader-line i {
  display: block;
  height: 100%;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-700), #45c7bd, var(--green-600));
  animation: loadLine 1.35s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loaderFloat { 50% { transform: translateY(-8px); } }
@keyframes loadLine { 0% { transform: translateX(-115%); } 100% { transform: translateX(340%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(224, 232, 227, .8);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(6, 59, 58, .08); }
.topbar { background: var(--green-950); color: #dff1ef; font-size: .76rem; }
.topbar-inner { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; gap: 20px; }
.topbar a:hover { color: var(--gold-300); }
.brand-row { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; min-width: 0; gap: 13px; }
.brand img { width: 62px; height: 62px; object-fit: cover; border-radius: 16px; box-shadow: 0 6px 18px rgba(7, 87, 84, .14); }
.brand strong { display: block; font-size: 1rem; letter-spacing: .03em; line-height: 1.2; }
.brand strong span { color: var(--green-700); }
.brand small { display: block; margin-top: 5px; color: var(--muted); font-size: .69rem; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-link { padding: 11px 14px; border-radius: 10px; font-weight: 700; font-size: .86rem; color: var(--green-900); background: var(--green-50); transition: .2s ease; }
.nav-link:hover, .nav-link.active { color: white; background: var(--green-700); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--green-100); padding: 11px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--green-900); border-radius: 2px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  display: grid;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 84% 14%, rgba(114, 217, 211, .28), transparent 22%),
    linear-gradient(125deg, rgba(6, 59, 58, .98), rgba(8, 114, 110, .95) 62%, rgba(24, 170, 163, .88));
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before { width: 540px; height: 540px; right: -120px; top: 60px; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 150px rgba(255,255,255,.025); }
.hero::after { width: 260px; height: 260px; right: 19%; bottom: -170px; background: var(--gold-500); filter: blur(2px); opacity: .22; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 58px; align-items: center; padding-block: 82px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--gold-300); font-size: .79rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 32px; height: 2px; background: currentColor; }
.hero h1 { max-width: 770px; margin: 0; font-family: "Merriweather", Georgia, serif; font-size: clamp(2.6rem, 5vw, 5.3rem); line-height: 1.08; letter-spacing: -.035em; }
.hero h1 span { color: var(--gold-300); }
.hero-copy > p { max-width: 690px; margin: 22px 0 30px; color: rgba(255,255,255,.82); font-size: 1.04rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 12px; font-weight: 800; font-size: .88rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold-300); color: var(--green-950); box-shadow: 0 12px 30px rgba(114, 217, 211, .18); }
.btn-outline { border-color: rgba(255,255,255,.38); color: white; background: rgba(255,255,255,.05); }
.hero-panel { position: relative; padding: 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 32px; background: rgba(255,255,255,.09); box-shadow: 0 30px 70px rgba(3, 45, 43, .28); backdrop-filter: blur(15px); }
.hero-panel::before { content: "TERPILIH"; position: absolute; z-index: 2; top: 34px; left: 34px; padding: 7px 11px; border-radius: 8px; background: var(--gold-300); color: var(--green-950); font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.hero-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 22px; }
.hero-panel-content { padding: 20px 7px 7px; }
.hero-panel-content h2 { margin: 7px 0 8px; font-size: 1.25rem; line-height: 1.35; }
.hero-panel-content p { margin: 0; color: rgba(255,255,255,.7); font-size: .85rem; }

.breaking { border-bottom: 1px solid var(--line); background: white; }
.breaking-inner { min-height: 58px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; overflow: hidden; }
.breaking-label { display: inline-flex; align-items: center; gap: 8px; color: var(--green-900); font-weight: 900; font-size: .77rem; letter-spacing: .08em; }
.breaking-dot { width: 9px; height: 9px; border-radius: 50%; background: #e54444; box-shadow: 0 0 0 5px rgba(229, 68, 68, .12); animation: blink 1.35s ease-in-out infinite; }
.breaking-text { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #344442; font-size: .87rem; }
@keyframes blink { 50% { opacity: .35; } }

.section { padding: 88px 0; }
.section-soft { background: linear-gradient(180deg, var(--green-50), #fff); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 30px; }
.section-title-wrap p { margin: 0 0 7px; color: var(--green-700); font-weight: 800; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.section-title-wrap h2 { margin: 0; font-family: "Merriweather", Georgia, serif; font-size: clamp(1.9rem, 3vw, 2.75rem); line-height: 1.2; }
.section-head > p { max-width: 550px; margin: 0; color: var(--muted); font-size: .91rem; }

.toolbar { display: grid; grid-template-columns: minmax(240px, 1fr) auto; gap: 16px; margin-bottom: 28px; }
.search-box { position: relative; }
.search-box input { width: 100%; height: 52px; padding: 0 48px 0 18px; border: 1px solid var(--line); border-radius: 14px; outline: none; background: white; transition: border .2s ease, box-shadow .2s ease; }
.search-box input:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(24, 170, 163, .1); }
.search-box span { position: absolute; right: 17px; top: 50%; transform: translateY(-50%); color: var(--green-800); }
.category-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.category-tab { border: 1px solid var(--line); border-radius: 999px; background: white; color: #465654; padding: 9px 14px; font-weight: 700; font-size: .77rem; }
.category-tab:hover, .category-tab.active { color: white; border-color: var(--green-800); background: var(--green-800); }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { display: flex; flex-direction: column; overflow: hidden; min-width: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: 0 13px 38px rgba(6, 59, 58, .065); transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-image { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--green-100); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .card-image img { transform: scale(1.045); }
.card-category { position: absolute; top: 15px; left: 15px; padding: 6px 10px; border-radius: 8px; background: rgba(6, 59, 58, .92); color: white; font-size: .66rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.card-content { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.card-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: .72rem; }
.card-meta span + span::before { content: "•"; margin-right: 10px; color: var(--gold-500); }
.card-content h3 { margin: 10px 0 9px; font-size: 1.05rem; line-height: 1.45; }
.card-content > p { margin: 0 0 18px; color: var(--muted); font-size: .82rem; }
.read-more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--green-800); font-size: .8rem; font-weight: 900; }
.read-more:hover { color: var(--gold-700); }
.empty-state { grid-column: 1 / -1; padding: 55px 24px; text-align: center; border: 1px dashed #bfd0ce; border-radius: 20px; color: var(--muted); background: white; }

.video-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 25px; }
.video-feature { overflow: hidden; border-radius: 24px; background: var(--green-950); color: white; box-shadow: var(--shadow); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .84; }
.play-btn { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); display: grid; place-items: center; width: 68px; height: 68px; border-radius: 50%; background: var(--gold-300); color: var(--green-950); font-size: 1.3rem; box-shadow: 0 0 0 12px rgba(255,255,255,.12); }
.video-feature-content { padding: 25px; }
.video-feature-content h3 { margin: 0 0 8px; font-size: 1.35rem; line-height: 1.4; }
.video-feature-content p { margin: 0; color: rgba(255,255,255,.68); }
.video-list { display: grid; gap: 14px; }
.video-list-item { display: grid; grid-template-columns: 150px 1fr; gap: 16px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 17px; background: white; transition: .2s ease; }
.video-list-item:hover { border-color: #afd0cd; transform: translateX(3px); }
.video-list-item img { width: 150px; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 12px; }
.video-list-item span { color: var(--green-700); font-size: .69rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.video-list-item h4 { margin: 5px 0 0; line-height: 1.38; font-size: .92rem; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 55px; align-items: center; }
.about-visual { position: relative; min-height: 470px; border-radius: 28px; overflow: hidden; background: linear-gradient(145deg, var(--green-950), var(--green-700)); box-shadow: var(--shadow); }
.about-visual img { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 66%; border-radius: 26px; box-shadow: 0 25px 50px rgba(0,0,0,.24); }
.about-visual::before, .about-visual::after { content: ""; position: absolute; border: 1px solid rgba(114, 217, 211, .45); border-radius: 50%; }
.about-visual::before { width: 340px; height: 340px; right: -120px; top: -80px; }
.about-visual::after { width: 250px; height: 250px; left: -90px; bottom: -80px; }
.about-copy h2 { margin: 0 0 17px; font-family: "Merriweather", Georgia, serif; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.2; }
.about-copy > p { color: var(--muted); }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; margin-top: 24px; }
.value-item { display: flex; align-items: center; gap: 10px; padding: 13px 14px; border-radius: 12px; background: var(--green-50); color: var(--green-900); font-weight: 800; font-size: .82rem; }
.value-item i { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: white; color: var(--gold-700); font-style: normal; }

.contact-box { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 42px; border-radius: 28px; background: linear-gradient(125deg, var(--green-950), var(--green-700)); color: white; box-shadow: var(--shadow); }
.contact-box h2 { margin: 0 0 8px; font-family: "Merriweather", Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.contact-box p { margin: 0; color: rgba(255,255,255,.75); }

.detail-page { background: white; }
.detail-hero { position: relative; overflow: hidden; color: white; background: linear-gradient(125deg, var(--green-950), var(--green-700)); }
.detail-hero::after { content: ""; position: absolute; width: 430px; height: 430px; right: -120px; top: -210px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025); }
.detail-hero-inner { position: relative; z-index: 1; max-width: 920px; padding: 80px 0 72px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 18px; color: rgba(255,255,255,.7); font-size: .77rem; }
.breadcrumb a:hover { color: var(--gold-300); }
.detail-category { display: inline-flex; padding: 7px 11px; border-radius: 8px; background: var(--gold-300); color: var(--green-950); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.detail-hero h1 { max-width: 900px; margin: 18px 0; font-family: "Merriweather", Georgia, serif; font-size: clamp(2rem, 4.5vw, 4rem); line-height: 1.2; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; color: rgba(255,255,255,.75); font-size: .82rem; }
.article-shell { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 44px; padding: 56px 0 90px; }
.article-main { min-width: 0; }
.article-cover { width: 100%; max-height: 560px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.article-lead { margin: 28px 0; padding: 20px 22px; border-left: 4px solid var(--gold-500); border-radius: 0 14px 14px 0; background: var(--gold-100); color: var(--green-950); font-size: 1.03rem; font-weight: 700; }
.article-content { font-family: "Manrope", sans-serif; color: #354240; font-size: 1rem; }
.article-content p { margin: 0 0 20px; }
.article-content h2 { margin: 36px 0 14px; font-family: "Merriweather", Georgia, serif; color: var(--green-950); line-height: 1.3; }
.video-embed { margin: 34px 0 12px; overflow: hidden; aspect-ratio: 16 / 9; border-radius: 22px; background: #052f2d; box-shadow: var(--shadow); }
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.video-caption { margin: 0 0 32px; color: var(--muted); font-size: .78rem; text-align: center; }
.share-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 24px; border-top: 1px solid var(--line); }
.share-row strong { margin-right: 4px; font-size: .84rem; }
.share-btn { border: 1px solid var(--line); border-radius: 10px; background: white; padding: 9px 12px; color: var(--green-800); font-weight: 800; font-size: .76rem; }
.share-btn:hover { border-color: var(--green-600); background: var(--green-50); }
.article-sidebar { display: grid; align-content: start; gap: 20px; }
.sidebar-box { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--green-50); }
.sidebar-box h3 { margin: 0 0 15px; font-size: 1rem; }
.sidebar-link { display: block; padding: 13px 0; border-top: 1px solid #dce8e6; font-size: .81rem; font-weight: 700; line-height: 1.45; }
.sidebar-link:first-of-type { border-top: 0; padding-top: 0; }
.sidebar-link:hover { color: var(--green-700); }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-800); font-weight: 900; font-size: .83rem; }

.site-footer { color: #d9e7e5; background: var(--green-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 50px; padding: 58px 0; }
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand img { width: 74px; height: 74px; object-fit: cover; border-radius: 18px; }
.site-footer h3, .site-footer h4 { margin: 0 0 13px; color: white; }
.site-footer p { margin: 5px 0; color: #a9c0be; font-size: .82rem; }
.site-footer a { display: block; margin: 7px 0; color: #a9c0be; font-size: .82rem; }
.site-footer a:hover { color: var(--gold-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 17px 0; color: #829b98; font-size: .74rem; }
.back-to-top { position: fixed; right: 24px; bottom: 24px; z-index: 50; width: 44px; height: 44px; border: 0; border-radius: 13px; color: white; background: var(--green-800); box-shadow: 0 12px 28px rgba(6,59,58,.22); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s ease; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

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

@media (max-width: 980px) {
  .brand small { display: none; }
  .hero-grid, .about-grid, .video-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding-block: 66px; }
  .hero-panel { max-width: 650px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .article-shell { grid-template-columns: 1fr; }
  .article-sidebar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); }
  .topbar-links { display: none; }
  .topbar-inner { justify-content: center; }
  .brand-row { min-height: 72px; }
  .brand img { width: 50px; height: 50px; border-radius: 13px; }
  .brand strong { font-size: .88rem; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: fixed;
    inset: 104px 14px auto;
    display: grid;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .22s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-link { padding: 13px 15px; }
  .hero h1 { font-size: clamp(2.3rem, 12vw, 4rem); }
  .hero-grid { gap: 36px; padding-block: 54px; }
  .section { padding: 68px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .toolbar { grid-template-columns: 1fr; }
  .category-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .category-tab { white-space: nowrap; }
  .news-grid { grid-template-columns: 1fr; }
  .video-list-item { grid-template-columns: 110px 1fr; }
  .video-list-item img { width: 110px; }
  .about-visual { min-height: 390px; }
  .values { grid-template-columns: 1fr; }
  .contact-box { grid-template-columns: 1fr; padding: 28px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .detail-hero-inner { padding: 55px 0; }
  .article-shell { padding-top: 34px; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-brand { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
