/* =============================================================================
   VIDUR FOUNDATION — COMPONENTS v4.0
   Charcoal · Warm Gold · Apple White
   ============================================================================= */

/* Desktop (≥ 769px): force-hide all mobile nav elements */
@media (min-width: 769px) {
  .mobile-nav,
  .nav-backdrop { display: none !important; }
  .nav-toggle   { display: none !important; }
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #D2D2D7;
  transition: box-shadow var(--transition-normal);
}

.site-nav.scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--space-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo__icon {
  width: 36px; height: 36px;
  background: #1D1D1F;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9922A;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.nav-logo__text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: #1D1D1F;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.nav-logo__sub {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  display: block;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0; margin: 0;
}

.nav-links a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover {
  color: #1D1D1F;
  background: #F5F5F7;
}

.nav-links a[aria-current="page"] {
  color: #C9922A;
  background: transparent;
  font-weight: var(--weight-medium);
}

.nav-dropdown { position: relative; }

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  padding: var(--space-2);
  min-width: 230px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  transform: translateX(-50%) translateY(-4px);
  z-index: var(--z-overlay);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  width: 100%;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.nav-dropdown__menu a:hover {
  background: #F5F5F7;
  color: #1D1D1F;
}

.nav-dropdown__menu .pillar-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #1D1D1F;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.nav-toggle:hover { background: #F5F5F7; }

/* ── Mobile Navigation (≤ 768px only) ────────────────────────────────────────
   All .mobile-nav, .nav-backdrop, and hamburger-morph styles live here.
   Desktop hide is handled by the @media (min-width: 769px) block at the top.
   =========================================================================== */
