/*
Theme Name: Artha Kalaena Training
Theme URI: https://arthakalaenatraining.co.id
Author: Artha Kalaena Group
Description: Custom WordPress theme for Artha Kalaena Training — corporate character development, HR training, leadership and outbound programs. Design direction: "Field Manifest" — every program treated as a documented field deployment, drawing on the company's own practice of logging each training as a dated report with named core-value sets.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: artha-kalaena
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --paper: #F6F7FA;
  --paper-dim: #ECEFF4;
  --cloud: #FFFFFF;
  --ink: #0B1F44;
  --ink-soft: #58607A;
  --canopy: #0C1F3E;
  --canopy-dark: #041B3A;
  --amber: #93921A;
  --amber-dark: #6E6D10;
  --rope: #8C93A6;
  --rope-line: rgba(140, 147, 166, 0.32);
  --radius: 10px;
  --radius-sm: 5px;
  --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --max-width: 1180px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--canopy-dark);
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  display: inline-flex;
  align-items: center;
  gap: .5em;
  margin-bottom: .9em;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-mono);
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .85em 1.5em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--canopy); color: var(--cloud); font-weight: 700; }
.btn-primary:hover { background: var(--canopy-dark); color: var(--cloud); }
.btn-outline { border-color: var(--canopy); color: var(--canopy-dark); }
.btn-outline:hover { background: var(--canopy); color: var(--cloud); }
.btn-ghost { border-color: rgba(250,248,242,.4); color: var(--cloud); }
.btn-ghost:hover { background: rgba(250,248,242,.12); }

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
  background: var(--canopy);
  color: var(--cloud);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--amber);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.site-branding { display: flex; align-items: center; gap: .7rem; }
.site-branding img.custom-logo { max-height: 42px; width: auto; }
.site-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cloud);
  line-height: 1.15;
}
.site-title span { display: block; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; color: var(--amber); text-transform: uppercase; font-weight: 400; }

.primary-nav ul { display: flex; align-items: center; gap: 1.9rem; }
.primary-nav li { position: relative; }
.primary-nav .sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--canopy-dark); min-width: 210px; flex-direction: column; gap: 0;
  padding: .5rem 0; border-radius: var(--radius-sm); box-shadow: 0 16px 30px -10px rgba(4,27,58,.45); z-index: 60;
}
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu { display: flex; }
.primary-nav .sub-menu a {
  padding: .7rem 1.2rem; white-space: nowrap; display: block; font-size: .78rem;
}
.primary-nav .sub-menu a::after { display: none; }
.primary-nav a {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(250,248,242,.85);
  position: relative;
  padding: .3em 0;
}
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--cloud); }
.primary-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--amber);
  transition: width .2s ease;
}
.primary-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.menu-toggle { display: none; background: none; border: none; color: var(--cloud); font-size: 1.5rem; }

@media (max-width: 880px) {
  .primary-nav { display: none; }
  .menu-toggle { display: block; }
  .primary-nav.is-open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--canopy-dark); padding: 1.5rem var(--gap); flex-direction: column; align-items: flex-start;
    max-height: calc(100vh - 100%); overflow-y: auto; z-index: 60;
  }
  .primary-nav.is-open ul {
    flex-direction: column; align-items: flex-start; width: 100%; gap: 1.2rem;
  }
  .primary-nav.is-open li { width: 100%; }
  .primary-nav.is-open .sub-menu {
    display: flex; position: static; margin-top: .8rem; margin-left: 1rem;
    background: none; box-shadow: none; padding: 0; gap: .8rem;
  }
  .primary-nav.is-open .sub-menu a { padding: 0; }
}

/* ============================================
   HERO — "FIELD BRIEFING"
   ============================================ */
.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(47,111,237,.10), transparent 45%),
    var(--paper);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: var(--gap);
  align-items: center;
}
.hero h1 { max-width: 12ch; }
.hero-lede { font-size: 1.1rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-actions .btn-outline { border-color: var(--rope); }

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; }
}

/* ============================================
   MANIFEST CARD — signature element
   used for: hero stat block, programs, deployments/updates
   ============================================ */
.manifest-card {
  background: var(--cloud);
  border: 1px solid var(--rope-line);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  position: relative;
}
.manifest-card::before, .manifest-card::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--amber);
  border-style: solid;
}
.manifest-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.manifest-card::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.hero-manifest { transform: rotate(-.6deg); box-shadow: 0 18px 40px -18px rgba(15,37,87,.3); }
.hero-manifest .manifest-title {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--amber-dark); margin-bottom: 1rem; display: block;
}
.manifest-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .6rem 0; border-top: 1px dashed var(--rope-line);
  font-family: var(--font-mono); font-size: .84rem;
}
.manifest-row:first-of-type { border-top: none; }
.manifest-row dt { color: var(--ink-soft); }
.manifest-row dd { margin: 0; font-weight: 600; color: var(--canopy-dark); text-align: right; }

