/* =========================================================
   BAKTI TasKin — Portal Nasionalis Profesional
   Merah Garuda · Emas · Navy · Putih
   ========================================================= */
:root {
  --red: #C8102E;
  --red-deep: #8B0000;
  --red-soft: #FEF2F2;
  --gold: #D4AF37;
  --gold-deep: #B8941F;
  --gold-soft: #FBF6E9;
  --navy: #0B1D36;
  --navy-mid: #132F54;
  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #FFFFFF;
  --success: #059669;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --shadow-sm: 0 1px 2px rgba(11,29,54,.06);
  --shadow: 0 8px 24px rgba(11,29,54,.08);
  --shadow-lg: 0 20px 50px rgba(11,29,54,.12);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 76px;
  --container: 1140px;
  --ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-900);
  background: var(--slate-50);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0 0 1em; color: var(--slate-600); }
button, .btn { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--navy); color: #fff; padding: .75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* Progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 200; pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: 999px; font-weight: 700; font-size: .95rem;
  border: 2px solid transparent; transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s, border-color .2s;
  text-decoration: none; line-height: 1.2; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff; box-shadow: 0 8px 20px rgba(200,16,46,.28);
}
.btn-primary:hover { color: #fff; box-shadow: 0 12px 28px rgba(200,16,46,.35); }
.btn-secondary {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.45);
}
.btn-secondary:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn-outline {
  background: #fff; color: var(--navy); border-color: var(--slate-300);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy); box-shadow: 0 8px 20px rgba(212,175,55,.3);
}
.btn-gold:hover { color: var(--navy); }
.btn-sm { padding: .55rem 1rem; font-size: .875rem; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s, transform .3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--slate-200);
}
.site-header.is-hidden { transform: translateY(-100%); }
.flag-bar { display: flex; height: 3px; }
.flag-red { flex: 1; background: var(--red); }
.flag-white { flex: 1; background: #fff; border-bottom: 1px solid #eee; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .75rem; color: inherit; }
.brand:hover { color: inherit; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { color: var(--red-deep); font-size: 1.15rem; letter-spacing: .02em; }
.brand-text span { color: var(--navy); font-weight: 800; font-size: 1.15rem; margin-left: .15rem; }
.brand-text small { display: block; margin-top: .2rem; font-size: .68rem; font-weight: 600; color: var(--slate-500); letter-spacing: .04em; text-transform: uppercase; }
.brand-light .brand-text strong { color: #fff; }
.brand-light .brand-text span { color: var(--gold); }

.nav { display: flex; align-items: center; gap: .15rem; }
.nav-link {
  padding: .55rem .85rem; border-radius: 999px; font-weight: 600; font-size: .9rem;
  color: var(--slate-700);
}
.nav-link:hover, .nav-link.is-active { color: var(--red-deep); background: var(--red-soft); }
.nav-cta { margin-left: .5rem; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: .25s;
}
.nav-backdrop { position: fixed; inset: 0; background: rgba(11,29,54,.45); z-index: 90; }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 320px);
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 5rem 1.25rem 2rem; gap: .35rem;
    transform: translateX(105%); transition: transform .3s var(--ease);
    z-index: 95; box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: translateX(0); }
  .nav-link { padding: .9rem 1rem; border-radius: var(--radius-sm); }
  .nav-cta { margin: .75rem 0 0; width: 100%; }
}

/* Hero */
.hero {
  position: relative; min-height: min(92vh, 820px);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 5rem;
  background: #6b0000;
  color: #fff; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background-color: #6b0000;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(11,29,54,.78) 0%, rgba(139,0,0,.48) 45%, rgba(11,29,54,.75) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .9rem; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  margin-bottom: 1.25rem; color: #fff;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.25); animation: pulse 2s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(212,175,55,0); } }
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700; color: #fff; margin-bottom: 1rem; letter-spacing: -.03em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), #F5E6A8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,.88);
  max-width: 620px; margin-bottom: 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-trust-item strong { display: block; font-size: 1.25rem; color: var(--gold); }
.hero-trust-item span { font-size: .8rem; color: rgba(255,255,255,.7); }
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0;
}
.hero-wave svg { width: 100%; height: 70px; display: block; }

