/* --------------------
   TOKENS
-------------------- */
:root {
  /* Brand Colors */
  --color-primary: #243C5A;      /* Deep Navy Blue */
  --color-accent-1: #557A46;     /* Field Green */
  --color-accent-2: #C9A27E;     /* Warm Clay */
  --color-white: #FFFFFF;
  --color-charcoal: #4D4D4D;

  /* Derived accents */
  --color-accent: var(--color-accent-1);
  --color-accent-soft: rgba(85, 122, 70, 0.25); /* soft green glow */

  /* Shadows */
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);

  /* Backgrounds & Surfaces */
  --color-bg: #0C1018;           /* Deep, subtle navy-black */
  --color-surface: #111826;      /* Card / section surface */
  --color-surface-soft: #182133; /* Softer surface variation */

  /* Text */
  --color-text: #F5F7FA;
  --color-text-muted: #A3AEC0;
  --color-border: rgba(255, 255, 255, 0.06);

  /* Links */
  --color-link: var(--color-accent-1);
  --color-link-hover: #3F5B36;

  /* Spacing */
  --space-xs: 4px;
  --space-s: 8px;
  --space-m: 16px;
  --space-l: 24px;
  --space-xl: 40px;
  --space-xxl: 64px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Typography */
  --font-header: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-narrative: 'Cormorant Garamond', 'Georgia', serif;
}



/* --------------------
   GLOBAL
-------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  color: var(--color-link-hover);
}

img {
  max-width: 100%;
  display: block;
}

/* --------------------
   HEADER / NAV
-------------------- */
.site-header {
  border-bottom: 1px solid var(--color-border);
  background:
    radial-gradient(circle at top left, #243C5A33, transparent 60%)
    var(--color-bg);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--space-m) var(--space-m);
  display: flex;
  align-items: center;
  gap: var(--space-m);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-mark {
  height: 32px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-header);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
}

.nav__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-m);
}

.nav__links li {
  display: inline-flex;
}

.nav__links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.nav__links a.is-active,
.nav__links a:hover {
  color: var(--color-accent-1);
}

.nav__cta {
  margin-left: auto;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-accent-1);
  color: var(--color-accent-1);
  font-size: 0.85rem;
  text-decoration: none;
}

.nav__cta:hover {
  background: var(--color-accent-1);
  color: var(--color-white);
}

/* Optional theme toggle icon */
.nav__theme-toggle {
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  margin-left: auto;
}

/* Desktop nav */
/* Tablet and Desktop nav */
@media (min-width: 768px) {
  .nav {
    gap: var(--space-l);
  }

  .nav__links {
    display: flex;
  }

  .nav__theme-toggle {
    order: 3;
    margin-left: 0;
  }

  .nav__cta {
    order: 4;
  }
  
  /* Hide mobile menu button on tablet/desktop */
  .nav__mobile-toggle {
    display: none;
  }
}

/* Adjust nav spacing for smaller tablets */
@media (min-width: 768px) and (max-width: 899px) {
  .nav {
    gap: var(--space-m);
  }
  
  .nav__links {
    gap: var(--space-s);
  }
  
  .nav__links a {
    font-size: 0.85rem;
  }
  
  .nav__cta {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
}



/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.16s ease, color 0.16s ease, transform 0.05s ease;
}

.btn--primary {
  background: var(--color-accent-1);
  color: var(--color-white);
}

.btn--primary:hover {
  background: #425f3a;
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-text);
}

.btn--secondary:hover {
  background: #243C5A22;
}

/* Hero image */
.hero__media {
  max-width: 480px;
  justify-self: center;
}

.hero__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
}
/* --------------------
   HOMEPAGE HERO
-------------------- */
.hero {
  padding: var(--space-xl) var(--space-m) var(--space-xxl);
  background:
    radial-gradient(circle at top right, #C9A27E22, transparent 65%);
}

.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
  }
}