/* Program / deployment manifest cards (grid) */
.manifest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}
.program-card { display: flex; flex-direction: column; height: 100%; }
.program-card-thumb {
  display: none;
  margin: -1.6rem -1.7rem 1.2rem; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden;
  aspect-ratio: 16 / 10;
}
.program-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.deployment-card-thumb {
  margin: -1.6rem -1.7rem 1.2rem; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden;
  aspect-ratio: 16 / 10;
}
.deployment-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.blog-card-thumb {
  margin: -1.6rem -1.7rem 1.2rem; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden;
  aspect-ratio: 16 / 10;
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.program-card-logo { margin: .8rem 0 1rem; display: flex; align-items: center; justify-content: center; }
.program-card-logo img { width: 150px; height: 120px; object-fit: contain; }
@media (max-width: 640px) {
  .program-card-logo img { width: 110px; height: 90px; }
}

.program-card .cat-tag {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--canopy); background: rgba(15,37,87,.07); border-radius: 999px; padding: .3em .8em;
  display: inline-block; margin-bottom: .9rem; width: fit-content;
}
.program-card h3 { margin-bottom: .5rem; }
.program-card p { font-size: .93rem; flex-grow: 1; }
.program-meta { margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--rope-line); }
.value-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .8rem; }
.value-tag {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .05em;
  border: 1px solid var(--rope); color: var(--rope); border-radius: 4px; padding: .18em .55em;
}
.program-card .btn { margin-top: 1.1rem; align-self: flex-start; }

/* Facilitator cards */
.facilitator-card { text-align: center; align-items: center; display: flex; flex-direction: column; }
.facilitator-photo {
  width: 92px; height: 92px; border-radius: 50%; overflow: hidden; margin-bottom: 1rem;
  border: 2px solid var(--rope-line);
}
.facilitator-photo img { width: 100%; height: 100%; object-fit: cover; }
.facilitator-role {
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--amber-dark); margin-bottom: .6rem;
}
.facilitator-bio { font-size: .9rem; }
.facilitator-card .value-tags { justify-content: center; margin-top: .8rem; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--paper-dim); }
.section-canopy { background: var(--canopy); color: var(--cloud); }
.section-canopy h2, .section-canopy h3, .section-canopy .eyebrow { color: var(--cloud); }
.section-canopy .eyebrow::before { background: var(--amber); }
.section-head { max-width: 62ch; margin-bottom: 2.5rem; }

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
}
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-item .feature-index {
  font-family: var(--font-mono); color: #fbfbfb; font-size: .8rem; letter-spacing: .1em; margin-bottom: .6rem; display: block;
}

/* Article Sidebar */
.article-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap);
  align-items: start;
}
@media (max-width: 880px) {
  .article-grid { grid-template-columns: 1fr; }
}
.article-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 100px; }
@media (max-width: 880px) { .article-sidebar { position: static; } }
.widget-card ul { margin: 0; }
.sidebar-post-list li { border-top: 1px dashed var(--rope-line); padding: .8rem 0; }
.sidebar-post-list li:first-child { border-top: none; padding-top: 0; }
.sidebar-post-list a { display: block; }
.sidebar-post-date { font-family: var(--font-mono); font-size: .7rem; color: var(--rope); display: block; margin-bottom: .3rem; }
.sidebar-post-title { font-family: var(--font-display); font-weight: 600; color: var(--canopy-dark); font-size: .95rem; line-height: 1.35; }
.sidebar-post-list a:hover .sidebar-post-title { color: var(--amber-dark); }
.sidebar-cat-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0; border-top: 1px dashed var(--rope-line); font-size: .9rem;
}
.sidebar-cat-list li:first-child { border-top: none; padding-top: 0; }
.sidebar-cat-list a { color: var(--ink-soft); }
.sidebar-cat-list a:hover { color: var(--amber-dark); }
.sidebar-cat-count { font-family: var(--font-mono); font-size: .75rem; color: var(--rope); }
.widget-card .widget-title, .widget-card h2, .widget-card h3 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--amber-dark); margin-bottom: 1rem; display: block; }
.client-slider { overflow: hidden; }
.client-track {
  display: flex;
  gap: var(--gap);
  transition: transform .5s ease;
}
.client-slide {
  flex: 0 0 calc((100% - var(--gap) * 4) / 5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  text-align: center;
}
.client-slide .client-logo { display: inline-flex; align-items: center; justify-content: center; height: 64px; }
.client-slide .client-logo img { max-height: 64px; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .75; transition: opacity .2s ease, filter .2s ease; }
.client-slide:hover .client-logo img { filter: grayscale(0); opacity: 1; }
.client-slide .client-name {
  font-family: var(--font-mono); font-size: .82rem; letter-spacing: .04em; color: var(--ink-soft);
  border-top: 1px dashed var(--rope-line); padding-top: .6rem; width: 100%;
}
@media (max-width: 880px) {
  .client-slide { flex: 0 0 calc((100% - var(--gap) * 2) / 3); }
  .client-slide .client-logo { height: 44px; }
  .client-slide .client-logo img { max-height: 44px; }
  .client-slide .client-name { font-size: .7rem; }
}
.client-slider-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.slider-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--rope-line);
  background: var(--cloud); color: var(--canopy); font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.slider-btn:hover { background: var(--canopy); color: var(--cloud); border-color: var(--canopy); }