@media (max-width: 768px) {

  /* Hamburger → X icon morph on toggle button */
  .nav-toggle {
    position: relative;
    overflow: hidden;
  }
  .nav-toggle .icon-hamburger,
  .nav-toggle .icon-close {
    transition: opacity 200ms ease, transform 200ms ease;
    display: block;
  }
  .nav-toggle .icon-close {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 22px;
    height: 22px;
    opacity: 0;
    transform: rotate(-45deg) scale(0.7);
  }
  .nav-toggle[aria-expanded="true"] .icon-hamburger {
    opacity: 0;
    transform: rotate(45deg) scale(0.7);
  }
  .nav-toggle[aria-expanded="true"] .icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }

  /* Body scroll lock when nav is open */
  body.nav-open { overflow: hidden; }

  /* ── Backdrop ────────────────────────────────────────────────────────────── */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease;
  }
  .nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ── Mobile nav panel: slides in from right ──────────────────────────────── */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    background: #FAFAF7;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0ms linear 280ms;
  }
  .mobile-nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0ms linear 0ms;
  }

  /* ── Header row: wordmark + close button ─────────────────────────────────── */
  .mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 64px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .mobile-nav__wordmark {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: #1D1D1F;
    letter-spacing: -0.01em;
  }
  .mobile-nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
    flex-shrink: 0;
  }
  .mobile-nav__close:hover { background: rgba(0, 0, 0, 0.05); }

  /* ── Scrollable body ─────────────────────────────────────────────────────── */
  .mobile-nav__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  /* ── Primary nav links ───────────────────────────────────────────────────── */
  .mobile-nav__link {
    display: flex;
    align-items: center;
    padding: 0 24px;
    height: 54px;
    min-height: 54px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #1D1D1F;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color var(--transition-fast), background var(--transition-fast);
    flex-shrink: 0;
  }
  .mobile-nav__link:hover         { color: #C9922A; background: rgba(0, 0, 0, 0.02); }
  .mobile-nav__link[aria-current="page"] { color: #C9922A; font-weight: 600; }

  /* ── Pillars section divider ─────────────────────────────────────────────── */
  .mobile-nav__divider {
    padding: 16px 24px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .mobile-nav__section-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6E6E73;
    margin: 0;
  }

  /* ── Pillar links ────────────────────────────────────────────────────────── */
  .mobile-nav__pillar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 24px 14px 20px;
    border-left: 4px solid transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: background var(--transition-fast);
    min-height: 76px;
    flex-shrink: 0;
  }
  .mobile-nav__pillar:hover { background: rgba(0, 0, 0, 0.02); }

  /* Pillar left-border accent colors */
  .mobile-nav__pillar--education   { border-left-color: #1E5AA8; }
  .mobile-nav__pillar--health      { border-left-color: #C0392B; }
  .mobile-nav__pillar--agriculture { border-left-color: #2D7A3E; }
  .mobile-nav__pillar--finance     { border-left-color: #6B4FA0; }
  .mobile-nav__pillar--technology  { border-left-color: #0E8B8B; }

  .mobile-nav__pillar-hindi {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: #6E6E73;
    margin-bottom: 2px;
    line-height: 1.3;
  }
  .mobile-nav__pillar-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: #1D1D1F;
    line-height: 1.2;
    margin-bottom: 3px;
  }
  .mobile-nav__pillar[aria-current="page"] .mobile-nav__pillar-name { color: #C9922A; }
  .mobile-nav__pillar-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: #6E6E73;
    line-height: 1.4;
  }

  /* ── Footer: subscribe button + tagline ──────────────────────────────────── */
  .mobile-nav__footer {
    padding: 24px 24px 40px;
    flex-shrink: 0;
  }
  .mobile-nav__subscribe {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background: #C9922A;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    letter-spacing: 0.01em;
    transition: background var(--transition-fast);
    margin-bottom: 20px;
  }
  .mobile-nav__subscribe:hover  { background: #A8731A; }
  .mobile-nav__subscribe:active { background: #875510; }
  .mobile-nav__tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 13px;
    color: #6E6E73;
    text-align: center;
    margin: 0;
    line-height: 1.55;
  }

} /* end @media (max-width: 768px) mobile navigation */

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: #1D1D1F;
  color: rgba(245, 245, 247, 0.55);
  padding: var(--space-20) 0 var(--space-8);
  margin-top: auto;
  border-top: 2px solid #C9922A;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: var(--space-12) var(--space-16);
  margin-bottom: var(--space-16);
  align-items: start;
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  text-decoration: none;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: #F5F5F7;
  letter-spacing: -0.01em;
}

.footer-brand__tagline {
  font-size: var(--text-sm);
  color: rgba(245, 245, 247, 0.45);
  margin-bottom: var(--space-5);
  line-height: var(--leading-relaxed);
}

.footer-brand__contact {
  font-size: var(--text-sm);
  color: rgba(245, 245, 247, 0.45);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  line-height: 1.5;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
}

.footer-brand__contact a {
  color: rgba(245, 245, 247, 0.45);
  text-decoration: none;
}
.footer-brand__contact a:hover { color: #C9922A; }

.footer-col__title {
  font-size: 11px;
  font-weight: var(--weight-medium);
  color: rgba(245, 245, 247, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li + li { margin-top: var(--space-3); }

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(245, 245, 247, 0.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: #C9922A; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: var(--text-xs);
  color: rgba(245, 245, 247, 0.28);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.social-links {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  color: rgba(245, 245, 247, 0.45);
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1.5px solid rgba(245, 245, 247, 0.18);
}

.social-links a:hover {
  background: #C9922A;
  color: #1D1D1F;
  border-color: #C9922A;
}

/* Light-surface variant */
.social-links--light a {
  background: #F5F5F7;
  color: var(--text-secondary);
  border-color: var(--border-light);
}

.social-links--light a:hover {
  background: #1D1D1F;
  color: #F5F5F7;
  border-color: #1D1D1F;
}

/* ── HERO — Light fullscreen (Home page) ──────────────────────────────────── */
.hero-light {
  min-height: 100vh;
  min-height: 100svh; /* iOS Safari: excludes address bar */
  background: #FFFFFF;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-light::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201, 146, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-light::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: #D2D2D7;
}

.hero-light .container {
  position: relative;
  z-index: 1;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-20);
  align-items: center;
}

.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 146, 42, 0.06) 0%, transparent 65%);
  top: 40%;
  right: 8%;
  transform: translate(50%, -50%);
  animation: orbFloat 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-visual__card {
  background: #1D1D1F;
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
}

.hero-visual__accent {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 146, 42, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-visual__quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 600;
  color: #F5F5F7;
  line-height: 1.5;
  margin-bottom: var(--space-8);
  border: none;
  padding: 0;
  position: relative;
  z-index: 1;
}

.hero-visual__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.hero-visual__pillar-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(201, 146, 42, 0.12);
  border: 1px solid rgba(201, 146, 42, 0.2);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
  color: #C9922A;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.hero-visual__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #C9922A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #1D1D1F;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.hero-visual__author strong {
  display: block;
  font-size: var(--text-sm);
  color: #F5F5F7;
  font-weight: 600;
}

.hero-visual__author span {
  font-size: var(--text-xs);
  color: rgba(245, 245, 247, 0.45);
  display: block;
}

.hero-light .hero-eyebrow {
  color: #C9922A;
  margin-bottom: var(--space-6);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.hero-light .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1D1D1F;
  margin-bottom: var(--space-8);
  max-width: 700px;
}

.hero-light .hero-title em {
  font-style: italic;
  font-weight: 600;
  color: #C9922A;
  -webkit-text-fill-color: #C9922A;
}

.hero-light .hero-description {
  color: #6E6E73;
  font-size: 17px;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: var(--space-10);
}

.hero-light .btn--primary {
  background: #1D1D1F;
  border-color: #1D1D1F;
  color: #FFFFFF;
}

.hero-light .btn--primary:hover {
  background: #3D3D3F;
  border-color: #3D3D3F;
  color: #FFFFFF;
}

.hero-light .btn--ghost {
  border-color: #D2D2D7;
  color: #6E6E73;
  background: transparent;
}

.hero-light .btn--ghost:hover {
  background: #F5F5F7;
  border-color: #86868B;
  color: #1D1D1F;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(29, 29, 31, 0.25);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

/* ── Standard Hero (Inner pages) ──────────────────────────────────────────── */
.hero {
  padding: var(--space-24) 0 var(--space-20);
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #D2D2D7;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201, 146, 42, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C9922A;
  margin-bottom: var(--space-5);
  font-family: var(--font-body);
}

.hero-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  max-width: 700px;
}

.hero-title em {
  font-style: italic;
  color: #C9922A;
}

.hero-description {
  font-size: 17px;
  line-height: 1.75;
  color: #6E6E73;
  max-width: 560px;
  margin-bottom: var(--space-10);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

/* ── Pillar Hero ──────────────────────────────────────────────────────────── */
.pillar-hero {
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  border-bottom: 1px solid #D2D2D7;
}

.pillar-hero--education,
.pillar-hero--health,
.pillar-hero--agriculture,
.pillar-hero--finance,
.pillar-hero--technology  { background: #F5F5F7; }

.pillar-hero .hero-eyebrow    { color: #C9922A; }
.pillar-hero .hero-title       { color: #1D1D1F; max-width: 22ch; }
.pillar-hero .hero-title em    { color: #C9922A; -webkit-text-fill-color: #C9922A; }
.pillar-hero .hero-description { color: #6E6E73; }

.pillar-hero__icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: var(--space-5);
}

.pillar-hero__hindi {
  font-size: clamp(6rem, 14vw, 14rem);
  font-family: var(--font-display);
  position: absolute;
  right: var(--space-8);
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  color: rgba(29, 29, 31, 0.04);
  user-select: none;
}

/* ── Five Pillars Grid ────────────────────────────────────────────────────── */
.pillars-section {
  padding: var(--space-24) 0;
  background: #FFFFFF;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 479px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

.section-intro {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto var(--space-16);
}

.section-intro .hero-eyebrow { display: block; }
.section-intro h2 { margin-bottom: var(--space-5); }
.section-intro p  { color: var(--text-secondary); font-size: var(--text-lg); }

.pillar-card {
  display: block;
  background: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-top: 3px solid var(--pillar-color, #D2D2D7);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  text-decoration: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  border-color: var(--pillar-color, #86868B);
  border-top-color: var(--pillar-color, #86868B);
  box-shadow: var(--shadow-md);
}

.pillar-card--education   { --pillar-color: var(--color-education); }
.pillar-card--health      { --pillar-color: var(--color-health); }
.pillar-card--agriculture { --pillar-color: var(--color-agriculture); }
.pillar-card--finance     { --pillar-color: var(--color-finance); }
.pillar-card--technology  { --pillar-color: var(--color-technology); }

.pillar-card__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F5F7;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
  color: var(--pillar-color, #1D1D1F);
  transition: background 0.22s ease, color 0.22s ease;
}

.pillar-card:hover .pillar-card__icon-wrap {
  background: rgba(201, 146, 42, 0.08);
  color: #C9922A;
}
.pillar-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}
.pillar-card__devanagari {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}
.pillar-card__description {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}
.pillar-card__count {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: var(--weight-medium);
}
.pillar-card__arrow {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  color: var(--pillar-color, #1D1D1F);
  font-size: var(--text-lg);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.pillar-card:hover .pillar-card__arrow { opacity: 1; }

/* ── Stats Strip ──────────────────────────────────────────────────────────── */
.stats-strip {
  background: #F5F5F7;
  padding: var(--space-20) 0;
  border-top: 1px solid #D2D2D7;
  border-bottom: 1px solid #D2D2D7;
}

.stats-strip__grid {
  display: flex;
  align-items: stretch;
}

.stat-block {
  flex: 1;
  text-align: center;
  padding: var(--space-6) var(--space-8);
  color: #1D1D1F;
}

.stat-block + .stat-block {
  border-left: 1px solid #D2D2D7;
}

.stat-block__number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: var(--space-2);
  display: block;
  color: #C9922A;
  letter-spacing: -0.02em;
}

.stat-block__label {
  font-size: var(--text-sm);
  color: #6E6E73;
  letter-spacing: 0.02em;
}

.stat-block__divider {
  width: 1px;
  background: #D2D2D7;
  align-self: stretch;
}

/* ── Mission Quote Section ────────────────────────────────────────────────── */
.mission-section {
  background: #F5F5F7;
  padding: var(--space-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '"';
  position: absolute;
  top: -0.1em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(201, 146, 42, 0.05);
  line-height: 1;
  pointer-events: none;
}

.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 600;
  color: #1D1D1F;
  line-height: 1.5;
  max-width: 36ch;
  margin: 0 auto var(--space-8);
  letter-spacing: -0.01em;
}

.mission-attribution {
  font-size: var(--text-sm);
  color: #6E6E73;
  letter-spacing: 0.04em;
}

.mission-attribution strong { color: #C9922A; }

/* ── Article Cards ────────────────────────────────────────────────────────── */
.articles-section {
  padding: var(--space-24) 0;
  background: #FFFFFF;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-12);
  gap: var(--space-6);
  flex-wrap: wrap;
}

.section-header h2 { margin-bottom: 0; }

.article-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.article-card:hover {
  border-color: #86868B;
  box-shadow: var(--shadow-md);
}

.article-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #F5F5F7;
}

.article-card__image--placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F5F5F7 0%, #E8E8EA 100%);
  position: relative;
  overflow: hidden;
}

.article-card__image--placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #D2D2D7;
}

.article-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__pillar { margin-bottom: var(--space-3); }

.article-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-3);
  flex: 1;
  transition: color var(--transition-fast);
  letter-spacing: -0.02em;
}

.article-card:hover .article-card__title { color: #C9922A; }

.article-card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: auto;
}

.article-meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #D2D2D7;
  flex-shrink: 0;
}

/* ── Featured Article ─────────────────────────────────────────────────────── */
.featured-section {
  padding: var(--space-20) 0;
  background: #F5F5F7;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.featured-card:hover {
  border-color: #86868B;
  box-shadow: var(--shadow-lg);
}

.featured-card__image {
  min-height: 360px;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201, 146, 42, 0.12) 0%, transparent 65%),
    linear-gradient(145deg, #1D1D1F 0%, #3D3D3F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.featured-card__body {
  padding: var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-card__tag { margin-bottom: var(--space-5); }

.featured-card__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-5);
  letter-spacing: -0.03em;
}

.featured-card__excerpt {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.featured-card__meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

.featured-card__cta { align-self: flex-start; }

/* ── Newsletter Section ───────────────────────────────────────────────────── */
.newsletter-section {
  background: #F5F5F7;
  padding: var(--space-20) 0;
  text-align: center;
}

.newsletter-section .hero-eyebrow { color: #C9922A; display: block; }
.newsletter-section h2 { color: #1D1D1F; margin-bottom: var(--space-4); letter-spacing: -0.03em; }
.newsletter-section .newsletter-desc {
  color: #6E6E73;
  max-width: 48ch;
  margin: 0 auto var(--space-8);
  font-size: var(--text-lg);
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  background: #FFFFFF;
  border: 1px solid #D2D2D7;
  color: #1D1D1F;
  flex: 1;
}

.newsletter-form input::placeholder { color: #86868B; }

.newsletter-form input:focus {
  border-color: #C9922A;
  box-shadow: 0 0 0 3px rgba(201, 146, 42, 0.12);
  outline: none;
}

.newsletter-form .btn--primary {
  background: #1D1D1F;
  border-color: #1D1D1F;
  color: #FFFFFF;
  white-space: nowrap;
}

.newsletter-form .btn--primary:hover {
  background: #3D3D3F;
  border-color: #3D3D3F;
}

/* ── About Page ───────────────────────────────────────────────────────────── */
.about-hero {
  background: #FFFFFF;
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #D2D2D7;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201, 146, 42, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero .hero-eyebrow    { color: #C9922A; }
.about-hero .hero-title      { color: #1D1D1F; }
.about-hero .hero-description { color: #6E6E73; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

.value-card {
  background: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: var(--radius-md);
  padding: var(--space-8);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.value-card:hover {
  border-color: #86868B;
  box-shadow: var(--shadow-md);
}

.value-card__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F5F7;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
  color: #1D1D1F;
  transition: background 0.22s ease, color 0.22s ease;
}

.value-card:hover .value-card__icon-wrap {
  background: rgba(201, 146, 42, 0.08);
  color: #C9922A;
}
.value-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.value-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-10);
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: var(--radius-md);
  padding: var(--space-10);
}

.founder-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: #1D1D1F;
  border: 2px solid #C9922A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: #C9922A;
  flex-shrink: 0;
}

.founder-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-1);
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

.founder-title { color: var(--text-muted); font-size: var(--text-sm); margin-bottom: var(--space-4); }
.founder-bio   { color: var(--text-secondary); line-height: var(--leading-relaxed); }

/* ── Founder Premium Panel ────────────────────────────────────────────────── */
.founder-panel {
  background: #1D1D1F;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.founder-panel__identity {
  padding: var(--space-12) var(--space-8);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
}

.founder-panel__monogram {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #C9922A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #1D1D1F;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.founder-panel__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #F5F5F7;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-1);
}

.founder-panel__role {
  font-size: var(--text-sm);
  color: #C9922A;
  font-weight: 500;
  font-family: var(--font-body);
}

.founder-panel__loc {
  font-size: var(--text-xs);
  color: rgba(245, 245, 247, 0.35);
  font-family: var(--font-body);
  margin-top: var(--space-1);
}

.founder-panel__content {
  padding: var(--space-12);
}

.founder-panel__quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 600;
  color: #C9922A;
  line-height: 1.55;
  margin-bottom: var(--space-8);
  border: none;
  padding: 0;
  padding-left: var(--space-6);
  border-left: 3px solid #C9922A;
}

.founder-panel .founder-bio {
  color: rgba(245, 245, 247, 0.6);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.founder-panel .founder-bio + .founder-bio { margin-top: var(--space-4); }

/* ── Timeline ─────────────────────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: var(--space-8);
  margin-top: var(--space-12);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #D2D2D7;
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-10);
  padding-left: var(--space-5);
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-5) + 1px);
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #C9922A;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 1px #C9922A;
}

.timeline-year {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #C9922A;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  font-family: var(--font-body);
}

.timeline-item h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #1D1D1F;
  margin-bottom: var(--space-2);
  letter-spacing: -0.015em;
}

.timeline-item p {
  font-size: var(--text-sm);
  color: #6E6E73;
  line-height: var(--leading-relaxed);
}

/* ── Pillar Strip ─────────────────────────────────────────────────────────── */
.pillar-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-10);
}

.pillar-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.pillar-chip:hover {
  border-color: #C9922A;
  color: #C9922A;
  background: rgba(201, 146, 42, 0.04);
}

.pillar-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pillar-chip--education  .pillar-chip__dot { background: #1A4FAE; }
.pillar-chip--health     .pillar-chip__dot { background: #B91C1C; }
.pillar-chip--agriculture .pillar-chip__dot { background: #15803D; }
.pillar-chip--finance    .pillar-chip__dot { background: #6D28D9; }
.pillar-chip--technology .pillar-chip__dot { background: #0D7A6F; }

/* ── Impact Page ──────────────────────────────────────────────────────────── */
.impact-hero {
  background: #FFFFFF;
  padding: var(--space-24) 0;
  border-bottom: 1px solid #D2D2D7;
}

.impact-hero .hero-eyebrow    { color: #C9922A; }
.impact-hero .hero-title      { color: #1D1D1F; }
.impact-hero .hero-description { color: #6E6E73; }

.impact-numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: #D2D2D7;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: var(--space-16) 0;
}

.impact-number-block {
  background: #FFFFFF;
  padding: var(--space-10) var(--space-8);
  text-align: center;
}

.impact-number {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--weight-bold);
  color: #C9922A;
  display: block;
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.04em;
}

.impact-number-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-snug);
}

.program-card {
  background: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: var(--radius-md);
  padding: var(--space-8);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  align-items: flex-start;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.program-card:hover {
  border-color: #86868B;
  box-shadow: var(--shadow-sm);
}

.program-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.program-icon--education   { background: #EEF2FF; color: #1A4FAE; }
.program-icon--health      { background: #FEF2F2; color: #B91C1C; }
.program-icon--agriculture { background: #F0FDF4; color: #15803D; }
.program-icon--finance     { background: #F5F3FF; color: #6D28D9; }
.program-icon--technology  { background: #F0FDFA; color: #0D7A6F; }

.program-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.program-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ── Contact Page ─────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-16);
  align-items: flex-start;
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-4);
  letter-spacing: -0.025em;
}

.contact-info__desc {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.contact-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-5);
}

.contact-item__icon {
  width: 40px; height: 40px;
  background: #F5F5F7;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  flex-shrink: 0;
  border: 1px solid #D2D2D7;
}

.contact-item__label { font-size: var(--text-xs); color: var(--text-muted); margin-bottom: var(--space-1); }
.contact-item__value { font-size: var(--text-sm); font-weight: var(--weight-medium); color: var(--text-primary); }
.contact-item__value a { color: var(--text-primary); text-decoration: none; }
.contact-item__value a:hover { color: #C9922A; }

.contact-form-card {
  background: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: var(--radius-md);
  padding: var(--space-10);
}

/* ── Archive Page ─────────────────────────────────────────────────────────── */
.archive-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border: 1px solid #D2D2D7;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: #1D1D1F;
  border-color: #1D1D1F;
  color: #FFFFFF;
}

/* ── 404 / Error Pages ────────────────────────────────────────────────────── */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-20) 0;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: var(--weight-bold);
  line-height: 1;
  color: #E8E8EA;
  display: block;
  margin-bottom: var(--space-4);
  letter-spacing: -0.05em;
}

.error-title { font-size: var(--text-3xl); margin-bottom: var(--space-4); }

.error-desc {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  max-width: 44ch;
  margin: 0 auto var(--space-8);
}

/* ── Breadcrumb ───────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-6);
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: #C9922A; }
.breadcrumb-sep { opacity: 0.4; }

/* ── Section backgrounds ─────────────────────────────────────────────────── */
.section-light  { background: #FFFFFF; }
.section-cream  { background: #F5F5F7; }
.section-dark   { background: #1D1D1F; }
.section-accent { background: var(--color-gold-50); }

/* ── CTA Banner ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: #1D1D1F;
  border: 1px solid rgba(201, 146, 42, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-10) var(--space-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.cta-banner__text h3 {
  color: #F5F5F7;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
  letter-spacing: -0.025em;
}
.cta-banner__text p {
  color: rgba(245, 245, 247, 0.55);
  font-size: var(--text-base);
  margin: 0;
}

.cta-banner .btn--ghost {
  border-color: rgba(245, 245, 247, 0.25);
  color: #F5F5F7;
  background: rgba(245, 245, 247, 0.06);
}

.cta-banner .btn--ghost:hover {
  background: rgba(201, 146, 42, 0.12);
  border-color: #C9922A;
  color: #C9922A;
}