.hero__content {
  max-width: 560px;
}

.hero__title {
  font-family: var(--font-header);
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-m);
}

.hero__body {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: var(--space-l);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
}

/* -----------------------------
   Values Strip
------------------------------ */

.values {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.values__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .values__inner {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.value__title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 0.25rem;
}

.value__body {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* -----------------------------
   Sections / Pillars / Capabilities
------------------------------ */

.section {
  padding: var(--space-xl) var(--space-m);
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section__inner--split {
  display: grid;
  gap: var(--space-l);
}

@media (min-width: 900px) {
  .section__inner--split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  }
}

.section__title {
  font-family: var(--font-header);
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-s);
}

.section__subtitle {
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* --------------------
   SERVICES PAGE
-------------------- */
.page--services .hero {
  padding: var(--space-xl) var(--space-m) var(--space-l);
  background:
    radial-gradient(circle at top left, #243C5A33, transparent 60%),
    linear-gradient(to bottom, #0C1018, #0C1018);
}

.page--services .hero__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.page--services .hero__title {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-m);
}

.page--services .hero__body {
  max-width: 640px;
  color: var(--color-text-muted);
  font-size: 0.98rem;
}



/* --------------------
   MKONDO TEASER (HOMEPAGE)
-------------------- */
.section--mkondo {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(135deg, #111826, #141A26);
}

.mkondo__preview {
  margin-top: var(--space-m);
}

@media (min-width: 900px) {
  .section--mkondo .section__inner--split {
    align-items: flex-start;
  }

  .mkondo__preview {
    margin-top: 0;
  }
}

#mkondoTeaser {
  display: grid;
  gap: var(--space-m);
}

.mkondo__post {
  background: var(--color-surface-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: var(--space-m);
}

.mkondo__post-title {
  font-family: var(--font-header);
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.mkondo__post-title a {
  color: var(--color-text);
}

.mkondo__post-title a:hover {
  color: var(--color-accent-1);
}

.mkondo__post-body {
  font-family: var(--font-narrative);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-s);
}

.mkondo__link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-2);
}

.mkondo__link:hover {
  color: var(--color-accent-1);
}

/* --------------------
   MKONDO INSIGHTS LIST (mkondo.html)
-------------------- */

.mkondo__list {
  display: grid;
  gap: var(--space-m);
  margin-top: var(--space-l);
}

.mkondo__item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: var(--space-m);
}

.mkondo__tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent-2);
  margin-bottom: var(--space-xs);
}

.mkondo__item-title {
  font-family: var(--font-header);
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.mkondo__item-title a {
  color: var(--color-text);
}

.mkondo__item-title a:hover {
  color: var(--color-accent-1);
}

.mkondo__item-body {
  font-family: var(--font-narrative);
  font-size: 0.96rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-s);
}

.mkondo__meta {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  opacity: 0.85;
}

.section__inner--center {
  max-width: 640px;
  text-align: center;
}

/* ---- CTA EMPHASIS ---- */
.section--cta {
  padding-bottom: 5rem;
  text-align: center;
  background: radial-gradient(
      circle at top left,
      var(--color-accent-soft),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(36, 60, 90, 0.25),
      transparent 60%
    );
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section--cta .section__title {
  margin-bottom: 0.5rem;
}

.section--cta .section__subtitle {
  max-width: 540px;
  margin: 0 auto 1.5rem;
}


.section__inner--center {
  max-width: 640px;
  text-align: center;
}


/* Pillars */

.pillars {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pillar {
  border-radius: 12px;
  border: 1px solid var(--color-border);
  padding: 1.4rem 1.2rem;
  background-color: var(--color-surface);
}

html[data-theme="light"] .pillar {
  background-color: var(--color-surface);
}

.pillar__title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.pillar__body {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.pillar__link {
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--color-link);
}

/* Capabilities */

.capabilities {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.capability {
  border-radius: 12px;
  border: 1px solid var(--color-border);
  padding: 1.5rem 1.4rem;
}

.capability__title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.capability__body {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.capability__link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--color-link);
}

/* Powered by Jicho label */
.capability__powered {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.02em;
}

.powered-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.85;
}

html[data-theme="light"] .powered-dot {
  background: var(--color-accent);
}


/* --------------------
   SERVICES CARDS
-------------------- */
.cards {
  display: grid;
  gap: var(--space-m);
  margin-top: var(--space-l);
}

@media (min-width: 900px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: var(--space-m);
}

.card__title {
  font-family: var(--font-header);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-s);
  color: var(--color-accent-2); /* Warm clay accent */
}