.cta-band {
  background: var(--canopy); color: var(--cloud); text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) var(--gap); border-radius: var(--radius);
  margin: 0 var(--gap);
}
.cta-band h2 { color: var(--cloud); }
.cta-band p { color: rgba(255,255,255,.85); }
.cta-band .btn-outline { border-color: var(--cloud); color: var(--cloud); }
.cta-band .btn-outline:hover { background: var(--cloud); color: var(--canopy); }

/* ============================================
   SINGLE PROGRAM / POST
   ============================================ */
.entry-header { padding: 3rem 0 1rem; }
.entry-content { max-width: 72ch; }
.entry-content p { font-size: 1.02rem; }
.entry-content h2 { margin-top: 1.6em; }
.breadcrumb { font-family: var(--font-mono); font-size: .78rem; color: var(--rope); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--amber-dark); }

.page-header {
  padding: 3.5rem 0 2.5rem; background: var(--canopy); color: var(--cloud);
}
.page-header h1 { color: var(--cloud); }
.page-header p { color: rgba(255,255,255,.85); max-width: 64ch; }
.page-header .eyebrow { color: var(--amber); }
.page-header .eyebrow::before { background: var(--amber); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-family: var(--font-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4rem; color: var(--canopy-dark); }
.field input, .field textarea {
  width: 100%; padding: .8em 1em; border: 1.5px solid var(--rope-line); border-radius: var(--radius-sm);
  background: var(--cloud); font-family: var(--font-body); font-size: .95rem; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--amber); outline-offset: 1px; }
.contact-info-rows { display: flex; flex-direction: column; gap: 1.3rem; }
.contact-info-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 38px; height: 38px; border-radius: 50%; background: var(--canopy); color: var(--cloud);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label {
  display: block; font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--amber-dark); margin-bottom: .3rem;
}
.contact-info-value { display: block; font-weight: 600; color: var(--canopy-dark); line-height: 1.4; }
.contact-info-value a:hover { color: var(--amber-dark); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--canopy-dark); color: rgba(250,248,242,.8); }
.footer-top { padding: 3.5rem 0 2.5rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--gap); }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr; } }
.footer-top h4 { color: var(--cloud); font-family: var(--font-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-top a:hover { color: var(--amber); }
.footer-top li { margin-bottom: .55rem; font-size: .92rem; }
.footer-bottom {
  border-top: 1px solid rgba(250,248,242,.12); padding: 1.4rem 0; font-family: var(--font-mono); font-size: .75rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: var(--cloud); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: var(--amber); }

/* Accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--amber); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px);
}

/* ============================================
   PROJECT GALLERY + LIGHTBOX
   ============================================ */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: 1rem;
}
@media (max-width: 640px) {
  .project-gallery { grid-template-columns: repeat(2, 1fr); }
}
.program-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: 1rem;
}
@media (max-width: 640px) {
  .program-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Single Program — polished layout */
.program-hero-image {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 44px -22px rgba(15,37,87,.28);
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  margin-top: .8rem;
}
.gallery-strip-item {
  display: block; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1 / 1; position: relative;
}
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-strip-item:hover img { transform: scale(1.08); }

.program-summary-card { position: sticky; top: 100px; }
.program-summary-divider { border-top: 1px dashed var(--rope-line); margin: 1.3rem 0 1rem; }
.program-summary-label {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--rope); display: block; margin-bottom: .7rem;
}
@media (max-width: 880px) {
  .program-summary-card { position: static; }
}

.project-gallery-pagination {
  display: flex; justify-content: center; align-items: center; gap: .5rem; margin-top: 1.8rem; flex-wrap: wrap;
}
.gallery-page-btn {
  min-width: 38px; height: 38px; padding: 0 .5rem; border-radius: var(--radius-sm); border: 1.5px solid var(--rope-line);
  background: var(--cloud); color: var(--ink-soft); font-family: var(--font-mono); font-size: .85rem;
  display: flex; align-items: center; justify-content: center; transition: all .2s ease;
}
.gallery-page-btn:hover { border-color: var(--canopy); color: var(--canopy); }
.gallery-page-btn.is-active { background: var(--canopy); border-color: var(--canopy); color: var(--cloud); }
.gallery-page-btn:disabled { opacity: .35; cursor: default; }
.gallery-page-btn:disabled:hover { border-color: var(--rope-line); color: var(--ink-soft); }
.project-gallery-item {
  display: block; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4 / 3; position: relative;
}
.project-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease;
}
.project-gallery-item:hover img { transform: scale(1.06); }

