/* ============================================================
   programs.css — rules specific to programs.html.
   Loaded after css/styles.css, which holds the shared base.
   ============================================================ */

.btn-dark { background: var(--c-ink); color: #fff; }

.btn-dark:hover { background: var(--c-green-deep); color: #fff; transform: translateY(-2px); }

.btn-ghost {
    background: transparent; color: var(--c-ink);
    padding: 0; font-weight: 600; border-radius: 0;
    display: inline-flex; align-items: center; gap: 8px;
  }

.btn-ghost:hover { color: var(--c-red); gap: 12px; }

/* Header */
  .site-header {
    position: fixed; top: 14px;
    left: clamp(14px, 2vw, 28px); right: clamp(14px, 2vw, 28px);
    z-index: 100; padding: 8px clamp(18px, 2vw, 28px);
    background: rgba(250, 244, 232, 0.96);
    backdrop-filter: saturate(180%) blur(14px);
    border-radius: var(--radius-pill);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.95),
      0 3px 0 rgba(31,143,62,0.85),
      0 5px 0 rgba(215,46,31,0.45),
      0 8px 14px rgba(26,20,16,0.06);
  }

@media (max-width: 980px) {
    .nav-links, .nav-actions .btn-outline { display: none; }
    .nav-toggle { display: inline-flex; }
    .mobile-open .nav-links {
      display: flex; flex-direction: column;
      position: absolute; top: 100%; left: 0; right: 0;
      background: var(--c-cream); padding: 20px; gap: 14px;
      border-radius: 20px; margin-top: 12px;
      box-shadow: 0 16px 36px rgba(26,20,16,0.12);
    }
  }

/* Page hero - light breadcrumb banner with image */
  .page-hero {
    position: relative;
    padding: clamp(140px, 18vw, 220px) 0 clamp(70px, 9vw, 110px);
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(247,243,236,0.86) 0%, rgba(237,226,199,0.82) 100%),
      url('../img/Leadership.jpg') center/cover;
    color: var(--c-ink);
    border-bottom: 1px solid var(--c-line);
  }

.page-hero::before {
    content: ""; position: absolute;
    top: -120px; right: -80px;
    width: 360px; height: 360px; border-radius: 50%;
    background: radial-gradient(circle, rgba(31,143,62,0.18), transparent 65%);
    pointer-events: none;
  }

.page-hero .eyebrow { color: var(--c-green); }

.page-hero .eyebrow::before { background: var(--c-green); }

.page-hero h1 { color: var(--c-ink); margin-bottom: 22px; max-width: 18ch; }

/* Featured program */
  .programs { background: var(--c-cream); }

.programs-head {
    margin-bottom: 50px;
  }

/* Three sentence lines, forced by <br> in the markup */
.programs-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.8rem); }

.programs-head h2 { margin: 0; }

.programs-head h2 em { color: var(--c-red); font-style: italic; }

.program-feature {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 56px);
    box-shadow: 0 2px 8px rgba(26,20,16,0.06);
    border: 1px solid var(--c-line);
    margin-bottom: 28px;
  }

.program-feature .img {
    aspect-ratio: 5/4;
    background-size: cover; background-position: center;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 36px rgba(26,20,16,0.12);
  }

.program-feature .num {
    font-family: 'Fraunces', serif;
    font-size: 0.85rem; font-weight: 700;
    color: var(--c-red); letter-spacing: 0.22em; margin-bottom: 14px;
  }

.program-feature h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 16px; }

.program-feature p { font-size: 1.04rem; }

.program-feature .tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 28px; }

.program-feature .tag {
    font-size: 0.78rem; padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: var(--c-green-pale); color: var(--c-green-deep);
    font-weight: 600; letter-spacing: 0.02em;
  }

.program-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-bottom: 28px;
  }

.program-card {
    background: #fff; border-radius: var(--radius-md);
    overflow: hidden; border: 1px solid var(--c-line);
    transition: all var(--t-med);
    display: flex; flex-direction: column;
  }