.card__body {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Services overview section */
.services-overview {
  padding-top: 0; /* hero already adds top space */
}

.services-overview .section__title {
  font-size: 1.5rem;
}

.services-overview .section__subtitle {
  max-width: 640px;
}

/* Services grid */
.services-grid {
  display: grid;
  gap: var(--space-m);
  margin-top: var(--space-l);
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Individual service card */
.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: var(--space-m);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.service-card__tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent-2);
}

.service-card__title {
  font-family: var(--font-header);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-card__body {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.service-card__meta {
  margin-top: var(--space-s);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  opacity: 0.85;
}

.service-card__link {
  margin-top: auto;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-1);
}

.service-card__link:hover {
  color: var(--color-accent-2);
}

.service-band {
  padding: var(--space-xl) var(--space-m);
  border-top: 1px solid var(--color-border);
}

.service-band:nth-of-type(odd) {
  background: var(--color-surface-soft);
}

.service-band:nth-of-type(even) {
  background: var(--color-bg);
}

.service-band__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-l);
}

@media (min-width: 900px) {
  .service-band__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: flex-start;
  }
}

.service-band__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent-2);
  margin-bottom: var(--space-xs);
}

.service-band__title {
  font-family: var(--font-header);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-s);
}

.service-band__body {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.service-band__list {
  margin: var(--space-m) 0 0;
  padding-left: 1.1rem;
  font-size: 0.93rem;
  color: var(--color-text-muted);
}

.service-band__list li + li {
  margin-top: 4px;
}


/* -----------------------------
   CTA Section
------------------------------ */

.section--cta {
  padding-bottom: 5rem;
  text-align: center;
}

/* --------------------
   FOOTER
-------------------- */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: #0A0E15;
  padding: var(--space-l) var(--space-m) var(--space-m);
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto var(--space-m);
  display: grid;
  gap: var(--space-l);
}

@media (min-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand {
  font-family: var(--font-header);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.footer__tagline {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: var(--space-xs);
}

.site-footer__col h4 {
  font-family: var(--font-header);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-s);
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li + li {
  margin-top: 6px;
}

.footer__links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--color-accent-1);
}

.site-footer__bottom {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-s);
  text-align: left;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}


/* ---- HOME HERO TWEAKS ---- */

.page--home .hero__inner {
  padding: 2.25rem 2.25rem 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background-color: rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow-soft);
}

html[data-theme="light"] .page--home .hero__inner {
  background-color: rgba(255, 255, 255, 0.96);
}

.page--home .hero__title {
  margin-bottom: 0.75rem;
}

.page--home .hero__motto {
  margin-bottom: 0.75rem;
}

.page--home .hero__actions {
  margin-top: 0.5rem;
}

/* ---- VALUES STRIP TIGHTENING ---- */

.values {
  margin-top: -1.25rem;
}

.values__inner {
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.value {
  border-right: 1px solid var(--color-border);
  padding-right: 0.75rem;
}

.value:last-child {
  border-right: none;
}

@media (max-width: 900px) {
  .value {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.75rem;
    margin-bottom: 0.5rem;
  }
  .value:last-child {
    border-bottom: none;
  }
}

/* ---- PILLAR & CAPABILITY HOVERS ---- */

.pillar,
.capability {
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    border-color 0.16s ease-out, background-color 0.16s ease-out;
}

.pillar:hover,
.capability:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-accent);
}