/* Sections */
.section { padding: 5rem 0; position: relative; }
.section-dark { background: var(--navy); color: #fff; }
.section-dark p { color: rgba(255,255,255,.75); }
.section-soft { background: var(--slate-50); }
.section-white { background: #fff; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: .75rem;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px;
}
.section-header h2 {
  font-family: var(--serif); font-size: clamp(1.75rem, 3.5vw, 2.4rem); color: var(--navy);
}
.section-dark .section-header h2 { color: #fff; }
.section-header h2 span { color: var(--red); }
.section-dark .section-header h2 span { color: var(--gold); }
.section-header p { font-size: 1.05rem; }

/* Stats */
.stats-strip {
  margin-top: -3.5rem; position: relative; z-index: 5; padding-bottom: 1rem;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow); border: 1px solid var(--slate-200);
  text-align: center; transition: transform .25s var(--ease), box-shadow .25s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-card .num {
  font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; color: var(--red-deep);
  letter-spacing: -.03em; line-height: 1.1;
}
.stat-card .label { font-size: .85rem; font-weight: 600; color: var(--slate-700); margin-top: .35rem; }
.stat-card .sub { font-size: .75rem; color: var(--slate-500); margin: .2rem 0 0; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
}
.about-visual {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: #fff; border-radius: var(--radius-sm); padding: 1rem 1.15rem;
  box-shadow: var(--shadow); border-left: 4px solid var(--gold);
}
.about-badge strong { display: block; font-size: 1.5rem; color: var(--red-deep); }
.about-badge span { font-size: .8rem; color: var(--slate-600); font-weight: 600; }
.about-content h3 {
  font-family: var(--serif); font-size: 1.75rem; color: var(--navy); margin-bottom: 1rem;
}
.feature-list { display: grid; gap: .85rem; margin-top: 1.5rem; }
.feature-item {
  display: flex; gap: .85rem; padding: 1rem; background: var(--slate-50);
  border-radius: var(--radius-sm); border: 1px solid var(--slate-200);
}
.feature-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center; background: var(--red-soft); color: var(--red-deep);
}
.feature-item h4 { font-size: .95rem; margin: 0 0 .2rem; color: var(--navy); }
.feature-item p { margin: 0; font-size: .875rem; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* Visi Misi */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }
.vm-card {
  border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--slate-200);
  background: #fff; box-shadow: var(--shadow-sm);
}
.vm-card.visi { border-top: 4px solid var(--red); }
.vm-card.misi { border-top: 4px solid var(--gold); }
.vm-card h3 { color: var(--navy); font-size: 1.25rem; }
.vm-card ul { margin-top: .75rem; }
.vm-card li {
  position: relative; padding-left: 1.25rem; margin-bottom: .55rem;
  color: var(--slate-600); font-size: .95rem;
}
.vm-card li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
@media (max-width: 700px) { .vm-grid { grid-template-columns: 1fr; } }

/* Program cards */
.program-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.program-card {
  background: #fff; border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid var(--slate-200); box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.program-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(200,16,46,.25);
}
.program-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: .75rem;
}
.program-card h3 { font-size: 1.1rem; color: var(--navy); }
.program-card p { font-size: .92rem; margin: 0; }
@media (max-width: 900px) { .program-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .program-grid { grid-template-columns: 1fr; } }