.program-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(26,20,16,0.12); border-color: var(--c-green); }

.program-card .img { aspect-ratio: 16/10; background-size: cover; background-position: center; }

.program-card .body { padding: 28px 26px 30px; }

.program-card .num {
    font-family: 'Fraunces', serif;
    font-size: 0.78rem; font-weight: 700;
    color: var(--c-red); letter-spacing: 0.22em; margin-bottom: 10px;
  }

.program-card h3 { font-size: 1.2rem; margin-bottom: 10px; }

.program-card p { font-size: 0.93rem; margin: 0 0 16px; }

@media (max-width: 900px) {
    .programs-head { grid-template-columns: 1fr; }
    .program-feature { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: 1fr; }
  }

/* Program detail rows */
  .detail-section { background: var(--c-paper); }

.detail-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }

.detail-head .eyebrow { justify-content: center; }

.detail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    padding: 50px 0;
    border-top: 1px solid var(--c-line);
    align-items: center;
  }

.detail:last-child { border-bottom: 1px solid var(--c-line); }

.detail:nth-child(even) { direction: rtl; }

.detail:nth-child(even) > * { direction: ltr; }

.detail .photo {
    aspect-ratio: 5/4;
    background-size: cover; background-position: center;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 36px rgba(26,20,16,0.12);
  }

.detail .num {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: 1.05rem; color: var(--c-red);
    margin-bottom: 10px;
  }

.detail h3 {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    margin-bottom: 14px;
  }

.detail p { font-size: 1rem; margin: 0 0 16px; }

.detail ul {
    list-style: none; padding: 0; margin: 0 0 22px;
    display: grid; gap: 8px;
  }

.detail ul li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.94rem; color: var(--c-ink-soft);
  }

.detail ul li::before {
    content: ""; flex-shrink: 0;
    width: 16px; height: 16px; margin-top: 4px;
    background: var(--c-green);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
  }

@media (max-width: 860px) {
    .detail { grid-template-columns: 1fr; padding: 30px 0; }
    .detail:nth-child(even) { direction: ltr; }
  }

/* Partners */
  .partners { background: var(--c-cream-warm); }

.partners-grid {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 50px; align-items: center;
  }

.partners-head h2 em { color: var(--c-red); font-style: italic; }

.partner-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); gap: 18px;
  }

.partner {
    background: #fff; border: 1px solid var(--c-line);
    border-radius: var(--radius-md); padding: 28px 24px;
    transition: all var(--t-med);
  }

.partner:hover { transform: translateY(-4px); border-color: var(--c-green); box-shadow: 0 12px 28px rgba(26,20,16,0.08); }

.partner strong {
    display: block; font-family: 'Fraunces', serif;
    font-size: 1.05rem; color: var(--c-ink); line-height: 1.3;
  }

.partner span { font-size: 0.85rem; color: var(--c-muted); margin-top: 6px; display: block; }

@media (max-width: 900px) {
    .partners-grid { grid-template-columns: 1fr; }
    .partner-list { grid-template-columns: 1fr; }
  }

/* CTA */
  .cta-banner {
    background: linear-gradient(135deg, var(--c-red-deep) 0%, var(--c-red) 100%);
    color: #fff; text-align: center;
  }

.cta-banner h2 { color: #fff; margin-bottom: 20px; max-width: 22ch; margin-left: auto; margin-right: auto; }

.cta-banner p { color: rgba(255,255,255,0.92); font-size: 1.08rem; max-width: 56ch; margin: 0 auto 30px; }

.cta-banner .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }

.cta-banner .btn-outline:hover { background: #fff; color: var(--c-red-deep); }

.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.cta-banner .btn-primary { background: #fff; color: var(--c-red-deep); }

.cta-banner .btn-primary:hover { background: var(--c-ink); color: #fff; }