.pillar__link,
.capability__link {
  position: relative;
}

.pillar__link::after,
.capability__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--color-link);
  transition: width 0.18s ease-out;
}

.pillar__link:hover::after,
.capability__link:hover::after {
  width: 100%;
}

/* ---- NAV POLISH ---- */

.nav__logo {
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .nav {
    padding-inline: 1rem;
  }

  .nav__links {
    width: 100%;
    justify-content: flex-start;
    row-gap: 0.25rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }
}

/* ---- CTA EMPHASIS ---- */

.section--cta {
  background: radial-gradient(
      circle at top left,
      var(--color-accent-soft),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(36, 60, 90, 0.25),
      transparent 60%
    );
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section--cta .section__title {
  margin-bottom: 0.5rem;
}

.section--cta .section__subtitle {
  max-width: 540px;
  margin: 0 auto 1.5rem;
}

/* ---- PROGRAMS & PLATFORMS ---- */

.section--programs {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background-color: rgba(15, 23, 42, 0.6);
}

html[data-theme="light"] .section--programs {
  background-color: rgba(255, 255, 255, 0.9);
}

.section__header--compact {
  margin-bottom: 1.5rem;
}

.programs {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .programs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.program {
  border-radius: 14px;
  border: 1px solid var(--color-border);
  padding: 1.5rem 1.4rem;
  background-color: var(--color-surface);
}

.program__title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.program__body {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.program__meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  opacity: 0.9;
}

/* ---- MKONDO ARTICLE ---- */

.breadcrumb {
  margin: 2rem auto 1rem;
  max-width: 800px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  gap: 0.4rem;
}

.breadcrumb a {
  color: var(--color-accent);
  text-decoration: none;
}

.article-hero {
  padding: 2rem 0;
}

.article-hero__inner {
  max-width: 800px;
  margin: auto;
}

.article-title {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.article-content {
  max-width: 800px;
  margin: 2rem auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.article-content h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.article-content h3 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}

.article-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  opacity: 0.8;
}

.article-content ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.article-nav {
  max-width: 800px;
  margin: 2rem auto;
  display: flex;
  justify-content: space-between;
}

.article-nav__prev,
.article-nav__next {
  font-size: 0.9rem;
  color: var(--color-accent);
  text-decoration: none;
}

.article-nav__prev:hover,
.article-nav__next:hover {
  text-decoration: underline;
}





/* --------------------
   FORM STYLES (CONTACT PAGE)
-------------------- */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
  max-width: 100%;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form__field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form__field input,
.form__field textarea,
.form__field select {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, outline 0.2s ease;
}

.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: 2px solid var(--color-accent-1);
  outline-offset: 0;
  border-color: var(--color-accent-1);
}

.form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.form__field select {
  cursor: pointer;
}

/* Light theme form styles */
html[data-theme="light"] .form__field input,
html[data-theme="light"] .form__field textarea,
html[data-theme="light"] .form__field select {
  background: #FFFFFF;
  border-color: #D1D5DB;
  color: #1F2937;
}

html[data-theme="light"] .form__field input:focus,
html[data-theme="light"] .form__field textarea:focus,
html[data-theme="light"] .form__field select:focus {
  border-color: var(--color-accent-1);
}

/* --------------------
   LIST STYLES
-------------------- */
.list--bullets {
  padding-left: 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.list--bullets li {
  margin-bottom: var(--space-s);
}

.list--bullets strong {
  color: var(--color-text);
  font-weight: 600;
}

/* --------------------
   CONTACT PAGE LAYOUT
-------------------- */
.section__inner--contact {
  gap: var(--space-xxl);
}

@media (min-width: 900px) {
  .section__inner--contact {
    grid-template-columns: 1.3fr 1fr;
    align-items: flex-start;
  }
}

.section__col--form,
.section__col--info {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

/* --------------------
   HERO SPLIT LAYOUT
-------------------- */
.hero__inner--split {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner--split {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* ========================================
   MOBILE MENU
   ======================================== */

@media (max-width: 768px) {
  .nav__mobile-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
    position: relative;
  }
  
  .hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: #557A46;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #557A46;
    transition: all 0.3s ease;
  }
  
  .hamburger::before {
    top: -8px;
  }
  
  .hamburger::after {
    bottom: -8px;
  }
  
  /* Hamburger animation when active */
  .nav__mobile-toggle.is-open .hamburger {
    background: transparent;
  }
  
  .nav__mobile-toggle.is-open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }
  
  .nav__mobile-toggle.is-open .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  
  /* Hide nav links by default */
  .nav__links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 9998;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  
  /* Show nav links when open - MATCHES YOUR JS */
  .nav__links.is-open {
    transform: translateX(0);
  }
  
  .nav__links li {
    width: 100%;
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }
  
  .nav__links li:last-child {
    border-bottom: none;
  }
  
  .nav__cta {
    display: block;
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }
}

/* --------------------
   ACCESSIBILITY - SKIP LINK
-------------------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-accent-1);
  color: var(--color-white);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 1000;
  border-radius: 0 0 4px 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.skip-link:focus {
  top: 0;
}

/* --------------------
   LIGHT THEME ENHANCEMENTS
-------------------- */
html[data-theme="light"] {
  --color-bg: #F9FAFB;
  --color-surface: #FFFFFF;
  --color-surface-soft: #F3F4F6;
  --color-text: #1F2937;
  --color-text-muted: #6B7280;
  --color-border: rgba(0, 0, 0, 0.1);
  --color-link: #557A46;
  --color-link-hover: #3F5B36;
}

html[data-theme="light"] body {
  background-color: var(--color-bg);
}

html[data-theme="light"] .site-header {
  background: radial-gradient(circle at top left, #243C5A11, transparent 60%) var(--color-bg);
  border-bottom-color: var(--color-border);
}

html[data-theme="light"] .nav__links a {
  color: var(--color-text-muted);
}

html[data-theme="light"] .nav__links a.is-active,
html[data-theme="light"] .nav__links a:hover {
  color: var(--color-accent-1);
}

html[data-theme="light"] .hero {
  background: radial-gradient(circle at top right, #C9A27E22, transparent 65%);
}

html[data-theme="light"] .values {
  background: var(--color-surface);
}

html[data-theme="light"] .pillar,
html[data-theme="light"] .capability,
html[data-theme="light"] .card,
html[data-theme="light"] .service-card,
html[data-theme="light"] .mkondo__post,
html[data-theme="light"] .mkondo__item {
  background: var(--color-surface);
  border-color: var(--color-border);
}

html[data-theme="light"] .site-footer {
  background: #E5E7EB;
  border-top-color: var(--color-border);
}

html[data-theme="light"] .section--mkondo {
  background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
}

html[data-theme="light"] .section--cta {
  background: radial-gradient(
      circle at top left,
      rgba(85, 122, 70, 0.15),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(36, 60, 90, 0.15),
      transparent 60%
    );
}

html[data-theme="light"] .nav__links {
  background: var(--color-surface);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .nav__links a:hover,
html[data-theme="light"] .nav__links a.is-active {
  background: var(--color-surface-soft);
}

/* --------------------
   SERVICE LOGOS
-------------------- */
.capability__logo-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  margin-bottom: var(--space-m);
}

.capability__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.capability__title-with-logo {
  flex: 1;
}

/* Program section logos */
.program__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: var(--space-s);
  opacity: 0.95;
}

/* Service page hero logos */
.hero__logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: var(--space-m);
}

/* Light theme adjustments */
html[data-theme="light"] .capability__logo,
html[data-theme="light"] .program__logo,
html[data-theme="light"] .hero__logo {
  opacity: 1;
}

/* Responsive sizing */
@media (max-width: 899px) {
  .capability__logo {
    width: 48px;
    height: 48px;
  }
  
  .hero__logo {
    width: 64px;
    height: 64px;
  }
}

/* Logo animation on hover */
.capability:hover .capability__logo,
.program:hover .program__logo {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* Card logos (for about page programs) */
.card .program__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.card:hover .program__logo {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* ==========================================
   FAQ SECTIONS - PROFESSIONAL STYLING
   Add this to assets/css/style.css
   ========================================== */

/* FAQ Section Container */
.section--faq {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Individual FAQ Item */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  margin: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

/* FAQ Question (Summary) */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-accent-1);
}

/* Remove default marker */
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
}

/* FAQ Icon (Plus/Minus) */
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 1rem;
  position: relative;
  transition: transform 0.3s ease;
}

/* Plus icon (closed state) */
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-accent-1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal line */
.faq-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Vertical line */
.faq-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* When open - rotate to X or hide vertical line */
details[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

details[open] .faq-icon {
  transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
  padding: 0 0 1.5rem 0;
  color: var(--color-text-muted);
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  margin: 0 0 1rem 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.faq-answer strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Pricing callout inside FAQ */
.faq-pricing {
  background: var(--color-bg);
  border-left: 3px solid var(--color-accent-1);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  border-radius: var(--radius-sm);
}

.faq-pricing strong {
  display: block;
  color: var(--color-accent-1);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FAQ Intro Text */
.faq-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Animation for answer reveal */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus state for accessibility */
.faq-question:focus {
  outline: 2px solid var(--color-accent-1);
  outline-offset: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    padding: 1.25rem 0;
  }

  .faq-answer {
    font-size: 0.95rem;
    padding: 0 0 1.25rem 0;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-icon::before {
    width: 14px;
  }

  .faq-icon::after {
    height: 14px;
  }
}

/* Light Theme Adjustments */
html[data-theme="light"] .section--faq {
  background: #f9fafb;
}

html[data-theme="light"] .faq-item {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .faq-pricing {
  background: #ffffff;
  border-left-color: var(--color-accent-1);
}

/* Print Styles */
@media print {
  details[open] .faq-answer {
    display: block !important;
  }

  .faq-item {
    page-break-inside: avoid;
  }

  .faq-icon {
    display: none;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .faq-icon,
  .faq-icon::before,
  .faq-icon::after {
    transition: none;
  }

  .faq-answer {
    animation: none;
  }
}

/* ==========================================
   RESULT: Beautiful, accessible FAQs
   - Smooth animations
   - Clear visual hierarchy
   - Mobile responsive
   - Keyboard accessible
   ========================================== */
   
/* ==========================================
   CONSOLIDATED SERVICES SECTION
   Add this to assets/css/style.css
   ========================================== */

/* Services Section */
.section--services {
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    var(--color-surface) 100%
  );
}

/* Services Grid */
.services-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Service Card */
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-accent-1) 0%,
    var(--color-accent-2) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-accent-1);
}

.service-card:hover::before {
  opacity: 1;
}

/* Featured Card (Cybersecurity) */
.service-card--featured {
  border-color: var(--color-accent-1);
  background: linear-gradient(
    135deg,
    var(--color-surface) 0%,
    rgba(85, 122, 70, 0.05) 100%
  );
}

.service-card--featured::before {
  opacity: 1;
}

/* Card Header */
.service-card__header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.service-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.service-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent-1);
}