.akt-lightbox-overlay {
  position: fixed; inset: 0; background: rgba(11,31,68,.92); z-index: 999;
  display: none; align-items: center; justify-content: center;
}
.akt-lightbox-overlay.is-open { display: flex; }
.akt-lightbox-image { max-width: 88vw; max-height: 86vh; border-radius: var(--radius-sm); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.akt-lightbox-close, .akt-lightbox-prev, .akt-lightbox-next {
  position: fixed; background: rgba(255,255,255,.12); color: var(--cloud); border: none; border-radius: 50%;
  width: 44px; height: 44px; font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.akt-lightbox-close:hover, .akt-lightbox-prev:hover, .akt-lightbox-next:hover { background: rgba(255,255,255,.25); }
.akt-lightbox-close { top: 24px; right: 24px; }
.akt-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.akt-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .akt-lightbox-prev, .akt-lightbox-next { width: 38px; height: 38px; font-size: 1.1rem; }
  .akt-lightbox-close { top: 14px; right: 14px; }
}

/* ============================================
   HOMEPAGE v2.0.0 — Hero, Pillars, Trio, Testimonials
   ============================================ */
.hero-v2 {
  background-color: var(--canopy-dark);
  background-size: cover;
  background-position: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(6rem, 12vw, 9rem);
  position: relative;
}
.hero-v2-inner { max-width: 620px; }
.hero-v2 h1 {
  color: var(--cloud); font-size: clamp(2.2rem, 4.8vw, 3.6rem); line-height: 1.08; margin-bottom: 1rem;
}
.hero-v2 h1 em { font-style: italic; font-weight: 500; color: rgba(255,255,255,.9); }
.hero-v2 h1 em.accent-em, .accent-em { font-style: italic; color: var(--amber); font-weight: 600; }
.hero-v2-lede { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 46ch; margin-bottom: 1.8rem; }
.hero-v2 .btn-primary { background: var(--amber); color: var(--cloud); }
.hero-v2 .btn-primary:hover { background: var(--amber-dark); }
.hero-v2-caption {
  color: rgba(255,255,255,.75); font-style: italic; font-size: .9rem; margin-top: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.3); display: inline-block; padding-bottom: .3rem;
}

/* Overlapping 4-pillar card */
.pillars-overlap { margin-top: -4.5rem; position: relative; z-index: 5; }
.pillars-card {
  background: var(--cloud); border-radius: var(--radius);
  box-shadow: 0 24px 50px -20px rgba(4,27,58,.35);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 2rem 1.5rem;
}
.pillar-item { padding: 0 1.2rem; border-left: 1px solid var(--rope-line); }
.pillar-item:first-child { border-left: none; }
.pillar-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--canopy);
  display: flex; align-items: center; justify-content: center; margin-bottom: .9rem;
}
.pillar-icon svg { width: 22px; height: 22px; color: var(--cloud); }
.pillar-item h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.pillar-item p { font-size: .87rem; margin-bottom: .7rem; }
.pillar-link { color: var(--amber-dark); font-weight: 600; font-size: .87rem; }
.pillar-link:hover { color: var(--amber); }
@media (max-width: 880px) {
  .pillars-card { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .pillar-item { border-left: none; padding: 0; }
}
@media (max-width: 560px) {
  .pillars-card { grid-template-columns: 1fr; }
}

/* Trio section: Impact / Programs / Trust */
.homepage-trio { padding-top: clamp(3rem, 6vw, 5rem); }
.trio-grid {
  display: grid; grid-template-columns: .95fr 1.3fr 1fr; gap: clamp(1.5rem, 3vw, 2.2rem); align-items: start;
}
@media (max-width: 1024px) { .trio-grid { grid-template-columns: 1fr; } }
.trio-eyebrow {
  font-family: var(--font-mono); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber-dark); display: block; margin-bottom: 1rem;
}
.trio-col h2 { font-size: 1.35rem; line-height: 1.25; margin-bottom: 1.4rem; }
.trio-head-row { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.4rem; }
.trio-head-row h2 { margin-bottom: 0; }
.trio-see-all { font-family: var(--font-mono); font-size: .78rem; color: var(--amber-dark); white-space: nowrap; }
.trio-see-all:hover { color: var(--amber); }