/* News cards */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.news-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--slate-200); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-card-img {
  aspect-ratio: 16/10; overflow: hidden; background: var(--navy);
  position: relative;
}
.news-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-cat {
  position: absolute; top: .85rem; left: .85rem;
  background: var(--red); color: #fff; font-size: .72rem; font-weight: 700;
  padding: .3rem .65rem; border-radius: 999px; letter-spacing: .03em; text-transform: uppercase;
}
.news-card-body { padding: 1.25rem 1.35rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  display: flex; gap: .75rem; font-size: .78rem; color: var(--slate-500);
  margin-bottom: .65rem; font-weight: 500;
}
.news-card h3 {
  font-size: 1.05rem; margin-bottom: .65rem; color: var(--navy);
}
.news-card h3 a { color: inherit; }
.news-card h3 a:hover { color: var(--red); }
.news-card .excerpt { font-size: .9rem; flex: 1; margin-bottom: 1rem; }
.news-more {
  font-weight: 700; font-size: .875rem; color: var(--red-deep);
  display: inline-flex; align-items: center; gap: .35rem;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

/* Characters / Kader */
.kader-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.kader-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--slate-200); text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.kader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.kader-photo {
  aspect-ratio: 1; overflow: hidden; background: var(--slate-100);
  position: relative;
}
.kader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.kader-body { padding: 1.25rem 1.15rem 1.5rem; }
.kader-body h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .2rem; }
.kader-role {
  display: inline-block; font-size: .75rem; font-weight: 700; color: var(--red);
  background: var(--red-soft); padding: .25rem .65rem; border-radius: 999px; margin-bottom: .65rem;
}
.kader-body p { font-size: .875rem; margin: 0; }
.kader-region {
  margin-top: .75rem; font-size: .78rem; font-weight: 600; color: var(--gold-deep);
}
@media (max-width: 900px) { .kader-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .kader-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; } }

/* Gallery */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem;
}
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1; background: var(--navy);
  display: block; color: inherit; text-decoration: none;
}
a.gallery-item:hover { color: #fff; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; min-height: 100%; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute; inset: auto 0 0 0;
  padding: 2.5rem 1rem .85rem;
  background: linear-gradient(transparent, rgba(11,29,54,.85));
  color: #fff; font-size: .8rem; font-weight: 600;
  opacity: 0; transition: opacity .25s;
}
.gallery-item:hover .gallery-cap { opacity: 1; }
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
}

/* Events */
.event-list { display: grid; gap: 1rem; }
.event-card {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 1.25rem; align-items: center;
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 1.15rem 1.35rem; box-shadow: var(--shadow-sm);
}
.event-date {
  text-align: center; background: var(--red-soft); border-radius: var(--radius-sm);
  padding: .75rem .5rem; color: var(--red-deep);
}
.event-date .d { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.event-date .m { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.event-card h3 { font-size: 1.05rem; color: var(--navy); margin: 0 0 .25rem; }
.event-card p { margin: 0; font-size: .875rem; }
@media (max-width: 640px) {
  .event-card { grid-template-columns: 70px 1fr; }
  .event-card .btn { grid-column: 1 / -1; }
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--red-deep) 100%);
  border-radius: 20px; padding: 3rem 2rem; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(212,175,55,.25), transparent 45%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 1.5rem; }

/* Page hero (inner) */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background: linear-gradient(145deg, var(--navy) 0%, #1a3a5c 50%, var(--red-deep) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff;
}
.page-hero p { color: rgba(255,255,255,.85); max-width: 560px; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  font-size: .85rem; margin-bottom: 1rem; color: rgba(255,255,255,.7);
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: .5; }

/* Archive layout */
.archive-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start;
}
.sidebar-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 1.35rem; margin-bottom: 1.25rem; box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
  font-size: .95rem; color: var(--navy); margin-bottom: 1rem;
  padding-bottom: .65rem; border-bottom: 2px solid var(--gold);
}
.search-form { display: flex; gap: .5rem; }
.search-form input {
  flex: 1; padding: .7rem .9rem; border: 1px solid var(--slate-300);
  border-radius: 999px; font: inherit; font-size: .9rem;
}
.search-form input:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.cat-list a {
  display: flex; justify-content: space-between; padding: .55rem 0;
  border-bottom: 1px solid var(--slate-100); color: var(--slate-700); font-weight: 500; font-size: .9rem;
}
.cat-list a:hover, .cat-list a.is-active { color: var(--red); }
.cat-list .count {
  background: var(--slate-100); color: var(--slate-600); font-size: .75rem;
  padding: .15rem .5rem; border-radius: 999px; font-weight: 700;
}
.pop-item {
  display: flex; gap: .75rem; margin-bottom: .9rem; align-items: flex-start;
}
.pop-item img {
  width: 64px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0;
}
.pop-item h4 { font-size: .85rem; margin: 0; line-height: 1.35; }
.pop-item h4 a { color: var(--navy); }
.pop-item h4 a:hover { color: var(--red); }
.pop-item span { font-size: .72rem; color: var(--slate-500); }
@media (max-width: 900px) { .archive-layout { grid-template-columns: 1fr; } }

