/*
Theme Name: GBIS Sangkakala
Template: astra
Version: 1.0
*/

/* ══════════════════════════════════════════════════════
   RESET & ROOT
══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #f6f6f9;
  color: #04005b;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

:root {
  --navy: #20419a;
  --deep: #04005b;
  --dark: #0a0144;
  --gold: #d9a33b;
  --light: #f6f6f9;
  --white: #ffffff;
  --r: 14px;
}

/* ── Shared: gradient text ── */
.grad-text {
  background: linear-gradient(90deg, var(--navy), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-rev {
  background: linear-gradient(90deg, var(--gold), #e8c86a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Shared: section label ── */
.s-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(4,0,91,.4);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 16px;
}
.s-label::before { content: '›'; color: var(--gold); font-size: 16px; line-height: 1; }
.s-label.light { color: rgba(255,255,255,.4); }
.s-label.light::before { color: var(--gold); }

/* ── Shared: pill button ── */
.pill-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--deep);
  font-size: 13px; font-weight: 800;
  padding: 13px 26px; border-radius: 50px;
  transition: background .2s, transform .2s;
}
.pill-gold:hover { background: #e8b84a; transform: translateY(-2px); }
.pill-gold [data-lucide] { width: 14px; height: 14px; stroke: var(--deep); stroke-width: 2.5; }

.pill-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.7);
  font-size: 13px; font-weight: 700;
  padding: 12px 24px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .2s;
}
.pill-outline:hover { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }

.pill-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--deep); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 12px 24px; border-radius: 50px;
  transition: background .2s;
}
.pill-dark:hover { background: var(--dark); }
.pill-dark [data-lucide] { width: 14px; height: 14px; stroke: var(--gold); stroke-width: 2; }

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 48px; height: 68px;
  display: flex; align-items: center;
  transition: background .4s, backdrop-filter .4s;
}
nav.stuck {
  background: rgba(4,0,91,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner {
  max-width: 1360px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-cross {
  width: 32px; height: 32px; background: var(--gold);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-cross svg { width: 14px; height: 14px; fill: var(--deep); }
.nav-name { font-size: 14px; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.nav-since { font-size: 10px; color: rgba(255,255,255,.3); }
.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.55);
  padding: 8px 16px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-cta {
  background: var(--gold); color: var(--deep);
  font-size: 13px; font-weight: 800;
  padding: 9px 20px; border-radius: 50px;
  transition: background .2s;
}
.nav-cta:hover { background: #e8b84a; }
.nav-ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-ham span { width: 22px; height: 1.5px; background: rgba(255,255,255,.7); border-radius: 2px; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, #04005b 0%, #060860 45%, #0e114f 100%);
  overflow: hidden; display: flex; flex-direction: column;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(217,163,59,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,163,59,.1) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 90% at 0% 50%, rgba(4,0,91,.7) 0%, transparent 70%);
}
.hero-body {
  position: relative; z-index: 2; flex: 1;
  display: grid; grid-template-columns: 1fr 38%;
  max-width: 1360px; width: 100%; margin: 0 auto;
  padding: 120px 48px 0; align-items: center; gap: 0;
}
.hero-left {}
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.hero-kicker-line { width: 22px; height: 2px; background: var(--gold); }
.hero-kicker-text { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.hero-h1 {
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 800; line-height: .96; letter-spacing: -.04em;
  color: #fff; margin-bottom: 24px;
}
.hero-h1 .l2 {
  display: block; font-weight: 300; font-style: italic;
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
  background: linear-gradient(90deg, var(--gold), #f0d080);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-h1 .l3 {
  display: block; font-weight: 300;
  color: rgba(255,255,255,.3); font-size: clamp(1.8rem, 3.2vw, 3.6rem);
  -webkit-text-fill-color: rgba(255,255,255,.3);
}
.hero-aeo {
  font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75;
  max-width: 480px; border-left: 2px solid rgba(217,163,59,.35);
  padding-left: 16px; margin-bottom: 40px;
}
.hero-aeo strong { color: rgba(255,255,255,.8); font-weight: 600; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }
.hero-right { display: flex; align-items: flex-end; justify-content: center; height: 100%; }
.hero-img-wrap { width: 100%; max-width: 400px; height: calc(100vh - 80px); display: flex; align-items: flex-end; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: contain; object-position: bottom; display: block; filter: drop-shadow(0 8px 48px rgba(4,0,91,.6)); }
.hero-img-ph {
  width: 100%; aspect-ratio: 3/4;
  background: rgba(255,255,255,.03); border: 2px dashed rgba(217,163,59,.2);
  border-radius: 16px 16px 0 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.hero-img-ph [data-lucide] { width: 36px; height: 36px; stroke: rgba(217,163,59,.25); }
.hero-img-ph p { font-size: 11px; color: rgba(255,255,255,.2); text-align: center; line-height: 1.5; }
.hero-img-ph span { font-size: 9px; color: rgba(217,163,59,.4); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }

/* Glass bar */
.hero-glass { position: relative; z-index: 2; padding: 0 48px; max-width: 1360px; width: 100%; margin: 28px auto 0; }
.glass-inner {
  background: #09038a; border-radius: 14px;
  padding: 16px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.g-jadwal { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.g-label { font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-right: 4px; white-space: nowrap; }
.jpill { display: flex; align-items: stretch; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; overflow: hidden; transition: background .2s; }
.jpill:hover { background: rgba(217,163,59,.15); }
.jpill-n { background: rgba(217,163,59,.15); border-right: 1px solid rgba(255,255,255,.07); padding: 7px 9px; font-size: 9px; font-weight: 800; color: var(--gold); display: flex; align-items: center; }
.jpill-b { padding: 7px 12px; }
.jpill-t { font-size: 13px; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1; display: block; }
.jpill-w { font-size: 8px; font-weight: 700; color: var(--gold); letter-spacing: .08em; }
.g-sep { width: 1px; height: 32px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.g-info { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; flex: 1; }
.ginfo { display: flex; align-items: center; gap: 7px; }
.ginfo svg { width: 12px; height: 12px; fill: var(--gold); flex-shrink: 0; }
.ginfo span { font-size: 11px; color: rgba(255,255,255,.45); }
.ginfo span strong { color: rgba(255,255,255,.7); font-weight: 600; }
.ginfo-sep { width: 1px; height: 16px; background: rgba(255,255,255,.08); }
.g-social { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.g-soc-label { font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-right: 2px; }
.soc-btn { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); border-radius: 7px; padding: 6px 10px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,.45); transition: all .2s; white-space: nowrap; }
.soc-btn:hover { color: #fff; background: rgba(255,255,255,.12); }
.soc-btn svg { width: 11px; height: 11px; flex-shrink: 0; }
.hero-spacer { height: 40px; position: relative; z-index: 2; }
.scroll-hint { position: absolute; bottom: 120px; right: 52px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.scroll-hint span { font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.15); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(217,163,59,.5), transparent); animation: scrollline 2s ease-in-out infinite; }
@keyframes scrollline { 0%,100%{transform:scaleY(1);transform-origin:top;opacity:1;} 50%{transform:scaleY(.4);opacity:.4;} }

/* ══════════════════════════════════════════════════════
   STRIP
══════════════════════════════════════════════════════ */
.strip { background: #0a0144; position: relative; }
.strip::after { content:''; position:absolute; bottom:0;left:0;right:0;height:2px; background:linear-gradient(90deg,transparent,rgba(217,163,59,.5) 20%,#d9a33b 50%,rgba(217,163,59,.5) 80%,transparent); }
.strip-inner { max-width:1360px;margin:0 auto;display:grid;grid-template-columns:1.3fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr;position:relative;z-index:1; }
.strip-div { background:rgba(255,255,255,.07);margin:20px 0; }
.strip-stat { padding:32px 40px;display:flex;flex-direction:column;justify-content:center;position:relative; }
.strip-stat::before { content:'';position:absolute;left:0;top:24px;bottom:24px;width:3px;background:var(--gold);border-radius:0 2px 2px 0; }
.strip-stat-num { font-size:clamp(2.4rem,3.5vw,3.4rem);font-weight:800;color:var(--gold);line-height:1;letter-spacing:-.04em;display:block;margin-bottom:6px; }
.strip-stat-num span { font-size:clamp(1.2rem,1.8vw,1.7rem);font-weight:300;color:rgba(217,163,59,.55); }
.strip-stat-label { font-size:13px;font-weight:700;color:rgba(255,255,255,.7);letter-spacing:.02em;line-height:1.3; }
.strip-stat-sub { font-size:11px;color:rgba(255,255,255,.3);font-weight:400;margin-top:4px; }
.strip-item { padding:32px 28px;display:flex;align-items:center;gap:14px;text-decoration:none;position:relative;transition:background .2s; }
.strip-item:hover { background:rgba(255,255,255,.03); }
.strip-item::before { content:'';position:absolute;top:0;left:20px;right:20px;height:2px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .3s cubic-bezier(.23,1,.32,1); }
.strip-item:hover::before { transform:scaleX(1); }
.strip-item-icon { width:38px;height:38px;background:rgba(217,163,59,.1);border:1px solid rgba(217,163,59,.15);border-radius:9px;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .2s; }
.strip-item:hover .strip-item-icon { background:rgba(217,163,59,.2);border-color:rgba(217,163,59,.35); }
.strip-item-icon [data-lucide] { width:16px;height:16px;stroke:var(--gold);stroke-width:1.75; }
.strip-item-label { font-size:14px;font-weight:700;color:#fff;letter-spacing:-.01em;transition:color .2s; }
.strip-item:hover .strip-item-label { color:var(--gold); }

/* ══════════════════════════════════════════════════════
   JADWAL
══════════════════════════════════════════════════════ */
.s-jadwal { background: var(--light); padding: 96px 48px; }
.s-max { max-width: 1360px; margin: 0 auto; }
.s-hdr { display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:48px; }
.s-hdr-r { flex-shrink: 0; }
.s-title { font-size:clamp(2rem,3.5vw,2.8rem);font-weight:800;line-height:1.05;letter-spacing:-.03em;color:var(--deep); }
.s-title em { display:block;font-style:italic;font-weight:300;color:var(--navy);font-size:clamp(1.5rem,2.5vw,2.1rem); }
.s-body-grid { display:grid;grid-template-columns:1fr 2fr;gap:28px;align-items:stretch; }
.j-img { border-radius:16px;overflow:hidden;background:var(--navy);min-height:500px;position:relative; }
.j-img img { width:100%;height:100%;object-fit:cover;opacity:.6;filter:saturate(.6) brightness(.8);display:block; }
.j-img-ov { position:absolute;inset:0;background:linear-gradient(160deg,rgba(32,65,154,.15) 0%,rgba(4,0,91,.6) 100%); }
.j-content { display:flex;flex-direction:column;gap:12px; }
.jfeat { background:var(--navy);border-radius:14px;padding:24px 28px;display:flex;align-items:center;justify-content:space-between;gap:20px; }
.jf-badge { display:inline-flex;align-items:center;gap:5px;background:rgba(255,255,255,.12);border-radius:5px;padding:3px 10px;font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.65);margin-bottom:8px; }
.jf-badge [data-lucide] { width:10px;height:10px;stroke:var(--gold);stroke-width:2; }
.jf-title { font-size:18px;font-weight:800;color:#fff;letter-spacing:-.02em; }
.jf-sub { font-size:12px;color:rgba(255,255,255,.4);margin-top:3px; }
.jf-pills { display:flex;gap:8px;flex-shrink:0; }
.tpill { background:#fff;border-radius:10px;padding:10px 16px;text-align:center;transition:background .2s; }
.tpill:hover { background:#f5ecd0; }
.tpill-t { font-size:16px;font-weight:800;color:var(--deep);letter-spacing:-.03em;line-height:1;display:block; }
.tpill-w { font-size:9px;font-weight:700;color:var(--gold);letter-spacing:.1em;display:block;margin-top:3px; }
.j-row-label { font-size:10px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:rgba(4,0,91,.3);padding:2px 0; }
.jrow { display:grid;grid-template-columns:1fr 1fr;gap:10px; }
.jcard { background:#fff;border-radius:12px;border:1px solid rgba(32,65,154,.08);padding:18px 20px;display:flex;align-items:center;gap:14px;position:relative;overflow:hidden;transition:border-color .25s,transform .3s,box-shadow .3s; }
.jcard:hover { border-color:rgba(217,163,59,.3);transform:translateY(-2px);box-shadow:0 6px 20px rgba(32,65,154,.08); }
.jcard::before { content:'';position:absolute;left:0;top:12px;bottom:12px;width:3px;background:var(--gold);border-radius:0 2px 2px 0;transform:scaleY(0);transform-origin:bottom;transition:transform .3s cubic-bezier(.23,1,.32,1); }
.jcard:hover::before { transform:scaleY(1); }
.jcard-ico { width:40px;height:40px;flex-shrink:0;background:rgba(32,65,154,.07);border-radius:10px;display:flex;align-items:center;justify-content:center;transition:background .2s; }
.jcard:hover .jcard-ico { background:rgba(217,163,59,.1); }
.jcard-ico [data-lucide] { width:18px;height:18px;stroke:var(--navy);stroke-width:1.75;transition:stroke .2s; }
.jcard:hover .jcard-ico [data-lucide] { stroke:var(--gold); }
.jcard-when { font-size:10px;font-weight:600;color:rgba(4,0,91,.3);letter-spacing:.06em;text-transform:uppercase;margin-bottom:3px; }
.jcard-name { font-size:15px;font-weight:800;color:var(--deep);letter-spacing:-.02em;line-height:1.2; }
.jcard-time { font-size:14px;font-weight:800;color:var(--navy);margin-top:4px; }
.jcard-time .wita { font-size:9px;font-weight:700;color:var(--gold);margin-left:2px; }
.jcard-note { font-size:10px;color:rgba(4,0,91,.35);margin-top:2px;font-weight:400; }
.jnote { display:flex;align-items:center;gap:10px;padding:11px 16px;background:rgba(217,163,59,.08);border-left:3px solid var(--gold);border-radius:0 8px 8px 0; }
.jnote [data-lucide] { width:13px;height:13px;stroke:var(--gold);flex-shrink:0; }
.jnote p { font-size:12px;color:rgba(4,0,91,.5);font-weight:500; }
.jnote strong { color:var(--deep); }

/* ══════════════════════════════════════════════════════
   TENTANG
══════════════════════════════════════════════════════ */
.s-tentang {
  background: linear-gradient(135deg, #04005b 0%, #060860 50%, #0e114f 100%);
  padding: 100px 48px; position: relative; overflow: hidden;
}
.s-tentang::before { content:'';position:absolute;inset:0;pointer-events:none;background-image:linear-gradient(rgba(217,163,59,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(217,163,59,.06) 1px,transparent 1px);background-size:80px 80px; }
.tentang-grid { display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;position:relative;z-index:1; }
.t-title { font-size:clamp(2.2rem,3.8vw,3.4rem);font-weight:800;line-height:1.05;letter-spacing:-.03em;color:#fff;margin-bottom:28px; }
.t-title em { display:block;font-style:italic;font-weight:300;color:rgba(255,255,255,.35);font-size:clamp(1.6rem,2.8vw,2.6rem);margin-top:4px; }
.t-body { font-size:15px;font-weight:400;color:rgba(255,255,255,.5);line-height:1.8;margin-bottom:16px; }
.t-body strong { color:rgba(255,255,255,.85);font-weight:600; }
.fact-row { display:flex;gap:10px;flex-wrap:wrap;margin:28px 0 36px; }
.fact-pill { display:flex;align-items:center;gap:8px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:10px;padding:10px 16px; }
.fact-pill [data-lucide] { width:14px;height:14px;stroke:var(--gold);stroke-width:2;flex-shrink:0; }
.fact-pill-val { font-size:16px;font-weight:800;color:var(--gold);letter-spacing:-.02em;line-height:1; }
.fact-pill-label { font-size:11px;color:rgba(255,255,255,.35);font-weight:400;margin-top:1px; }
.vm-cards { display:flex;flex-direction:column;gap:10px;margin-bottom:36px; }
.vm-card { background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:20px 22px;border-left:3px solid var(--gold);transition:background .2s; }
.vm-card:hover { background:rgba(255,255,255,.06); }
.vm-tag { font-size:10px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--gold);margin-bottom:8px;display:block; }
.vm-text { font-size:14px;color:rgba(255,255,255,.6);font-weight:400;line-height:1.7;font-style:italic; }
.t-cta { display:flex;gap:12px;flex-wrap:wrap; }
.t-img-wrap { border-radius:20px;overflow:hidden;aspect-ratio:4/5;background:var(--navy);position:relative; }
.t-img-wrap img { width:100%;height:100%;object-fit:cover;opacity:.8;filter:saturate(.7) brightness(.85);display:block; }
.t-img-wrap::after { content:'';position:absolute;inset:0;background:linear-gradient(to bottom,transparent 50%,rgba(4,0,91,.5) 100%); }

/* ══════════════════════════════════════════════════════
   GEMBALA
══════════════════════════════════════════════════════ */
.s-gembala { background:var(--light);overflow:hidden;position:relative; }
.s-gembala::before { content:'';position:absolute;inset:0;pointer-events:none;background-image:radial-gradient(circle,rgba(32,65,154,.09) 1px,transparent 1px);background-size:22px 22px; }
.gembala-grid { max-width:1360px;margin:0 auto;display:grid;grid-template-columns:2fr 3fr;align-items:end;position:relative;z-index:1;min-height:600px; }
.g-photo { position:relative;display:flex;align-items:flex-end;justify-content:center;padding:0 0 0 48px;height:100%; }
.photo-bg { position:absolute;bottom:0;left:0;right:0;height:75%;background:linear-gradient(to top,rgba(32,65,154,.07) 0%,transparent 100%);border-radius:0 24px 0 0; }
.photo-img { position:relative;z-index:2;width:100%;max-width:320px;object-fit:contain;object-position:bottom center;display:block;filter:drop-shadow(8px 0 32px rgba(32,65,154,.15)); }
.photo-ph { position:relative;z-index:2;width:100%;max-width:300px;aspect-ratio:3/4;background:rgba(32,65,154,.06);border:2px dashed rgba(32,65,154,.15);border-radius:16px 16px 0 0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;padding:24px; }
.photo-ph [data-lucide] { width:36px;height:36px;stroke:rgba(32,65,154,.25); }
.photo-ph p { font-size:12px;color:rgba(32,65,154,.4);text-align:center;line-height:1.5;font-weight:500; }
.photo-ph span { font-size:10px;color:rgba(217,163,59,.6);letter-spacing:.1em;text-transform:uppercase;font-weight:700; }
.g-photo::after { content:'';position:absolute;bottom:0;left:48px;right:0;height:3px;background:linear-gradient(90deg,var(--gold),rgba(217,163,59,.2)); }
.g-text { padding:80px 48px 80px 64px; }
.gembala-name { font-size:clamp(2.2rem,3.5vw,3rem);font-weight:800;line-height:1.05;letter-spacing:-.04em;color:var(--deep);margin-bottom:6px; }
.gembala-gelar { font-size:13px;font-weight:500;color:rgba(4,0,91,.4);margin-bottom:28px;display:block; }
.info-row { display:flex;gap:8px;flex-wrap:wrap;margin-bottom:32px; }
.info-chip { display:flex;align-items:center;gap:7px;background:#fff;border:1px solid rgba(32,65,154,.1);border-radius:50px;padding:8px 16px; }
.info-chip [data-lucide] { width:13px;height:13px;stroke:var(--navy);stroke-width:2;flex-shrink:0; }
.info-chip span { font-size:12px;color:rgba(4,0,91,.6);font-weight:500; }
.g-narasi { font-size:14px;color:rgba(4,0,91,.55);line-height:1.8;margin-bottom:32px;border-left:3px solid rgba(217,163,59,.4);padding-left:16px; }
.g-narasi strong { color:var(--deep);font-weight:600; }
.timeline { display:flex;flex-direction:column;gap:0;margin-bottom:32px; }
.tl-item { display:flex;gap:20px;align-items:flex-start;padding:14px 0;border-bottom:1px solid rgba(4,0,91,.06); }
.tl-item:last-child { border-bottom:none; }
.tl-year { font-size:13px;font-weight:800;color:var(--gold);letter-spacing:-.01em;min-width:48px;flex-shrink:0;padding-top:1px; }
.tl-dot { width:8px;height:8px;border-radius:50%;background:var(--gold);flex-shrink:0;margin-top:5px;box-shadow:0 0 0 3px rgba(217,163,59,.15); }
.tl-role { font-size:14px;font-weight:700;color:var(--deep);line-height:1.3; }
.tl-desc { font-size:12px;color:rgba(4,0,91,.45);font-weight:400;margin-top:2px; }

/* ══════════════════════════════════════════════════════
   PROGRAM
══════════════════════════════════════════════════════ */
.s-program { background:var(--light);padding:96px 48px; }
.bento { display:grid;grid-template-columns:repeat(3,1fr);gap:16px; }
.pcard { background:#fff;border-radius:18px;border:1px solid rgba(32,65,154,.08);padding:32px;display:flex;flex-direction:column;gap:16px;position:relative;overflow:hidden;transition:border-color .25s,transform .3s cubic-bezier(.23,1,.32,1),box-shadow .3s; }
.pcard:hover { border-color:rgba(217,163,59,.3);transform:translateY(-4px);box-shadow:0 12px 40px rgba(32,65,154,.1); }
.pcard::before { content:'';position:absolute;left:0;top:24px;bottom:24px;width:3px;background:var(--gold);border-radius:0 2px 2px 0;transform:scaleY(0);transform-origin:bottom;transition:transform .3s cubic-bezier(.23,1,.32,1); }
.pcard:hover::before { transform:scaleY(1); }
.pcard-ico { width:48px;height:48px;flex-shrink:0;background:rgba(32,65,154,.07);border-radius:12px;display:flex;align-items:center;justify-content:center;transition:background .2s; }
.pcard:hover .pcard-ico { background:rgba(217,163,59,.12); }
.pcard-ico [data-lucide] { width:22px;height:22px;stroke:var(--navy);stroke-width:1.75;transition:stroke .2s; }
.pcard:hover .pcard-ico [data-lucide] { stroke:var(--gold); }
.pcard-tag { font-size:10px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:rgba(4,0,91,.3);margin-bottom:4px;display:block; }
.pcard-name { font-size:20px;font-weight:800;color:var(--deep);letter-spacing:-.02em;line-height:1.1;margin-bottom:8px; }
.pcard-desc { font-size:13px;color:rgba(4,0,91,.5);line-height:1.65;flex:1; }
.pcard-link { display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:700;color:rgba(4,0,91,.25);margin-top:8px;transition:color .2s,gap .2s; }
.pcard-link [data-lucide] { width:13px;height:13px;stroke:currentColor;stroke-width:2.5; }
.pcard:hover .pcard-link { color:var(--gold);gap:10px; }
.see-all-link { display:inline-flex;align-items:center;gap:7px;font-size:13px;font-weight:700;color:var(--navy);padding-bottom:4px;border-bottom:2px solid rgba(32,65,154,.2);transition:all .2s; }
.see-all-link:hover { color:var(--deep);border-color:var(--gold); }
.see-all-link [data-lucide] { width:14px;height:14px;stroke:currentColor;stroke-width:2.5; }

/* ══════════════════════════════════════════════════════
   SUARA SANGKAKALA
══════════════════════════════════════════════════════ */
.s-suara { background:linear-gradient(135deg,#04005b 0%,#060860 50%,#0e114f 100%);padding:96px 48px;position:relative;overflow:hidden; }
.s-suara::before { content:'';position:absolute;inset:0;pointer-events:none;background-image:linear-gradient(rgba(217,163,59,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(217,163,59,.05) 1px,transparent 1px);background-size:80px 80px; }
.suara-grid { display:grid;grid-template-columns:1fr 1.6fr;gap:16px;align-items:start; }
.acard-f { border-radius:16px;border:1px solid rgba(255,255,255,.08);overflow:hidden;background:rgba(255,255,255,.04);display:flex;flex-direction:column;transition:border-color .25s,transform .3s cubic-bezier(.23,1,.32,1); }
.acard-f:hover { border-color:rgba(217,163,59,.3);transform:translateY(-4px); }
.feat-thumb { height:200px;position:relative;background:var(--navy);overflow:hidden; }
.feat-thumb img { width:100%;height:100%;object-fit:cover;filter:saturate(.7) brightness(.8);transition:transform .5s; }
.acard-f:hover .feat-thumb img { transform:scale(1.04); }
.thumb-ph { width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,rgba(32,65,154,.5),rgba(4,0,91,.7)); }
.thumb-ph [data-lucide] { width:28px;height:28px;stroke:rgba(255,255,255,.12);stroke-width:1; }
.feat-cat { position:absolute;top:14px;left:14px;background:var(--gold);color:var(--deep);font-size:9px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;padding:4px 10px;border-radius:6px; }
.feat-body { padding:22px;flex:1;display:flex;flex-direction:column; }
.feat-date { font-size:11px;color:rgba(255,255,255,.3);display:flex;align-items:center;gap:5px;margin-bottom:10px;font-weight:500; }
.feat-date [data-lucide] { width:11px;height:11px;stroke:currentColor;stroke-width:2; }
.feat-title { font-size:17px;font-weight:800;color:#fff;letter-spacing:-.02em;line-height:1.3;margin-bottom:10px;transition:color .2s; }
.acard-f:hover .feat-title { color:var(--gold); }
.feat-exc { font-size:13px;color:rgba(255,255,255,.4);line-height:1.7;flex:1;margin-bottom:18px; }
.suara-4grid { display:grid;grid-template-columns:1fr 1fr;gap:12px; }
.acard-s { border-radius:14px;border:1px solid rgba(255,255,255,.07);overflow:hidden;background:rgba(255,255,255,.03);display:flex;flex-direction:column;transition:border-color .25s,transform .3s; }
.acard-s:hover { border-color:rgba(217,163,59,.25);transform:translateY(-3px); }
.small-thumb { height:110px;position:relative;background:var(--navy);overflow:hidden; }
.small-thumb img { width:100%;height:100%;object-fit:cover;filter:saturate(.6) brightness(.75);transition:transform .5s; }
.acard-s:hover .small-thumb img { transform:scale(1.05); }
.small-cat { position:absolute;top:10px;left:10px;background:rgba(217,163,59,.85);color:var(--deep);font-size:8px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;padding:3px 8px;border-radius:4px; }
.small-body { padding:14px 16px;flex:1;display:flex;flex-direction:column;gap:8px; }
.small-date { font-size:10px;color:rgba(255,255,255,.25);display:flex;align-items:center;gap:4px;font-weight:500; }
.small-date [data-lucide] { width:10px;height:10px;stroke:currentColor;stroke-width:2; }
.small-title { font-size:13px;font-weight:700;color:#fff;letter-spacing:-.01em;line-height:1.35;flex:1;transition:color .2s; }
.acard-s:hover .small-title { color:var(--gold); }
.s-pill-btn { display:inline-flex;align-items:center;gap:6px;background:rgba(217,163,59,.12);border:1px solid rgba(217,163,59,.25);border-radius:50px;padding:8px 16px;font-size:12px;font-weight:700;color:var(--gold);width:fit-content;transition:all .2s; }
.s-pill-btn [data-lucide] { width:12px;height:12px;stroke:currentColor;stroke-width:2.5; }
.acard-f:hover .s-pill-btn { background:rgba(217,163,59,.2);border-color:rgba(217,163,59,.5); }
.sm-pill { display:inline-flex;align-items:center;gap:5px;background:transparent;border:1px solid rgba(255,255,255,.1);border-radius:50px;padding:5px 12px;font-size:10px;font-weight:700;color:rgba(255,255,255,.35);width:fit-content;transition:all .2s; }
.sm-pill [data-lucide] { width:10px;height:10px;stroke:currentColor;stroke-width:2.5; }
.acard-s:hover .sm-pill { color:var(--gold);border-color:rgba(217,163,59,.3); }
.see-all-light { display:inline-flex;align-items:center;gap:7px;font-size:13px;font-weight:700;color:rgba(255,255,255,.5);padding-bottom:4px;border-bottom:1px solid rgba(255,255,255,.15);transition:all .2s; }
.see-all-light:hover { color:var(--gold);border-color:var(--gold); }
.see-all-light [data-lucide] { width:14px;height:14px;stroke:currentColor;stroke-width:2.5; }

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.s-faq { background:var(--light);padding:96px 48px; }
.faq-grid { display:grid;grid-template-columns:1fr 1.8fr;gap:80px;align-items:start; }
.faq-sticky { position:sticky;top:100px; }
.faq-sub { font-size:14px;color:rgba(4,0,91,.5);line-height:1.7;margin-bottom:32px; }
.faq-contact { background:var(--deep);border-radius:16px;padding:24px;display:flex;flex-direction:column;gap:16px; }
.faq-contact-label { font-size:10px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.35); }
.faq-contact-title { font-size:16px;font-weight:800;color:#fff;line-height:1.3; }
.faq-contact-btns { display:flex;flex-direction:column;gap:8px; }
.contact-btn { display:flex;align-items:center;gap:10px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);border-radius:50px;padding:11px 16px;font-size:13px;font-weight:600;color:rgba(255,255,255,.7);transition:all .2s; }
.contact-btn:hover { background:rgba(217,163,59,.15);border-color:rgba(217,163,59,.3);color:#fff; }
.contact-btn [data-lucide] { width:15px;height:15px;stroke:var(--gold);stroke-width:2;flex-shrink:0; }
.faq-list { display:flex;flex-direction:column;gap:8px; }
.faq-item { background:#fff;border:1px solid rgba(32,65,154,.08);border-radius:14px;overflow:hidden;transition:border-color .25s,box-shadow .25s; }
.faq-item.open { border-color:rgba(217,163,59,.3);box-shadow:0 4px 20px rgba(32,65,154,.07); }
.faq-q { display:flex;align-items:center;justify-content:space-between;gap:16px;padding:20px 24px;cursor:pointer;user-select:none; }
.faq-q-text { font-size:15px;font-weight:700;color:var(--deep);letter-spacing:-.01em;line-height:1.4; }
.faq-item.open .faq-q-text { color:var(--navy); }
.faq-icon { width:32px;height:32px;flex-shrink:0;background:rgba(32,65,154,.07);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:background .2s,transform .3s; }
.faq-item.open .faq-icon { background:rgba(217,163,59,.12);transform:rotate(45deg); }
.faq-icon [data-lucide] { width:16px;height:16px;stroke:var(--navy);stroke-width:2.5;transition:stroke .2s; }
.faq-item.open .faq-icon [data-lucide] { stroke:var(--gold); }
.faq-a { max-height:0;overflow:hidden;transition:max-height .35s cubic-bezier(.23,1,.32,1); }
.faq-item.open .faq-a { max-height:400px; }
.faq-a-inner { padding:0 24px 20px;border-top:1px solid rgba(32,65,154,.06);padding-top:16px;font-size:14px;color:rgba(4,0,91,.6);line-height:1.75;font-weight:400; }
.faq-a-inner strong { color:var(--deep);font-weight:600; }
.faq-a-inner a { color:var(--navy);font-weight:600;text-decoration:underline;text-underline-offset:3px; }

/* ══════════════════════════════════════════════════════
   CTA AJAKAN — Granger style
══════════════════════════════════════════════════════ */
.s-cta {
  background: var(--deep);
  padding: 100px 48px;
  position: relative; overflow: hidden;
}
/* Diagonal accent — Granger signature */
.s-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    transparent 30%,
    rgba(217,163,59,.06) 30%,
    rgba(217,163,59,.06) 45%,
    transparent 45%
  );
  pointer-events: none;
}
.s-cta::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(217,163,59,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,163,59,.07) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.cta-inner {
  max-width: 1360px; margin: 0 auto;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
.cta-left {}
.cta-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.cta-eyebrow span {
  background: var(--gold); color: var(--deep);
  border-radius: 6px; padding: 2px 10px;
  font-size: 10px; font-weight: 800;
}
.cta-title {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -.04em; color: #fff;
  margin-bottom: 20px;
}
.cta-title .gt {
  background: linear-gradient(90deg, var(--gold), #f0d080);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-sub {
  font-size: 15px; color: rgba(255,255,255,.45);
  line-height: 1.75; max-width: 480px; margin-bottom: 40px;
}
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px; padding: 24px 20px;
  transition: background .2s, border-color .2s;
}
.cta-stat:hover { background: rgba(217,163,59,.08); border-color: rgba(217,163,59,.2); }
.cta-stat-num {
  font-size: 2.4rem; font-weight: 800;
  letter-spacing: -.04em; line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(90deg, var(--gold), #f0d080);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-stat-label { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 500; line-height: 1.4; }

/* Event row — Granger style */
.cta-event-row {
  grid-column: 1 / -1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 16px 20px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  transition: background .2s, border-color .2s;
}
.cta-event-row:hover { background: rgba(217,163,59,.08); border-color: rgba(217,163,59,.2); }
.cer-left { display: flex; align-items: center; gap: 14px; }
.cer-icon { width: 36px; height: 36px; background: rgba(217,163,59,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cer-icon [data-lucide] { width: 16px; height: 16px; stroke: var(--gold); stroke-width: 2; }
.cer-text {}
.cer-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 2px; }
.cer-name { font-size: 14px; font-weight: 700; color: #fff; }
.cer-arrow { color: rgba(255,255,255,.3); transition: color .2s; }
.cta-event-row:hover .cer-arrow { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: #030240;
  padding: 64px 48px 0;
}
.footer-top {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-cross { width: 32px; height: 32px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-cross svg { width: 14px; height: 14px; fill: var(--deep); }
.footer-brand-name { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.footer-brand-sub { font-size: 10px; color: rgba(255,255,255,.3); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.4); }
.footer-contact-item [data-lucide] { width: 13px; height: 13px; stroke: var(--gold); flex-shrink: 0; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-jadwal { display: flex; flex-direction: column; gap: 8px; }
.footer-jadwal-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-jadwal-item:last-child { border-bottom: none; }
.footer-jadwal-name { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 500; }
.footer-jadwal-time { font-size: 12px; color: var(--gold); font-weight: 700; }

/* Big logo footer — Granger signature */
.footer-big-logo {
  max-width: 1360px; margin: 0 auto;
  padding: 48px 0 0;
  text-align: center; line-height: 1; overflow: hidden;
}
.footer-big-logo span {
  font-size: clamp(60px, 12vw, 140px);
  font-weight: 800; letter-spacing: -.06em;
  color: rgba(255,255,255,.04);
  display: block;
  user-select: none;
}
.footer-bottom {
  max-width: 1360px; margin: 0 auto;
  padding: 20px 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,.25); }
.footer-copy a { color: rgba(255,255,255,.4); }
.footer-socials { display: flex; gap: 8px; }
.f-soc { width: 32px; height: 32px; background: rgba(255,255,255,.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.f-soc:hover { background: rgba(217,163,59,.2); }
.f-soc svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════ */
@keyframes up { from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);} }
@keyframes fadein { from{opacity:0;}to{opacity:1;} }
.anim-up { opacity:0;animation:up .7s forwards; }
.anim-up:nth-child(1){animation-delay:.1s}
.anim-up:nth-child(2){animation-delay:.2s}
.anim-up:nth-child(3){animation-delay:.3s}
.anim-up:nth-child(4){animation-delay:.4s}
.anim-up:nth-child(5){animation-delay:.5s}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media(max-width:1100px){
  .hero-body{grid-template-columns:1fr 40%;padding:120px 32px 0;}
  .tentang-grid{gap:48px;}
  .cta-inner{gap:48px;}
  .footer-top{grid-template-columns:1.2fr 1fr 1fr;gap:32px;}
  .footer-top .footer-col:last-child{display:none;}
}
@media(max-width:900px){
  nav{padding:0 24px;}
  .nav-links,.nav-cta{display:none;}
  .nav-ham{display:flex;}
  .hero-body{grid-template-columns:1fr;padding:100px 24px 0;}
  .hero-right{display:none;}
  .hero-glass{padding:0 24px;margin-top:24px;}
  .glass-inner{flex-direction:column;align-items:flex-start;gap:16px;padding:20px;}
  .g-sep,.ginfo-sep{display:none;}
  .g-jadwal{flex-wrap:wrap;}
  .strip-inner{grid-template-columns:1fr 1fr;}
  .strip-div{display:none;}
  .strip-stat{grid-column:1/-1;border-bottom:1px solid rgba(255,255,255,.07);flex-direction:row;align-items:center;gap:16px;}
  .strip-stat::before{display:none;}
  .s-jadwal,.s-tentang,.s-gembala,.s-program,.s-suara,.s-faq,.s-cta{padding:72px 24px;}
  .s-body-grid{grid-template-columns:1fr;}
  .j-img{min-height:260px;}
  .jfeat{flex-direction:column;align-items:flex-start;}
  .jrow{grid-template-columns:1fr;}
  .tentang-grid{grid-template-columns:1fr;}
  .gembala-grid{grid-template-columns:1fr;min-height:auto;}
  .g-photo{height:320px;padding:0;justify-content:center;border-bottom:3px solid rgba(217,163,59,.3);}
  .g-photo::after{display:none;}
  .g-text{padding:48px 24px;}
  .bento{grid-template-columns:1fr 1fr;}
  .suara-grid{grid-template-columns:1fr;}
  .faq-grid{grid-template-columns:1fr;gap:40px;}
  .faq-sticky{position:static;}
  .cta-inner{grid-template-columns:1fr;gap:48px;}
  .cta-right{grid-template-columns:repeat(2,1fr);}
  .footer-top{grid-template-columns:1fr 1fr;gap:32px;}
}
@media(max-width:640px){
  .bento{grid-template-columns:1fr;}
  .suara-4grid{grid-template-columns:1fr;}
  .cta-title{font-size:2.2rem;}
  .footer-top{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;align-items:flex-start;}
}
@media(max-width:480px){
  .jf-pills{flex-wrap:wrap;}
  .cta-right{grid-template-columns:1fr 1fr;}
  .hero-h1{font-size:clamp(2.4rem,10vw,3rem);}
}