.service-card__heading {
  flex: 1;
}

.service-card__category {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-1);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  font-family: var(--font-header);
}

.service-card__powered {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.service-card__powered strong {
  color: var(--color-accent-1);
  font-weight: 600;
}

.powered-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-1);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Card Description */
.service-card__description {
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Card Features List */
.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card__features li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}

.service-card__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent-1);
  font-weight: 600;
}

/* Card Footer */
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  margin-top: auto;
  border-top: 1px solid var(--color-border);
}

.service-card__price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent-1);
}

.service-card__link {
  color: var(--color-accent-1);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease;
}

.service-card__link:hover {
  gap: 0.5rem;
  color: var(--color-link-hover);
}

/* Services CTA */
.services-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.services-cta__text {
  margin: 0 0 1.5rem 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-card {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .service-card__icon {
    width: 48px;
    height: 48px;
  }

  .service-card__icon img {
    width: 32px;
    height: 32px;
  }

  .service-card__title {
    font-size: 1.15rem;
  }

  .service-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .services-cta {
    padding: 1.5rem;
  }
}

/* Light Theme */
html[data-theme="light"] .section--services {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f9fafb 100%
  );
}

html[data-theme="light"] .service-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .service-card--featured {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(85, 122, 70, 0.03) 100%
  );
}