.impact-card {
  background: var(--canopy); color: var(--cloud); border-radius: var(--radius);
  padding: 2.2rem 2rem; height: 100%;
  box-shadow: 0 20px 40px -22px rgba(4,27,58,.5);
}
.impact-card .trio-eyebrow { color: var(--amber); }
.impact-card h2 { color: var(--cloud); }
.impact-card h2 em { font-style: italic; color: var(--amber); }
.impact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 1.4rem; margin-top: 1.8rem; }
.impact-stat { padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.14); }
.impact-icon { display: block; width: 28px; height: 28px; margin-bottom: .7rem; color: var(--amber); }
.impact-icon svg { width: 100%; height: 100%; }
.impact-stat strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--cloud); margin-bottom: .15rem; }
.impact-stat span:last-child { font-size: .78rem; color: rgba(255,255,255,.68); line-height: 1.35; }

.featured-program-list { display: flex; flex-direction: column; gap: 1.1rem; }
.featured-program-card {
  display: grid; grid-template-columns: 140px 1fr; gap: 1.2rem; align-items: start;
  background: var(--cloud); border: 1px solid var(--rope-line); border-radius: var(--radius); padding: 1.1rem;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.featured-program-card:hover {
  box-shadow: 0 16px 32px -18px rgba(11,31,68,.28); border-color: transparent; transform: translateY(-2px);
}
.featured-program-thumb { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; }
.featured-program-thumb img { width: 100%; height: 100%; object-fit: cover; }
.featured-program-card h3 { font-size: 1.05rem; margin-bottom: .4rem; line-height: 1.3; }
.featured-program-card h3 a:hover { color: var(--amber-dark); }
.featured-program-card p { font-size: .86rem; color: var(--ink-soft); margin-bottom: .6rem; line-height: 1.5; }
@media (max-width: 560px) {
  .featured-program-card { grid-template-columns: 1fr; }
}

.trust-logo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  background: var(--paper-dim); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.4rem;
}
.trust-logo-item { display: flex; align-items: center; justify-content: center; height: 44px; }
.trust-logo-item img { max-height: 34px; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .75; transition: opacity .2s ease, filter .2s ease; }
.trust-logo-item:hover img { filter: grayscale(0); opacity: 1; }
.trust-logo-name { font-family: var(--font-mono); font-size: .7rem; color: var(--ink-soft); text-align: center; }

.testimonial-carousel {
  background: var(--cloud); border: 1px solid var(--rope-line); border-radius: var(--radius); padding: 1.6rem 1.6rem 1.3rem;
  position: relative;
}
.testimonial-carousel::before {
  content: "\201C"; position: absolute; top: .3rem; left: 1.2rem; font-family: Georgia, serif;
  font-size: 3.5rem; color: var(--rope-line); line-height: 1; z-index: 0;
}
.testimonial-slide { display: none; position: relative; z-index: 1; }
.testimonial-slide:first-child { display: block; }
.testimonial-quote { font-style: italic; font-size: .92rem; color: var(--ink); margin-bottom: 1rem; line-height: 1.55; }
.testimonial-author { font-family: var(--font-mono); font-size: .76rem; color: var(--rope); }
.testimonial-controls { display: flex; gap: .6rem; margin-top: 1.1rem; justify-content: flex-end; position: relative; z-index: 1; }
.testimonial-controls .slider-btn { width: 34px; height: 34px; }

/* Footer v2.0 additions */
.footer-top-v2 { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
@media (max-width: 880px) { .footer-top-v2 { grid-template-columns: 1fr; } }
.footer-tagline { font-family: var(--font-display); font-weight: 600; color: var(--cloud); font-size: 1.05rem; margin-bottom: .8rem; }
.footer-tagline em { font-style: italic; }
.footer-social-icons { display: flex; gap: .7rem; }
.footer-social-icons a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(250,248,242,.25);
  display: flex; align-items: center; justify-content: center; transition: background .2s ease, border-color .2s ease;
}
.footer-social-icons a:hover { background: var(--amber); border-color: var(--amber); }
.footer-social-icons svg { width: 17px; height: 17px; color: var(--cloud); }
.footer-impact-line {
  border-top: 1px solid rgba(250,248,242,.12); padding: 1.2rem 0; text-align: right;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--cloud);
}

/* ============================================
   ABOUT PAGE v2.0.0
   ============================================ */
.hero-v2-sm { padding: clamp(2.8rem, 6vw, 4.5rem) 0 clamp(4.5rem, 9vw, 6.5rem); }
.hero-v2-sm h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.hero-v2-lede p { color: rgba(255,255,255,.82); margin-bottom: .9rem; }

.siapa-kami-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--gap); align-items: start;
}
@media (max-width: 1024px) { .siapa-kami-grid { grid-template-columns: 1fr; } }
.siapa-kami-text p { font-size: .95rem; margin-bottom: 1rem; }
.siapa-kami-image { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.siapa-kami-image img { width: 100%; height: 100%; object-fit: cover; }
.visi-misi-card {
  background: var(--canopy); color: var(--cloud); border-radius: var(--radius); padding: 1.8rem;
}
.visi-misi-card h3 { color: var(--amber); font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; font-family: var(--font-mono); margin-bottom: .6rem; }
.visi-misi-card > p { font-size: .92rem; color: rgba(255,255,255,.85); }
.misi-list { margin: 0; }
.misi-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: rgba(255,255,255,.85); margin-bottom: .7rem; }
.misi-check { width: 18px; height: 18px; flex-shrink: 0; color: var(--amber); margin-top: .15rem; }
.misi-check svg { width: 100%; height: 100%; }

