    :root {
      --clay: #C4A882;
      --clay-light: #DDD0BC;
      --earth: #8B6F4E;
      --earth-deep: #5C4A33;
      --sand: #F5EDE3;
      --sand-light: #FAF7F2;
      --charcoal: #2A2520;
      --charcoal-soft: #3D3630;
      --white: #FFFDF9;
      --accent: #B85C38;
      --accent-light: #D4845E;
      --green: #6B8F5E;
      --blue-muted: #7A9BAE;
      --font-display: 'DM Serif Display', Georgia, serif;
      --font-body: 'Instrument Sans', system-ui, sans-serif
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--charcoal);
      line-height: 1.7;
      overflow-x: hidden
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 1rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all .5s;
      background: transparent
    }

    nav.scrolled {
      background: rgba(255, 253, 249, .95);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
      padding: .7rem 3rem
    }

    .nav-logo {
      height: 36px;
      transition: opacity .4s
    }

    .nav-logo img {
      height: 100%
    }

    .nav-logo .logo-dark {
      display: none
    }

    .nav-logo .logo-white {
      display: block
    }

    nav.scrolled .nav-logo .logo-dark {
      display: block
    }

    nav.scrolled .nav-logo .logo-white {
      display: none
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none;
      align-items: center
    }

    .nav-links a {
      text-decoration: none;
      color: rgba(255, 253, 249, .85);
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      transition: color .3s
    }

    nav.scrolled .nav-links a {
      color: var(--charcoal-soft)
    }

    .nav-links a:hover {
      color: var(--clay-light)
    }

    nav.scrolled .nav-links a:hover {
      color: var(--accent)
    }

    .nav-cta {
      background: var(--accent) !important;
      color: var(--white) !important;
      padding: .55rem 1.4rem;
      border-radius: 100px;
      font-weight: 600 !important;
      transition: transform .3s, background .3s !important
    }

    .nav-cta:hover {
      transform: scale(1.04);
      background: var(--accent-light) !important
    }

    .nav-cta-secondary {
      background: transparent !important;
      color: var(--white) !important;
      border: 1px solid rgba(255, 255, 255, 0.4);
      padding: .5rem 1.2rem;
      border-radius: 100px;
      font-weight: 500 !important;
      transition: all .3s !important;
      margin-right: 0.5rem;
    }

    .nav-cta-secondary:hover {
      background: rgba(255, 255, 255, 0.1) !important;
      border-color: var(--white);
      transform: scale(1.04);
    }

    nav.scrolled .nav-cta-secondary {
      color: var(--charcoal) !important;
      border-color: var(--charcoal-soft);
    }

    nav.scrolled .nav-cta-secondary:hover {
      background: var(--charcoal) !important;
      color: var(--white) !important;
    }

    /* Social Icons */
    .social-row {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-icon {
      color: rgba(255, 255, 255, 0.6);
      transition: color 0.3s, transform 0.3s;
    }

    .social-icon:hover {
      color: var(--white);
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      width: 28px;
      height: 20px;
      position: relative;
      z-index: 1001
    }

    .menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--white);
      position: absolute;
      left: 0;
      transition: all .3s
    }

    nav.scrolled .menu-toggle span {
      background: var(--charcoal)
    }

    .menu-toggle span:nth-child(1) {
      top: 0
    }

    .menu-toggle span:nth-child(2) {
      top: 50%;
      transform: translateY(-50%)
    }

    .menu-toggle span:nth-child(3) {
      bottom: 0
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      padding: 0 3rem 6rem;
      position: relative;
      background: linear-gradient(165deg, var(--charcoal) 0%, var(--earth-deep) 40%, var(--earth) 100%);
      overflow: hidden
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 50% at 75% 20%, rgba(184, 92, 56, .15), transparent), radial-gradient(ellipse 60% 80% at 20% 80%, rgba(107, 143, 94, .1), transparent);
      pointer-events: none
    }

    .hero-pattern {
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      opacity: .04;
      background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, var(--clay) 40px, var(--clay) 41px), repeating-linear-gradient(90deg, transparent, transparent 40px, var(--clay) 40px, var(--clay) 41px);
      pointer-events: none
    }

    .hero-content {
      max-width: 780px;
      position: relative;
      z-index: 2;
      animation: heroFadeUp 1.2s ease-out
    }

    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(40px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .hero-tag {
      font-size: .75rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--clay);
      margin-bottom: 1.5rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: .8rem
    }

    .hero-tag::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--clay)
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 5.5vw, 4.8rem);
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 1.5rem;
      letter-spacing: -.02em
    }

    .hero h1 em {
      font-style: italic;
      color: var(--clay-light)
    }

    .hero p {
      font-size: 1.15rem;
      color: rgba(255, 253, 249, .7);
      max-width: 560px;
      line-height: 1.8;
      margin-bottom: 2.5rem
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: 1rem 2.2rem;
      border-radius: 100px;
      font-family: var(--font-body);
      font-size: .9rem;
      font-weight: 600;
      text-decoration: none;
      transition: all .35s;
      cursor: pointer;
      border: none
    }

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

    .btn-primary:hover {
      background: var(--accent-light);
      transform: translateY(-2px)
    }

    .btn-outline {
      background: transparent;
      color: var(--clay-light);
      border: 1.5px solid rgba(196, 168, 130, .4)
    }

    .btn-outline:hover {
      border-color: var(--clay);
      background: rgba(196, 168, 130, .08)
    }

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

    .btn-white:hover {
      background: var(--sand-light);
      transform: translateY(-2px);
    }

    .btn-white-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.4);
    }

    .btn-white-outline:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    .btn-ghost:hover {
      color: var(--white);
      text-decoration: underline;
    }

    .btn-donacion {
      min-width: 220px;
      justify-content: center;
    }

    .link-simple {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
      margin-top: 0.5rem;
      display: inline-block;
    }

    .link-simple:hover {
      color: var(--white);
      text-decoration: underline;
    }

    /* SECTIONS */
    section {
      padding: 6rem 3rem
    }

    .section-tag {
      font-size: .7rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: .8rem
    }

    .section-tag::before {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--accent)
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      line-height: 1.15;
      letter-spacing: -.02em;
      color: var(--charcoal);
      margin-bottom: 1rem
    }

    .section-subtitle {
      font-size: 1rem;
      color: var(--earth);
      max-width: 600px;
      line-height: 1.8
    }

    /* MISSION */
    .mission {
      background: var(--sand-light);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center
    }

    .mission-text p {
      color: var(--charcoal-soft);
      margin-top: 1.2rem;
      font-size: 1rem
    }

    .mission-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem
    }

    .value-card {
      background: var(--white);
      border-radius: 14px;
      padding: 1.5rem;
      border: 1px solid rgba(139, 111, 78, .08);
      transition: all .4s;
      position: relative;
      overflow: hidden
    }

    .value-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--clay);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s
    }

    .value-card:hover::before {
      transform: scaleX(1)
    }

    .value-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(42, 37, 32, .07)
    }

    .value-icon {
      font-size: 1.4rem;
      margin-bottom: .6rem
    }

    .value-card h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      margin-bottom: .3rem;
      color: var(--charcoal)
    }

    .value-card p {
      font-size: .82rem;
      color: var(--earth);
      line-height: 1.6
    }

    /* JUNTA */
    .junta-bar {
      background: var(--sand);
      padding: 1.2rem 3rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
      font-size: .82rem;
      color: var(--earth);
      border-top: 1px solid rgba(139, 111, 78, .08)
    }

    .junta-bar strong {
      color: var(--charcoal);
      font-weight: 600
    }

    .junta-item {
      display: flex;
      align-items: center;
      gap: .4rem
    }

    .junta-item::before {
      content: '·';
      color: var(--clay);
      font-weight: 700
    }

    .junta-item:first-child::before {
      content: '';
      display: none
    }

    /* COMPACT PROJECT CARDS */
    .projects {
      background: var(--white)
    }

    .projects-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
      gap: 1.5rem
    }

    .project-filters {
      display: flex;
      gap: .4rem;
      flex-wrap: wrap
    }

    .filter-btn {
      padding: .4rem 1rem;
      border-radius: 100px;
      border: 1.5px solid var(--clay-light);
      background: transparent;
      font-family: var(--font-body);
      font-size: .75rem;
      font-weight: 500;
      color: var(--earth);
      cursor: pointer;
      transition: all .3s
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--charcoal);
      color: var(--white);
      border-color: var(--charcoal)
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem
    }

    .project-card {
      border-radius: 12px;
      overflow: hidden;
      background: var(--sand-light);
      border: 1px solid rgba(139, 111, 78, .06);
      transition: all .4s;
      position: relative
    }

    .project-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(42, 37, 32, .08)
    }

    .project-card-body {
      padding: 1rem 1.1rem
    }

    .project-location {
      font-size: .6rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: .2rem
    }

    .project-card h3 {
      font-family: var(--font-display);
      font-size: .88rem;
      color: var(--charcoal);
      margin-bottom: .3rem;
      line-height: 1.25
    }

    .project-card p {
      font-size: .75rem;
      color: var(--earth);
      line-height: 1.55
    }

    .project-year-badge {
      position: absolute;
      top: .6rem;
      right: .6rem;
      font-size: .6rem;
      font-weight: 700;
      background: rgba(42, 37, 32, .7);
      color: var(--white);
      padding: .15rem .5rem;
      border-radius: 100px;
      letter-spacing: .04em
    }

    .project-cat-stripe {
      height: 4px;
      width: 100%
    }

    .cat-sanidad {
      background: linear-gradient(90deg, var(--accent), var(--accent-light))
    }

    .cat-educacion {
      background: linear-gradient(90deg, var(--green), #8BAF7E)
    }

    .cat-infraestructuras {
      background: linear-gradient(90deg, var(--blue-muted), #9BB8C8)
    }

    .cat-rehabilitacion {
      background: linear-gradient(90deg, var(--clay), var(--clay-light))
    }

    /* ACTIVITIES COMPACT */
    .activities {
      background: var(--sand-light)
    }

    .act-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: .8rem;
      margin-top: 2rem
    }

    .act-card {
      padding: .9rem 1.1rem;
      background: var(--white);
      border-radius: 10px;
      border: 1px solid rgba(139, 111, 78, .06);
      transition: all .35s
    }

    .act-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(42, 37, 32, .05)
    }

    .act-card h4 {
      font-family: var(--font-display);
      font-size: .85rem;
      color: var(--charcoal);
      margin-bottom: .2rem;
      line-height: 1.3
    }

    .act-card p {
      font-size: .72rem;
      color: var(--earth);
      line-height: 1.5
    }

    .act-type {
      font-size: .58rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 600;
      margin-bottom: .2rem;
      display: inline-block;
      padding: .1rem .5rem;
      border-radius: 100px
    }

    .type-charla {
      background: rgba(184, 92, 56, .1);
      color: var(--accent)
    }

    .type-taller {
      background: rgba(107, 143, 94, .12);
      color: var(--green)
    }

    .type-expo {
      background: rgba(122, 155, 174, .12);
      color: var(--blue-muted)
    }

    .type-evento {
      background: rgba(196, 168, 130, .2);
      color: var(--earth)
    }

    .type-formacion {
      background: rgba(92, 74, 51, .1);
      color: var(--earth-deep)
    }

    /* PROPOSE */
    .propose {
      background: var(--charcoal);
      color: var(--white);
      position: relative;
      overflow: hidden
    }

    .propose::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(184, 92, 56, .08), transparent 70%)
    }

    .propose .section-tag {
      color: var(--clay)
    }

    .propose .section-tag::before {
      background: var(--clay)
    }

    .propose .section-title {
      color: var(--white)
    }

    .propose-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-top: 2.5rem;
      position: relative;
      z-index: 1
    }

    .propose-content p {
      color: rgba(255, 253, 249, .7);
      line-height: 1.8;
      margin-bottom: 1rem
    }

    .propose-steps {
      display: flex;
      flex-direction: column;
      gap: 1.2rem
    }

    .propose-step {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.2rem;
      background: rgba(255, 253, 249, .04);
      border: 1px solid rgba(255, 253, 249, .06);
      border-radius: 12px;
      transition: all .4s
    }

    .propose-step:hover {
      background: rgba(255, 253, 249, .08)
    }

    .propose-step-num {
      font-family: var(--font-display);
      font-size: 1.8rem;
      color: var(--clay);
      line-height: 1;
      min-width: 32px
    }

    .propose-step h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      color: var(--white);
      margin-bottom: .2rem
    }

    .propose-step p {
      font-size: .82rem;
      color: rgba(255, 253, 249, .5);
      line-height: 1.5;
      margin: 0
    }

    /* METHODOLOGY */
    .methodology {
      background: var(--white)
    }

    .method-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem
    }

    .method-step {
      padding: 2rem;
      border-radius: 14px;
      background: var(--sand-light);
      border: 1px solid rgba(139, 111, 78, .06);
      transition: all .4s
    }

    .method-step:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(42, 37, 32, .06)
    }

    .method-num {
      font-family: var(--font-display);
      font-size: 3.5rem;
      color: var(--clay-light);
      line-height: 1;
      margin-bottom: .8rem;
      opacity: .5
    }

    .method-step h4 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      margin-bottom: .6rem;
      color: var(--charcoal)
    }

    .method-step p {
      font-size: .88rem;
      color: var(--earth);
      line-height: 1.7
    }

    /* PARTNERS */
    .partners {
      background: var(--sand-light);
      text-align: center
    }

    .partners .section-tag {
      justify-content: center
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: .8rem;
      margin-top: 2.5rem;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto
    }

    .partner-pill {
      background: var(--white);
      padding: .8rem;
      border-radius: 10px;
      font-size: .76rem;
      font-weight: 500;
      color: var(--charcoal-soft);
      border: 1px solid rgba(139, 111, 78, .06);
      transition: all .3s;
      text-align: center
    }

    .partner-pill:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(42, 37, 32, .05)
    }

    .partner-pill .partner-loc {
      font-size: .58rem;
      color: var(--earth);
      display: block;
      margin-top: .15rem;
      text-transform: uppercase;
      letter-spacing: .06em
    }

    .institutional-support {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap
    }

    .inst-badge {
      display: flex;
      align-items: center;
      gap: .6rem;
      padding: .6rem 1.2rem;
      background: var(--white);
      border-radius: 100px;
      font-size: .78rem;
      font-weight: 600;
      color: var(--charcoal-soft);
      border: 1px solid rgba(139, 111, 78, .1);
      position: relative;
      text-decoration: none;
      transition: all 0.3s;
    }

    .inst-badge:hover {
      background: var(--sand-light);
      border-color: var(--accent);
      transform: translateY(-2px);
    }

    /* Custom Tooltip */
    .inst-badge::after {
      content: attr(title);
      position: absolute;
      bottom: 110%;
      left: 50%;
      transform: translateX(-50%) scale(0.8);
      background: var(--charcoal);
      color: var(--white);
      padding: 0.5rem 1rem;
      border-radius: 4px;
      font-size: 0.75rem;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: all 0.2s ease;
      pointer-events: none;
      z-index: 10;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .inst-badge:hover::after {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) scale(1);
    }

    .inst-badge .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent)
    }

    /* MAP */
    .map-section {
      background: var(--charcoal);
      color: var(--white);
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .map-section .section-tag {
      color: var(--clay);
      justify-content: center
    }

    .map-section .section-tag::before {
      background: var(--clay)
    }

    .map-section .section-title {
      color: var(--white)
    }

    .regions {
      display: flex;
      justify-content: center;
      gap: 4rem;
      margin-top: 2.5rem;
      flex-wrap: wrap
    }

    .region {
      text-align: center;
      max-width: 155px
    }

    .region-name {
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--clay-light);
      margin-bottom: .4rem
    }

    .region-countries {
      font-size: .78rem;
      color: rgba(255, 253, 249, .5);
      line-height: 1.8
    }

    /* CTA */
    .cta {
      background: linear-gradient(165deg, var(--earth-deep), var(--accent) 150%);
      text-align: center;
      padding: 7rem 3rem;
      position: relative;
      overflow: hidden
    }

    .cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 80%, rgba(196, 168, 130, .15), transparent 60%)
    }

    .cta .section-title {
      color: var(--white);
      max-width: 700px;
      margin: 0 auto 1rem
    }

    .cta p {
      color: rgba(255, 253, 249, .75);
      font-size: 1.05rem;
      max-width: 550px;
      margin: 0 auto 2rem;
      line-height: 1.8
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      position: relative;
      z-index: 1
    }

    .btn-white {
      background: var(--white);
      color: var(--charcoal)
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
    }

    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255, 253, 249, .3)
    }

    .btn-ghost:hover {
      border-color: var(--white);
      background: rgba(255, 253, 249, .08)
    }

    /* FOOTER */
    footer {
      background: var(--charcoal);
      color: rgba(255, 253, 249, .5);
      padding: 3rem 3rem 1.5rem
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2.5rem;
      margin-bottom: 2.5rem
    }

    .footer-brand {
      margin-bottom: .8rem
    }

    .footer-brand img {
      height: 32px;
      opacity: .9
    }

    .footer-desc {
      font-size: .82rem;
      line-height: 1.7;
      max-width: 300px
    }

    .footer-col h5 {
      font-size: .65rem;
      text-transform: uppercase;
      letter-spacing: .15em;
      color: var(--clay);
      margin-bottom: 1rem;
      font-weight: 600
    }

    .footer-col a {
      display: block;
      color: rgba(255, 253, 249, .5);
      text-decoration: none;
      font-size: .82rem;
      margin-bottom: .5rem;
      transition: color .3s
    }

    .footer-col a:hover {
      color: var(--clay-light)
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 253, 249, .06);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      font-size: .72rem;
      flex-wrap: wrap;
      gap: 1rem
    }

    .fade-in {
      opacity: 0;
      transform: translateY(25px);
      transition: opacity .6s, transform .6s
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0)
    }

    @media(max-width:1024px) {
      .mission {
        grid-template-columns: 1fr;
        gap: 2.5rem
      }

      .projects-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .propose-grid {
        grid-template-columns: 1fr
      }

      .method-steps {
        grid-template-columns: 1fr
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr
      }

      .partners-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .act-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:768px) {
      section {
        padding: 4rem 1.5rem
      }

      nav {
        padding: .8rem 1.5rem
      }

      .hero {
        padding: 0 1.5rem 3.5rem
      }

      .nav-links {
        display: none
      }

      .menu-toggle {
        display: block
      }

      .projects-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .partners-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .footer-grid {
        grid-template-columns: 1fr
      }

      .regions {
        gap: 2rem
      }

      .mission-values {
        grid-template-columns: 1fr
      }

      .act-grid {
        grid-template-columns: 1fr
      }

      .junta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: .6rem
      }
    }

    /* MEMORIES CAROUSEL */
    .memories {
      background: var(--white);
      overflow: hidden
    }

    .memories-carousel {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      padding: 2rem 3rem 4rem;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none
    }

    .memories-carousel::-webkit-scrollbar {
      display: none
    }

    .memory-card {
      flex: 0 0 300px;
      height: 220px;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 8px 30px rgba(42, 37, 32, .1);
      transition: transform .4s, box-shadow .4s;
      border: 4px solid var(--white)
    }

    .memory-card:hover {
      transform: rotate(2deg) scale(1.05);
      box-shadow: 0 15px 40px rgba(42, 37, 32, .15);
      z-index: 10
    }

    .memory-card:nth-child(even) {
      transform: rotate(-1deg)
    }

    .memory-card:nth-child(even):hover {
      transform: rotate(-3deg) scale(1.05)
    }

    .memory-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s
    }

    .memory-card:hover img {
      transform: scale(1.1)
    }

    .memory-date {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(255, 255, 255, .9);
      padding: 4px 10px;
      border-radius: 100px;
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--earth-deep);
      box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
    }