/* ─── TOKENS ──────────────────────────────────────────────── */
  :root {
    --gray:      #363636;
    --orange:    #D9593C;
    --wine:      #803723;
    --terracota: #B75C3C;
    --cream:     #FAF7F4;
    --light:     #F3EDE7;
    --white:     #FFFFFF;
    --canela:    'Georgia', 'Times New Roman', serif;
    --poppins:   'Poppins', sans-serif;
    --max:       1180px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--poppins); color: var(--gray); background: var(--cream); -webkit-font-smoothing: antialiased; }
  img  { display: block; width: 100%; }
  a    { text-decoration: none; color: inherit; }
  .container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
  .tag { display: inline-block; font-size: .67rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--terracota); margin-bottom: .85rem; }

  /* ─── BUTTONS ─────────────────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: .45rem;
    font-family: var(--poppins); font-size: .79rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    padding: .85rem 1.9rem; border-radius: 2px;
    transition: all .22s ease; cursor: pointer; border: none;
  }
  .btn-primary { background: var(--orange); color: #fff; }
  .btn-primary:hover { background: var(--wine); }
  .btn-outline  { background: transparent; color: var(--gray); border: 1.5px solid rgba(54,54,54,.28); }
  .btn-outline:hover  { border-color: var(--orange); color: var(--orange); }
  .btn-dark     { background: var(--gray); color: #fff; }
  .btn-dark:hover { background: #222; }
  .btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
  .btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }

  /* ─── NAV (legacy — replaced by header.css) ──────────────── */
  /* NOTE: rule removed — nav tag now lives inside .site-header */

  /* ─── ANIMATIONS ─────────────────────────────────────────── */
  .fade-up    { opacity: 0; transform: translateY(26px);  transition: opacity .6s ease, transform .6s ease; }
  .fade-left  { opacity: 0; transform: translateX(-26px); transition: opacity .6s ease, transform .6s ease; }
  .fade-right { opacity: 0; transform: translateX(26px);  transition: opacity .6s ease, transform .6s ease; }
  .fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }

  /* ═══════════════════════════════════════════════════════════
     HERO
  ══════════════════════════════════════════════════════════ */
  #hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--cream); overflow: hidden;
  }
  .hero-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(3rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem) clamp(1.25rem, 6vw, 5rem);
  }
  .hero-breadcrumb {
    display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
    font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(54,54,54,.4); margin-bottom: 2rem;
  }
  .hero-breadcrumb a { color: inherit; transition: color .2s; }
  .hero-breadcrumb a:hover { color: var(--orange); }
  .hero-breadcrumb .sep { color: var(--orange); opacity: .7; }
  .hero-breadcrumb .current { color: var(--orange); opacity: .9; }

  .hero-eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem; }
  .hero-eyebrow::before { content:''; width: 36px; height: 2px; background: var(--orange); flex-shrink: 0; }
  .hero-eyebrow span { font-size: .67rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); }

  .hero-title {
    font-family: var(--canela); font-size: clamp(2.8rem, 6.5vw, 5.4rem);
    font-weight: normal; line-height: 1.05; color: var(--gray);
    margin-bottom: 1.4rem;
  }
  .hero-title em { font-style: italic; color: var(--terracota); }

  .hero-intro {
    font-size: clamp(.88rem, 1.5vw, 1.02rem); line-height: 1.78; color: var(--gray); opacity: .7;
    max-width: 440px; margin-bottom: 2.5rem;
  }

  /* Visual side */
  .hero-visual { position: relative; overflow: hidden; }
  .hero-visual-inner {
    width: 100%; height: 100%; min-height: 560px;
    background: linear-gradient(155deg, #5c2718 0%, #2a1008 55%, #1a0804 100%);
    position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  }
  .hero-visual-inner::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 65% 55% at 65% 35%, rgba(217,89,60,.22), transparent),
      radial-gradient(ellipse 45% 40% at 25% 75%, rgba(183,92,60,.15), transparent);
  }
  .hero-visual-pattern {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      45deg, transparent, transparent 50px,
      rgba(255,255,255,.016) 50px, rgba(255,255,255,.016) 51px
    );
  }
  /* Illustration placeholder */
  .hero-illustration {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 240px; opacity: .1;
  }
  .hero-visual-caption {
    position: relative; z-index: 2;
    padding: 2rem 2.5rem;
    display: flex; flex-direction: column; gap: .6rem;
  }
  .hero-visual-caption p {
    font-family: var(--canela); font-size: 1.1rem; font-style: italic;
    color: rgba(255,255,255,.72); line-height: 1.5; max-width: 280px;
  }
  .hero-visual-caption span {
    font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: var(--terracota); display: flex; align-items: center; gap: .5rem;
  }
  .hero-visual-caption span::before { content:''; width: 18px; height: 1px; background: var(--terracota); }

  /* Floating stat pill */
  .hero-stat {
    position: absolute; top: 2.5rem; right: 2.5rem; z-index: 3;
    background: rgba(250,247,244,.1); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15); border-radius: 4px;
    padding: 1rem 1.4rem; text-align: center;
  }
  .hero-stat strong {
    display: block; font-family: var(--canela); font-size: 2rem;
    color: var(--white); font-weight: normal; line-height: 1;
  }
  .hero-stat span { font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }

  /* ═══════════════════════════════════════════════════════════
     HOW OUR PROGRAMS WORK
  ══════════════════════════════════════════════════════════ */
  #how {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--white);
  }
  .how-header { text-align: center; margin-bottom: 3.5rem; }
  .how-header h2 {
    font-family: var(--canela); font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: normal; color: var(--gray); line-height: 1.15; margin-bottom: 1rem;
  }
  .how-header > p {
    font-size: .95rem; line-height: 1.8; color: var(--gray); opacity: .65;
    max-width: 540px; margin: 0 auto 1.75rem;
  }
  /* Supporting pill line */
  .how-pills {
    display: flex; align-items: center; justify-content: center; gap: 0;
    flex-wrap: wrap;
  }
  .how-pill {
    font-size: .78rem; font-weight: 600; letter-spacing: .06em;
    color: var(--gray); padding: .5rem 1.25rem;
    border: 1px solid rgba(54,54,54,.18); border-radius: 100px;
    background: var(--cream); margin: .25rem .3rem;
  }
  .how-pill:nth-child(odd) { border-color: var(--orange); color: var(--orange); background: rgba(217,89,60,.05); }
  .how-pill.dot { border: none; background: transparent; padding: .5rem .1rem; opacity: .4; font-size: 1rem; }

  /* Stats strip */
  .how-strip {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: rgba(54,54,54,.1);
    border: 1px solid rgba(54,54,54,.1); border-radius: 4px;
    overflow: hidden; margin-top: 3.5rem;
  }
  .how-strip-item {
    background: var(--white); padding: 2rem 2.25rem;
    display: flex; align-items: flex-start; gap: 1.25rem;
  }
  .how-strip-icon {
    width: 44px; height: 44px; border-radius: 50%;
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .how-strip-icon.oi { background: rgba(217,89,60,.1); }
  .how-strip-icon.ow { background: rgba(128,55,35,.1); }
  .how-strip-icon.og { background: rgba(183,92,60,.1); }
  .how-strip-text strong {
    display: block; font-size: .88rem; font-weight: 700; color: var(--gray); margin-bottom: .3rem;
  }
  .how-strip-text span { font-size: .82rem; line-height: 1.65; color: var(--gray); opacity: .62; }

  /* ═══════════════════════════════════════════════════════════
     PROGRAM AREAS
  ══════════════════════════════════════════════════════════ */
  #program-areas {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--cream);
  }
  .pa-header { margin-bottom: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; }
  .pa-header h2 {
    font-family: var(--canela); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: normal; color: var(--gray); line-height: 1.15;
  }
  .pa-header p { font-size: .92rem; line-height: 1.8; color: var(--gray); opacity: .65; }

  /* Program cards — alternating layout */
  .pa-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border-radius: 6px; overflow: hidden; margin-bottom: 1.5rem;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(54,54,54,.06);
    transition: box-shadow .25s, transform .25s;
  }
  .pa-card:hover { box-shadow: 0 12px 40px rgba(54,54,54,.11); transform: translateY(-2px); }
  .pa-card.reverse { direction: rtl; }
  .pa-card.reverse > * { direction: ltr; }

  .pa-card-visual {
    min-height: 280px; position: relative; overflow: hidden;
  }
  .pa-card-bg {
    width: 100%; height: 100%;
    transition: transform .45s ease;
  }
  .pa-card:hover .pa-card-bg { transform: scale(1.04); }
  .pa-card-bg.bg1 { background: linear-gradient(135deg, #5c2818 0%, #2a1008 100%); }
  .pa-card-bg.bg2 { background: linear-gradient(135deg, var(--orange) 0%, #8a3822 100%); }
  .pa-card-bg.bg3 { background: linear-gradient(135deg, var(--terracota) 0%, #3a1a0c 100%); }
  .pa-card-bg.bg4 { background: linear-gradient(135deg, var(--gray) 0%, #5a2416 100%); }

  /* Number overlay */
  .pa-card-num {
    position: absolute; bottom: 1.5rem; right: 1.75rem;
    font-family: var(--canela); font-size: 4.5rem; font-style: italic;
    color: rgba(255,255,255,.12); line-height: 1; pointer-events: none;
  }
  .pa-card-badge {
    position: absolute; top: 1.25rem; left: 1.25rem;
    font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.75); background: rgba(0,0,0,.35);
    padding: .28rem .7rem; border-radius: 2px;
  }

  /* Partners logos row inside visual */
  .pa-card-partners {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    display: flex; gap: .5rem; flex-wrap: wrap;
  }
  .pa-partner-logo {
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
    border-radius: 3px; padding: .3rem .7rem;
    font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(255,255,255,.7);
  }

  .pa-card-body {
    padding: 2.5rem 2.5rem 2.5rem 2.75rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .pa-card-body .tag { margin-bottom: .65rem; }
  .pa-card-body h3 {
    font-family: var(--canela); font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: normal; color: var(--gray); line-height: 1.2; margin-bottom: 1rem;
  }
  .pa-card-body p {
    font-size: .88rem; line-height: 1.78; color: var(--gray); opacity: .68; margin-bottom: 1.25rem;
  }
  .pa-card-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }
  .pa-tag {
    font-size: .68rem; font-weight: 600; padding: .3rem .75rem; border-radius: 100px;
    background: var(--light); color: var(--gray); opacity: .8;
    border: 1px solid rgba(54,54,54,.1);
  }
  .pa-card-link {
    font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
    color: var(--orange); display: inline-flex; align-items: center; gap: .4rem;
    transition: gap .2s;
  }
  .pa-card-link:hover { gap: .7rem; }

  /* ═══════════════════════════════════════════════════════════
     CONTACT / SUBSCRIBE CTA (inline strip)
  ══════════════════════════════════════════════════════════ */
  #contact-cta {
    background: var(--orange);
    padding: 0;
  }
  .contact-cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; padding: 2.25rem clamp(1.25rem, 4vw, 2.5rem); flex-wrap: wrap;
    max-width: var(--max); margin: 0 auto;
  }
  .contact-cta-text {
    font-family: var(--canela); font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-style: italic; color: var(--white); line-height: 1.3;
  }
  .contact-cta-text strong { font-style: normal; font-weight: normal; }

  /* ═══════════════════════════════════════════════════════════
     PROGRAM DETAILS
  ══════════════════════════════════════════════════════════ */
  #program-details {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--white);
  }
  .pd-header { text-align: center; margin-bottom: 3.5rem; }
  .pd-header h2 {
    font-family: var(--canela); font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: normal; color: var(--gray); line-height: 1.15; margin-bottom: .75rem;
  }
  .pd-header p { font-size: .9rem; line-height: 1.75; color: var(--gray); opacity: .62; max-width: 460px; margin: 0 auto; }

  .pd-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .pd-item {
    padding: 2.5rem 2rem 2.25rem;
    border-radius: 4px; background: var(--light);
    text-align: center; position: relative;
    border-top: 3px solid var(--orange);
    transition: transform .22s, box-shadow .22s;
  }
  .pd-item:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(54,54,54,.09); }
  .pd-item:nth-child(2) { border-top-color: var(--terracota); }
  .pd-item:nth-child(3) { border-top-color: var(--wine); }

  .pd-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin: 0 auto 1.25rem;
    box-shadow: 0 4px 14px rgba(54,54,54,.08);
  }
  .pd-item h3 { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: .6rem; }
  .pd-item:nth-child(2) h3 { color: var(--terracota); }
  .pd-item:nth-child(3) h3 { color: var(--wine); }
  .pd-item p { font-size: .88rem; line-height: 1.7; color: var(--gray); opacity: .68; }
  .pd-item strong { color: var(--gray); opacity: 1; font-weight: 600; }

  /* ═══════════════════════════════════════════════════════════
     PARTNERS & COLLABORATIONS
  ══════════════════════════════════════════════════════════ */
  #partners {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--cream);
    overflow: hidden;
  }
  .partners-header { text-align: center; margin-bottom: 3rem; }
  .partners-header h2 {
    font-family: var(--canela); font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: normal; color: var(--gray); line-height: 1.15; margin-bottom: .9rem;
  }
  .partners-header p { font-size: .9rem; line-height: 1.78; color: var(--gray); opacity: .62; max-width: 500px; margin: 0 auto; }

  /* Marquee-style logo strip */
  .partners-track-wrap { overflow: hidden; position: relative; }
  .partners-track-wrap::before,
  .partners-track-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
  }
  .partners-track-wrap::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
  .partners-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--cream), transparent); }

  .partners-track {
    display: flex; gap: 1.25rem;
    animation: marquee 22s linear infinite;
    width: max-content;
  }
  .partners-track:hover { animation-play-state: paused; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .partner-logo-card {
    flex: 0 0 180px; height: 80px;
    background: var(--white); border: 1px solid rgba(54,54,54,.1);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    padding: 1rem 1.5rem;
    transition: border-color .2s, box-shadow .2s;
  }
  .partner-logo-card:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(217,89,60,.1); }
  .partner-logo-name {
    font-family: var(--canela); font-size: 1rem; font-style: italic;
    color: var(--gray); opacity: .45; text-align: center; line-height: 1.3;
    pointer-events: none;
  }

  /* ═══════════════════════════════════════════════════════════
     FINAL CTA
  ══════════════════════════════════════════════════════════ */
  #cta-final {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: linear-gradient(135deg, #2a1008 0%, #1a0804 100%);
    text-align: center; position: relative; overflow: hidden;
  }
  #cta-final::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(217,89,60,.18), transparent);
  }
  .cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
  .cta-inner .tag { color: var(--terracota); }
  .cta-inner h2 {
    font-family: var(--canela); font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: normal; font-style: italic; color: var(--white);
    line-height: 1.2; margin-bottom: .9rem;
  }
  .cta-inner h2 em { font-style: normal; color: var(--terracota); }
  .cta-text { font-size: .93rem; line-height: 1.75; color: rgba(255,255,255,.58); margin-bottom: 2.5rem; }
  .cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

  /* ─── FOOTER ─────────────────────────────────────────────── */
  footer { background: #1a0a04; color: var(--white); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-logo { font-family: var(--canela); font-size: 1.4rem; color: var(--white); line-height: 1.2; margin-bottom: .75rem; }
  .footer-logo span { display: block; font-family: var(--poppins); font-size: .6rem; font-style: normal; letter-spacing: .18em; text-transform: uppercase; color: var(--terracota); margin-top: 4px; }
  .footer-tagline { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.45); max-width: 220px; }
  .footer-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: .55rem; }
  .footer-col a { font-size: .83rem; color: rgba(255,255,255,.55); transition: color .2s; }
  .footer-col a:hover { color: var(--orange); }
  .social-links { display: flex; gap: .65rem; margin-bottom: 1.25rem; }
  .social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: .75rem; color: rgba(255,255,255,.6); transition: background .2s; }
  .social-link:hover { background: var(--orange); color: var(--white); }
  .footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-copy { font-size: .74rem; color: rgba(255,255,255,.28); }
  .footer-mission { font-family: var(--canela); font-size: .72rem; font-style: italic; color: rgba(255,255,255,.22); }

  /* ─── RESPONSIVE ─────────────────────────────────────────── */
  @media (max-width: 960px) {
    #hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-content { padding: 5rem 1.5rem 3.5rem; }
    .pa-header, .how-strip { grid-template-columns: 1fr; }
    .pa-card { grid-template-columns: 1fr; }
    .pa-card.reverse { direction: ltr; }
    .pa-card-visual { min-height: 220px; }
    .pd-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    /* .nav-links / nav .btn handled by header.css */
    .pd-grid { grid-template-columns: 1fr; }
    .contact-cta-inner { flex-direction: column; align-items: flex-start; }
    .footer-top { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
    .how-strip { grid-template-columns: 1fr; }
  }