.about-stats-bar { background: var(--canopy-dark); padding: 2.8rem 0; }
.about-stats-grid-centered {
  display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap; gap: 0;
  max-width: 900px; margin: 0 auto;
}
.about-stats-grid-centered .impact-stat {
  flex: 1 1 200px; text-align: center; padding: 0 2rem; border-top: none;
  border-left: 1px solid rgba(255,255,255,.14);
}
.about-stats-grid-centered .impact-stat:first-child { border-left: none; }
.about-stats-grid-centered .impact-icon { margin: 0 auto .8rem; width: 32px; height: 32px; }
.about-stats-grid-centered .impact-stat strong { font-size: 1.8rem; }
.about-stats-grid-centered .impact-stat span:last-child { font-size: .82rem; }
@media (max-width: 700px) {
  .about-stats-grid-centered .impact-stat { flex: 1 1 45%; border-left: none; border-top: 1px solid rgba(255,255,255,.14); padding: 1.2rem 1rem 0; }
  .about-stats-grid-centered .impact-stat:nth-child(-n+2) { border-top: none; padding-top: 0; }
}

/* ============================================
   SINGLE PROGRAM v2.0.0 — rich branded layout
   ============================================ */
.hero-v2-tagline { color: var(--amber); font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: .8rem; }

.program-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: var(--gap); align-items: start; }
@media (max-width: 880px) { .program-detail-grid { grid-template-columns: 1fr; } }
.program-detail-aside { display: flex; flex-direction: column; gap: 1.3rem; position: sticky; top: 100px; }
@media (max-width: 880px) { .program-detail-aside { position: static; } }
.program-aside-photo { position: relative; border-radius: var(--radius); overflow: hidden; }
.program-aside-photo img { width: 100%; height: auto; display: block; }
.program-aside-tag {
  position: absolute; bottom: 12px; left: 12px; background: rgba(4,27,58,.85); color: var(--cloud);
  font-family: var(--font-mono); font-size: .72rem; padding: .4em .8em; border-radius: 999px;
  display: inline-flex; align-items: center; gap: .4em;
}
.program-aside-tag svg { width: 13px; height: 13px; }
.manfaat-card { background: var(--canopy); color: var(--cloud); border-radius: var(--radius); padding: 1.6rem; }
.manfaat-card .misi-list li { color: rgba(255,255,255,.88); }

.process-steps { display: flex; align-items: flex-start; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.process-step { max-width: 220px; text-align: center; }
.process-number {
  width: 40px; height: 40px; border-radius: 50%; background: var(--canopy); color: var(--cloud);
  font-family: var(--font-mono); font-weight: 700; display: flex; align-items: center; justify-content: center;
  margin: 0 auto .8rem;
}
.process-step h3 { font-size: 1rem; margin-bottom: .4rem; }
.process-step p { font-size: .85rem; }
.process-arrow { color: var(--rope); font-size: 1.4rem; margin-top: .8rem; }
@media (max-width: 700px) { .process-arrow { display: none; } }

.target-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.target-badge {
  display: inline-flex; align-items: center; gap: .5em; border: 1.5px solid var(--rope-line); border-radius: 999px;
  padding: .7em 1.3em; font-family: var(--font-mono); font-size: .85rem; color: var(--canopy-dark); background: var(--cloud);
}
.target-badge svg { width: 16px; height: 16px; color: var(--amber-dark); }

/* ============================================
   GALLERY & TESTIMONIALS PAGES v2.0.0
   ============================================ */
.gallery-hero-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; max-width: none; }
.gallery-count-badge {
  display: inline-flex; align-items: center; gap: .5em; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25);
  color: var(--cloud); font-family: var(--font-mono); font-size: .85rem; padding: .6em 1.2em; border-radius: 999px; white-space: nowrap;
}
.gallery-count-badge svg { width: 16px; height: 16px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.3rem; }
.testimonial-card { background: var(--cloud); border: 1px solid var(--rope-line); border-radius: var(--radius); padding: 1.4rem; }
.testimonial-card-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.testimonial-card-logo { width: 56px; height: 36px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.testimonial-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.testimonial-card-head strong { display: block; font-size: .92rem; color: var(--canopy-dark); }
.testimonial-card-head span { font-size: .78rem; color: var(--rope); }
.testimonial-card .testimonial-quote { font-size: .88rem; }

/* ============================================
   CLIENTS PAGE (Klien Kami) v2.0.0
   ============================================ */
.clients-hero { background: var(--canopy); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.clients-hero-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.clients-hero-divider { width: 1px; height: 40px; background: rgba(255,255,255,.3); }
.clients-hero-inner h1 { color: var(--cloud); margin: 0; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.clients-grid-frame { border: 1px solid var(--rope-line); border-radius: var(--radius); padding: 2rem; background: var(--paper-dim); }
.clients-logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; }
@media (max-width: 880px) { .clients-logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .clients-logo-grid { grid-template-columns: repeat(2, 1fr); } }
.clients-logo-item { display: flex; align-items: center; justify-content: center; height: 46px; }
.clients-logo-item img { max-height: 38px; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .8; transition: opacity .2s ease, filter .2s ease; }
.clients-logo-item:hover img { filter: grayscale(0); opacity: 1; }

.clients-value-strip { background: var(--canopy-dark); padding: 2.2rem 0; }
.clients-value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 700px) { .clients-value-grid { grid-template-columns: 1fr 1fr; } }
.clients-value-item { display: flex; flex-direction: column; align-items: center; text-align: center; color: var(--cloud); }
.clients-value-icon { width: 34px; height: 34px; color: var(--amber); margin-bottom: .6rem; }
.clients-value-icon svg { width: 100%; height: 100%; }
.clients-value-item strong { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--amber); margin-bottom: .3rem; }
.clients-value-item span { font-size: .8rem; color: rgba(255,255,255,.75); }


