/* Tapak Suci PINDA 012 — “Warisan yang Bergerak” */
:root {
  --red: #c51624;
  --red-bright: #eb2737;
  --red-deep: #7f0f1a;
  --gold: #e9bb2f;
  --gold-pale: #f4d77b;
  --navy: #111a2c;
  --ink: #090c14;
  --ink-soft: #0e1320;
  --surface: #151b29;
  --surface-warm: #1b1818;
  --cream: #f4f0e7;
  --paper: #ddd6c9;
  --muted: #9b9a98;
  --line: rgba(244, 240, 231, 0.13);
  --line-gold: rgba(233, 187, 47, 0.3);
  --container: 1240px;
  --header-height: 78px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-heavy: cubic-bezier(0.16, 1, 0.3, 1);
  --z-grain: 50;
  --z-header: 60;
  --z-menu: 55;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--cream); font-family: "Plus Jakarta Sans", system-ui, sans-serif; font-size: 16px; line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
::selection { background: var(--gold); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, blockquote, figure { margin-top: 0; }
h1, h2, h3 { font-family: "Cinzel", Georgia, serif; text-wrap: balance; }
p { text-wrap: pretty; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }

.skip-link { position: fixed; left: 1rem; top: 1rem; z-index: 100; padding: .8rem 1rem; background: var(--gold); color: var(--ink); font-weight: 700; transform: translateY(-160%); transition: transform .3s var(--ease); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(7rem, 11vw, 10.5rem) 0 clamp(8rem, 12vw, 12rem); }
.grain { position: fixed; inset: 0; z-index: var(--z-grain); pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }

/* Navigation */
.site-header { position: fixed; top: 20px; left: 0; right: 0; z-index: var(--z-header); pointer-events: none; }
.nav-shell { width: min(calc(100% - 48px), var(--container)); min-height: var(--header-height); margin: 0 auto; padding: 8px 10px 8px 14px; display: flex; align-items: center; gap: 28px; border: 1px solid rgba(244,240,231,.1); border-radius: 26px; background: rgba(9,12,20,.62); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 70px rgba(3,5,10,.25); backdrop-filter: blur(18px) saturate(130%); pointer-events: auto; transition: transform .7s var(--ease), background .7s var(--ease), border-color .7s var(--ease); }
.site-header.is-scrolled .nav-shell { background: rgba(9,12,20,.88); border-color: rgba(233,187,47,.18); transform: translateY(-8px); }
.brand { display: flex; align-items: center; gap: 11px; min-width: max-content; }
.brand__mark { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: rgba(255,255,255,.05); box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.brand__mark img { width: 43px; height: 43px; object-fit: contain; filter: drop-shadow(0 8px 16px rgba(197,22,36,.28)); }
.brand__copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand__copy strong { font-family: "Cinzel", Georgia, serif; font-size: .88rem; letter-spacing: .12em; text-transform: uppercase; }
.brand__copy small { margin-top: 4px; color: var(--gold-pale); font-size: .6rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); }
.nav-links a { position: relative; color: var(--muted); font-size: .78rem; font-weight: 600; transition: color .45s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .5s var(--ease); }
.nav-links a:hover, .nav-links a.is-active { color: var(--cream); }
.nav-links a.is-active::after { right: 0; }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: space-between; gap: 16px; border: 0; border-radius: 999px; font-weight: 700; line-height: 1; cursor: pointer; transition: transform .55s var(--ease), background .55s var(--ease), color .55s var(--ease), box-shadow .55s var(--ease); }
.nav-cta { padding: 7px 7px 7px 18px; background: var(--cream); color: var(--ink); font-size: .73rem; }
.nav-cta i, .button i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; font-style: normal; transition: transform .55s var(--ease), background .55s var(--ease); }
.nav-cta i { background: var(--red); color: white; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(197,22,36,.2); }
.nav-cta:hover i, .button:hover i { transform: translate(2px,-2px) scale(1.06); }
.nav-cta:active, .button:active { transform: scale(.98); }
.menu-button { display: none; position: relative; width: 48px; height: 48px; margin-left: auto; border: 0; border-radius: 16px; background: rgba(255,255,255,.06); color: var(--cream); cursor: pointer; }
.menu-button span { position: absolute; left: 14px; width: 20px; height: 1.5px; background: currentColor; transition: transform .65s var(--ease), top .65s var(--ease); }
.menu-button span:first-child { top: 20px; }
.menu-button span:last-child { top: 27px; }
.menu-button[aria-expanded="true"] span:first-child { top: 24px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 24px; transform: rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: var(--z-menu); min-height: 100dvh; overflow-y: auto; visibility: hidden; opacity: 0; background: rgba(9,12,20,.92); backdrop-filter: blur(26px); transition: opacity .65s var(--ease), visibility .65s; }
.mobile-menu.is-open { visibility: visible; opacity: 1; }
.mobile-menu__inner { width: min(calc(100% - 48px), 620px); min-height: 100dvh; margin: 0 auto; padding: clamp(108px, 17vh, 140px) 0 36px; display: flex; flex-direction: column; }
.mobile-menu__label, .section-index { color: var(--gold); font-family: "Rajdhani", sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { display: flex; gap: 18px; align-items: baseline; padding: 9px 0; font-family: "Cinzel", serif; font-size: clamp(1.55rem, 7vw, 2.6rem); transform: translateY(28px); opacity: 0; transition: transform .7s var(--ease), opacity .7s var(--ease), color .35s var(--ease); }
.mobile-menu nav a span { color: var(--red-bright); font-family: "Rajdhani", sans-serif; font-size: .72rem; }
.mobile-menu.is-open nav a { transform: none; opacity: 1; }
.mobile-menu.is-open nav a:nth-child(2) { transition-delay: .05s; }.mobile-menu.is-open nav a:nth-child(3) { transition-delay: .1s; }.mobile-menu.is-open nav a:nth-child(4) { transition-delay: .15s; }.mobile-menu.is-open nav a:nth-child(5) { transition-delay: .2s; }.mobile-menu.is-open nav a:nth-child(6) { transition-delay: .25s; }
.mobile-menu__cta { margin-top: auto; }
.mobile-menu__foot { margin: 22px 0 0; color: var(--muted); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }

/* Shared */
.section-intro { max-width: 1000px; margin-bottom: clamp(4rem, 8vw, 7rem); }
.section-intro h2, .training__head h2, .heritage__sticky h2, .impact__head h2, .faq__head h2, .join__intro h2, .footer__top h2 { margin: 20px 0 0; font-size: clamp(2.5rem, 6.4vw, 5.8rem); line-height: .98; letter-spacing: -.045em; }
h2 em { color: var(--gold); font-weight: 500; }
.section-intro--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(260px, .5fr); gap: 8vw; align-items: end; }
.section-intro--split > p { max-width: 40ch; margin-bottom: 5px; color: var(--muted); }
.button { padding: 8px 8px 8px 24px; min-height: 56px; background: var(--red); color: white; box-shadow: 0 18px 50px rgba(127,15,26,.32), inset 0 1px 0 rgba(255,255,255,.16); }
.button i { background: rgba(255,255,255,.14); }
.button:hover { background: var(--red-bright); transform: translateY(-3px); box-shadow: 0 24px 58px rgba(127,15,26,.45); }
.button--light { background: var(--cream); color: var(--ink); box-shadow: 0 18px 50px rgba(0,0,0,.16); }
.button--light i { background: var(--ink); color: var(--cream); }
.button--light:hover { background: white; }
.button--full { width: 100%; }
.text-link { display: inline-flex; gap: 12px; align-items: center; border-bottom: 1px solid var(--line-gold); color: var(--paper); font-size: .86rem; font-weight: 600; transition: color .4s var(--ease), border-color .4s var(--ease); }
.text-link span { color: var(--gold); transition: transform .45s var(--ease); }
.text-link:hover { color: white; border-color: var(--gold); }.text-link:hover span { transform: translateX(4px); }
.reveal { transition: opacity .95s var(--ease-heavy), transform .95s var(--ease-heavy), filter .95s var(--ease-heavy); }
.js .reveal { opacity: 0; transform: translateY(46px); filter: blur(5px); }
.js .reveal.is-visible { opacity: 1; transform: none; filter: none; }