/* Article */
.article-layout {
  display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 2.5rem;
}
.article-main {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--slate-200);
  padding: 2rem; box-shadow: var(--shadow-sm);
}
.article-featured {
  border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.75rem;
  aspect-ratio: 16/9; background: var(--navy);
}
.article-featured img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 1.05rem; color: var(--slate-700); line-height: 1.8; }
.article-body h2, .article-body h3 { color: var(--navy); margin-top: 1.5em; font-family: var(--serif); }
.article-body p { margin-bottom: 1.1em; color: var(--slate-700); }
.article-body blockquote {
  margin: 1.5rem 0; padding: 1rem 1.25rem; border-left: 4px solid var(--gold);
  background: var(--gold-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--navy);
}
.article-body ol, .article-body ul { margin: 0 0 1.1em 1.25rem; }
.article-body li { margin-bottom: .4rem; list-style: disc; color: var(--slate-700); }
.article-body ol li { list-style: decimal; }
.article-meta-bar {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  padding-bottom: 1.25rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--slate-200);
  font-size: .9rem; color: var(--slate-500);
}
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } .article-main { padding: 1.25rem; } }

/* Register */
.reg-layout {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start;
}
.reg-info {
  background: linear-gradient(160deg, var(--navy), var(--red-deep));
  color: #fff; border-radius: var(--radius); padding: 2rem; position: sticky; top: calc(var(--header-h) + 1rem);
}
.reg-info h2 { font-family: var(--serif); color: #fff; font-size: 1.6rem; }
.reg-info p { color: rgba(255,255,255,.85); }
.reg-benefits { margin-top: 1.5rem; display: grid; gap: .85rem; }
.reg-benefit {
  display: flex; gap: .75rem; align-items: flex-start;
  background: rgba(255,255,255,.08); border-radius: var(--radius-sm); padding: .9rem;
}
.reg-benefit strong { display: block; color: var(--gold); font-size: .95rem; margin-bottom: .15rem; }
.reg-benefit span { font-size: .85rem; color: rgba(255,255,255,.8); }
.reg-form-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block; font-weight: 600; font-size: .875rem; color: var(--navy); margin-bottom: .4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem .9rem; border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm); font: inherit; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.12);
}
.alert {
  padding: .9rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem; font-size: .925rem;
}
.alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-danger, .alert-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.alert-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
@media (max-width: 900px) {
  .reg-layout { grid-template-columns: 1fr; }
  .reg-info { position: static; }
  .form-grid { grid-template-columns: 1fr; }
}

/* Pagination */
.pagination ul {
  display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-top: 2rem;
}
.pagination a, .pagination .active span, .pagination li.active a {
  display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 10px; font-weight: 700; font-size: .9rem;
  border: 1px solid var(--slate-300); color: var(--navy); background: #fff;
}
.pagination li.active a, .pagination .active a {
  background: var(--red); border-color: var(--red); color: #fff;
}

/* Footer */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,.8); margin-top: 4rem;
}
.footer-top-stripe {
  height: 4px; background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem;
  padding: 3.5rem 0 2.5rem;
}
.footer-brand p { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-motto {
  margin-top: 1rem; font-size: .85rem; color: var(--gold); font-weight: 600;
}
.site-footer h4 {
  color: #fff; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links a, .footer-contact a, .footer-contact li {
  color: rgba(255,255,255,.7); font-size: .9rem; display: block; margin-bottom: .5rem;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.15rem 0;
}
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.footer-bottom p { margin: 0; color: inherit; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* Back top */
.back-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 50;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: var(--red); color: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center; opacity: 0; pointer-events: none;
  transform: translateY(12px); transition: .25s;
}
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-top:hover { background: var(--red-deep); }

/* Empty state */
.empty-state {
  text-align: center; padding: 3rem 1.5rem; background: #fff;
  border: 1px dashed var(--slate-300); border-radius: var(--radius);
}
.empty-state h3 { color: var(--navy); }

/* Contact map */
.contact-map iframe { width: 100% !important; min-height: 220px; border: 0; display: block; }

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.section-actions { text-align: center; margin-top: 2.5rem; }

/* AOS-lite */
[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