.footer-logo { width: 250px; height: 75px; object-fit: contain; object-position: left; margin-bottom: 1.8rem; }
.site-footer .custom-logo-link img { width: 250px; height: 75px; object-fit: contain; object-position: left; }
.site-footer .custom-logo-link { display: block; margin-bottom: 1.8rem; }

/* ============================================
   PROGRAM — CORPORATE LAYOUT (Colossus / Specta style)
   ============================================ */
.corporate-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: start; }
@media (max-width: 960px) { .corporate-detail-grid { grid-template-columns: 1fr; } }

.differentiator-list h2 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.differentiator-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.differentiator-icon {
  width: 34px; height: 34px; border-radius: 50%; background: var(--canopy); color: var(--cloud);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.differentiator-icon svg { width: 17px; height: 17px; }
.differentiator-item h3 { font-size: 1rem; margin-bottom: .3rem; }
.differentiator-item p { font-size: .88rem; margin: 0; }

.offerings-panel { background: var(--paper-dim); border-radius: var(--radius); padding: 1.8rem; }
.offerings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 1.2rem; }
@media (max-width: 560px) { .offerings-grid { grid-template-columns: 1fr; } }
.offering-item { display: flex; flex-direction: column; gap: .3rem; }
.offering-icon { width: 26px; height: 26px; color: var(--amber-dark); margin-bottom: .3rem; }
.offering-icon svg { width: 100%; height: 100%; }
.offering-item strong { font-size: .9rem; color: var(--canopy-dark); }
.offering-item span { font-size: .8rem; color: var(--ink-soft); }

.activity-photo-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
@media (max-width: 700px) { .activity-photo-strip { grid-template-columns: repeat(2, 1fr); } }
.activity-photo-item { display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1; }
.activity-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.activity-photo-item:hover img { transform: scale(1.06); }