/* Hero */
.hero { position: relative; min-height: 100dvh; overflow: hidden; display: flex; flex-direction: column; background: radial-gradient(circle at 70% 35%, rgba(197,22,36,.18), transparent 30%), radial-gradient(circle at 20% 90%, rgba(17,26,44,.9), transparent 45%), var(--ink); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(233,187,47,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(233,187,47,.08) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.hero__atmosphere { position: absolute; inset: 0; pointer-events: none; }
.hero__sun { position: absolute; width: clamp(380px, 54vw, 800px); aspect-ratio: 1; right: -8%; top: 4%; border-radius: 50%; border: 1px solid rgba(233,187,47,.22); box-shadow: 0 0 0 70px rgba(233,187,47,.025), 0 0 0 140px rgba(233,187,47,.018); }
.hero__contour { position: absolute; left: 0; right: 0; bottom: -4%; width: 100%; height: 52%; opacity: .18; }
.hero__contour path { fill: none; stroke: var(--gold); stroke-width: 1; }
.hero__grid { position: relative; z-index: 2; flex: 1; padding-top: clamp(9.5rem, 17vh, 12rem); padding-bottom: 5rem; display: grid; grid-template-columns: 1.16fr .84fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; color: var(--gold-pale); font-family: "Rajdhani", sans-serif; font-size: .76rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; background: var(--red-bright); }
.hero h1 { margin: 0; font-size: clamp(3.8rem, 7.6vw, 7.6rem); line-height: .82; letter-spacing: -.06em; }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 span { font-size: .38em; letter-spacing: .02em; line-height: 1.5; color: var(--paper); }
.hero h1 em { color: transparent; font-weight: 800; font-style: normal; -webkit-text-stroke: 1.5px var(--gold); }
.hero__lead { max-width: 57ch; margin: 34px 0 30px; color: var(--paper); font-size: clamp(1rem, 1.5vw, 1.16rem); }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.hero__symbol { --tilt-x: 0deg; --tilt-y: 0deg; position: relative; width: min(100%, 480px); aspect-ratio: 1; margin-inline: auto; display: grid; place-items: center; transform-style: preserve-3d; transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transition: transform .7s var(--ease); }
.hero__symbol img { position: relative; z-index: 3; width: 56%; filter: drop-shadow(0 28px 45px rgba(0,0,0,.45)) drop-shadow(0 0 30px rgba(197,22,36,.22)); }
.symbol-orbit { position: absolute; border-radius: 50%; }
.symbol-orbit--outer { inset: 4%; border: 1px solid rgba(233,187,47,.34); }
.symbol-orbit--outer::before, .symbol-orbit--outer::after { content: ""; position: absolute; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px var(--gold); }
.symbol-orbit--outer::before { left: -4px; }.symbol-orbit--outer::after { right: -4px; }
.symbol-orbit--inner { inset: 17%; border: 1px dashed rgba(244,240,231,.16); animation: rotate 28s linear infinite; }
.symbol-rays { position: absolute; inset: 7%; background: repeating-conic-gradient(from 0deg, rgba(233,187,47,.22) 0deg 1deg, transparent 1deg 15deg); border-radius: 50%; mask-image: radial-gradient(circle, transparent 0 55%, black 56% 58%, transparent 59%); animation: rotate 50s linear infinite reverse; }
.symbol-caption { position: absolute; padding: 7px 12px; border: 1px solid var(--line-gold); background: rgba(9,12,20,.8); color: var(--gold-pale); font-family: "Rajdhani", sans-serif; font-size: .67rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.symbol-caption--top { top: 12%; right: 0; }.symbol-caption--bottom { bottom: 12%; left: -3%; }
.hero__trust { position: relative; z-index: 3; padding: 20px 0 28px; display: flex; align-items: center; gap: 32px; border-top: 1px solid var(--line); color: var(--muted); font-family: "Rajdhani", sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero__trust span { display: flex; align-items: center; gap: 10px; }.hero__trust span::before { content: ""; width: 4px; height: 4px; transform: rotate(45deg); background: var(--red-bright); }
.hero__trust a { margin-left: auto; color: var(--cream); }.hero__trust b { margin-left: 8px; color: var(--gold); }
@keyframes rotate { to { transform: rotate(360deg); } }

/* Manifesto */
.manifesto { background: var(--cream); color: var(--ink); }
.manifesto .section-index { color: var(--red); }
.manifesto h2 em { color: var(--red); }
.manifesto__body { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(4rem, 9vw, 9rem); align-items: start; }
.manifesto__statement { position: sticky; top: 130px; }
.manifesto__statement > p { max-width: 42ch; font-family: "Cinzel", serif; font-size: clamp(1.25rem, 2.1vw, 1.8rem); line-height: 1.45; }
.manifesto__statement blockquote { margin: 50px 0 0; padding: 24px 0 0 28px; max-width: 42ch; border-top: 1px solid rgba(9,12,20,.2); color: #5f5a55; font-family: "Cinzel", serif; font-size: .91rem; font-style: italic; }
.values { margin: 0; padding: 0; list-style: none; }
.values li { display: grid; grid-template-columns: 68px 1fr; gap: 24px; padding: 30px 0 36px; border-top: 1px solid rgba(9,12,20,.17); }
.values li:last-child { border-bottom: 1px solid rgba(9,12,20,.17); }
.values > li > span { color: var(--red); font-family: "Rajdhani", sans-serif; font-weight: 700; }
.values h3 { margin: 0 0 10px; font-size: clamp(1.15rem, 2vw, 1.6rem); }
.values p { max-width: 52ch; margin: 0; color: #625f5a; font-size: .92rem; }

/* Heritage */
.heritage { overflow: hidden; background: radial-gradient(circle at 15% 40%, rgba(197,22,36,.15), transparent 32%), var(--ink-soft); }
.heritage__backdrop { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.heritage__backdrop span { position: absolute; left: -2vw; top: 8%; color: transparent; font-family: "Cinzel", serif; font-size: clamp(7rem, 20vw, 20rem); font-weight: 900; letter-spacing: -.08em; -webkit-text-stroke: 1px rgba(233,187,47,.055); }
.heritage__grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(4rem, 10vw, 10rem); }
.heritage__sticky { position: sticky; top: 140px; align-self: start; }
.heritage__sticky h2 { font-size: clamp(2.7rem, 5.6vw, 5.3rem); }
.heritage__sticky > p:last-child { max-width: 43ch; margin: 32px 0 0; color: var(--muted); }
.timeline { margin: 60px 0 0; padding: 0; list-style: none; }
.timeline li { position: relative; display: grid; grid-template-columns: 100px 1fr; gap: 30px; padding: 0 0 70px; }
.timeline li::before { content: ""; position: absolute; left: 99px; top: 10px; bottom: 0; width: 1px; background: linear-gradient(var(--gold), rgba(233,187,47,.08)); }
.timeline li::after { content: ""; position: absolute; left: 95px; top: 5px; width: 9px; height: 9px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 7px rgba(197,22,36,.12); }
.timeline__year { color: var(--gold); font-family: "Rajdhani", sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .12em; }
.timeline li > div { padding-left: 22px; }
.timeline__meta { margin: 0 0 10px; color: var(--red-bright); font-family: "Rajdhani", sans-serif; font-size: .67rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.timeline h3 { margin: 0 0 12px; font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
.timeline li p:last-child { max-width: 48ch; margin: 0; color: var(--muted); }

/* Training */
.training { background: var(--red-deep); color: white; }
.training::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,255,255,.25) 22px 23px); }
.training .container { position: relative; }
.training .section-index { color: var(--gold-pale); }
.training__head { display: grid; grid-template-columns: 1.4fr .6fr; gap: 7vw; align-items: end; margin-bottom: 66px; }
.training__head h2 { font-size: clamp(2.5rem, 5.6vw, 5.2rem); }
.training__head h2 em { color: var(--gold-pale); }
.training__head > p { max-width: 42ch; margin-bottom: 4px; color: rgba(255,255,255,.72); }
.schedule-shell { padding: 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 34px; background: rgba(20,5,8,.2); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 40px 90px rgba(38,0,5,.25); }
.schedule-alert { padding: 14px 20px 18px; color: rgba(255,255,255,.72); font-size: .77rem; }
.schedule-alert span { margin-right: 10px; color: var(--gold-pale); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.schedule { overflow: hidden; border-radius: 27px 27px 0 0; background: var(--cream); color: var(--ink); }
.schedule-row { display: grid; grid-template-columns: 52px 1fr 1fr 1.45fr 40px; gap: 20px; align-items: center; min-height: 92px; padding: 18px 28px; border-bottom: 1px solid rgba(9,12,20,.14); transition: color .5s var(--ease), background .5s var(--ease), transform .5s var(--ease); }
.schedule-row:last-child { border-bottom: 0; }
.schedule-row:hover { background: var(--gold-pale); transform: translateX(4px); }
.schedule-row__no { color: var(--red); font-family: "Rajdhani", sans-serif; font-size: .76rem; font-weight: 700; }
.schedule-row strong { font-family: "Cinzel", serif; font-size: 1.12rem; }
.schedule-row time { font-family: "Rajdhani", sans-serif; font-size: 1.08rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.schedule-row p { margin: 0; color: #5e5953; font-size: .84rem; }
.schedule-row__arrow { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: rgba(9,12,20,.07); }
.schedule-shell__foot { padding: 26px 22px 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.schedule-shell__foot p { margin: 0; font-family: "Cinzel", serif; font-size: 1.05rem; }

/* Leadership */
.leadership { background: var(--cream); color: var(--ink); }
.leadership .section-index { color: var(--red); }.leadership h2 em { color: var(--red); }
.leadership__reference { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 0 0 clamp(3rem, 6vw, 5.5rem); padding: 17px 0; border-top: 1px solid rgba(9,12,20,.17); border-bottom: 1px solid rgba(9,12,20,.17); }
.leadership__reference p, .leadership__reference span { margin: 0; font-family: "Rajdhani", sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.leadership__reference p { color: var(--red); }.leadership__reference span { color: #6b6761; text-align: right; }
.leadership__content { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.leadership__block-head { margin-bottom: 24px; }.leadership__block-head p, .field-group__head p { margin: 0 0 8px; color: var(--red); font-family: "Rajdhani", sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.leadership__block-head h3, .field-group__head h3 { margin: 0; font-family: "Cinzel", serif; font-size: clamp(1.35rem, 2.4vw, 1.8rem); line-height: 1.25; }
.leadership-roster { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(9,12,20,.17); }
.leadership-roster li { min-height: 148px; padding: 25px 22px; border-right: 1px solid rgba(9,12,20,.17); border-bottom: 1px solid rgba(9,12,20,.17); background: rgba(255,255,255,.2); transition: background .4s var(--ease); }
.leadership-roster li:nth-child(2n) { border-right: 0; }.leadership-roster li:hover { background: rgba(197,22,36,.055); }
.leadership-roster p { margin: 0 0 12px; color: #6b6761; font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.leadership-roster h4 { margin: 0; font-family: "Cinzel", serif; font-size: .98rem; line-height: 1.5; }
.leadership__fields { display: grid; gap: 36px; }
.field-group { padding: clamp(1.5rem, 3vw, 2.15rem); border: 1px solid rgba(9,12,20,.13); border-radius: 20px; background: rgba(255,255,255,.32); }
.field-group__head { padding-bottom: 21px; border-bottom: 1px solid rgba(9,12,20,.14); }
.field-list { margin: 0; }.field-list > div { display: grid; grid-template-columns: minmax(0, 1fr) minmax(11rem, .92fr); gap: 28px; padding: 21px 0; border-bottom: 1px solid rgba(9,12,20,.12); }.field-list > div:last-child { padding-bottom: 0; border-bottom: 0; }
.field-list dt { font-family: "Cinzel", serif; font-size: .86rem; line-height: 1.55; }.field-list dd { display: grid; gap: 5px; margin: 0; color: #5e5953; font-size: .82rem; line-height: 1.55; }.field-list dd span { display: block; }
.plenary { grid-column: 1 / -1; margin-top: clamp(1rem, 3vw, 2.5rem); padding-top: clamp(2.5rem, 5vw, 4.5rem); border-top: 1px solid rgba(9,12,20,.17); }
.plenary-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: plenary; border-top: 1px solid rgba(9,12,20,.17); border-left: 1px solid rgba(9,12,20,.17); }
.plenary-list li { min-height: 126px; padding: 22px 18px; border-right: 1px solid rgba(9,12,20,.17); border-bottom: 1px solid rgba(9,12,20,.17); font-family: "Cinzel", serif; font-size: .87rem; line-height: 1.55; counter-increment: plenary; }.plenary-list li::before { content: "0" counter(plenary); display: block; margin-bottom: 13px; color: var(--red); font-family: "Rajdhani", sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .1em; }

/* Impact */
.impact { overflow: hidden; background: radial-gradient(circle at 90% 10%, rgba(197,22,36,.16), transparent 28%), var(--navy); }
.impact::after { content: "012"; position: absolute; right: -2vw; top: 1rem; color: transparent; font-family: "Rajdhani", sans-serif; font-size: clamp(14rem, 38vw, 36rem); font-weight: 700; line-height: 1; -webkit-text-stroke: 1px rgba(233,187,47,.05); pointer-events: none; }
.impact .container { position: relative; z-index: 1; }
.impact__head { max-width: 880px; margin-bottom: 70px; }
.impact__head h2 { font-size: clamp(2.7rem, 6vw, 5.8rem); }
.data-note { max-width: 55ch; margin: 28px 0 0; color: var(--muted); font-size: .78rem; }
.stats { display: grid; grid-template-columns: repeat(12,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { position: relative; min-height: 260px; padding: 34px 26px; border-right: 1px solid var(--line); }
.stat:nth-child(1) { grid-column: span 4; }.stat:nth-child(2) { grid-column: span 3; }.stat:nth-child(3) { grid-column: span 3; }.stat:nth-child(4) { grid-column: span 2; border-right: 0; }
.stat__mark { position: absolute; right: 22px; top: 22px; color: var(--red-bright); font-family: "Cinzel", serif; }
.stat__number { display: block; margin-top: 30px; color: var(--gold); font-family: "Rajdhani", sans-serif; font-size: clamp(3.7rem, 7vw, 6.6rem); line-height: .9; font-variant-numeric: tabular-nums; }
.stat p { margin: 20px 0 0; font-family: "Cinzel", serif; font-size: .86rem; }.stat small { color: var(--muted); font-size: .64rem; }
.achievements { margin-top: 55px; display: grid; grid-template-columns: .34fr .66fr; gap: 4rem; }
.achievements__label { color: var(--gold-pale); font-family: "Rajdhani", sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.achievements ul { margin: 0; padding: 0; list-style: none; }
.achievements li { display: flex; gap: 24px; padding: 18px 0; border-top: 1px solid var(--line); color: var(--paper); }.achievements li:last-child { border-bottom: 1px solid var(--line); }
.achievements li span { width: 86px; flex: 0 0 auto; color: var(--red-bright); font-family: "Rajdhani", sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

/* Gallery */
.gallery-section { background: var(--cream); color: var(--ink); }
.gallery-section .section-index { color: var(--red); }.gallery-section h2 em { color: var(--red); }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 225px; gap: 16px; }
.gallery-item { grid-column: span 4; margin: 0; padding: 6px; border: 1px solid rgba(9,12,20,.13); border-radius: 26px; background: rgba(9,12,20,.035); overflow: hidden; }
.gallery-item--hero { grid-column: span 7; grid-row: span 2; }.gallery-item--wide { grid-column: span 5; }
.gallery-placeholder { position: relative; width: 100%; height: 100%; padding: 25px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border-radius: 19px; background: radial-gradient(circle at 70% 30%, rgba(197,22,36,.36), transparent 27%), repeating-conic-gradient(from 45deg, rgba(233,187,47,.05) 0 10deg, transparent 10deg 20deg), var(--navy); color: white; transition: transform .8s var(--ease); }
.gallery-placeholder::before { content: ""; position: absolute; width: 60%; aspect-ratio: 1; top: -22%; right: -15%; border-radius: 50%; border: 1px solid rgba(233,187,47,.23); box-shadow: 0 0 0 42px rgba(233,187,47,.025); }
.gallery-item:hover .gallery-placeholder { transform: scale(1.018); }
.gallery-placeholder > span { position: absolute; left: 24px; top: 21px; color: var(--gold); font-family: "Rajdhani", sans-serif; font-size: .74rem; font-weight: 700; }
.gallery-placeholder strong { position: relative; font-family: "Cinzel", serif; font-size: clamp(1rem, 2vw, 1.55rem); }.gallery-placeholder small { position: relative; margin-top: 6px; color: var(--muted); }

/* News */
.news-section { background: var(--ink); }
.news-list { border-top: 1px solid var(--line); }
.news-item { display: grid; grid-template-columns: 80px 1fr 60px; gap: 34px; align-items: center; padding: 38px 14px 42px 0; border-bottom: 1px solid var(--line); transition: padding .6s var(--ease), background .6s var(--ease); }
.news-item:hover { padding-left: 18px; background: rgba(255,255,255,.025); }
.news-item__index { color: var(--gold); font-family: "Rajdhani", sans-serif; font-weight: 700; }
.news-item__meta { margin: 0 0 6px; color: var(--red-bright); font-family: "Rajdhani", sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.news-item h3 { margin: 0 0 9px; font-size: clamp(1.35rem, 2.5vw, 2rem); }.news-item div > p:last-child { max-width: 60ch; margin: 0; color: var(--muted); font-size: .88rem; }
.news-item > a { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.06); color: var(--gold); transition: transform .5s var(--ease), background .5s var(--ease); }.news-item > a:hover { transform: translate(3px,-3px); background: var(--red); color: white; }

/* Join */
.join { background: var(--red-deep); }
.join::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 65%, rgba(233,187,47,.13), transparent 30%); pointer-events: none; }
.join__grid { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(4rem, 9vw, 9rem); align-items: start; }
.join .section-index { color: var(--gold-pale); }.join__intro h2 { font-size: clamp(2.6rem, 5.7vw, 5.3rem); }.join__intro h2 em { color: var(--gold-pale); }
.join__intro > p { max-width: 48ch; margin: 30px 0 45px; color: rgba(255,255,255,.72); }
.contact-proof { border-top: 1px solid rgba(255,255,255,.18); }
.contact-proof div { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.18); }.contact-proof span { color: var(--gold-pale); font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }.contact-proof p { margin: 4px 0 0; color: white; font-size: .84rem; }
.form-shell { padding: 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 34px; background: rgba(20,5,8,.22); box-shadow: inset 0 1px 0 rgba(255,255,255,.11), 0 40px 90px rgba(38,0,5,.3); }
.form-status { padding: 14px 18px 18px; color: rgba(255,255,255,.72); font-size: .73rem; }.form-status span { margin-right: 8px; color: var(--gold-pale); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.form { padding: clamp(24px, 4vw, 42px); border-radius: 27px; background: var(--cream); color: var(--ink); }
.form__split { display: grid; grid-template-columns: .6fr 1.4fr; gap: 18px; }
.form__row { margin-bottom: 21px; }
.form label { display: block; margin-bottom: 8px; color: #57524d; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.form label span { color: var(--red); }
.form input, .form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(9,12,20,.25); border-radius: 0; padding: 12px 2px; background: transparent; color: var(--ink); transition: border-color .4s var(--ease), background .4s var(--ease); }
.form input:focus, .form textarea:focus { outline: 0; border-color: var(--red); background: rgba(197,22,36,.025); }
.form input[aria-invalid="true"] { border-color: var(--red); }
.field-error { display: block; min-height: 18px; margin-top: 5px; color: var(--red); font-size: .68rem; }
.form__message { min-height: 22px; margin: 16px 0 0; font-size: .76rem; }.form__message[data-state="error"] { color: var(--red); }.form__message[data-state="success"] { color: #28633b; }

/* FAQ */
.faq { background: var(--cream); color: var(--ink); }
.faq .section-index { color: var(--red); }.faq h2 em { color: var(--red); }
.faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(4rem, 10vw, 10rem); }
.faq__head { position: sticky; top: 140px; align-self: start; }.faq__head h2 { font-size: clamp(2.5rem, 5vw, 4.7rem); }.faq__head > p:last-child { max-width: 40ch; margin: 28px 0 0; color: #69645d; font-size: .84rem; }
.accordion { border-top: 1px solid rgba(9,12,20,.18); }
.accordion__item { border-bottom: 1px solid rgba(9,12,20,.18); }
.accordion h3 { margin: 0; }
.accordion button { width: 100%; padding: 27px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 0; background: none; color: var(--ink); text-align: left; cursor: pointer; }
.accordion button span { font-family: "Cinzel", serif; font-size: clamp(1rem, 1.8vw, 1.3rem); font-weight: 700; }
.accordion button i { position: relative; width: 32px; height: 32px; flex: 0 0 auto; border-radius: 50%; background: rgba(9,12,20,.06); transition: transform .55s var(--ease), background .55s var(--ease); }
.accordion button i::before, .accordion button i::after { content: ""; position: absolute; left: 9px; top: 15px; width: 14px; height: 1px; background: var(--red); transition: transform .55s var(--ease); }.accordion button i::after { transform: rotate(90deg); }
.accordion button[aria-expanded="true"] i { transform: rotate(180deg); background: var(--red); }.accordion button[aria-expanded="true"] i::before, .accordion button[aria-expanded="true"] i::after { background: white; }.accordion button[aria-expanded="true"] i::after { transform: rotate(0); }
.accordion__panel p { max-width: 62ch; padding: 0 60px 28px 0; margin: 0; color: #625e58; }

/* Footer */
.footer { padding: 90px 0 24px; background: radial-gradient(circle at 80% 0%, rgba(197,22,36,.16), transparent 30%), #070a10; }
.footer__top { padding-bottom: 70px; display: flex; align-items: end; justify-content: space-between; gap: 50px; border-bottom: 1px solid var(--line); }.footer__top h2 { font-size: clamp(2.6rem, 5.8vw, 5.3rem); }.footer__middle { padding: 48px 0; display: grid; grid-template-columns: 1.25fr 1fr .75fr; gap: 50px; align-items: start; }
.footer__identity { display: flex; align-items: center; gap: 18px; }.footer__identity img { width: 70px; filter: drop-shadow(0 12px 20px rgba(197,22,36,.25)); }.footer__identity div { display: flex; flex-direction: column; }.footer__identity strong { font-family: "Cinzel", serif; font-size: 1.1rem; letter-spacing: .08em; text-transform: uppercase; }.footer__identity span { margin-top: 5px; color: var(--muted); font-size: .68rem; }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }.footer__nav a { color: var(--muted); font-size: .8rem; transition: color .4s var(--ease), transform .4s var(--ease); }.footer__nav a:hover { color: var(--gold); transform: translateX(3px); }
.footer__social { display: flex; flex-direction: column; gap: 9px; color: #64666b; font-size: .76rem; text-decoration: line-through; }
.footer__bottom { padding-top: 20px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); color: #686a70; font-size: .65rem; }.footer__bottom p { margin: 0; }.footer__bottom a { color: var(--paper); }

/* Responsive */
@media (max-width: 1040px) {
  .nav-links { display: none; }.menu-button { display: block; }.nav-cta { margin-left: auto; }
  .hero__grid { grid-template-columns: 1fr .7fr; }.hero__trust span:nth-child(3) { display: none; }
  .manifesto__body, .heritage__grid, .join__grid, .faq__grid { gap: 5rem; }
  .stats { grid-template-columns: repeat(2,1fr); }.stat:nth-child(n) { grid-column: span 1; border-bottom: 1px solid var(--line); }.stat:nth-child(2n) { border-right: 0; }
}
@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }.section { padding: 6.5rem 0 7.5rem; }
  .site-header { top: 12px; }.nav-shell { width: calc(100% - 32px); min-height: 68px; border-radius: 22px; }.brand__mark { width: 48px; height: 48px; border-radius: 15px; }.brand__mark img { width: 39px; height: 39px; }.nav-cta { display: none; }
  .hero__grid { grid-template-columns: 1fr; padding-top: 9rem; padding-bottom: 2.5rem; }.hero__symbol { order: -1; width: min(72vw, 360px); }.hero__copy { margin-top: -20px; }.hero h1 { font-size: clamp(3.7rem, 15vw, 6.3rem); }.symbol-caption--top { right: -4%; }.hero__trust { gap: 16px; flex-wrap: wrap; }.hero__trust a { width: 100%; margin: 6px 0 0; }.hero__trust span:nth-child(3) { display: flex; }
  .section-intro--split, .training__head, .manifesto__body, .heritage__grid, .leadership__grid, .leadership__content, .join__grid, .faq__grid { grid-template-columns: 1fr; gap: 3.2rem; }
  .manifesto__statement, .heritage__sticky, .faq__head { position: static; }
  .timeline { margin-top: 0; }.schedule-row { grid-template-columns: 38px .8fr 1fr 38px; }.schedule-row p { grid-column: 2 / -1; }.schedule-shell__foot { align-items: flex-start; flex-direction: column; }
  .leadership__reference { margin-bottom: 3.2rem; }.leadership__fields { gap: 28px; }.plenary { margin-top: 0; }
  .achievements { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 230px; }.gallery-item, .gallery-item--hero, .gallery-item--wide { grid-column: span 1; grid-row: span 1; }.gallery-item--hero { grid-column: span 2; }
  .footer__top { align-items: flex-start; flex-direction: column; }.footer__middle { grid-template-columns: 1fr 1fr; }.footer__identity { grid-column: 1 / -1; }.footer__bottom { flex-direction: column; }
}
@media (max-width: 560px) {
  .brand__copy small { display: none; }.brand__copy strong { font-size: .78rem; }.mobile-menu__inner { width: calc(100% - 32px); padding-top: clamp(96px, 14vh, 112px); }
  .hero__symbol { width: min(86vw, 340px); }.hero__copy { margin-top: 0; }.hero__lead { margin-top: 26px; }.hero__actions { align-items: flex-start; flex-direction: column; }.hero__trust { font-size: .58rem; }.hero__trust span { width: calc(50% - 8px); }
  .section-intro h2, .training__head h2, .heritage__sticky h2, .impact__head h2, .faq__head h2, .join__intro h2, .footer__top h2 { font-size: clamp(2.35rem, 12.8vw, 3.8rem); }
  .values li { grid-template-columns: 42px 1fr; gap: 14px; }.timeline li { grid-template-columns: 65px 1fr; gap: 16px; }.timeline li::before { left: 64px; }.timeline li::after { left: 60px; }.timeline li > div { padding-left: 12px; }
  .schedule-row { grid-template-columns: 28px 1fr 35px; gap: 12px; padding: 18px; }.schedule-row time { grid-column: 2; }.schedule-row p { grid-column: 2 / -1; }.schedule-row__arrow { grid-column: 3; grid-row: 1 / 3; }
  .leadership__reference { display: grid; gap: 8px; }.leadership__reference span { text-align: left; line-height: 1.5; }.leadership-roster { grid-template-columns: 1fr; }.leadership-roster li, .leadership-roster li:nth-child(2n) { min-height: auto; border-right: 0; }.field-group { padding: 24px 20px; border-radius: 16px; }.field-list > div { grid-template-columns: 1fr; gap: 10px; }.field-list dt { font-size: .82rem; }.plenary-list { grid-template-columns: 1fr; }.plenary-list li { min-height: auto; }
  .stats { grid-template-columns: 1fr; }.stat:nth-child(n) { min-height: 210px; border-right: 0; }.stat__number { margin-top: 12px; }.achievements li { flex-direction: column; gap: 5px; }
  .gallery { grid-template-columns: 1fr; }.gallery-item, .gallery-item--hero { grid-column: span 1; }.news-item { grid-template-columns: 34px 1fr; gap: 12px; }.news-item > a { grid-column: 2; width: 42px; height: 42px; }
  .form__split { grid-template-columns: 1fr; gap: 0; }.form { padding: 24px 20px; }.accordion__panel p { padding-right: 0; }
  .footer__middle { grid-template-columns: 1fr; }.footer__identity { grid-column: auto; }.footer__nav { grid-template-columns: 1fr 1fr; }
}
@media (max-height: 680px) and (max-width: 1040px) {
  .mobile-menu__inner { padding-top: 94px; padding-bottom: 24px; }
  .mobile-menu nav a { padding: 5px 0; font-size: clamp(1.35rem, 5vh, 2rem); }
  .mobile-menu__label { margin-bottom: 8px; }
  .mobile-menu__foot { margin-top: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* WordPress content templates */
.custom-logo-link { display: block; }.brand__mark .custom-logo { width: 46px; height: 46px; object-fit: contain; }.nav-links ul, .mobile-menu nav ul, .footer__nav ul { margin: 0; padding: 0; list-style: none; }.nav-links ul { display: flex; align-items: center; gap: clamp(18px, 2.1vw, 34px); }.footer__nav ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.page-main { background: var(--cream); color: var(--ink); min-height: 70vh; }.page-hero { padding-top: 11rem; padding-bottom: 5rem; background: radial-gradient(circle at 88% 8%, rgba(197,22,36,.14), transparent 28%), var(--navy); color: var(--paper); }.page-hero .section-index { color: var(--gold); }.page-hero h1 { max-width: 15ch; margin: 0; color: var(--paper); font-size: clamp(3rem, 7vw, 6.2rem); line-height: 1.05; }.page-hero .hero__lead { max-width: 62ch; color: var(--muted); }
.page-content { padding-top: 4.5rem; }.entry-content { max-width: 780px; }.entry-content > * { max-width: 100%; }.entry-content h2 { margin-top: 2.2em; font-size: clamp(1.55rem, 3vw, 2.4rem); }.entry-content h3 { margin-top: 1.8em; font-size: 1.25rem; }.entry-content a { color: var(--red); text-decoration: underline; text-underline-offset: .2em; }.entry-content blockquote { margin: 2.5rem 0; padding: 1.8rem 2rem; border-left: 3px solid var(--red); background: rgba(9,12,20,.045); font-family: "Cinzel", serif; font-size: 1.25rem; }.entry-content ul, .entry-content ol { padding-left: 1.3rem; }
.registration-form { max-width: 720px; margin-top: 3.5rem; padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid rgba(9,12,20,.14); border-radius: 24px; background: rgba(255,255,255,.48); }.registration-form form { display: grid; gap: 1rem; }.registration-form p { margin: 0; }.registration-form label { display: grid; gap: 7px; color: #3c3935; font-size: .88rem; font-weight: 700; }.registration-form input:not([type="checkbox"]), .registration-form textarea { width: 100%; padding: 12px 14px; border: 1px solid rgba(9,12,20,.18); border-radius: 8px; background: #fffdf8; color: var(--ink); }.registration-form input[type="checkbox"] { width: 1rem; height: 1rem; }.form-honeypot { position: absolute; left: -9999px; }.form-status { padding: 14px 16px; border-radius: 8px; }.form-status--success { background: #e6f5e9; color: #1b5e20; }.form-status--error { background: #fbe9e9; color: #9b1c1c; }
.news-list { max-width: 900px; }.news-item { display: grid; grid-template-columns: 120px 1fr; gap: 30px; padding: 28px 0; border-top: 1px solid rgba(9,12,20,.15); }.news-item:last-child { border-bottom: 1px solid rgba(9,12,20,.15); }.news-item time, .news-item p { color: #6b6761; font-family: "Rajdhani", sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.news-item h2 { margin: 0 0 10px; font-size: clamp(1.25rem, 3vw, 1.8rem); }.news-item h2 a { color: inherit; }
@media (max-width: 820px) { .page-hero { padding-top: 9rem; }.nav-links ul { display: none; }.news-item { grid-template-columns: 1fr; gap: 6px; }.footer__nav ul { gap: 10px 20px; } }