html[data-theme="light"] .service-card__icon {
  background: #f9fafb;
  border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .services-cta {
  background: #f9fafb;
  border-color: rgba(0, 0, 0, 0.08);
}

/* Print Styles */
@media print {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    page-break-inside: avoid;
    box-shadow: none;
    transform: none !important;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .service-card {
    transition: none;
  }

  .service-card:hover {
    transform: none;
  }

  .powered-dot {
    animation: none;
  }
}

/* ==========================================
   RESULT: Clean, modern services section
   - Replaces redundant pillars + capabilities
   - Better visual hierarchy
   - Includes pricing and features
   - Professional card design
   ========================================== */
   

/* ========================================
   JICHO PROMOTIONAL BANNER
   ======================================== */

.jicho-banner {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #557A46 0%, #6A9456 100%);
  color: white;
  padding: 12px 60px 12px 20px; /* Extra padding on right for close button */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.5s ease-out;
  position: relative; /* For absolute positioning of close button */
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.jicho-banner__content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.jicho-banner__icon {
  font-size: 1.5rem;
}

.jicho-banner__text {
  font-size: 1rem;
  font-weight: 500;
}

.jicho-banner__text strong {
  font-weight: 700;
}

.jicho-banner__cta {
  background: white;
  color: #557A46;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.jicho-banner__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background: #f5f5f5;
}

.jicho-banner__close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 5px 10px;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.jicho-banner__close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.jicho-banner.hidden {
  display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .jicho-banner {
    padding: 10px 50px 10px 15px; /* More room for close button on mobile */
  }
  
  .jicho-banner__content {
    gap: 10px;
    font-size: 0.9rem;
  }
  
  .jicho-banner__text {
    font-size: 0.85rem;
    text-align: center;
  }
  
  .jicho-banner__cta {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
  
  .jicho-banner__close {
    right: 10px;
    font-size: 1.8rem;
    padding: 5px 8px;
  }
}

/* Push down site header to account for sticky banner */
.site-header {
  margin-top: 0; /* Banner is sticky, not fixed */
}
/* ========================================
   MOBILE MENU BUTTON
   ======================================== */

/* Hide hamburger on desktop */
.nav__mobile-toggle {
  display: none;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .nav__mobile-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
  }
  
  .hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: #557A46;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #557A46;
    transition: all 0.3s ease;
  }
  
  .hamburger::before {
    top: -8px;
  }
  
  .hamburger::after {
    bottom: -8px;
  }
  
  /* Hamburger animation when open */
  .nav__mobile-toggle.is-open .hamburger {
    background: transparent;
  }
  
  .nav__mobile-toggle.is-open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }
  
  .nav__mobile-toggle.is-open .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  
  /* Hide nav links by default */
  .nav__links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 9998;
  }
  
  /* Show nav links when open */
  .nav__links.is-open {
    transform: translateX(0);
  }
  
  .nav__links li {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }
}