/* Header WhatsApp button */
.btn-whatsapp {
  background: var(--amber); color: var(--cloud); border-radius: 999px;
  padding: .55em .6em .55em 1.5em; gap: .7em; font-weight: 600;
  box-shadow: 0 6px 16px -4px rgba(146,143,26,.55);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.btn-whatsapp:hover {
  background: var(--amber-dark); transform: translateY(-2px);
  box-shadow: 0 10px 22px -4px rgba(146,143,26,.6);
}
.btn-whatsapp-icon {
  width: 27px; height: 27px; border-radius: 50%; background: var(--cloud);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  position: relative; transition: transform .2s ease;
}
.btn-whatsapp:hover .btn-whatsapp-icon { transform: scale(1.08); }
.btn-whatsapp-icon svg { width: 16px; height: 16px; color: #25D366; position: relative; z-index: 1; }
.btn-whatsapp-icon::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  opacity: .35; animation: akt-whatsapp-pulse 2.2s ease-out infinite;
}
@keyframes akt-whatsapp-pulse {
  0% { transform: scale(1); opacity: .35; }
  70% { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-whatsapp-icon::before { animation: none; display: none; }
}

/* ============================================
   HOMEPAGE TRIO — v2.1: full-width horizontal bands (desktop only)
   Mobile keeps each band's content stacked vertically.
   ============================================ */
.homepage-trio-top .container, .homepage-trio-bottom .container { display: flex; flex-direction: column; }
.homepage-trio-top .container { gap: 4.5rem; }
.homepage-trio-bottom { padding-top: clamp(1.2rem, 2.5vw, 2rem); }

/* Impact band */
.impact-band {
  background: var(--canopy); color: var(--cloud); border-radius: var(--radius);
  padding: 2.2rem 2.4rem; box-shadow: 0 20px 40px -22px rgba(4,27,58,.5);
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.impact-band-text { flex: 0 0 260px; }
.impact-band-text h2 { color: var(--cloud); font-size: 1.25rem; margin: 0; }
.impact-band-text h2 em { font-style: italic; color: var(--amber); }
.impact-band-stats { display: flex; gap: 2.2rem; flex: 1; flex-wrap: wrap; }
.impact-band-stats .impact-stat { border-top: none; padding-top: 0; }
@media (max-width: 880px) {
  .impact-band { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .impact-band-text { flex-basis: auto; }
  .impact-band-stats { width: 100%; gap: 1.5rem 1.2rem; }
  .impact-band-stats .impact-stat { flex: 1 1 40%; }
}

/* Programs band */
.programs-band .trio-head-row { align-items: flex-end; margin-bottom: 1.8rem; }
.programs-band .trio-eyebrow { margin-bottom: .5rem; }
.programs-band h2 { margin: 0; }
.featured-program-list-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.featured-program-list-row .featured-program-card { grid-template-columns: 1fr; padding: 1.3rem; }
.featured-program-list-row .featured-program-thumb { aspect-ratio: 16/10; margin-bottom: .2rem; }
@media (max-width: 880px) {
  .featured-program-list-row { grid-template-columns: 1fr; }
  .featured-program-list-row .featured-program-card { grid-template-columns: 1fr; }
}

/* Trust band — true full-viewport-width band (sits outside .container) */
.trust-band-full {
  background: var(--paper-dim);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  text-align: center;
}
.trust-band-full .trio-eyebrow { text-align: center; }
.trust-band-full h2 { margin-bottom: 2rem; }
.trust-band-full .client-slider { max-width: 960px; margin: 0 auto; }
.trust-band-full .client-slider-controls { margin-top: 1.6rem; }

/* Testimonial band */
.testimonial-band { text-align: center; }
.testimonial-band .trio-eyebrow { margin-bottom: 1rem; }
.testimonial-carousel-wide {
  max-width: 640px; margin: 0 auto; background: var(--cloud); border: 1px solid var(--rope-line);
  border-radius: var(--radius); padding: 2.4rem 2.6rem; position: relative;
  box-shadow: 0 20px 44px -26px rgba(11,31,68,.25);
}
.testimonial-carousel-wide::before {
  content: "\201C"; position: absolute; top: .5rem; left: 1.5rem; font-family: Georgia, serif;
  font-size: 4rem; color: var(--rope-line); line-height: 1;
}
.testimonial-carousel-wide .testimonial-quote { font-size: 1.05rem; text-align: center; position: relative; z-index: 1; }
.testimonial-carousel-wide .testimonial-author { display: block; text-align: center; }
.testimonial-carousel-wide .testimonial-controls { justify-content: center; }
.testimonial-dots { display: flex; justify-content: center; gap: 6px; margin-top: 1.2rem; }
.testimonial-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rope-line); border: none; padding: 0; cursor: pointer; }
.testimonial-dot.is-active { background: var(--amber); }

.featured-program-thumb-logo {
  display: flex; align-items: center; justify-content: center; background: var(--cloud);
  padding: 1rem;
}
.featured-program-thumb-logo img {
  width: auto !important; height: auto !important; max-width: 100%; max-height: 100%;
  object-fit: contain !important;
}

/* ============================================
   INSTAGRAM FEED SECTION (homepage)
   ============================================ */
.instagram-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: .8rem;
}
@media (max-width: 880px) { .instagram-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .instagram-grid { grid-template-columns: repeat(2, 1fr); } }
.instagram-grid-item {
  position: relative; display: block; aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden;
}
.instagram-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.instagram-grid-overlay {
  position: absolute; inset: 0; background: rgba(4,27,58,.45); opacity: 0;
  display: flex; align-items: center; justify-content: center; transition: opacity .2s ease;
}
.instagram-grid-overlay svg { width: 26px; height: 26px; color: var(--cloud); }
.instagram-grid-item:hover img { transform: scale(1.08); }
.instagram-grid-item:hover .instagram-grid-overlay { opacity: 1; }

.instagram-fallback-card {
  max-width: 460px; margin: 0 auto; text-align: center; background: var(--paper-dim);
  border-radius: var(--radius); padding: 2.5rem 2rem;
}
.instagram-fallback-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: 50%; background: var(--canopy); color: var(--cloud); margin-bottom: 1rem;
}
.instagram-fallback-icon svg { width: 26px; height: 26px; }
.instagram-fallback-card p { margin: 0; }
