
  /* ============================================================
     "Amanecer en red" — la esperanza como amanecer sobre el
     huerto compartido. Motivos: el arco (sol que sale), la ronda
     (tomarse de la mano), la faja tejida (unión).
     ============================================================ */
  :root {
    --soil:#2E2418; --soil-2:#5A4C3B; --soil-3:#8A7A64;
    --crema:#F7F0DF; --crema-2:#EFE4CB; --crema-3:#E5D7B8;
    --sol:#D89A32; --sol-deep:#B07E22;
    --barro:#BC5B33; --barro-deep:#96431F;
    --hoja:#3C6B44; --hoja-deep:#24422B;
    --salvia:#93AE97;
    --line:#DCCFAF;
    --ff-serif:'Rude Slab', 'Young Serif', Georgia, serif;
    --ff-it:'Newsreader', Georgia, serif;
    --ff-sans:'Poppins', 'Hanken Grotesk', system-ui, sans-serif;
    --max:1180px;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; }
  body {
    background: var(--crema); color: var(--soil); font-family: var(--ff-sans); font-size: 16.5px;
    font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
  }
  body::before {
    content:""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
    opacity: .05; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  .wrap { max-width: var(--max); margin: 0 auto; padding-inline: 36px; }
  a { color: inherit; text-decoration: none; }
  a:hover, a:focus { text-decoration: none; }
  h1,h2,h3,h4 { font-family: var(--ff-serif); font-weight: 400; margin: 0; color: inherit; letter-spacing: -.01em; }
  .it { font-family: var(--ff-it); font-style: italic; font-weight: 500; }
  .over { font-family: var(--ff-sans); font-weight: 700; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--barro); }

  /* seed glyph */
  .seed { display: inline-block; width: 9px; height: 13px; background: var(--sol);
    border-radius: 100% 4px 100% 4px; transform: rotate(40deg); flex: none; }
  .seed.hoja { background: var(--hoja); } .seed.barro { background: var(--barro); }

  /* woven sash divider */
  .sash { height: 14px; border-block: 1.5px solid var(--soil);
    background: repeating-linear-gradient(-55deg,
      var(--hoja) 0 16px, var(--crema) 16px 20px,
      var(--sol) 20px 36px, var(--crema) 36px 40px,
      var(--barro) 40px 56px, var(--crema) 56px 60px); }

  /* ---------- BUTTONS ---------- */
  .btn { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; font-family: var(--ff-sans);
    font-weight: 700; font-size: 15px; line-height: 1; padding: 15px 26px; border: 1.5px solid transparent;
    border-radius: 12px; transition: background .2s, color .2s, transform .12s; white-space: nowrap; }
  .btn:active { transform: translateY(1px); }
  .btn-hoja { background: var(--hoja); color: var(--crema); }
  .btn-hoja:hover { background: var(--hoja-deep); }
  .btn-line { background: transparent; color: var(--soil); border-color: var(--soil); }
  .btn-line:hover { background: var(--soil); color: var(--crema); }
  .btn-sol { background: var(--sol); color: var(--soil); }
  .btn-sol:hover { background: var(--sol-deep); color: var(--crema); }
  .btn-crema { background: var(--crema); color: var(--barro-deep); }
  .btn-crema:hover { background: var(--crema-3); }

  /* ---------- NAV ---------- */
  .nav { position: sticky; top: 0; z-index: 60; background: color-mix(in srgb, var(--crema) 92%, transparent); backdrop-filter: blur(8px); border-bottom: 1.5px solid var(--soil); }
  .nav .wrap { display: flex; align-items: center; gap: 24px; height: 72px; }
  .brand { display: flex; align-items: center; gap: 12px; flex: none; }
  .brand img { height: 44px; width: auto; display: block; }
  .brand .wm { font-family: var(--ff-serif); line-height: 1.02; color: var(--soil); font-size: 13.5px; max-width: 155px; }
  .nav menu { display: flex; gap: 2px; margin: 0 auto 0 10px; padding: 0; list-style: none; align-items: center; }
  .nav menu a { font-size: 14px; font-weight: 600; color: var(--soil-2); padding: 8px 10px; transition: color .2s; white-space: nowrap; }
  .nav menu a:hover, .nav menu a.active { color: var(--barro); }
  @media (max-width: 1500px){
    .nav menu a { font-size: 13px; padding: 8px 7px; }
    .nav .brand .wm { display: none; }
    .nav .sesion { display: none; }
  }
  .nav .drop { position: relative; }
  .nav .drop > .drop-label::after { content:" ▾"; font-size: 11px; color: var(--soil-3); }
  .nav .drop-label { font-size: 14px; font-weight: 600; color: var(--soil-2); padding: 8px 10px; white-space: nowrap; cursor: default; display: inline-block; }
  .nav .drop-label.active { color: var(--barro); }
  .nav .drop-panel { position: absolute; top: 100%; left: 0; min-width: 210px; background: var(--crema); border: 1.5px solid var(--soil); box-shadow: 6px 8px 0 rgba(46,36,24,.12); padding: 8px 0; display: none; z-index: 80; }
  .drop-toggle { display: none; }
  @media (min-width: 1181px){
    .nav .drop:hover .drop-panel, .nav .drop:focus-within .drop-panel { display: block; }
  }
  .nav .drop-panel a { display: block; padding: 9px 18px; font-size: 14px; }
  .nav .drop-panel a:hover { background: var(--crema-2); color: var(--barro); }
  .nav .sesion { font-size: 13.5px; font-weight: 600; color: var(--soil-3); margin-right: 4px; white-space: nowrap; }
  .nav .sesion:hover { color: var(--barro); }
  .nav-burger { display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
    width: 44px; height: 44px; margin-left: auto; flex: none; border: 1.5px solid var(--soil); border-radius: 10px;
    background: transparent; cursor: pointer; padding: 0; }
  .nav-burger span { display: block; width: 20px; height: 1.5px; background: var(--soil); transition: transform .25s, opacity .2s; }
  .nav.nav-open .nav-burger span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
  .nav.nav-open .nav-burger span:nth-child(2){ opacity: 0; }
  .nav.nav-open .nav-burger span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }
  @media (max-width: 1180px){
    .nav .wrap { flex-wrap: wrap; }
    .nav-burger { display: flex; }
    .nav menu, .nav .sesion, .nav .btn.btn-hoja { display: none; }
    .nav.nav-open .wrap { height: auto; padding-bottom: 18px; }
    .nav.nav-open menu { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%;
      order: 10; padding-top: 14px; border-top: 1px solid var(--line); margin-top: 14px; }
    .nav.nav-open menu a { padding: 14px 10px; font-size: 19px; }
    .nav.nav-open .sesion { display: block; width: 100%; order: 11; text-align: center; padding: 14px 0 4px; font-size: 16px; }
    .nav.nav-open .btn.btn-hoja { display: inline-flex; order: 12; width: calc(100% - 8px); max-width: 320px;
      justify-content: center; margin: 12px auto 0; font-size: 17px; padding: 17px 26px; }
    .nav.nav-open menu .drop { display: block; width: 100%; text-align: center; }
    .nav.nav-open .drop-label { padding: 14px 10px; font-size: 19px; display: inline; }
    .nav.nav-open .drop > .drop-label::after { display: none; }
    .nav.nav-open .drop-toggle { display: inline-flex; align-items: center; justify-content: center; vertical-align: middle;
      width: 32px; height: 32px; margin-left: 8px; border: 1.5px solid var(--soil); border-radius: 8px; background: transparent;
      color: var(--soil); font-size: 15px; line-height: 1; cursor: pointer; padding: 0; transition: transform .2s; flex: none; }
    .nav.nav-open .drop.sub-open .drop-toggle { transform: rotate(90deg); }
    .nav .drop-panel { position: static; border: none; box-shadow: none; padding: 4px 0 4px; background: transparent; min-width: 0; display: none; }
    .nav.nav-open .drop.sub-open .drop-panel { display: block; }
    .nav.nav-open .drop-panel a { padding: 10px 0; font-size: 16px; color: var(--soil-3); text-align: center; }
  }

  /* ---------- HERO — pliego de almanaque, recortes pegados ---------- */
  .hero { position: relative; overflow: visible; border-bottom: 1.5px solid var(--soil);
    min-height: calc(100vh - 74px); min-height: calc(100svh - 74px); display: grid; place-items: start center;
    background: linear-gradient(180deg, var(--crema) 0%, #F4E8C8 90%); }
  /* La capa decorativa conserva las ilustraciones dentro del primer viewport,
     aunque el contenido haga crecer el hero. */
  .hero-deco-layer { position: absolute; top: 0; left: 0; right: 0; height: calc(100vh - 74px); height: calc(100svh - 74px);
    overflow: hidden; pointer-events: none; z-index: 1; }
  .pliego { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; text-align: center; padding: 26px 36px 84px; }
  .filete { display: flex; align-items: center; justify-content: center; gap: 14px; }
  .filete::before, .filete::after { content:""; height: 1.5px; background: var(--soil); flex: 1; max-width: 190px; }
  .filete .seed { width: 8px; height: 12px; }
  .kicker { font-weight: 700; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--soil-2); margin: 0; }
  .kicker b { color: var(--barro); }
  .alma-t1 { display: block; font-family: var(--ff-serif); font-size: clamp(44px, 6.6vw, 96px); line-height: 1; letter-spacing: .01em; text-transform: uppercase; color: var(--soil); margin-top: 34px; }
  .alma-t2 { display: block; font-family: var(--ff-it); font-style: italic; font-weight: 400; font-size: clamp(36px, 5.2vw, 74px); line-height: 1; color: var(--barro); margin-top: 6px; }
  .alma-lead { font-size: 19px; line-height: 1.62; color: var(--soil-2); max-width: 52ch; margin: 30px auto 0; }
  .alma-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
  .alma-pie { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 52px; font-family: var(--ff-serif); font-size: clamp(15px, 1.6vw, 19px); color: var(--soil); flex-wrap: wrap; }
  .alma-pie .seed { width: 8px; height: 12px; }
  /* recortes pegados */
  .recorte { position: absolute; z-index: 3; border: 1.5px solid var(--soil); box-shadow: 0 0 0 8px #FDFBF3, 0 0 0 9.5px var(--line), 10px 14px 26px rgba(46,36,24,.16); overflow: hidden; aspect-ratio: 4 / 3.4; }
  .recorte img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .recorte::after { content:""; position: absolute; left: 50%; top: -22px; width: 92px; height: 30px; transform: translateX(-50%) rotate(-3deg); background: rgba(216,154,50,.4); border-inline: 1px dashed rgba(46,36,24,.25); backdrop-filter: blur(1px); }
  .recorte .pieimg { position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 12px; font-family: var(--ff-it); font-style: italic; font-size: 12.5px; color: var(--crema); background: linear-gradient(180deg, transparent, rgba(46,36,24,.72)); text-align: left; }
  .hero-logo { display: block; height: clamp(130px, 17vw, 270px); width: auto; margin: 20px auto 0; }
  .hero-deco { position: absolute; z-index: 1; pointer-events: auto; }
  .hero-deco .generico { width: 100%; height: 100%; }
  .hero-deco.hd1 { left: 0.5%;  width: clamp(150px, 15vw, 232px); aspect-ratio: 4 / 3.4; bottom: 34px; rotate: -5deg; }
  .hero-deco.hd2 { left: 20%;   width: clamp(150px, 15vw, 238px); aspect-ratio: 4 / 3.4; bottom: 64px; rotate: 4deg; }
  .hero-deco.hd3 { left: 39.5%; width: clamp(160px, 16vw, 252px); aspect-ratio: 4 / 3.4; bottom: 24px; rotate: -3deg; }
  .hero-deco.hd4 { left: 60%;   width: clamp(150px, 15vw, 238px); aspect-ratio: 4 / 3.4; bottom: 56px; rotate: 5deg; }
  .hero-deco.hd5 { right: 0.5%; width: clamp(150px, 15vw, 232px); aspect-ratio: 4 / 3.4; bottom: 30px; rotate: -4deg; }
  @media (prefers-reduced-motion: no-preference){
    .hero-logo, .hero-deco, .hero .filete, .hero .alma-pie, .hero .alma-lead {
      transition: translate 1.5s cubic-bezier(.2,.85,.25,1); will-change: translate; }
    .hero:not(.loaded) .hero-logo,
    .hero:not(.loaded) .hero-deco,
    .hero:not(.loaded) .filete,
    .hero:not(.loaded) .alma-pie,
    .hero:not(.loaded) .alma-lead { translate: 0 112vh; }
    .hero.loaded .filete { transition-delay: 0s; }
    .hero.loaded .alma-pie { transition-delay: .08s; }
    .hero.loaded .hero-logo { transition-delay: .18s; }
    .hero.loaded .alma-lead { transition-delay: .3s; }
    .hero.loaded .hd1 { transition-delay: .5s; }
    .hero.loaded .hd2 { transition-delay: .62s; }
    .hero.loaded .hd3 { transition-delay: .74s; }
    .hero.loaded .hd4 { transition-delay: .86s; }
    .hero.loaded .hd5 { transition-delay: .98s; }
  }
  @media (max-width: 1180px){
    .pliego { padding: 16px 20px 24px; }
    .hero-logo { height: clamp(180px, 42vw, 260px); margin-top: 14px; }
    .alma-lead { font-size: 15px; line-height: 1.55; margin-top: 16px; max-width: 34ch; }
    .alma-pie { gap: 10px; margin-top: 18px; font-size: 14px; }
    .hero-deco { display: block; }
    .hero-deco.hd1 { left: 1%;   right: auto; top: auto; bottom: 4px;  width: clamp(100px, 34vw, 148px); rotate: -8deg; z-index: 2; }
    .hero-deco.hd2 { left: 24%;  right: auto; top: auto; bottom: 26px; width: clamp(92px, 30vw, 132px);  rotate: 6deg;  z-index: 4; }
    .hero-deco.hd3 { left: 45%;  right: auto; top: auto; bottom: -4px; width: clamp(104px, 36vw, 156px); rotate: -3deg; z-index: 5; }
    .hero-deco.hd4 { left: auto; right: 20%;  top: auto; bottom: 20px; width: clamp(92px, 30vw, 132px);  rotate: 5deg;  z-index: 3; }
    .hero-deco.hd5 { left: auto; right: 1%;   top: auto; bottom: 2px;  width: clamp(100px, 34vw, 148px); rotate: -5deg; z-index: 1; }
  }

  /* ---------- ARCADE (mural de huertos) ---------- */
  .arcade { background: var(--crema-2); border-bottom: 1.5px solid var(--soil); }
  .arcade .wrap { padding-block: 64px 56px; }
  .arcade .head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
  .arcade h2 { font-size: clamp(26px, 3vw, 40px); }
  .arcade .head p { font-size: 17px; color: var(--soil-2); max-width: 40ch; margin: 0; }
  .arches { display: flex; align-items: flex-end; border-bottom: 1.5px solid var(--soil); padding-bottom: 0; clip-path: inset(-600px -100vw 0 -100vw); position: relative; }
  .hoja-rot { translate: 0 var(--emerge, 0%); }
  .verdura { display: block; width: auto; margin: 0 auto; }
  .v-zanahoria { height: 232px; } .v-betabel { height: 238px; } .v-kale { height: 212px; } .v-elote { height: 254px; }
  .acento { position: absolute; bottom: 0; z-index: 7; translate: 0 var(--emerge, 0%); transform-origin: 50% 100%; }
  .acento.ac1 { left: 15%; height: 122px; transform: rotate(-5deg); }
  .acento.ac2 { left: 39%; height: 116px; transform: rotate(4deg); }
  .acento.ac3 { left: 62%; height: 98px; transform: rotate(-7deg); }
  .acento.ac4 { left: 83%; height: 86px; transform: rotate(6deg); }
  .verdura [stroke], .verdura path, .verdura circle, .verdura ellipse { stroke: var(--soil); stroke-width: 1.5; vector-effect: non-scaling-stroke; }
  .verdura .sintrazo { stroke: none; }
  @media (prefers-reduced-motion: no-preference){
    .verdura, .acento { transition: transform .55s cubic-bezier(.34, 1.3, .64, 1); }
    .verdura { transform-origin: 50% 100%; }
    .hoja-wrap:hover .verdura { transform: scale(1.06); }
    .acento:hover { transform: scale(1.08) !important; }
  }
  .hoja-wrap:nth-child(10){ z-index: 6; } .hoja-wrap:nth-child(11){ z-index: 4; }
  .hoja-wrap:nth-child(10) .hoja-rot { transform: rotate(-9deg); }
  .hoja-wrap:nth-child(11) .hoja-rot { transform: rotate(6deg); }
  .hoja-wrap { flex: 1 1 0; min-width: 0; position: relative; }
  .hoja-wrap + .hoja-wrap { margin-left: -62px; }
  .hoja-wrap.deco { flex: .78 1 0; }
  .hoja-wrap:nth-child(10){ flex: 1.05 1 0; }
  .hoja-wrap:nth-child(1){ z-index: 1; } .hoja-wrap:nth-child(2){ z-index: 4; }
  .hoja-wrap:nth-child(3){ z-index: 2; } .hoja-wrap:nth-child(4){ z-index: 5; }
  .hoja-wrap:nth-child(5){ z-index: 3; } .hoja-wrap:nth-child(6){ z-index: 1; }
  .hoja-wrap:nth-child(7){ z-index: 4; } .hoja-wrap:nth-child(8){ z-index: 2; }
  .hoja-wrap:nth-child(9){ z-index: 3; }
  .hoja-rot { transform-origin: 50% 100%; }
  .hoja-wrap:nth-child(1) .hoja-rot { transform: rotate(-14deg); }
  .hoja-wrap:nth-child(2) .hoja-rot { transform: rotate(-6.5deg); }
  .hoja-wrap:nth-child(3) .hoja-rot { transform: rotate(5deg); }
  .hoja-wrap:nth-child(4) .hoja-rot { transform: rotate(-1.5deg); }
  .hoja-wrap:nth-child(5) .hoja-rot { transform: rotate(7deg); }
  .hoja-wrap:nth-child(6) .hoja-rot { transform: rotate(16deg); }
  .hoja-wrap:nth-child(7) .hoja-rot { transform: rotate(-8deg); }
  .hoja-wrap:nth-child(8) .hoja-rot { transform: rotate(4.5deg); }
  .hoja-wrap:nth-child(9) .hoja-rot { transform: rotate(11deg); }
  .archita { position: relative; overflow: hidden; background: var(--crema-3);
    clip-path: url(#leafClip); transform-origin: 50% 100%; }
  @media (prefers-reduced-motion: no-preference){
    .archita { transition: transform .55s cubic-bezier(.34, 1.3, .64, 1); }
    .hoja-wrap:hover .archita { transform: scale(1.07); }
  }
  .archita .contorno { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; pointer-events: none; }
  .archita .contorno path { fill: none; stroke: var(--soil); stroke-width: 1.5; vector-effect: non-scaling-stroke; }
  .archita .contorno .vena { stroke: rgba(46,36,24,.3); }
  .archita.quote .contorno .vena { stroke: rgba(247,240,223,.45); }
  .tallo { display: block; width: 30px; height: 30px; margin: -2px auto 0; }
  .tallo path { fill: none; stroke: var(--soil); stroke-width: 1.5; }
  .archita image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
  .generico { position: relative; overflow: hidden; background: var(--crema-3); border: 1.5px solid var(--soil); border-radius: 18px; box-shadow: 10px 14px 26px rgba(46,36,24,.14); transform-origin: 50% 100%; }
  @media (prefers-reduced-motion: no-preference){ .generico { transition: transform .55s cubic-bezier(.34, 1.3, .64, 1); } .hoja-wrap:hover .generico { transform: scale(1.05); } }
  .generico image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
  .generico.g1 { height: 260px; } .generico.g2 { height: 230px; } .generico.g3 { height: 270px; }
  .generico.g4 { height: 220px; } .generico.g5 { height: 250px; } .generico.g6 { height: 240px; }
  .archita.a1 { height: 264px; } .archita.a2 { height: 220px; } .archita.a3 { height: 260px; }
  .archita.a4 { height: 210px; } .archita.a5 { height: 252px; }
  .archita.a6 { height: 230px; } .archita.a7 { height: 214px; }
  .archita.d1 { height: 166px; background: var(--salvia); }
  .archita.d2 { height: 148px; background: var(--sol); }
  .archita.deco-leaf .contorno .vena { stroke: rgba(46,36,24,.28); }
  .archita.quote { background: var(--hoja-deep); display: flex; align-items: center; justify-content: center; text-align: center; padding: 30px 34px; }
  .archita.quote p { position: relative; z-index: 4; }
  .archita.quote p { font-family: var(--ff-serif); color: var(--crema); font-size: 21px; line-height: 1.22; margin: 0; }
  .archita.quote p .it { color: var(--sol); }
  .arcade .ground { display: flex; justify-content: space-between; padding-top: 14px; font-size: 12.5px; color: var(--soil-3); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
  @media (max-width: 720px){
    .arches { flex-direction: column; align-items: center; }
    .hoja-wrap { flex: none; width: min(92%, 350px); }
    .hoja-wrap.deco, .acento { display: none; }
    .hoja-wrap + .hoja-wrap { margin-left: 0; margin-top: -96px; }
    /* earlier leaves sit ON TOP of the following one so each bottom label stays readable */
    .hoja-wrap:nth-child(1){ z-index: 9; } .hoja-wrap:nth-child(2){ z-index: 8; }
    .hoja-wrap:nth-child(3){ z-index: 7; } .hoja-wrap:nth-child(4){ z-index: 10; }
    .hoja-wrap:nth-child(5){ z-index: 6; } .hoja-wrap:nth-child(6){ z-index: 5; }
    .hoja-wrap:nth-child(7){ z-index: 4; } .hoja-wrap:nth-child(8){ z-index: 3; }
    .hoja-wrap:nth-child(9){ z-index: 2; }
    .hoja-wrap:nth-child(n) .hoja-rot { transform: none; }
    .hoja-wrap:nth-child(odd) .hoja-rot { transform: rotate(-4deg); }
    .hoja-wrap:nth-child(even) .hoja-rot { transform: rotate(4deg); }
    .hoja-wrap:nth-child(odd){ transform: translateX(-9%); }
    .hoja-wrap:nth-child(even){ transform: translateX(9%); }
    .hoja-wrap.qw { order: -1; transform: none; }
    .archita, .generico { height: 258px !important; }
    .hoja-wrap { display: flex; flex-direction: column; align-items: center; }
    .hoja-wrap .hoja-rot { width: 100%; }
  }

  /* ---------- MANIFESTO ---------- */
  .manifesto { background: var(--soil); color: var(--crema); }
  .manifesto .wrap { padding: 96px 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .manifesto .over { color: var(--sol); }
  .manifesto h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; margin: 20px 0 0; }
  .manifesto h2 .it { color: var(--sol); }
  .manifesto .body { padding-top: 10px; }
  .manifesto .body .pre { font-family: var(--ff-it); font-style: italic; font-size: 22px; color: var(--crema); line-height: 1.42; margin: 0 0 22px; }
  .manifesto .body p { font-size: 18.5px; line-height: 1.68; color: rgba(247,240,223,.78); margin: 0 0 18px; }
  .manifesto .body p:last-child { margin: 0; }
  @media (max-width: 880px){ .manifesto .wrap { grid-template-columns: 1fr; gap: 30px; } }

  /* ---------- BANCALES (qué circula) ---------- */
  section.block { padding: 92px 0; }
  .sechead-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 52px; flex-wrap: wrap; }
  .sechead { font-size: clamp(28px, 3.2vw, 42px); line-height: 1.06; max-width: 20ch; }
  .sechead-row .over { margin-bottom: 16px; display: block; }
  .secsub { font-size: 17.5px; color: var(--soil-2); max-width: 38ch; line-height: 1.6; margin: 0; }
  .bancales { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
  .bancal { position: relative; border: 1.5px solid var(--soil); border-radius: 20px; padding: 30px 28px 28px; overflow: hidden; }
  .bancal.b1 { background: #F3E2B9; } .bancal.b2 { background: #E3EBDD; } .bancal.b3 { background: #F1DAC8; }
  .bancal .num { position: absolute; top: -18px; right: 14px; font-family: var(--ff-serif); font-size: 130px; line-height: 1; color: rgba(46,36,24,.09); pointer-events: none; }
  .bancal .hojaimg { display: block; width: 98px; height: 120px; border: 1.5px solid var(--soil); border-radius: 110px 110px 110px 16px; overflow: hidden; margin-bottom: 22px; background: var(--crema); box-shadow: 0 0 0 5px rgba(247,240,223,.55); }
  .bancal.b2 .hojaimg { border-radius: 110px 110px 16px 110px; }
  .bancal .hojaimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .bancal h3 { font-size: 27px; margin: 0 0 12px; }
  .bancal p { font-size: 17px; line-height: 1.62; color: var(--soil-2); margin: 0; }
  .bancal .eti { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; font-weight: 700; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; }
  .bancal.b1 .eti { color: var(--sol-deep); } .bancal.b2 .eti { color: var(--hoja-deep); } .bancal.b3 .eti { color: var(--barro-deep); }
  .bancal .eti .seed { width: 8px; height: 12px; }
  .bancal.b1 .eti .seed { background: var(--sol-deep); } .bancal.b2 .eti .seed { background: var(--hoja); } .bancal.b3 .eti .seed { background: var(--barro); }
  @media (max-width: 860px){ .bancales { grid-template-columns: 1fr; } }

  /* ---------- CANTO (lema marquee) ---------- */
  .canto { background: var(--hoja); color: var(--crema); border-block: 1.5px solid var(--soil); overflow: hidden; }
  .canto .track { display: flex; align-items: center; white-space: nowrap; width: max-content; }
  @media (prefers-reduced-motion: no-preference){ .canto .track { animation: slide 34s linear infinite; } }
  @keyframes slide { to { transform: translateX(-50%); } }
  .canto span.w { font-family: var(--ff-serif); font-size: 26px; padding: 20px 0; }
  .canto .seed { margin: 0 26px; background: var(--sol); }

  /* ---------- TERRITORIO ---------- */
  .guirnalda .coda { font-family: var(--ff-it); font-style: italic; font-size: 19px; color: var(--soil-3); }

  /* ---------- MAPA ---------- */
  .mapa-panel { position: relative; margin-top: 52px; border: 1.5px solid var(--soil); border-radius: 20px; overflow: hidden; background: var(--crema-2); }
  #mapa { height: 470px; font-family: var(--ff-sans); }
  #mapa .leaflet-tile-pane { filter: sepia(.3) saturate(.82) contrast(.96); }
  .mapa-cap { position: absolute; z-index: 800; left: 14px; top: 13px; background: var(--crema); border: 1.5px solid var(--soil); border-radius: 999px; padding: 8px 16px; font-weight: 700; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--soil); pointer-events: none; }
  .marker-dot { display: grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--soil); box-shadow: 0 0 0 3px rgba(247,240,223,.9); }
  .cluster-circulo { display: grid; place-items: center; width: 100%; height: 100%; border-radius: 50%; background: var(--crema); border: 1.5px solid var(--soil); box-shadow: 0 0 0 4px rgba(216,154,50,.35); font-family: var(--ff-serif); font-size: 15px; color: var(--soil); }
  #mapa .leaflet-popup-content-wrapper { background: var(--crema); color: var(--soil); border: 1.5px solid var(--soil); border-radius: 12px; box-shadow: 0 10px 24px rgba(46,36,24,.18); }
  #mapa .leaflet-popup-content { font-family: var(--ff-sans); font-size: 13.5px; line-height: 1.45; margin: 12px 16px; }
  #mapa .leaflet-popup-content b { font-family: var(--ff-serif); font-weight: 400; font-size: 16px; display: block; margin-bottom: 2px; }
  #mapa .leaflet-popup-tip { background: var(--crema); }
  #mapa .leaflet-control-attribution { background: rgba(247,240,223,.8); color: var(--soil-3); font-size: 10px; }
  /* Popup con thumbnail del huerto (mismo estilo que el panel). */
  .hoja-pin svg { filter: drop-shadow(0 2px 3px rgba(46,36,24,.35)); }
  #mapa .mapa-popup-wrap .leaflet-popup-content-wrapper { padding: 0; overflow: hidden; }
  #mapa .mapa-popup-wrap .leaflet-popup-content { margin: 0; }
  .mapa-popup { background: var(--crema); }
  .mapa-popup-foto { width: 100%; height: 118px; object-fit: cover; display: block; }
  .mapa-popup-cuerpo { padding: 12px 15px 14px; }
  .mapa-popup-cuerpo b { font-family: var(--ff-serif); font-weight: 400; font-size: 16px; display: block; margin-bottom: 2px; }
  .mapa-popup-cuerpo span { font-size: 12.5px; color: var(--soil-3); }
  /* Iconos de sitio web y redes públicas del huerto (popup del mapa y cards) */
  .huerto-enlaces-pub { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
  .huerto-enlaces-pub a { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--crema-2); border: 1.5px solid var(--soil); color: var(--soil); transition: background .15s, color .15s; }
  .huerto-enlaces-pub a:hover { background: var(--hoja); border-color: var(--hoja); color: var(--crema); }
  .mapa-popup-cuerpo .huerto-enlaces-pub { margin-top: 9px; }

  /* ---------- VOCES ---------- */
  .voces-sec { background: var(--crema-2); border-block: 1.5px solid var(--soil); }
  .voces { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .voz { background: var(--crema); border: 1.5px solid var(--soil); border-radius: 14px; padding: 30px 26px 26px; display: flex; flex-direction: column; gap: 20px; position: relative; }
  .voz::before { content:"“"; position: absolute; top: -26px; left: 20px; font-family: var(--ff-serif); font-size: 74px; line-height: 1; color: var(--sol); }
  .voz p { font-family: var(--ff-it); font-style: italic; font-size: 19px; line-height: 1.44; margin: 10px 0 0; color: var(--soil); }
  .voz .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
  .voz .who .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--ff-sans); font-weight: 700; color: var(--crema); font-size: 14px; flex: none; border: 1.5px solid var(--soil); }
  .voz .who b { display: block; font-size: 15px; font-weight: 700; }
  .voz .who span { font-size: 13.5px; color: var(--soil-3); }
  @media (max-width: 860px){ .voces { grid-template-columns: 1fr; } }

  /* ---------- NOTICIAS ---------- */
  .noticias-sec { background: var(--crema-2); border-block: 1.5px solid var(--soil); }
  .noti-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .noti { background: var(--crema); border: 1.5px solid var(--soil); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s; }
  .noti .noti-img { height: 150px; background: var(--crema-3); border-bottom: 1.5px solid var(--soil); position: relative; }
  .noti .noti-img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
  /* Sin portada: se muestra el logo de la RIHE centrado (no se recorta). */
  .noti .noti-img-logo { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--crema-3); padding: 24px; }
  .noti .noti-img-logo img { max-width: 60%; max-height: 62%; opacity: .8; }
  .noti .cuerpo { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .noti .meta { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .noti .meta .fecha { font-family: var(--ff-serif); color: var(--barro); letter-spacing: .02em; text-transform: none; font-size: 13.5px; }
  .noti .meta .tipo { color: var(--crema); padding: 3px 9px; border-radius: 6px; }
  .noti h3 { font-size: 20px; line-height: 1.2; margin: 0; }
  .noti p { font-size: 16px; line-height: 1.55; color: var(--soil-2); margin: 0; }
  .noti .leer { margin-top: auto; font-weight: 700; font-size: 15px; color: var(--barro); }
  .noti:hover { transform: translateY(-3px); }
  .ver-todo { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
  @media (max-width: 860px){ .noti-grid { grid-template-columns: 1fr; } }
  .split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; border-top: 1.5px solid var(--soil); }
  .split .left { padding: 40px 40px 10px 0; border-right: 1.5px solid var(--line); }
  .split .right { padding: 40px 0 10px 40px; }
  .res { display: flex; align-items: center; gap: 16px; padding: 19px 6px; border-bottom: 1px solid var(--line); transition: background .2s; cursor: pointer; }
  .res:hover { background: var(--crema-2); }
  .res .cat { font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--crema); padding: 5px 10px; border-radius: 7px; flex: none; }
  .res .cat.hoja { background: var(--hoja); } .res .cat.sol { background: var(--sol); color: var(--soil); } .res .cat.barro { background: var(--barro); }
  .res h4 { font-family: var(--ff-sans); font-weight: 700; font-size: 16.5px; margin: 0; flex: 1; letter-spacing: 0; }
  .res .meta { font-size: 14px; color: var(--soil-3); flex: none; }
  .res .go { color: var(--barro); font-weight: 700; flex: none; }
  .agitem { padding: 17px 0; border-bottom: 1px solid var(--line); display: flex; gap: 16px; align-items: baseline; }
  .agitem .date { font-family: var(--ff-serif); font-size: 13.5px; color: var(--barro); flex: none; width: 92px; }
  .agitem .ev h5 { font-family: var(--ff-sans); font-weight: 700; font-size: 15.5px; margin: 0 0 3px; }
  .agitem .ev span { font-size: 13px; color: var(--soil-3); }
  @media (max-width: 880px){ .split { grid-template-columns: 1fr; } .split .left { border-right: none; padding: 32px 0 0; } .split .right { padding: 32px 0 0; } }

  /* ---------- CENTRO DE RECURSOS (grid de tarjetas) ---------- */
  .res-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
  .rcard { display: flex; flex-direction: column; gap: 12px; background: var(--crema); border: 1.5px solid var(--soil); border-radius: 16px; padding: 26px 24px; color: inherit; transition: transform .2s, box-shadow .2s; }
  .rcard:hover { transform: translateY(-3px); box-shadow: 8px 12px 0 rgba(46,36,24,.1); }
  .rcard .cat { align-self: flex-start; font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; }
  .rcard h3 { font-size: 18.5px; margin: 0; line-height: 1.25; }
  .rcard p { font-size: 15.5px; color: var(--soil-3); margin: 0; }
  .rcard .leer { margin-top: auto; font-weight: 700; font-size: 13.5px; color: var(--barro); }
  @media (max-width: 860px){ .res-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px){ .res-grid { grid-template-columns: 1fr; } }

  /* ---------- FICHERO (avance de Preguntas y Respuestas) ---------- */
  .fichero .cajon { position: relative; background: linear-gradient(180deg, var(--crema-3) 0%, #DCC89C 100%); border: 1.5px solid var(--soil); border-radius: 22px 22px 10px 10px; padding: 30px 40px 40px; box-shadow: inset 0 3px 0 rgba(255,255,255,.4), inset 0 -18px 30px rgba(46,36,24,.12), 10px 14px 0 rgba(46,36,24,.07); }
  .cajon-tabs { position: absolute; bottom: 100%; left: 44px; right: 44px; display: flex; gap: 22px; flex-wrap: wrap; z-index: 2; }
  .cajon-tabs .tab { font-family: var(--ff-sans); font-weight: 700; font-size: 12.5px; letter-spacing: .03em; padding: 12px 18px; border: 1.5px solid var(--soil); border-bottom: none; border-radius: 9px 9px 0 0; cursor: pointer; opacity: .74; transition: opacity .18s; }
  .cajon-tabs .tab:hover { opacity: .92; }
  .cajon-tabs .tab.on { opacity: 1; }
  .cajon-tabs .tab.t1 { background: var(--sol); color: var(--soil); }
  .cajon-tabs .tab.t2 { background: var(--hoja); color: var(--crema); }
  .cajon-tabs .tab.t3 { background: var(--barro); color: var(--crema); }
  .cajon-tabs .tab.t4 { background: var(--salvia); color: var(--soil); }
  .cajon-body { padding-top: 20px; }
  .cajon-list { list-style: none; margin: 0; padding: 0; display: none; }
  .cajon-list.on { display: block; }
  .cajon-item { display: flex; align-items: baseline; gap: 14px; padding: 17px 6px; border-bottom: 1px solid rgba(46,36,24,.16); }
  .cajon-item:last-child { border-bottom: none; }
  .cajon-item .hoyo-mini { width: 8px; height: 8px; border-radius: 50%; background: var(--crema); border: 1px solid var(--soil-3); flex: none; }
  .cajon-item a { font-family: var(--ff-serif); font-size: 17.5px; line-height: 1.3; color: var(--soil); flex: 1; }
  .cajon-item a:hover { color: var(--barro); }
  .cajon-item .fmeta { font-size: 12.5px; color: var(--soil-3); white-space: nowrap; flex: none; }
  .cajon-cta { display: flex; justify-content: center; padding-top: 22px; }
  @media (max-width: 780px){
    .cajon-tabs { position: static; margin-bottom: 14px; }
    .cajon-item { flex-wrap: wrap; }
    .cajon-item .fmeta { flex-basis: 100%; padding-left: 22px; }
  }
  @media (max-width: 560px){ .cajon-item a { font-size: 16px; } }

  /* ---------- SÚMATE ---------- */
  .sumate { background: var(--barro); color: var(--crema); border-top: 1.5px solid var(--soil); }
  .sumate .wrap { padding: 88px 36px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
  .sumate .over { color: var(--sol); }
  .sumate h2 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.08; margin-top: 16px; }
  .sumate h2 .it { color: var(--sol); }
  .sumate p { font-size: 17.5px; line-height: 1.62; color: rgba(247,240,223,.85); margin: 18px 0 0; max-width: 42ch; }
  .sumate form { display: flex; flex-direction: column; gap: 20px; }
  .sumate label { font-weight: 700; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(247,240,223,.75); }
  .sumate .field { display: flex; flex-direction: column; gap: 8px; }
  .sumate input { padding: 12px 2px; border: none; border-bottom: 1.5px solid rgba(247,240,223,.5); background: transparent; color: var(--crema); font-family: var(--ff-sans); font-size: 16px; outline: none; }
  .sumate input::placeholder { color: rgba(247,240,223,.55); }
  .sumate input:focus { border-color: var(--crema); }
  .sumate .btn { margin-top: 6px; align-self: flex-start; }
  @media (max-width: 860px){ .sumate .wrap { grid-template-columns: 1fr; gap: 34px; } }

  /* ---------- FOOTER ---------- */
  footer { background: var(--soil); color: var(--crema); }
  footer .top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-block: 60px; }
  footer .about { max-width: 380px; }
  footer .about .wm { font-family: var(--ff-serif); font-size: 21px; margin: 0 0 12px; line-height: 1.18; }
  footer .about p { color: rgba(247,240,223,.68); font-size: 15.5px; line-height: 1.62; margin: 0; }
  footer .cols { display: flex; gap: 56px; flex-wrap: wrap; }
  footer h5 { font-family: var(--ff-sans); font-weight: 700; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--sol); margin: 0 0 14px; }
  footer .cols a { display: block; color: rgba(247,240,223,.82); font-size: 15px; padding: 4px 0; }
  footer .cols a:hover { color: var(--crema); }
  footer .legal { border-top: 1px solid rgba(247,240,223,.14); }
  footer .legal .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-block: 16px; font-size: 12.5px; color: rgba(247,240,223,.6); }

  @media (prefers-reduced-motion: no-preference){
    @keyframes liftIn { from { transform: translateY(16px); } to { transform: none; } }
    .hero .lift { animation: liftIn .6s cubic-bezier(.22,.61,.36,1) both; }
    .hero .e1{animation-delay:.02s} .hero .e2{animation-delay:.09s} .hero .e3{animation-delay:.16s}
    .hero .e4{animation-delay:.23s} .hero .e5{animation-delay:.3s}
  }
  @media (prefers-reduced-motion: reduce){
    .hero-logo, .hero-deco, .hero .filete, .hero .alma-pie, .hero .alma-lead { translate: none !important; }
  }

  /* ============================================================
     PÁGINAS INTERNAS — cabecera compacta, texto+imagen, tarjetas
     de integrantes/iniciativas/recursos, contacto. Comparte todos
     los tokens y patrones (.bancal, .noti, .voz, .res, .agitem,
     .sumate, footer, nav) definidos arriba.
     ============================================================ */
  .pagehero { position: relative; background: linear-gradient(180deg, var(--crema) 0%, #F4E8C8 90%); border-bottom: 1.5px solid var(--soil); text-align: center; overflow: hidden; }
  .pagehero .wrap { padding: 52px 36px 60px; position: relative; z-index: 2; }
  .pagehero .kicker { margin-top: 16px; }
  .pagehero-t { display: block; font-family: var(--ff-serif); font-size: clamp(38px, 5.4vw, 66px); line-height: 1.04; color: var(--soil); margin-top: 20px; }
  .pagehero-t .it { color: var(--barro); }
  .pagehero-lead { font-size: 18.5px; line-height: 1.62; color: var(--soil-2); max-width: 58ch; margin: 20px auto 0; }
  .miga { display: flex; justify-content: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--soil-3); margin-top: 22px; }
  .miga a { color: var(--barro); }

  /* texto + imagen enmarcada (dos columnas) */
  .dosxt { display: grid; grid-template-columns: .82fr 1fr; gap: 54px; align-items: center; }
  .dosxt.inv { grid-template-columns: 1fr .82fr; }
  .dosxt.inv .marco { order: 2; }
  .marco { position: relative; border: 1.5px solid var(--soil); box-shadow: 0 0 0 8px #FDFBF3, 0 0 0 9.5px var(--line), 10px 14px 26px rgba(46,36,24,.14); overflow: hidden; aspect-ratio: 4/3.3; }
  .marco img, .marco image-slot { width: 100%; height: 100%; object-fit: cover; display: block; }
  .marco .pieimg { position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 12px; font-family: var(--ff-it); font-style: italic; font-size: 12.5px; color: var(--crema); background: linear-gradient(180deg, transparent, rgba(46,36,24,.72)); text-align: left; }
  .dosxt .txt p { font-size: 17.5px; line-height: 1.68; color: var(--soil-2); margin: 0 0 16px; }
  .dosxt .txt p:last-child { margin: 0; }
  @media (max-width: 880px){ .dosxt, .dosxt.inv { grid-template-columns: 1fr; gap: 30px; } .dosxt.inv .marco { order: 0; } }

  /* franja oscura (por qué / manifiesto secundario) */
  .franja { background: var(--soil); color: var(--crema); }
  .franja .wrap { padding: 76px 36px; }
  .franja .over { color: var(--sol); }
  .franja h2 { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1; margin: 18px 0 22px; max-width: 24ch; }
  .franja h2 .it { color: var(--sol); }
  .franja p { font-size: 18px; line-height: 1.68; color: rgba(247,240,223,.8); margin: 0 0 16px; max-width: 74ch; }
  .franja p:last-child { margin: 0; }

  /* filtros (chips) */
  .chips { display: flex; gap: 10px; flex-wrap: wrap; }
  .chip { font-family: var(--ff-sans); font-weight: 700; font-size: 13.5px; padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--soil); background: transparent; color: var(--soil); cursor: pointer; transition: background .2s, color .2s; }
  .chip:hover { background: var(--crema-3); }
  .chip.on { background: var(--hoja); border-color: var(--hoja); color: var(--crema); }

  /* integrantes — tarjeta persona */
  .integrantes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
  .integrante { background: var(--crema); border: 1.5px solid var(--soil); border-radius: 16px; padding: 26px 22px; text-align: center; }
  .integrante .av { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-family: var(--ff-serif); font-size: 22px; color: var(--crema); border: 1.5px solid var(--soil); }
  .integrante h4 { font-size: 18px; margin: 0 0 4px; }
  .integrante .rol { font-weight: 700; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--barro); margin: 0 0 8px; }
  .integrante .lugar { font-size: 15px; color: var(--soil-3); margin: 0; }
  @media (max-width: 980px){ .integrantes-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 560px){ .integrantes-grid { grid-template-columns: 1fr; } }

  /* iniciativas — tarjeta huerto (directorio) */
  .inic-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .inic { background: var(--crema); border: 1.5px solid var(--soil); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s; }
  .inic:hover { transform: translateY(-3px); }
  .inic .img { height: 168px; background: var(--crema-3); border-bottom: 1.5px solid var(--soil); position: relative; }
  .inic .img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
  .inic .cuerpo { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; }
  .inic .tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .inic .tag { font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: 6px; color: var(--crema); }
  .inic h3 { font-size: 19px; margin: 0; }
  .inic p { font-size: 15.5px; color: var(--soil-3); margin: 0; }
  @media (max-width: 860px){ .inic-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px){ .inic-grid { grid-template-columns: 1fr; } }

  /* recursos — vista completa con filtros */
  .enlaces { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 40px; }
  .enlace { display: flex; align-items: center; gap: 12px; padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .enlace .go { color: var(--barro); font-weight: 700; }
  .enlace h4 { font-family: var(--ff-sans); font-weight: 700; font-size: 15px; margin: 0; flex: 1; }
  .enlace span.site { font-size: 12.5px; color: var(--soil-3); }
  @media (max-width: 700px){ .enlaces { grid-template-columns: 1fr; } }

  /* preguntas y respuestas — cada ficha abre un modal con todas las respuestas */
  .qa-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
  .qcard-btn { text-align: left; font: inherit; color: inherit; width: 100%; min-height: 272px; border: 1.5px solid var(--soil); border-radius: 16px; padding: 24px 22px; display: flex; flex-direction: column; background: var(--crema); cursor: pointer; box-shadow: 6px 10px 0 rgba(46,36,24,.10); transition: transform .2s, box-shadow .2s; }
  .qcard-btn:hover { transform: translateY(-3px); box-shadow: 8px 13px 0 rgba(46,36,24,.12); }
  .qcard-btn:focus-visible { outline: 3px solid var(--sol); outline-offset: 2px; }
  .qcard-btn .qtag { align-self: flex-start; font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; color: var(--crema); margin-bottom: 14px; }
  .qcard-btn .qcard-t { font-family: var(--ff-serif); font-size: 17.5px; line-height: 1.32; margin: 0 0 14px; }
  .qcard-btn .qmeta { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--soil-3); flex-wrap: wrap; }
  .qcard-btn .resuelta { font-weight: 700; color: var(--hoja-deep); }
  .qcard-btn .qhint { margin-top: 16px; font-weight: 700; font-size: 13px; color: var(--barro); }
  @media (max-width: 900px){ .qa-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 620px){ .qa-grid { grid-template-columns: 1fr; } }

  /* modal de una pregunta con su hilo de respuestas */
  .qa-modal .modal-panel { width: min(760px, 100%); }
  .qa-modal-hd { background: var(--soil); color: var(--crema); padding: 34px 40px 28px; }
  .qa-modal-hd .qtag { display: inline-block; font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; color: var(--crema); }
  .qa-modal-hd .qa-estado { margin-left: 8px; font-size: 12px; font-weight: 700; color: rgba(247,240,223,.7); }
  .qa-modal-hd .qa-estado.resuelta { color: var(--sol); }
  .qa-modal-hd h2 { font-family: var(--ff-serif); font-size: clamp(24px,3.2vw,34px); color: var(--crema); margin: 14px 0 0; line-height: 1.2; }
  .qa-modal-hd .qa-modal-detalle { margin: 14px 0 0; font-size: 15.5px; line-height: 1.6; color: rgba(247,240,223,.86); }
  .qa-modal-body { padding: 28px 40px 36px; max-height: 60vh; overflow-y: auto; }
  .qa-respuestas-titulo { font-weight: 700; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--barro); margin: 0 0 18px; }
  .qa-respuesta { border: 1.5px solid var(--line); border-radius: 14px; padding: 20px 22px; margin-bottom: 16px; background: var(--crema-2); }
  .qa-respuesta.mejor { border-color: var(--hoja-deep); background: rgba(60,107,68,.07); box-shadow: 4px 6px 0 rgba(60,107,68,.12); }
  .qa-mejor-badge { display: inline-block; font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--crema); background: var(--hoja-deep); padding: 4px 11px; border-radius: 6px; margin-bottom: 12px; }
  .qa-respuesta-cuerpo { font-size: 16px; line-height: 1.62; color: var(--soil); margin: 0; }
  .qa-respuesta-autor { margin: 12px 0 0; font-size: 13.5px; color: var(--soil-3); display: flex; align-items: center; gap: 9px; }
  .qa-avatar { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: var(--crema); font-size: 11.5px; font-weight: 700; flex: none; }
  .qa-sin-respuestas { text-align: center; padding: 18px 0 6px; color: var(--soil-2); }
  .qa-sin-respuestas p { font-size: 16px; line-height: 1.6; margin: 0 0 18px; }
  @media (max-width: 620px){
    .qa-modal-hd { padding: 30px 24px 24px; }
    .qa-modal-body { padding: 24px 24px 30px; }
  }

  /* contacto */
  .contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .contacto-info .item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
  .contacto-info .item .seed { margin-top: 6px; }
  .contacto-info .item h4 { font-size: 16.5px; margin: 0 0 4px; }
  .contacto-info .item p, .contacto-info .item a { font-size: 16px; color: var(--soil-2); margin: 0; display: block; }
  .contacto-form { background: var(--crema-2); border: 1.5px solid var(--soil); border-radius: 20px; padding: 36px; }
  .contacto-form label { font-weight: 700; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--soil-3); display: block; margin-bottom: 8px; }
  .contacto-form .field { margin-bottom: 20px; }
  .contacto-form input, .contacto-form textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--soil-3); border-radius: 10px; background: var(--crema); font-family: var(--ff-sans); font-size: 16px; color: var(--soil); outline: none; }
  .contacto-form input:focus, .contacto-form textarea:focus { border-color: var(--barro); }
  .contacto-form textarea { resize: vertical; min-height: 110px; }
  @media (max-width: 880px){ .contacto-grid { grid-template-columns: 1fr; gap: 36px; } }

  /* autenticación — iniciar sesión / únete a la red / recuperar contraseña */
  .auth-shell { display: flex; justify-content: center; }
  .auth-card { width: 100%; background: var(--crema-2); border: 1.5px solid var(--soil); border-radius: 20px; padding: 42px 44px 38px; }
  .auth-card.narrow { max-width: 440px; }
  .auth-card.wide { max-width: 720px; }
  .auth-card .filete { margin-bottom: 26px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  @media (max-width: 600px){ .form-row { grid-template-columns: 1fr; } }
  .contacto-form select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--soil-3); border-radius: 10px; background: var(--crema); font-family: var(--ff-sans); font-size: 15px; color: var(--soil); outline: none; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--soil-3) 50%), linear-gradient(135deg, var(--soil-3) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 14px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
  .contacto-form select:focus { border-color: var(--barro); }
  .contacto-form .hint { font-size: 13px; color: var(--soil-3); margin: -12px 0 20px; }
  .auth-links { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 20px; font-size: 14px; }
  .auth-links a { color: var(--barro); font-weight: 700; }
  .auth-note { font-size: 15px; color: var(--soil-3); margin-top: 16px; line-height: 1.55; }
  .contacto-form .btn { width: 100%; justify-content: center; margin-top: 4px; }

  /* ============================================================
     CENTRO DE RECURSOS — catálogos (semillas, actividades,
     biblioteca) + portada. Barra de filtros y buscador, insignias
     de tono, fichas modales, tarjetas de semilla, colecciones
     (actividades integrales), tarjetas de actividad y biblioteca.
     Comparten los tokens del sistema (papel crema, borde 1.5px
     soil, sombra cálida, glifo semilla).
     ============================================================ */

  /* insignias de tono reutilizables */
  .tono-sol { background: var(--sol); color: var(--soil); }
  .tono-sol-deep { background: var(--sol-deep); color: var(--crema); }
  .tono-hoja { background: var(--hoja); color: var(--crema); }
  .tono-barro { background: var(--barro); color: var(--crema); }
  .tono-salvia { background: var(--salvia); color: var(--soil); }
  .tono-soil { background: var(--soil); color: var(--crema); }
  .tono-crema { background: var(--crema-2); color: var(--soil); border: 1.5px solid var(--soil); }

  /* barra de herramientas de catálogo (buscador + chips) */
  .cat-tools { display: flex; align-items: center; gap: 16px 20px; margin-bottom: 18px; flex-wrap: wrap; }
  .buscar { position: relative; flex: 1 1 280px; max-width: 400px; }
  .buscar input { width: 100%; padding: 13px 18px 13px 46px; border: 1.5px solid var(--soil); border-radius: 999px; background: var(--crema); font-family: var(--ff-sans); font-size: 16px; color: var(--soil); outline: none; }
  .buscar input::placeholder { color: var(--soil-3); }
  .buscar input:focus { border-color: var(--barro); }
  .buscar .lupa { position: absolute; left: 18px; top: calc(50% - 8px); width: 12px; height: 12px; border: 1.5px solid var(--soil-3); border-radius: 50%; pointer-events: none; }
  .buscar .lupa::after { content:""; position: absolute; right: -5px; bottom: -4px; width: 7px; height: 1.5px; background: var(--soil-3); transform: rotate(45deg); transform-origin: left; }
  .cat-tools .chips { margin-left: auto; }
  @media (max-width: 820px){ .cat-tools .chips { margin-left: 0; width: 100%; } .buscar { max-width: none; } }
  .cat-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin: 0 0 26px; flex-wrap: wrap; }
  .cat-count { font-size: 14.5px; color: var(--soil-3); font-weight: 600; }
  .cat-count b { color: var(--soil); font-weight: 700; }
  .cat-empty { grid-column: 1 / -1; text-align: center; padding: 56px 20px; color: var(--soil-3); font-family: var(--ff-it); font-style: italic; font-size: 20px; display: none; }
  .cat-empty.show { display: block; }
  .is-hidden { display: none !important; }

  /* modal / ficha */
  .modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: flex-start; justify-content: center; padding: 40px 20px; overflow-y: auto; }
  .modal.open { display: flex; }
  .modal-scrim { position: fixed; inset: 0; background: rgba(46,36,24,.58); }
  .modal-panel { position: relative; z-index: 1; margin: auto; width: min(940px, 100%); background: var(--crema); border: 1.5px solid var(--soil); border-radius: 20px; box-shadow: 0 34px 70px rgba(46,36,24,.34); overflow: hidden; }
  @media (prefers-reduced-motion: no-preference){
    .modal.open .modal-panel { animation: fichaIn .34s cubic-bezier(.22,.61,.36,1) both; }
    @keyframes fichaIn { from { opacity: 0; transform: translateY(20px) scale(.985); } to { opacity: 1; transform: none; } }
  }
  .modal-close { position: absolute; top: 16px; right: 16px; z-index: 6; width: 42px; height: 42px; display: grid; place-items: center; border: 1.5px solid var(--soil); border-radius: 50%; background: var(--crema); color: var(--soil); font-size: 21px; line-height: 1; cursor: pointer; transition: background .2s, color .2s, transform .12s; }
  .modal-close:hover { background: var(--soil); color: var(--crema); }
  .modal-close:active { transform: scale(.94); }
  body.no-scroll { overflow: hidden; }

  /* ---------- SEMILLAS: catálogo ---------- */
  .semillas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
  @media (max-width: 1040px){ .semillas-grid { grid-template-columns: repeat(3,1fr); } }
  @media (max-width: 760px){ .semillas-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 460px){ .semillas-grid { grid-template-columns: 1fr; } }
  .semilla { display: flex; flex-direction: column; text-align: left; padding: 0; margin: 0; font: inherit; color: inherit; background: var(--crema); border: 1.5px solid var(--soil); border-radius: 16px; overflow: hidden; cursor: pointer; transition: transform .2s, box-shadow .2s; }
  .semilla:hover { transform: translateY(-3px); box-shadow: 8px 12px 0 rgba(46,36,24,.1); }
  .semilla:focus-visible { outline: 3px solid var(--sol); outline-offset: 2px; }
  .semilla .foto { position: relative; aspect-ratio: 5/4; background: var(--crema-3); border-bottom: 1.5px solid var(--soil); }
  .semilla .foto image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
  .semilla .fam { position: absolute; top: 10px; left: 10px; z-index: 2; font-weight: 700; font-size: 10px; letter-spacing: .07em; text-transform: uppercase; padding: 4px 9px; border-radius: 6px; }
  .semilla .cuerpo { padding: 15px 18px 18px; display: flex; flex-direction: column; gap: 3px; flex: 1; }
  .semilla h3 { font-size: 21px; margin: 0; line-height: 1.1; }
  .semilla .sci { font-family: var(--ff-it); font-style: italic; font-size: 13.5px; color: var(--soil-3); }
  .semilla .comp { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line); font-size: 12.5px; color: var(--soil-2); display: flex; align-items: center; gap: 8px; }
  .semilla .comp .seed { width: 7px; height: 11px; flex: none; }
  .semilla .comp b { font-weight: 700; }

  /* ---------- SEMILLAS: ficha (modal) ---------- */
  .ficha-hd { background: var(--hoja-deep); color: var(--crema); padding: 34px 46px 30px; position: relative; overflow: hidden; }
  .ficha-hd .over { color: var(--sol); display: block; }
  .ficha-hd h2 { font-family: var(--ff-serif); font-size: clamp(30px,4vw,44px); color: var(--crema); margin: 8px 0 4px; letter-spacing: -.01em; }
  .ficha-hd .sci { font-family: var(--ff-it); font-style: italic; font-size: 18px; color: rgba(247,240,223,.82); }
  .ficha-hd .fam-line { margin-top: 10px; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: rgba(247,240,223,.72); }
  .ficha-body { padding: 32px 46px 40px; }
  .ficha-top { display: grid; grid-template-columns: .92fr 1.08fr; gap: 34px; align-items: start; }
  .ficha-fotos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .ficha-fotos .marco { aspect-ratio: 1/1; box-shadow: 0 0 0 6px #FDFBF3, 0 0 0 7.5px var(--line), 8px 11px 20px rgba(46,36,24,.14); }
  .ficha-fotos .marco .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 7px 10px; font-family: var(--ff-it); font-style: italic; font-size: 11.5px; color: var(--crema); background: linear-gradient(180deg, transparent, rgba(46,36,24,.72)); }
  .datos .dato { padding: 11px 0; border-bottom: 1px dashed var(--line); }
  .datos .dato:first-child { padding-top: 0; }
  .datos .k { display: block; font-weight: 700; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--barro); margin-bottom: 6px; }
  .datos .v { display: block; font-size: 15px; color: var(--soil); line-height: 1.5; }
  .ficha-secs { margin-top: 4px; }
  .ficha-sec { padding: 20px 0 0; margin-top: 20px; border-top: 1.5px solid var(--line); }
  .ficha-sec h4 { font-family: var(--ff-sans); font-weight: 700; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--barro); margin: 0 0 9px; display: flex; align-items: center; gap: 9px; }
  .ficha-sec h4 .seed { width: 8px; height: 12px; }
  .ficha-sec p { font-size: 16.5px; line-height: 1.68; color: var(--soil-2); margin: 0; }
  .ficha-foot { margin-top: 28px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 0; background: var(--crema-2); border: 1.5px solid var(--soil); border-radius: 16px; overflow: hidden; }
  .ficha-foot > div { padding: 22px 24px; }
  .ficha-foot .comparte { border-right: 1.5px solid var(--line); }
  .ficha-foot .k { font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--barro); margin: 0 0 14px; }
  .personas { display: flex; flex-direction: column; gap: 12px; }
  .persona { display: flex; align-items: center; gap: 12px; }
  .persona .av { width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--ff-serif); font-size: 16px; color: var(--crema); border: 1.5px solid var(--soil); }
  .persona b { display: block; font-size: 14.5px; font-weight: 700; color: var(--soil); }
  .persona span { font-size: 12.5px; color: var(--soil-3); }
  .ficha-foot .origen .v { font-size: 16px; color: var(--soil); }
  @media (max-width: 720px){
    .ficha-hd, .ficha-body { padding-left: 26px; padding-right: 26px; }
    .ficha-top { grid-template-columns: 1fr; gap: 24px; }
    .ficha-foot { grid-template-columns: 1fr; }
    .ficha-foot .comparte { border-right: none; border-bottom: 1.5px solid var(--line); }
  }

  /* ---------- ACTIVIDADES: colecciones (integrales) ---------- */
  .colecciones { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
  @media (max-width: 900px){ .colecciones { grid-template-columns: 1fr; } }
  .coleccion { position: relative; display: flex; background: var(--crema); border: 1.5px solid var(--soil); border-radius: 18px; overflow: hidden; box-shadow: 6px 10px 0 rgba(46,36,24,.08); }
  .coleccion .lomo { flex: none; width: 58px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 16px 0; border-right: 1.5px solid var(--soil); }
  .coleccion .lomo .rot { writing-mode: vertical-rl; transform: rotate(180deg); font-weight: 700; font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; }
  .coleccion .lomo .cuenta { font-family: var(--ff-serif); font-size: 30px; line-height: .9; text-align: center; }
  .coleccion .lomo .cuenta small { display: block; font-family: var(--ff-sans); font-size: 8.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; }
  .coleccion .cont { flex: 1; padding: 24px 26px 22px; display: flex; flex-direction: column; min-width: 0; }
  .coleccion .over { color: var(--barro); }
  .coleccion h3 { font-size: 25px; line-height: 1.1; margin: 8px 0 10px; }
  .coleccion .desc { font-size: 16px; line-height: 1.6; color: var(--soil-2); margin: 0 0 16px; }
  .coleccion .indice { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; }
  .coleccion .indice li { display: flex; align-items: baseline; gap: 10px; padding: 7px 0; border-top: 1px dashed var(--line); font-size: 13.5px; color: var(--soil); }
  .coleccion .indice li .n { font-family: var(--ff-serif); font-size: 12.5px; color: var(--barro); flex: none; width: 18px; }
  .coleccion .acciones { margin-top: auto; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .coleccion .ver { font-weight: 700; font-size: 14px; color: var(--crema); background: var(--hoja); border: 1.5px solid var(--hoja); padding: 10px 18px; border-radius: 999px; cursor: pointer; font-family: var(--ff-sans); transition: background .2s; }
  .coleccion .ver:hover { background: var(--hoja-deep); border-color: var(--hoja-deep); }
  .coleccion .desc-link { font-weight: 700; font-size: 13.5px; color: var(--barro); }

  /* ---------- ACTIVIDADES: tarjetas didácticas ---------- */
  .act-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
  @media (max-width: 900px){ .act-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px){ .act-grid { grid-template-columns: 1fr; } }
  .acard { display: flex; flex-direction: column; gap: 11px; text-align: left; margin: 0; font: inherit; color: inherit; background: var(--crema); border: 1.5px solid var(--soil); border-radius: 16px; padding: 24px 24px 22px; cursor: pointer; transition: transform .2s, box-shadow .2s; }
  .acard:hover { transform: translateY(-3px); box-shadow: 8px 12px 0 rgba(46,36,24,.1); }
  .acard:focus-visible { outline: 3px solid var(--sol); outline-offset: 2px; }
  .acard .cat { align-self: flex-start; font-weight: 700; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; }
  .acard h3 { font-size: 18.5px; margin: 0; line-height: 1.24; }
  .acard .meta { font-size: 13px; color: var(--soil-3); margin: 0; }
  .acard .meta .acard-edad { font-weight: 700; color: var(--soil); }
  .acard .parte { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; font-weight: 700; font-size: 11.5px; padding: 5px 11px 5px 9px; border-radius: 999px; border: 1.5px solid currentColor; }
  .acard .parte .dot { width: 9px; height: 9px; border-radius: 2px 6px 2px 6px; transform: rotate(40deg); flex: none; }
  .acard .parte.c-hoja { color: var(--hoja-deep); } .acard .parte.c-hoja .dot { background: var(--hoja); }
  .acard .parte.c-barro { color: var(--barro-deep); } .acard .parte.c-barro .dot { background: var(--barro); }
  .acard .parte.c-sol { color: var(--sol-deep); } .acard .parte.c-sol .dot { background: var(--sol-deep); }
  .acard .suelta { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--soil-3); }
  .acard .suelta .seed { width: 7px; height: 11px; background: var(--salvia); }
  .acard { text-decoration: none; }
  .acard-foto { display: grid; place-items: center; height: 180px; margin: -4px 0 4px; background: var(--crema-2, #F3ECDD); border-radius: 12px; overflow: hidden; }
  .acard-foto img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .acard-foto-logo { padding: 26px; }
  .acard-foto-logo img { opacity: .82; }
  .acard-desc { font-size: 13px; color: var(--soil-2); line-height: 1.5; margin: 0; }
  .acard-rels { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; }
  .acard-rel { font-size: 11.5px; font-weight: 600; color: var(--hoja-deep); background: #F1F5EC; border-radius: 999px; padding: 3px 9px; }
  .acard-ver { font-weight: 700; font-size: 13.5px; color: var(--barro); }
  /* Listas de objetivos / método en la página de detalle */
  .material-det-lista { margin: 0; padding-left: 20px; }
  .material-det-lista li { font-size: 15px; color: var(--soil-2); line-height: 1.6; margin-bottom: 6px; }

  /* ficha de actividad (modal) */
  .fa { padding: 34px 44px 40px; }
  .fa .cat { display: inline-block; font-weight: 700; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 11px; border-radius: 6px; }
  .fa h2 { font-family: var(--ff-serif); font-size: clamp(26px,3.4vw,38px); margin: 14px 0 6px; line-height: 1.08; }
  .fa .meta { font-size: 14px; color: var(--soil-3); margin: 0 0 22px; }
  .fa .lead { font-size: 17.5px; line-height: 1.7; color: var(--soil-2); margin: 0 0 20px; }
  .fa .fa-sec { border-top: 1.5px solid var(--line); padding-top: 18px; margin-top: 18px; }
  .fa .fa-sec h4 { font-weight: 700; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--barro); margin: 0 0 10px; }
  .fa .obj { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .fa .obj li { display: flex; gap: 11px; font-size: 15px; line-height: 1.5; color: var(--soil-2); }
  .fa .obj li .seed { margin-top: 5px; flex: none; }
  .fa .pertenece { margin-top: 22px; padding: 18px 22px; background: var(--crema-2); border: 1.5px solid var(--soil); border-radius: 14px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .fa .pertenece .t { font-size: 14px; color: var(--soil-2); }
  .fa .pertenece .t b { font-family: var(--ff-serif); font-weight: 400; font-size: 18px; color: var(--soil); display: block; margin-top: 3px; }
  .fa .fa-cta { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
  /* ficha de colección: índice de piezas clicables */
  .fa .piezas { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0; }
  .fa .pieza { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; font: inherit; color: inherit; background: transparent; border: none; border-top: 1px solid var(--line); padding: 15px 4px; cursor: pointer; transition: background .18s; }
  .fa .pieza:last-child { border-bottom: 1px solid var(--line); }
  .fa .pieza:hover { background: var(--crema-2); }
  .fa .pieza .n { font-family: var(--ff-serif); font-size: 20px; color: var(--barro); flex: none; width: 30px; text-align: center; }
  .fa .pieza .tx { flex: 1; }
  .fa .pieza .tx b { display: block; font-family: var(--ff-sans); font-weight: 700; font-size: 15.5px; color: var(--soil); }
  .fa .pieza .tx span { font-size: 12.5px; color: var(--soil-3); }
  .fa .pieza .go { color: var(--barro); font-weight: 700; flex: none; }
  @media (max-width: 620px){ .fa { padding-left: 26px; padding-right: 26px; } }

  /* ---------- BIBLIOTECA: tarjetas ---------- */
  .biblio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
  @media (max-width: 900px){ .biblio-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px){ .biblio-grid { grid-template-columns: 1fr; } }
  .libro { position: relative; display: flex; flex-direction: column; gap: 11px; background: var(--crema); border: 1.5px solid var(--soil); border-radius: 16px; padding: 24px 24px 22px; transition: transform .2s, box-shadow .2s; }
  .libro:hover { transform: translateY(-3px); box-shadow: 8px 12px 0 rgba(46,36,24,.1); }
  .libro .cat { align-self: flex-start; font-weight: 700; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; }
  /* Portada (las más comunes son verticales): se muestra completa sobre un fondo suave */
  .libro-foto { display: grid; place-items: center; height: 300px; margin: -4px 0 4px; background: var(--crema-2, #F3ECDD); border-radius: 12px; overflow: hidden; }
  .libro-foto img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
  .libro h3 { font-size: 18.5px; margin: 0; line-height: 1.24; }
  .libro .meta { font-size: 13px; color: var(--soil-3); margin: 0; }
  .libro .accion { margin-top: auto; padding-top: 6px; font-weight: 700; font-size: 13.5px; color: var(--barro); display: inline-flex; align-items: center; gap: 7px; }
  .libro.ext { background: linear-gradient(160deg, var(--crema) 60%, #EFE5D2); }
  .libro.ext .sitio { position: absolute; top: 18px; right: 20px; font-size: 12px; color: var(--soil-3); }
  .libro.ext .accion { color: var(--hoja-deep); }
  .libro .descripcion { font-size: 13px; color: var(--soil-2); line-height: 1.5; margin: 0; }

  /* ---------- DETALLE DE MATERIAL (biblioteca) ---------- */
  .material-det-cols { display: flex; gap: 32px; align-items: flex-start; margin-bottom: 34px; }
  .material-det-main { flex: 1; min-width: 0; }
  .material-det-cover { flex: none; width: 220px; }
  .material-det-cover img { width: 100%; height: auto; display: block; border-radius: 14px; border: 1.5px solid var(--soil); background: var(--crema-2); }
  .material-det-acciones { margin: 0 0 26px; }
  .material-det-sec { margin-bottom: 24px; }
  .material-det-sec .over { display: block; margin-bottom: 10px; }
  .material-det-texto { font-size: 15px; color: var(--soil-2); line-height: 1.7; margin: 0; }
  .material-det-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
  .material-det-tag { font-family: var(--ff-sans); font-weight: 600; font-size: 12px; color: var(--soil); background: var(--crema-2); border: 1.5px solid var(--soil); border-radius: 999px; padding: 4px 12px; }
  .material-det-visor-bloque { margin-top: 10px; }
  .material-det-visor-bloque .over { display: block; margin-bottom: 12px; }
  .material-det-visor { width: 100%; height: 75vh; border: 1.5px solid var(--soil); border-radius: 16px; background: var(--crema-2); }
  .material-det-imagen { max-width: 100%; height: auto; border: 1.5px solid var(--soil); border-radius: 16px; display: block; }
  .material-det-fallback { margin: 12px 0 0; font-size: 13.5px; color: var(--soil-3); }
  .material-det-nota { margin-top: 10px; padding: 22px 24px; background: var(--crema-2); border: 1.5px solid var(--line); border-radius: 14px; color: var(--soil-2); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  @media (max-width: 720px) {
    .material-det-cols { flex-direction: column-reverse; }
    .material-det-cover { width: 180px; align-self: center; }
    .material-det-acciones { text-align: center; }
    .material-det-visor { height: 62vh; }
  }

  /* ---------- PORTADA CENTRO (hub) ---------- */
  .hub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
  @media (max-width: 900px){ .hub-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
  .hub-card { position: relative; display: flex; flex-direction: column; gap: 14px; border: 1.5px solid var(--soil); border-radius: 20px; padding: 34px 30px 30px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
  .hub-card:hover { transform: translateY(-4px); box-shadow: 10px 16px 0 rgba(46,36,24,.1); }
  .hub-card.h1 { background: #F3E2B9; } .hub-card.h2 { background: #E3EBDD; } .hub-card.h3 { background: #F1DAC8; }
  .hub-card .num { position: absolute; top: -22px; right: 12px; font-family: var(--ff-serif); font-size: 128px; line-height: 1; color: rgba(46,36,24,.08); pointer-events: none; }
  .hub-card .eti { align-self: flex-start; position: relative; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; border: 1.5px solid var(--soil); background: rgba(247,240,223,.55); }
  .hub-card .eti .seed { width: 7px; height: 11px; }
  .hub-card h3 { font-size: 29px; line-height: 1.05; margin: 6px 0 0; }
  .hub-card p { font-size: 16.5px; line-height: 1.62; color: var(--soil-2); margin: 0; flex: 1; }
  .hub-card .ir { font-weight: 700; font-size: 14.5px; color: var(--barro); display: inline-flex; align-items: center; gap: 8px; }
  .hub-card.h1 .num { color: rgba(46,36,24,.10); }

  /* ============================================================
     Títulos unificados: los acentos .it dentro de encabezados dejan
     de combinar Newsreader/naranja y heredan Rude Slab y su color.
     ============================================================ */
  h1 .it, h2 .it, h3 .it, .pagehero-t .it, .sechead .it,
  .manifesto h2 .it, .sumate h2 .it, .franja h2 .it {
    font-family: var(--ff-serif); font-style: normal; font-weight: inherit; color: inherit;
  }
  .alma-t2 { font-family: var(--ff-serif); font-style: normal; font-weight: inherit; color: var(--soil); }

  /* Las ilustraciones del inicio se gestionan desde el panel (Imágenes del
     sitio): los huecos vacíos son decorativos y no deben abrir el buscador
     de archivos al hacer clic. */
  .hero-deco image-slot, .arches image-slot { pointer-events: none; }

  /* Imagen de la organización en el directorio (reemplaza a las iniciales). */
  .integrante img.av { object-fit: cover; display: block; }

  /* Distintivos de las tarjetas de noticias/eventos (index y Novedades). */
  .noti .proximo { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--hoja); color: var(--crema); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; border: 1.5px solid var(--soil); }
  .noti .destacado-eti { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--sol); color: var(--soil); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; border: 1.5px solid var(--soil); }
