/* ─── 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-dark         { background: var(--gray);      color: #fff; }
  .btn-dark:hover   { background: #222; }
  .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-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: .6; }
  .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.6rem, 6vw, 5rem);
    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: 430px; margin-bottom: 2.5rem;
  }

  /* ── Hero visual panel ── */
  .hero-visual { position: relative; overflow: hidden; }
  .hero-visual-inner {
    width: 100%; height: 100%; min-height: 580px;
    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 70% 60% at 60% 30%, rgba(217,89,60,.25), transparent),
      radial-gradient(ellipse 40% 40% at 20% 80%, 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,.018) 50px, rgba(255,255,255,.018) 51px
    );
  }
  /* Scattered circle decoration */
  .hero-deco {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  }
  .hero-deco-circle {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.06);
  }
  /* Floating event count pill */
  .hero-pill {
    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: 100px;
    padding: .6rem 1.2rem;
    display: flex; align-items: center; gap: .6rem;
  }
  .hero-pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; flex-shrink: 0; }
  @keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.3); } }
  .hero-pill span { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); }

  .hero-visual-caption {
    position: relative; z-index: 2;
    padding: 2rem 2.5rem;
  }
  .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; margin-bottom: .6rem;
  }
  .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); }

  /* Illustration placeholder */
  .hero-illustration {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-52%);
    width: 260px; opacity: .09; pointer-events: none;
  }

  /* ═══════════════════════════════════════════════════════════
     UPCOMING EVENTS
  ══════════════════════════════════════════════════════════ */
  #upcoming {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--white);
  }
  .upcoming-header { margin-bottom: 3.5rem; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; }
  .upcoming-header-left h2 {
    font-family: var(--canela); font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: normal; color: var(--gray); line-height: 1.1; margin-bottom: .65rem;
  }
  .upcoming-header-left p {
    font-size: .92rem; line-height: 1.7; color: var(--gray); opacity: .6;
  }

  /* Filter tabs */
  .event-filters { display: flex; gap: .4rem; flex-wrap: wrap; }
  .filter-tab {
    font-family: var(--poppins); font-size: .72rem; font-weight: 600;
    letter-spacing: .07em; text-transform: uppercase;
    padding: .45rem 1.1rem; border-radius: 100px; border: 1.5px solid rgba(54,54,54,.18);
    background: transparent; color: var(--gray); opacity: .6;
    cursor: pointer; transition: all .2s;
  }
  .filter-tab:hover, .filter-tab.active { background: var(--orange); color: #fff; border-color: var(--orange); opacity: 1; }

  /* Events grid */
  .events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  .event-card {
    background: var(--cream); border-radius: 4px; overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s;
    border: 1px solid rgba(54,54,54,.08);
  }
  .event-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(54,54,54,.1); }

  /* Photo */
  .ec-photo {
    aspect-ratio: 3/2; position: relative; overflow: hidden;
    background: var(--gray);
  }
  .ec-photo-bg {
    width: 100%; height: 100%;
    transition: transform .45s ease;
  }
  .event-card:hover .ec-photo-bg { transform: scale(1.05); }
  .ec-photo-bg.ev1 { background: linear-gradient(135deg, #5c2818, var(--wine)); }
  .ec-photo-bg.ev2 { background: linear-gradient(135deg, var(--orange), #8a3822); }
  .ec-photo-bg.ev3 { background: linear-gradient(135deg, var(--terracota), #3a1a0c); }
  .ec-photo-bg.ev4 { background: linear-gradient(135deg, var(--gray), #5a2416); }
  .ec-photo-bg.ev5 { background: linear-gradient(135deg, #6a2e1a, var(--orange)); }
  .ec-photo-bg.ev6 { background: linear-gradient(135deg, #2a1008, var(--terracota)); }

  /* Category badge */
  .ec-badge {
    position: absolute; top: 1rem; left: 1rem;
    font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: #fff; background: rgba(0,0,0,.4); backdrop-filter: blur(4px);
    padding: .28rem .7rem; border-radius: 2px;
  }
  /* "Spots Left" tag */
  .ec-spots {
    position: absolute; top: 1rem; right: 1rem;
    font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--orange); background: rgba(250,247,244,.9);
    padding: .28rem .65rem; border-radius: 2px;
  }

  /* Body */
  .ec-body { padding: 1.5rem 1.75rem 1.75rem; flex: 1; display: flex; flex-direction: column; }

  /* Date + location row */
  .ec-meta {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1rem;
  }
  .ec-date {
    display: flex; align-items: center; gap: 0;
  }
  .ec-date-month {
    background: var(--orange); color: #fff;
    font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: .22rem .55rem .18rem; border-radius: 2px 0 0 2px;
  }
  .ec-date-day {
    background: var(--wine); color: #fff;
    font-size: .6rem; font-weight: 700; letter-spacing: .06em;
    padding: .22rem .55rem .18rem; border-radius: 0 2px 2px 0;
  }
  .ec-location {
    font-size: .7rem; font-weight: 500; color: var(--gray); opacity: .5;
    display: flex; align-items: center; gap: .3rem;
  }
  .ec-location::before { content: '◎'; font-size: .55rem; color: var(--terracota); opacity: .8; }

  .ec-title {
    font-family: var(--canela); font-size: 1.18rem; font-weight: normal;
    color: var(--gray); line-height: 1.3; margin-bottom: .65rem;
    text-transform: capitalize;
  }
  .ec-desc {
    font-size: .83rem; line-height: 1.72; color: var(--gray); opacity: .63;
    margin-bottom: 1.4rem; flex: 1;
  }
  .ec-register {
    align-self: flex-start;
    font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
    color: var(--white); background: var(--orange);
    padding: .65rem 1.4rem; border-radius: 2px;
    transition: background .2s, transform .15s;
    display: inline-flex; align-items: center; gap: .4rem;
  }
  .ec-register:hover { background: var(--wine); transform: translateY(-1px); }

  /* Featured (large) event card */
  .event-card.featured {
    grid-column: span 3;
    display: grid; grid-template-columns: 1.2fr 1fr;
  }
  .event-card.featured .ec-photo { aspect-ratio: auto; min-height: 340px; }
  .event-card.featured .ec-title { font-size: clamp(1.4rem, 2.5vw, 2rem); }
  .event-card.featured .ec-desc  { font-size: .9rem; }
  .event-card.featured .ec-body  { padding: 2.5rem; justify-content: center; }

  /* ═══════════════════════════════════════════════════════════
     LATINAS IN ACTION
  ══════════════════════════════════════════════════════════ */
  #in-action {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--cream); overflow: hidden;
  }
  .ia-header { text-align: center; margin-bottom: 3.5rem; }
  .ia-header h2 {
    font-family: var(--canela); font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: normal; color: var(--gray); line-height: 1.1; margin-bottom: .9rem;
  }
  .ia-header p { font-size: .92rem; line-height: 1.75; color: var(--gray); opacity: .62; max-width: 480px; margin: 0 auto; }

  /* Bento-style photo + quote grid */
  .ia-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
  }

  /* Photo cells */
  .ia-photo {
    border-radius: 4px; overflow: hidden; position: relative;
    background: var(--gray);
  }
  .ia-photo-bg {
    width: 100%; height: 100%; min-height: 200px;
    transition: transform .5s ease;
  }
  .ia-photo:hover .ia-photo-bg { transform: scale(1.04); }
  .ia-photo-bg.c1 { background: linear-gradient(140deg, #5c2818, var(--wine)); }
  .ia-photo-bg.c2 { background: linear-gradient(140deg, var(--orange), #8a3822); }
  .ia-photo-bg.c3 { background: linear-gradient(140deg, var(--terracota), #3a1a0c); }
  .ia-photo-bg.c4 { background: linear-gradient(140deg, var(--gray), #5a2416); }
  .ia-photo-bg.c5 { background: linear-gradient(140deg, #3a1a0c, var(--terracota)); }
  .ia-photo-bg.c6 { background: linear-gradient(140deg, var(--wine), #1a0804); }

  /* Photo label */
  .ia-photo-label {
    position: absolute; bottom: .9rem; left: 1rem;
    font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.6); background: rgba(0,0,0,.32);
    padding: .22rem .6rem; border-radius: 2px;
  }

  /* Testimonial / quote cells */
  .ia-quote {
    border-radius: 4px; padding: 2rem 2rem 1.75rem;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .ia-quote.bg-orange { background: var(--orange); }
  .ia-quote.bg-dark   { background: #1f0e08; }
  .ia-quote.bg-light  { background: var(--white); border: 1px solid rgba(54,54,54,.1); }
  .ia-quote.bg-wine   { background: var(--wine); }

  .ia-quote blockquote {
    font-family: var(--canela); font-style: italic; line-height: 1.5;
    margin-bottom: 1.25rem;
  }
  .ia-quote.bg-orange blockquote,
  .ia-quote.bg-dark   blockquote,
  .ia-quote.bg-wine   blockquote { color: rgba(255,255,255,.9); font-size: clamp(.92rem, 1.5vw, 1.1rem); }
  .ia-quote.bg-light  blockquote { color: var(--gray); font-size: clamp(.92rem, 1.5vw, 1.1rem); }

  .ia-quote-marks {
    font-family: var(--canela); font-size: 3.5rem; line-height: 1;
    opacity: .2; margin-bottom: .5rem; display: block;
  }
  .ia-quote.bg-orange .ia-quote-marks,
  .ia-quote.bg-dark   .ia-quote-marks,
  .ia-quote.bg-wine   .ia-quote-marks { color: #fff; }
  .ia-quote.bg-light  .ia-quote-marks { color: var(--orange); opacity: .35; }

  .ia-quote-author { display: flex; align-items: center; gap: .75rem; }
  .ia-quote-avatar {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  }
  .ia-quote.bg-orange .ia-quote-avatar { background: rgba(255,255,255,.2); }
  .ia-quote.bg-dark   .ia-quote-avatar { background: rgba(217,89,60,.3); }
  .ia-quote.bg-light  .ia-quote-avatar { background: var(--light); }
  .ia-quote.bg-wine   .ia-quote-avatar { background: rgba(255,255,255,.2); }

  .ia-quote-name  { font-size: .75rem; font-weight: 600; margin-bottom: .15rem; }
  .ia-quote-role  { font-size: .67rem; letter-spacing: .06em; opacity: .55; }
  .ia-quote.bg-orange .ia-quote-name,
  .ia-quote.bg-dark   .ia-quote-name,
  .ia-quote.bg-wine   .ia-quote-name { color: #fff; }
  .ia-quote.bg-orange .ia-quote-role,
  .ia-quote.bg-dark   .ia-quote-role,
  .ia-quote.bg-wine   .ia-quote-role { color: rgba(255,255,255,.55); }
  .ia-quote.bg-light  .ia-quote-name { color: var(--gray); }
  .ia-quote.bg-light  .ia-quote-role { color: var(--gray); }

  /* Stat block cell */
  .ia-stat {
    border-radius: 4px; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 2rem 1.5rem;
  }
  .ia-stat.bg-terracota { background: var(--terracota); }
  .ia-stat-number {
    font-family: var(--canela); font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: normal; color: #fff; line-height: 1; margin-bottom: .4rem;
  }
  .ia-stat-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); line-height: 1.4; }

  /* Grid placement */
  .ia-p1 { grid-column: 1 / 5;  grid-row: 1 / 2; }
  .ia-p2 { grid-column: 5 / 8;  grid-row: 1 / 2; }
  .ia-q1 { grid-column: 8 / 13; grid-row: 1 / 2; min-height: 240px; }
  .ia-p3 { grid-column: 1 / 4;  grid-row: 2 / 3; }
  .ia-s1 { grid-column: 4 / 6;  grid-row: 2 / 3; min-height: 240px; }
  .ia-p4 { grid-column: 6 / 9;  grid-row: 2 / 3; }
  .ia-q2 { grid-column: 9 / 13; grid-row: 2 / 3; min-height: 240px; }
  .ia-q3 { grid-column: 1 / 5;  grid-row: 3 / 4; min-height: 220px; }
  .ia-p5 { grid-column: 5 / 9;  grid-row: 3 / 4; }
  .ia-p6 { grid-column: 9 / 13; grid-row: 3 / 4; }

  /* ═══════════════════════════════════════════════════════════
     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.78; 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: 1024px) {
    .events-grid { grid-template-columns: 1fr 1fr; }
    .event-card.featured { grid-column: span 2; }
    .ia-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .ia-p1,.ia-p2,.ia-p3,.ia-p4,.ia-p5,.ia-p6 { grid-column: span 1; grid-row: auto; }
    .ia-q1,.ia-q2,.ia-q3,.ia-s1 { grid-column: span 1; grid-row: auto; }
    .upcoming-header { grid-template-columns: 1fr; gap: 1.5rem; }
  }
  @media (max-width: 768px) {
    #hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-content { padding: 5rem 1.5rem 3.5rem; }
    .events-grid { grid-template-columns: 1fr; }
    .event-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
    .event-card.featured .ec-photo { min-height: 220px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    /* .nav-links / nav .btn handled by header.css */
    .ia-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
    .event-filters { display: none; }
  }