  :root {
    --bg: #F5F0E8;
    --bg-dark: #1A1A14;
    --ink: #1C1C14;
    --muted: #7A7060;
    --cream: #EDE7D6;
    --green: #2D4A2D;
    --green-mid: #4A7040;
    --green-light: #8FB87A;
    --terra: #C4703A;
    --gold: #C9A84C;
    --tag-root: #2D4A2D;
    --tag-ext: #C4703A;
    --tag-inter: #8B2020;
    --tag-rec: #C9A84C;
    --radius: 12px;
    --shadow: 0 2px 20px rgba(28, 28, 20, 0.10);
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ─── NOISE TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(245, 240, 232, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(28, 28, 20, 0.08);
    transition: all 0.3s;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green);
    transition: width 0.3s;
  }

  .nav-links a:hover {
    color: var(--green);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 72vh;
    display: grid;
    grid-template-columns: 45fr 55fr;
    padding-top: 72px;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 52px 56px 64px;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 28px;
  }

  .hero-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--green-mid);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 28px;
  }

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

  .hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 420px;
    margin-bottom: 40px;
  }

  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--green);
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
  }

  .btn-outline {
    background: transparent;
    color: var(--ink);
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-decoration: none;
    border: 1px solid rgba(28, 28, 20, 0.25);
    transition: all 0.25s;
    cursor: pointer;
  }

  .btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-1px);
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 78vh;
    display: grid;
    grid-template-columns: 45fr 55fr;
    padding-top: 72px;
    overflow: hidden;
    position: relative;
  }

  .hero-video-bg {
    display: none;
  }

  .hero-video-overlay {
    display: none;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 52px 64px 72px;
    position: relative;
    z-index: 1;
  }

  .hero-right {
    position: relative;
    overflow: hidden;
    display: block;
    border-bottom-left-radius: 40px;
  }

  .hero-right-grid {
    display: grid;
    grid-template-rows: 1fr;
    height: 100%;
  }

  .hero-img-main {
    position: relative;
    overflow: hidden;
    height: 100%;
    background: #0a140a;
    display: block;
  }

  .hero-img-main video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-img-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 20, 10, 0.45) 100%);
    z-index: 1;
  }

  .hero-sensorial {
    position: absolute;
    bottom: 24px;
    left: 20px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.74rem;
    line-height: 1.65;
    max-width: 240px;
  }

  .hero-sensorial-label {
    font-weight: 500;
    letter-spacing: 0.12em;
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.65;
    margin-bottom: 5px;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 24px;
  }

  .hero-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--green-mid);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 4.5vw, 5.2rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 24px;
  }

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

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--muted);
    max-width: 400px;
    margin-bottom: 36px;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--green);
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
  }

  .btn-outline {
    background: transparent;
    color: var(--ink);
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 0.84rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1px solid rgba(28, 28, 20, 0.25);
    transition: all 0.25s;
    cursor: pointer;
  }

  .btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-1px);
  }

  /* ─── CARRUSEL BASE ─── */
  .carousel-wrap {
    position: relative;
    padding: 0 0px;
  }

  .carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
  }

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

  /* Flechas laterales */
  .carousel-nav {
    display: none;
  }

  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 18px rgba(28, 28, 20, 0.16);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s;
  }

  .carousel-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--ink);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.2s;
  }

  .carousel-arrow.prev {
    left: -22px;
  }

  .carousel-arrow.next {
    right: -22px;
  }

  .carousel-arrow:hover {
    background: var(--green);
    box-shadow: 0 6px 24px rgba(45, 74, 45, 0.3);
  }

  .carousel-arrow:hover svg {
    stroke: #fff;
  }

  /* ─── SECTION COMMONS ─── */
  section {
    padding: 96px 64px;
  }

  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 10px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
  }

  .section-title em {
    font-style: italic;
    color: var(--green);
  }

  .see-all {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--green);
    text-decoration: none;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding-bottom: 12px;
  }

  .see-all:hover {
    opacity: 0.7;
  }

  /* ─── TAGS ROOT ─── */
  .tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
  }

  .tag-root {
    background: rgba(45, 74, 45, 0.12);
    color: var(--tag-root);
  }

  .tag-ext {
    background: rgba(196, 112, 58, 0.12);
    color: var(--tag-ext);
  }

  .tag-inter {
    background: rgba(139, 32, 32, 0.12);
    color: var(--tag-inter);
  }

  .tag-rec {
    background: rgba(201, 168, 76, 0.15);
    color: #8a6e1a;
  }

  /* ─── INMERSIONES CARDS ─── */
  .inmersion-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .inmersion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(28, 28, 20, 0.15);
  }

  .inmersion-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--green);
  }

  .inmersion-img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.4;
    position: relative;
  }

  .inmersion-img-ph::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 25, 10, 0.6) 100%);
  }

  .inmersion-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .inmersion-duracion {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .inmersion-body {
    padding: 22px 24px 24px;
  }

  .inmersion-type {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 8px;
  }

  .inmersion-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .inmersion-sensorial {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 2px solid var(--green-light);
  }

  .inmersion-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .inmersion-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .inmersion-footer {
    display: flex;
    gap: 10px;
  }

  .btn-detail {
    flex: 1;
    padding: 11px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 400;
    border: 1px solid rgba(28, 28, 20, 0.2);
    background: transparent;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.2s;
  }

  .btn-detail:hover {
    border-color: var(--green);
    color: var(--green);
  }

  .btn-reservar {
    flex: 1.5;
    padding: 11px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
    background: var(--green);
    color: #fff;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
  }

  .btn-reservar:hover {
    background: var(--green-mid);
  }

  .btn-pronto {
    flex: 1.5;
    padding: 11px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 400;
    border: 1px dashed rgba(28, 28, 20, 0.2);
    background: transparent;
    color: var(--muted);
    cursor: default;
    text-align: center;
  }

  /* ─── GUÍAS ROOT CARDS ─── */
  .guia-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream);
    border: 1px solid rgba(28, 28, 20, 0.06);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .guia-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(28, 28, 20, 0.10);
  }

  .guia-img {
    height: 180px;
    background: var(--green);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
  }

  .guia-body {
    padding: 20px 22px 22px;
  }

  .guia-category {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 8px;
  }

  .guia-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 8px;
    color: var(--ink);
  }

  .guia-sensorial {
    font-size: 0.78rem;
    color: var(--muted);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .guia-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .guia-desde {
    font-size: 0.75rem;
    color: var(--muted);
  }

  .guia-desde strong {
    font-size: 1rem;
    font-weight: 500;
    color: var(--green);
    font-family: 'Cormorant Garamond', serif;
  }

  .btn-link {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--green);
    text-decoration: none;
    border-bottom: 1px solid var(--green);
    padding-bottom: 1px;
    transition: opacity 0.2s;
  }

  .btn-link:hover {
    opacity: 0.6;
  }

  /* ─── GUÍAS ROOT — 4 BLOQUES ─── */
  .guias-section {
    padding-bottom: 0;
  }

  .guias-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    border-bottom: 1px solid rgba(28, 28, 20, 0.08);
    padding-bottom: 0;
  }

  .guias-tab {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-decoration: none;
    padding: 10px 20px 12px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: inherit;
  }

  .guias-tab:hover {
    background-color: transparent !important;
    color: var(--green) !important;
  }

  .guias-tab.active {
    color: var(--green);
    border-bottom-color: var(--green);
  }

  .guias-bloque {
    padding: 0 0 72px;
  }

  .guias-bloque-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .guias-bloque-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .guias-bloque-num {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    background: rgba(196, 112, 58, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
  }

  .guias-bloque-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.1;
  }

  .guias-bloque-title em {
    font-style: italic;
    color: var(--green);
  }

  .guias-bloque-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 6px;
  }

  .guias-sub-tag {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(28, 28, 20, 0.06);
    padding: 3px 9px;
    border-radius: 20px;
  }

  .guias-bloque-divider {
    height: 1px;
    background: rgba(28, 28, 20, 0.07);
    margin: 0 0 56px;
  }

  /* Bloque 4 — Mercado Root, fondo diferente */
  .guias-bloque--mercado {
    background: var(--cream);
    margin: 0 -64px;
    padding: 56px 64px 72px;
  }

  .sensorial-banner {
    position: relative;
    color: #fff;
    padding: 90px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background-image:
      linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.72) 100%),
      url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1600&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }

  .sensorial-banner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .sensorial-banner h2 em {
    font-style: italic;
    opacity: 0.75;
  }

  .sensorial-banner p {
    font-size: 0.92rem;
    line-height: 1.75;
    opacity: 0.82;
    max-width: 400px;
  }

  /* Grid de fotos sensoriales */
  .sensorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .sensorial-item {
    position: relative;
    height: 160px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 3px;
  }

  .sensorial-item-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
  }

  .sensorial-item:hover .sensorial-item-bg {
    transform: scale(1.08);
  }

  .sensorial-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.62) 100%);
    transition: background 0.4s ease;
  }

  .sensorial-item:hover .sensorial-item-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
  }

  .sensorial-item-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px 18px;
    z-index: 2;
  }

  .sensorial-name {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 4px;
    transition: opacity 0.3s;
  }

  .sensorial-item:hover .sensorial-name {
    opacity: 1;
  }

  .sensorial-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.25;
    transition: transform 0.3s ease;
    text-shadow: none !important;
  }

  .sensorial-item:hover .sensorial-value {
    transform: translateY(-2px);
  }

  /* ─── BITÁCORA — blog cards ─── */
  .bitacora {
    background: var(--cream);
  }

  .blog-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
  }

  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(28, 28, 20, 0.13);
  }

  .blog-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
  }

  .blog-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .blog-tipo {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 10px;
    display: block;
  }

  .blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--ink);
    flex: 1;
  }

  .blog-excerpt {
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 16px;
  }

  .blog-meta {
    display: flex;
    gap: 12px;
    font-size: 0.7rem;
    color: var(--muted);
    border-top: 1px solid rgba(28, 28, 20, 0.06);
    padding-top: 12px;
  }

  /* Card destacada — diseño editorial */
  .blog-card--featured {
    flex: 0 0 380px;
    background: var(--bg-dark);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(28, 28, 20, 0.22);
  }

  .blog-feat-inner {
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .blog-feat-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
  }

  .blog-card--featured:hover .blog-feat-bg {
    transform: scale(1.04);
  }

  .blog-feat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.82) 100%);
  }

  .blog-feat-content {
    position: relative;
    z-index: 2;
    padding: 28px;
  }

  .blog-tipo--light {
    color: var(--green-light);
    opacity: 0.9;
  }

  .blog-feat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.25;
    color: #fff;
    margin: 8px 0 12px;
  }

  .blog-feat-excerpt {
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
  }

  .blog-feat-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 14px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
  }

  .blog-feat-link {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--green-light);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: opacity 0.2s;
  }

  .blog-feat-link:hover {
    opacity: 0.7;
  }



  /* ─── TAGS ROOT LEGEND ─── */
  .tags-legend {
    background: var(--bg-dark);
    color: #fff;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 64px;
    align-items: start;
  }

  .tags-legend h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
  }

  .tags-legend h3 em {
    font-style: italic;
    opacity: 0.6;
  }

  .tags-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .tag-legend-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .tag-legend-color {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-bottom: 12px;
  }

  .tl-root {
    background: #4a7040;
  }

  .tl-ext {
    background: #C4703A;
  }

  .tl-inter {
    background: #8B2020;
  }

  .tl-rec {
    background: #C9A84C;
  }

  .tag-legend-name {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
  }

  .tag-legend-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

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

  .footer-brand h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
  }

  .footer-brand p {
    font-size: 0.82rem;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 20px;
  }

  .footer-col h5 {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover {
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-col-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--green-light);
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .footer-col-more:hover {
    opacity: 0.7;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
  }

  /* ─── REAL PHOTOS (Unsplash) ─── */
  .ph-forest {
    background-image: linear-gradient(160deg, rgba(15, 30, 15, 0.45) 0%, rgba(20, 40, 15, 0.3) 100%),
      url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=900&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
  }

  .ph-hero {
    background-image: linear-gradient(180deg, rgba(8, 18, 8, 0.2) 0%, rgba(6, 14, 6, 0.6) 100%),
      url('https://images.unsplash.com/photo-1474487548417-781cb6d646df?w=1600&q=90&auto=format&fit=crop');
    background-size: cover;
    background-position: center 40%;
  }

  .ph-mountain {
    background-image: linear-gradient(160deg, rgba(20, 28, 36, 0.45) 0%, rgba(15, 22, 30, 0.3) 100%),
      url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=900&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
  }

  .ph-coast {
    background-image: linear-gradient(160deg, rgba(10, 28, 40, 0.45) 0%, rgba(8, 22, 32, 0.3) 100%),
      url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?w=900&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
  }

  .ph-village {
    background-image: linear-gradient(160deg, rgba(40, 25, 15, 0.45) 0%, rgba(30, 18, 8, 0.3) 100%),
      url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=900&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
  }

  .ph-hostal {
    background-image: linear-gradient(160deg, rgba(30, 22, 15, 0.4) 0%, rgba(22, 16, 10, 0.25) 100%),
      url('https://images.unsplash.com/photo-1516455207990-7a41ce80f7ee?w=900&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
  }

  .ph-mercado {
    background-image: linear-gradient(160deg, rgba(38, 28, 8, 0.4) 0%, rgba(28, 20, 4, 0.25) 100%),
      url('https://images.unsplash.com/photo-1488459716781-31db52582fe9?w=900&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
  }

  .ph-train {
    background-image: linear-gradient(160deg, rgba(15, 20, 28, 0.4) 0%, rgba(10, 15, 22, 0.25) 100%),
      url('https://images.unsplash.com/photo-1474487548417-781cb6d646df?w=900&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
  }

  .ph-notebook {
    background-image: linear-gradient(160deg, rgba(28, 22, 14, 0.4) 0%, rgba(20, 16, 8, 0.25) 100%),
      url('https://images.unsplash.com/photo-1455390582262-044cdead277a?w=900&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
  }

  /* ─── AFILIACION NOTA ─── */
  .afiliacion-note {
    text-align: center;
    padding: 28px 64px;
    font-size: 0.75rem;
    color: var(--muted);
    border-top: 1px solid rgba(28, 28, 20, 0.08);
    background: var(--bg);
    line-height: 1.6;
  }

  .afiliacion-note a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* ─── HAMBURGER ─── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 4px;
    outline: none;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.2s, width 0.2s;
    transform-origin: center;
  }

  .nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .nav-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    nav {
      padding: 14px 20px;
    }

    .nav-hamburger {
      display: flex;
    }

    .nav-links {
      display: none;
      position: fixed;
      top: 73px;
      left: 0;
      right: 0;
      background: rgba(245, 240, 232, 0.98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 0;
      list-style: none;
      z-index: 99;
      padding: 8px 0 20px;
      border-top: 1px solid rgba(28, 28, 20, 0.08);
      box-shadow: 0 8px 24px rgba(28, 28, 20, 0.10);
    }

    .nav-links.is-open {
      display: flex;
    }

    .nav-links li {
      width: 100%;
      border-bottom: 1px solid rgba(28, 28, 20, 0.06);
    }

    .nav-links a {
      display: block;
      padding: 15px 24px;
      font-size: 0.88rem;
      letter-spacing: 0.1em;
    }

    .nav-item>a {
      justify-content: space-between;
    }

    .nav-dropdown {
      display: none;
      position: static !important;
      opacity: 1 !important;
      visibility: visible !important;
      transform: none !important;
      pointer-events: auto !important;
      padding-top: 0;
      min-width: 0;
    }

    .nav-item.is-open .nav-dropdown {
      display: block;
    }

    .nav-item.is-open>a .nav-arrow {
      transform: rotate(180deg);
    }

    .nav-dropdown-inner {
      background: rgba(28, 28, 20, 0.04) !important;
      border: none !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
      padding: 0;
    }

    .nav-dropdown-inner::before {
      display: none !important;
    }

    .nav-dropdown a {
      padding: 13px 24px 13px 36px;
      font-size: 0.8rem;
      white-space: normal;
    }

    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .hero-left {
      padding: 60px 24px 40px;
    }

    .hero-right {
      height: 340px;
    }

    section {
      padding: 64px 24px;
    }

    .sensorial-banner {
      grid-template-columns: 1fr;
      padding: 60px 24px;
      gap: 40px;
    }

    .tags-legend {
      grid-template-columns: 1fr;
      padding: 48px 24px;
      gap: 32px;
    }

    .tags-grid {
      grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    footer {
      padding: 48px 24px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }

    .inmersion-card {
      flex: 0 0 300px;
    }

    .guia-card {
      flex: 0 0 240px;
    }

    .articulo-card {
      flex: 0 0 280px;
    }
  }

  /* ─── FADE IN ─── */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

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

  .hero-left>* {
    animation: fadeUp 0.7s ease both;
  }

  .hero-left>*:nth-child(1) {
    animation-delay: 0.1s;
  }

  .hero-left>*:nth-child(2) {
    animation-delay: 0.2s;
  }

  .hero-left>*:nth-child(3) {
    animation-delay: 0.35s;
  }

  .hero-left>*:nth-child(4) {
    animation-delay: 0.5s;
  }

  /* ═══════════════════════════════════════════════════════════════
   NAV DROPDOWN  (shared by listado & ficha)
═══════════════════════════════════════════════════════════════ */

  /* ─── NAV DROPDOWN ─── */
  .nav-item {
    position: relative;
  }

  .nav-item>a {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .nav-item>a .nav-arrow {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    transition: transform 0.25s;
  }

  .nav-item:hover>a .nav-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    min-width: 200px;
    padding-top: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    pointer-events: none;
  }

  .nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  .nav-dropdown-inner {
    background: rgba(245, 240, 232, 0.97);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(28, 28, 20, 0.1);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(28, 28, 20, 0.12);
    padding: 8px 0;
    position: relative;
  }

  .nav-dropdown-inner::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 9px;
    height: 9px;
    background: rgba(245, 240, 232, 0.97);
    border-top: 1px solid rgba(28, 28, 20, 0.1);
    border-left: 1px solid rgba(28, 28, 20, 0.1);
  }

  .nav-dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
    position: relative;
  }

  .nav-dropdown a::after {
    display: none;
  }

  .nav-dropdown a:hover {
    color: var(--green);
    background: rgba(45, 74, 45, 0.05);
  }

  .nav-dropdown a+a {
    border-top: 1px solid rgba(28, 28, 20, 0.05);
  }

  /* ─── FOOTER SOCIAL (shared by listado & ficha) ─── */
  .footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-social a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-social a:hover {
    color: rgba(255, 255, 255, 0.85);
  }

  /* ═══════════════════════════════════════════════════════════════
   LISTADO: CABECERA DE PÁGINA
═══════════════════════════════════════════════════════════════ */

  /* ─── LISTADO: PAGE HEADER ─── */
  .page-header {
    padding: 140px 64px 72px;
    text-align: center;
    border-bottom: 1px solid rgba(28, 28, 20, 0.08);
    background: var(--bg);
  }

  .page-header .section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 16px;
    display: block;
  }

  .page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--ink);
  }

  .page-header h1 em {
    font-style: italic;
    color: var(--green);
  }

  .page-header-desc {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 480px;
    margin: 20px auto 0;
    line-height: 1.75;
  }

  /* ═══════════════════════════════════════════════════════════════
   LISTADO: FILTROS
═══════════════════════════════════════════════════════════════ */

  /* ─── LISTADO: FILTER BAR ─── */
  .filter-bar {
    position: sticky;
    top: 72px;
    z-index: 50;
    background: rgba(245, 240, 232, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(28, 28, 20, 0.08);
    padding: 14px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .filter-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
  }

  .filter-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
  }

  .filter-pills {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  a.sin-categoria {
    display: none;
  }

  .filter-pills::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(28, 28, 20, 0.15);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    font-family: inherit;
  }

  .filter-pill:hover {
    border-color: var(--green);
    color: var(--green);
  }

  .filter-pill.active {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
  }

  .filter-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .sort-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
  }

  .sort-select {
    font-family: inherit;
    font-size: 0.78rem;
    color: var(--ink);
    border: 1px solid rgba(28, 28, 20, 0.15);
    border-radius: 8px;
    padding: 8px 36px 8px 14px;
    background: transparent;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A7060' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    transition: border-color 0.2s;
  }

  .sort-select:focus {
    outline: none;
    border-color: var(--green);
  }

  /* ─── LISTADO: RESULTS META ─── */
  .results-meta {
    padding: 20px 64px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--muted);
  }

  .results-count strong {
    color: var(--ink);
    font-weight: 500;
  }

  /* ═══════════════════════════════════════════════════════════════
   LISTADO: ARTÍCULO DESTACADO
═══════════════════════════════════════════════════════════════ */

  /* ─── LISTADO: FEATURED CARD ─── */
  .featured-wrap {
    padding: 32px 64px 0;
  }

  .featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 32px rgba(28, 28, 20, 0.12);
    cursor: pointer;
    transition: box-shadow 0.3s;
  }

  .featured-card:hover {
    box-shadow: 0 12px 48px rgba(28, 28, 20, 0.18);
  }

  .featured-img {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(26, 26, 20, 0.7);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .featured-body {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .featured-tipo {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 16px;
  }

  .featured-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 16px;
  }

  .featured-title em {
    font-style: italic;
    color: var(--green);
  }

  .featured-excerpt {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .featured-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(28, 28, 20, 0.07);
    font-size: 0.72rem;
    color: var(--muted);
  }

  .featured-read {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--green);
    text-decoration: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }

  .featured-read:hover {
    gap: 10px;
  }

  /* ═══════════════════════════════════════════════════════════════
   LISTADO: ARTÍCULOS
═══════════════════════════════════════════════════════════════ */

  /* ─── LISTADO: ARTICLES GRID ─── */
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 40px 64px 0;
    margin-bottom: 50px;
  }

  .article-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
  }

  .article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(28, 28, 20, 0.15);
  }

  .article-img {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
  }

  .article-tipo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
  }

  .badge-cronica {
    background: rgba(45, 74, 45, 0.9);
    color: #fff;
  }

  .badge-guia {
    background: rgba(196, 112, 58, 0.9);
    color: #fff;
  }

  .badge-reflexion {
    background: rgba(28, 28, 20, 0.75);
    color: #fff;
  }

  .badge-articulo {
    background: rgba(122, 112, 96, 0.85);
    color: #fff;
  }

  .badge-entrevista {
    background: rgba(201, 168, 76, 0.9);
    color: #1a1a00;
  }

  .article-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .article-tipo {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 9px;
  }

  .article-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 10px;
    flex: 1;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .article-excerpt {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(28, 28, 20, 0.06);
    padding-top: 12px;
    font-size: 0.7rem;
    color: var(--muted);
  }

  .article-read {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--green);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: opacity 0.2s;
  }

  .article-read:hover {
    opacity: 0.6;
  }

  /* ─── LISTADO: PAGINATION ─── */
  .pagination-wrap {
    padding: 56px 64px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .page-btn {
    padding: 9px 22px;
    border-radius: 40px;
    border: 1px solid rgba(28, 28, 20, 0.18);
    background: transparent;
    font-size: 0.78rem;
    color: var(--ink);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .page-btn:hover {
    border-color: var(--green);
    color: var(--green);
  }

  .page-btn:disabled {
    opacity: 0.35;
    cursor: default;
  }

  .page-nums {
    display: flex;
    gap: 4px;
    align-items: center;
  }

  .page-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: transparent;
    font-size: 0.82rem;
    color: var(--muted);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-num:hover {
    border-color: rgba(28, 28, 20, 0.18);
    color: var(--ink);
  }

  .page-num.active {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
  }

  .page-ellipsis {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
  }

  /* ─── LISTADO: RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .articles-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .page-header {
      padding: 120px 24px 56px;
    }

    .filter-bar {
      padding: 12px 24px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .results-meta {
      padding: 16px 24px 0;
    }

    .featured-wrap {
      padding: 24px 24px 0;
    }

    .featured-card {
      grid-template-columns: 1fr;
    }

    .featured-img {
      min-height: 240px;
    }

    .featured-body {
      padding: 28px 24px;
    }

    .articles-grid {
      grid-template-columns: 1fr;
      padding: 24px 24px 0;
    }

    .pagination-wrap {
      padding: 40px 24px 60px;
      flex-wrap: wrap;
    }
  }

  /* ═══════════════════════════════════════════════════════════════
   FICHA: BARRA DE PROGRESO
═══════════════════════════════════════════════════════════════ */

  /* ─── FICHA: PROGRESS BAR ─── */
  .reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    z-index: 200;
    background: var(--green-light);
    width: 0%;
    transition: width 0.1s linear;
  }

  /* ═══════════════════════════════════════════════════════════════
   FICHA: HERO DEL ARTÍCULO
═══════════════════════════════════════════════════════════════ */

  /* ─── FICHA: ARTICLE HERO ─── */
  .article-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
  }

  .article-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    transition: transform 12s ease-out;
  }

  .article-hero:hover .article-hero-bg {
    transform: scale(1);
  }

  .article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(10, 15, 8, 0.1) 0%,
        rgba(10, 15, 8, 0.25) 40%,
        rgba(8, 12, 6, 0.75) 75%,
        rgba(6, 10, 4, 0.92) 100%);
  }

  .article-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 10vw 72px;
    max-width: 1000px;
  }

  .hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
  }

  .hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
  }

  .hero-breadcrumb a:hover {
    color: #fff;
  }

  .hero-breadcrumb span {
    opacity: 0.35;
  }

  .hero-tipo {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(201, 168, 76, 0.25);
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--gold);
  }

  .article-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 28px;
  }

  .article-hero-title em {
    font-style: italic;
    color: var(--green-light);
  }

  .hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    flex-wrap: wrap;
  }

  .hero-meta-sep {
    opacity: 0.3;
  }

  .hero-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green-mid);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #fff;
  }

  .hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    right: 10vw;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    animation: bounceDown 2.5s infinite;
  }

  @keyframes bounceDown {

    0%,
    100% {
      transform: translateY(0);
      opacity: 0.3;
    }

    50% {
      transform: translateY(5px);
      opacity: 0.6;
    }
  }

  /* ═══════════════════════════════════════════════════════════════
   FICHA: CUERPO DEL ARTÍCULO
═══════════════════════════════════════════════════════════════ */

  /* ─── FICHA: ARTICLE LAYOUT ─── */
  .article-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 72px 32px 0;
  }

  /* ─── FICHA: LEAD PARAGRAPH ─── */
  .article-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 40px;
  }

  .article-lead em {
    font-style: italic;
    color: var(--green);
  }

  /* ─── FICHA: BODY TEXT ─── */
  .article-body p {
    font-size: 0.96rem;
    line-height: 1.85;
    color: var(--ink);
    margin-bottom: 28px;
  }

  .article-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin: 52px 0 20px;
  }

  .article-body h2 em {
    font-style: italic;
    color: var(--green);
  }

  .article-body strong {
    font-weight: 500;
    color: var(--ink);
  }

  .article-body a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ─── FICHA: SENSORIAL CARD ─── */
  .sensorial-card {
    margin: 48px 0;
    border: 1px solid rgba(45, 74, 45, 0.18);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(45, 74, 45, 0.04) 0%, rgba(143, 184, 122, 0.06) 100%);
    overflow: hidden;
  }

  .sensorial-card-header {
    padding: 18px 28px;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sensorial-card-header h4 {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.9;
  }

  .sensorial-card-header span {
    font-size: 0.7rem;
    opacity: 0.6;
  }

  .sensorial-card .sensorial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 24px 28px;
    gap: 20px;
  }

  .sensorial-card .sensorial-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .sensorial-icon {
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 2px;
  }

  .sensorial-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .sensorial-card .sensorial-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--ink);
  }

  .sensorial-footer {
    padding: 12px 28px;
    border-top: 1px solid rgba(45, 74, 45, 0.1);
    font-size: 0.72rem;
    color: var(--muted);
    font-style: italic;
  }

  /* ─── FICHA: PULL QUOTE ─── */
  .pull-quote {
    margin: 52px -40px;
    padding: 36px 40px;
    border-left: 3px solid var(--green-light);
    background: rgba(143, 184, 122, 0.06);
  }

  .pull-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 2.5vw, 1.7rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--green);
    margin-bottom: 16px;
  }

  .pull-quote cite {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-style: normal;
    display: block;
  }

  /* ─── FICHA: INLINE IMAGE ─── */
  .inline-img-wrap {
    margin: 48px -40px;
  }

  .inline-img {
    width: 100%;
    height: 380px;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .inline-img-caption {
    padding: 10px 4px 0;
    font-size: 0.72rem;
    color: var(--muted);
    font-style: italic;
    line-height: 1.5;
    text-align: left;
  }

  /* ─── FICHA: DIVIDER ─── */
  .article-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 52px 0;
  }

  .article-divider::before,
  .article-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(28, 28, 20, 0.12);
  }

  .article-divider span {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--muted);
    opacity: 0.6;
  }

  /* ─── FICHA: TAGS ─── */
  .article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 40px 0 0;
    border-top: 1px solid rgba(28, 28, 20, 0.08);
    margin-top: 52px;
  }

  .tags-label {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 4px;
  }

  .tag-pill {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 20px;
    border: 1px solid rgba(28, 28, 20, 0.15);
    color: var(--muted);
    text-decoration: none;
    transition: all 0.2s;
  }

  .tag-pill:hover {
    border-color: var(--green);
    color: var(--green);
  }

  /* ─── FICHA: SHARE ─── */
  .article-share {
    padding: 36px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(28, 28, 20, 0.08);
    margin-top: 32px;
  }

  .share-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .share-links {
    display: flex;
    gap: 10px;
  }

  .share-btn {
    padding: 8px 18px;
    border-radius: 40px;
    border: 1px solid rgba(28, 28, 20, 0.18);
    background: transparent;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s;
    text-decoration: none;
  }

  .share-btn:hover {
    border-color: var(--green);
    color: var(--green);
  }

  .back-to-listado {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--green);
    text-decoration: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }

  .back-to-listado:hover {
    gap: 10px;
  }

  /* ═══════════════════════════════════════════════════════════════
   FICHA: BIO AUTOR
═══════════════════════════════════════════════════════════════ */

  /* ─── FICHA: AUTHOR BIO ─── */
  .author-bio {
    margin: 0 auto 80px;
    max-width: 1400px;
    padding: 0 32px;
  }

  .author-bio-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid rgba(28, 28, 20, 0.07);
  }

  .author-bio-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 300;
  }

  .author-bio-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 4px;
  }

  .author-bio-text .author-role {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 12px;
  }

  .author-bio-text p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ═══════════════════════════════════════════════════════════════
   FICHA: ARTÍCULOS RELACIONADOS
═══════════════════════════════════════════════════════════════ */

  /* ─── FICHA: RELATED ARTICLES ─── */
  .related-section {
    background: var(--cream);
    border-top: 1px solid rgba(28, 28, 20, 0.08);
    padding: 80px 64px;
  }

  .related-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .related-header-left .section-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    display: block;
    margin-bottom: 8px;
  }

  .related-header-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
  }

  .related-header-left h2 em {
    font-style: italic;
    color: var(--green);
  }

  .see-all-link {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--green);
    text-decoration: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
    white-space: nowrap;
  }

  .see-all-link:hover {
    gap: 10px;
  }

  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .related-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
  }

  .related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(28, 28, 20, 0.15);
  }

  .related-img {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
  }

  .related-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
  }

  .related-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .related-tipo {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 9px;
  }

  .related-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 8px;
  }

  .related-excerpt {
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 12px;
    flex: 1;
  }

  .related-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(28, 28, 20, 0.06);
    padding-top: 12px;
    font-size: 0.7rem;
    color: var(--muted);
  }

  .related-read {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--green);
    letter-spacing: 0.04em;
  }

  /* ARCHIVE INMERSIONES */

  .inm-hero {
    background: var(--bg-dark);
    padding: 120px 48px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .inm-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(45, 74, 45, 0.35) 0%, transparent 70%);
    pointer-events: none;
  }

  .inm-hero .section-label {
    color: var(--green-light);
    font-size: 0.72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
  }

  .inm-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--bg);
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: 20px;
  }

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

  .inm-hero p {
    color: rgba(245, 240, 232, 0.6);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* ── FILTER BAR (reusa estilos del archive) ─── */
  .inm-filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 24px 48px;
    border-bottom: 1px solid rgba(28, 28, 20, 0.08);
    background: var(--bg);
    position: sticky;
    top: 64px;
    z-index: 10;
  }

  .inm-filter-bar .filter-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    white-space: nowrap;
  }

  .inm-filter-bar .filter-pill {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 99px;
    border: 1px solid rgba(28, 28, 20, 0.15);
    color: var(--ink);
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
  }

  .inm-filter-bar .filter-pill:hover,
  .inm-filter-bar .filter-pill.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
  }

  /* ── RESULTS META ─── */
  .inm-results-meta {
    padding: 20px 48px 0;
    font-size: 0.78rem;
    color: var(--muted);
  }

  /* ── GRID ─── */
  .inm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    padding: 28px 48px 64px;
  }

  /* ── CARD ─── */
  .inm-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
  }

  .inm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(28, 28, 20, 0.14);
  }

  .inm-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 14px;
  }

  .inm-badge-estado {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 99px;
  }

  .inm-badge-estado.disponible {
    background: #e8f2e3;
    color: #2D4A2D;
  }

  .inm-badge-estado.lista-espera {
    background: #fff8dc;
    color: #7a5e00;
  }

  .inm-badge-estado.proximo {
    background: #e8f0fb;
    color: #2a4a8a;
  }

  .inm-badge-estado.desarrollo {
    background: #f0f0ec;
    color: #666;
  }

  .inm-badge-esfuerzo {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 99px;
  }

  .inm-badge-esfuerzo.verde {
    background: #e8f2e3;
    color: #2D4A2D;
  }

  .inm-badge-esfuerzo.amarillo {
    background: #fff8dc;
    color: #7a5e00;
  }

  .inm-badge-esfuerzo.naranja {
    background: #fdecd8;
    color: #8a3a00;
  }

  .inm-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
  }

  .inm-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
  }

  .inm-card-subtitle {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.4;
  }

  .inm-card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
  }

  .inm-card-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--muted);
    background: var(--cream);
    border-radius: 6px;
    padding: 3px 9px;
    white-space: nowrap;
  }

  .inm-card-stat svg {
    flex-shrink: 0;
    opacity: .6;
  }

  .inm-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--cream);
  }

  .inm-card-nodo {
    font-size: 0.72rem;
    color: var(--muted);
  }

  .inm-card-cta {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
  }

  /* ── EMPTY STATE ─── */
  .inm-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 24px;
    color: var(--muted);
  }

  /* ── CONTACT SECTION ─── */
  .inm-contact-section {
    background: var(--bg-dark);
    padding: 80px 48px;
  }

  .inm-contact-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .inm-contact-text .section-label {
    color: var(--green-light);
    font-size: 0.72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
  }

  .inm-contact-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .inm-contact-text h2 em {
    font-style: italic;
    color: var(--green-light);
  }

  .inm-contact-text p {
    color: rgba(245, 240, 232, 0.55);
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .inm-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .inm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .inm-form label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(245, 240, 232, 0.5);
    display: block;
    margin-bottom: 5px;
  }

  .inm-form input,
  .inm-form select,
  .inm-form textarea {
    width: 100%;
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.12);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.88rem;
    color: var(--bg);
    font-family: inherit;
    transition: border-color .2s;
  }

  .inm-form input::placeholder,
  .inm-form textarea::placeholder {
    color: rgba(245, 240, 232, 0.25);
  }

  .inm-form input:focus,
  .inm-form select:focus,
  .inm-form textarea:focus {
    outline: none;
    border-color: var(--green-light);
  }

  .inm-form select option {
    background: var(--bg-dark);
    color: var(--bg);
  }

  .inm-form textarea {
    resize: vertical;
    min-height: 90px;
  }

  .inm-form-submit {
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
    width: 100%;
    margin-top: 4px;
  }

  .inm-form-submit:hover {
    background: var(--green-mid);
  }

  /* SINGLE INMERSION */

  .sinm-hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    overflow: hidden;
  }

  .sinm-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }

  .sinm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(15, 20, 15, 0.15) 0%,
        rgba(10, 14, 10, 0.15) 50%,
        rgba(10, 14, 10, 0.75) 100%);
  }

  .sinm-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 48px 36px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }

  .sinm-hero-left {
    flex: 1;
  }

  .sinm-breadcrumb {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--green-light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
  }

  .sinm-breadcrumb:hover {
    color: #fff;
  }

  .sinm-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.02em;
    max-width: 640px;
  }

  .sinm-hero-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
  }

  .sinm-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 240, 232, 0.12);
    border: 1px solid rgba(245, 240, 232, 0.18);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 110px;
  }

  .sinm-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(245, 240, 232, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .sinm-stat-icon svg {
    color: #fff;
  }

  .sinm-stat-text {}

  .sinm-stat-label {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(245, 240, 232, 0.55);
    display: block;
  }

  .sinm-stat-val {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    display: block;
    white-space: nowrap;
  }

  /* ── STATUS BAR ── */
  .sinm-status-bar {
    background: var(--cream);
    border-bottom: 1px solid rgba(28, 28, 20, 0.08);
    padding: 12px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .sinm-status-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .sinm-badge-estado {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 99px;
  }

  .sinm-badge-estado.disponible {
    background: #e8f2e3;
    color: #2D4A2D;
  }

  .sinm-badge-estado.lista-espera {
    background: #fff8dc;
    color: #7a5e00;
  }

  .sinm-badge-estado.proximo {
    background: #e8f0fb;
    color: #2a4a8a;
  }

  .sinm-badge-estado.desarrollo {
    background: #f0f0ec;
    color: #666;
  }

  .sinm-nodo {
    font-size: 0.78rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .sinm-nodo svg {
    opacity: .5;
  }

  .sinm-subtitulo {
    font-size: 0.78rem;
    color: var(--muted);
    font-style: italic;
  }

  /* ── BODY LAYOUT ── */
  .sinm-body {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px 80px;
    align-items: start;
  }

  /* ── CONTENT ── */
  .sinm-content {
    padding: 48px 64px 0 0;
  }

  .sinm-content .article-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink);
  }

  .sinm-content .article-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 40px 0 14px;
    color: var(--ink);
  }

  .sinm-content .article-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 28px 0 10px;
    color: var(--ink);
  }

  .sinm-content .article-body p {
    margin-bottom: 20px;
  }

  .sinm-content .article-body ul,
  .sinm-content .article-body ol {
    padding-left: 22px;
    margin-bottom: 20px;
  }

  .sinm-content .article-body li {
    margin-bottom: 6px;
  }

  .sinm-content .article-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
    border-left: 3px solid var(--green);
    padding-left: 18px;
    margin-bottom: 32px;
  }

  /* ── FICHA TÉCNICA ── */
  .sinm-ficha {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 24px;
    margin: 36px 0;
  }

  .sinm-ficha-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted);
    margin-bottom: 16px;
  }

  .sinm-ficha-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }

  .sinm-ficha-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .sinm-ficha-key {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
  }

  .sinm-ficha-val {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
  }

  .sinm-ficha-esfuerzo {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 99px;
    font-size: 0.78rem;
  }

  /* ── SENSORIAL ── */
  .sinm-sensorial {
    border: 1px solid rgba(28, 28, 20, 0.1);
    border-radius: var(--radius);
    padding: 24px;
    margin: 28px 0;
  }

  .sinm-sensorial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .sinm-sensorial-header h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green);
  }

  .sinm-sensorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .sinm-sensorial-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .sinm-sensorial-icon {
    font-size: 1.1rem;
  }

  .sinm-sensorial-lbl {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
  }

  .sinm-sensorial-val {
    font-size: 0.82rem;
    color: var(--ink);
  }

  /* ── QUÉ APRENDERÁS ── */
  .sinm-aprende {
    margin: 28px 0;
  }

  .sinm-aprende-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted);
    margin-bottom: 12px;
  }

  .sinm-aprende-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .sinm-aprende-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--ink);
  }

  .sinm-aprende-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    margin-top: 7px;
    flex-shrink: 0;
  }

  /* ── SIDEBAR ── */
  .sinm-sidebar {
    padding: 36px 0 0 0;
    position: sticky;
    top: 88px;
  }

  .sinm-form-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .sinm-form-card-header {
    background: var(--green);
    padding: 22px 24px;
  }

  .sinm-form-card-header p {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 4px;
  }

  .sinm-form-card-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
  }

  .sinm-form-card-header .sinm-grupo-badge {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.72rem;
    color: rgba(245, 240, 232, 0.7);
    background: rgba(245, 240, 232, 0.1);
    border-radius: 99px;
    padding: 3px 10px;
  }

  .sinm-form-body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .wpcf7-not-valid-tip{
    margin-top: 10px;
  }

  .wpcf7-submit:hover, .wpcf7-submit:focus, .wpcf7-submit:active {
    background-color: var(--green) !important;
    border-color: var(--green) !important;
  }

  .sinm-form-body label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    display: block;
    margin-bottom: 5px;
  }

  .sinm-form-body input,
  .sinm-form-body select,
  .sinm-form-body textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid rgba(28, 28, 20, 0.12);
    border-radius: 8px;
    padding: 10px 13px;
    font-size: 0.88rem;
    color: var(--ink);
    font-family: inherit;
    transition: border-color .2s;
    margin-top: 10px;
  }

  .sinm-form-body input::placeholder,
  .sinm-form-body textarea::placeholder {
    color: var(--muted);
    opacity: .5;
  }

  .sinm-form-body input:focus,
  .sinm-form-body select:focus,
  .sinm-form-body textarea:focus {
    outline: none;
    border-color: var(--green);
  }

  .sinm-form-body textarea {
    resize: vertical;
    min-height: 80px;
  }

  .sinm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .sinm-form-submit {
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
    width: 100%;
  }

  .sinm-form-submit:hover {
    background: var(--green-mid);
  }

  .sinm-form-note {
    font-size: 0.7rem;
    color: var(--muted);
    text-align: center;
    padding: 0 24px 20px;
    line-height: 1.5;
  }

  /* ── RELATED ── */
  .sinm-back {
    padding: 20px 48px 0;
    max-width: 1200px;
    margin: 0 auto;
  }

  .sinm-back a {
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
  }

  .sinm-back a:hover {
    color: var(--green);
  }

  @media (max-width: 960px) {
    .sinm-hero-content {
      flex-direction: column;
      align-items: flex-start;
      padding: 0 24px 28px;
    }

    .sinm-hero-stats {
      width: 100%;
    }

    .sinm-status-bar {
      padding: 12px 24px;
    }

    .sinm-body {
      grid-template-columns: 1fr;
      padding: 0 24px 60px;
    }

    .sinm-content {
      padding: 32px 0 0;
    }

    .sinm-sidebar {
      position: static;
      padding-top: 0;
    }

    .sinm-sensorial-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .sinm-back {
      padding: 20px 24px 0;
    }
  }

  @media (max-width: 900px) {
    .inm-hero {
      padding: 100px 24px 48px;
    }

    .inm-filter-bar {
      padding: 16px 24px;
    }

    .inm-results-meta {
      padding: 16px 24px 0;
    }

    .inm-grid {
      padding: 20px 24px 48px;
      gap: 16px;
    }

    .inm-contact-section {
      padding: 60px 24px;
    }

    .inm-contact-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .inm-form-row {
      grid-template-columns: 1fr;
    }
  }

  /* ─── FICHA: RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .related-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .sensorial-card .sensorial-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .article-hero-content {
      padding: 0 24px 56px;
    }

    .article-container {
      padding: 48px 24px 0;
    }

    .pull-quote {
      margin: 40px 0;
      padding: 28px 24px;
    }

    .inline-img-wrap {
      margin: 40px 0;
    }

    .inline-img {
      height: 240px;
    }

    .article-share {
      flex-direction: column;
      align-items: flex-start;
    }

    .related-section {
      padding: 60px 24px;
    }

    .related-grid {
      grid-template-columns: 1fr;
    }

    .related-header {
      flex-direction: column;
      gap: 12px;
    }

    .author-bio {
      padding: 0 24px;
    }

    .author-bio-inner {
      flex-direction: column;
      padding: 24px;
    }

    .filter-bar {
      gap: 30px;
    }

    .filter-right,
    .filter-left {
      width: 100%;
      flex-wrap: wrap;
    }
  }

  @media(min-width:991px) {
    .nav-item {
      display: flex;
    }
  }

  /* ═══════════════════════════════════════════════════════════════
   FICHA: INMERSIÓN ROOT — CAMPOS PERSONALIZADOS
═══════════════════════════════════════════════════════════════ */

  /* ─── FICHA TÉCNICA ─── */
  .inm-ficha {
    max-width: 1400px;
    margin: 48px auto 0;
    padding: 0 20px;
  }

  .inm-ficha-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
  }

  .inm-ficha-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
  }

  .inm-ficha-item {
    background: rgba(28, 48, 28, 0.04);
    border: 1px solid rgba(28, 48, 28, 0.1);
    border-radius: 10px;
    padding: 14px 16px;
  }

  .inm-ficha-key {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
  }

  .inm-ficha-val {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
  }

  .inm-esfuerzo {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(80, 130, 60, 0.12);
    color: var(--green);
  }

  .inm-esfuerzo[data-nivel="alto"] {
    background: rgba(180, 60, 40, 0.1);
    color: #b43c28;
  }

  .inm-esfuerzo[data-nivel="medio"] {
    background: rgba(180, 130, 30, 0.1);
    color: #8a6800;
  }

  .inm-ficha-nodo {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(28, 48, 28, 0.08);
    font-style: italic;
  }

  /* ─── PERFIL SENSORIAL (6 items override) ─── */
  .inm-sensorial-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* ─── QUÉ APRENDERÁS ─── */
  .inm-aprende {
    max-width: 1400px;
    margin: 32px auto 0;
    padding: 0 40px;
  }

  .inm-aprende-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
  }

  .inm-aprende-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .inm-aprende-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--ink);
    line-height: 1.5;
  }

  .inm-aprende-list li::before {
    content: "✦";
    color: var(--green);
    font-size: 0.6rem;
    margin-top: 5px;
    flex-shrink: 0;
  }

  /* ─── INMERSIÓN ROOT: RESPONSIVE ─── */
  @media (max-width: 768px) {

    .inm-ficha,
    .inm-aprende {
      padding: 0 24px;
    }

    .inm-ficha-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .inm-sensorial-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }

  @media (max-width: 480px) {
    .inm-ficha-grid {
      grid-template-columns: 1fr;
    }

    .inm-sensorial-grid {
      grid-template-columns: 1fr !important;
    }
  }

  /* ═══════════════════════════════════════════════════════════════
   AVISO LEGAL
═══════════════════════════════════════════════════════════════ */

  .legal-hero {
    padding: 160px 80px 64px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .legal-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .legal-lead {
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 0.04em;
  }

  .legal-wrap {
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px 120px;
    align-items: start;
  }

  /* ─── TOC ─── */
  .legal-toc {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .legal-toc-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
  }

  .legal-toc-link {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    text-decoration: none;
    padding: 4px 0;
    border-left: 2px solid transparent;
    padding-left: 10px;
    transition: color 0.2s, border-color 0.2s;
    line-height: 1.4;
  }

  .legal-toc-link:hover {
    color: var(--green);
    border-left-color: var(--green);
  }

  /* ─── BODY ─── */
  .legal-body {
    display: flex;
    flex-direction: column;
  }

  .legal-section {
    padding: 40px 0;
    border-top: 1px solid rgba(28, 28, 20, 0.1);
    scroll-margin-top: 90px;
  }

  .legal-section--highlight {
    background: rgba(45, 74, 45, 0.03);
    border-radius: 14px;
    padding: 32px;
    margin: 0 -32px;
    border-top: none;
    border: 1px solid rgba(45, 74, 45, 0.1);
    margin-bottom: 8px;
  }

  .legal-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }

  .legal-subsection {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    margin: 24px 0 10px;
  }

  .legal-body p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 10px;
  }

  .legal-body p strong {
    color: var(--ink);
  }

  .legal-body a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .legal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .legal-list li {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.5;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .legal-list li::before {
    content: "–";
    color: var(--green);
    flex-shrink: 0;
    margin-top: 1px;
  }

  .legal-callout {
    background: rgba(28, 28, 20, 0.04);
    border-left: 3px solid var(--green);
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 16px 0;
  }

  .legal-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 16px 0;
  }

  .legal-data-item {
    background: rgba(28, 28, 20, 0.03);
    border: 1px solid rgba(28, 28, 20, 0.08);
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .legal-data-key {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
  }

  .legal-data-val {
    font-size: 0.84rem;
    color: var(--ink);
    line-height: 1.4;
  }

  .legal-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 12px 0;
  }

  .legal-col-label {
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--green) !important;
    margin-bottom: 8px !important;
  }

  .legal-cancel-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0;
  }

  .legal-cancel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(28, 28, 20, 0.03);
    border-radius: 8px;
    padding: 10px 16px;
    gap: 16px;
  }

  .legal-cancel-when {
    font-size: 0.84rem;
    color: var(--ink);
  }

  .legal-cancel-val {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
  }

  .legal-cancel-val--ok {
    background: rgba(45, 74, 45, 0.1);
    color: var(--green);
  }

  .legal-cancel-val--mid {
    background: rgba(201, 168, 76, 0.12);
    color: #8a6800;
  }

  .legal-cancel-val--no {
    background: rgba(180, 60, 40, 0.1);
    color: #b43c28;
  }

  .legal-updated {
    font-size: 0.72rem !important;
    color: rgba(122, 112, 96, 0.5) !important;
    margin-top: 8px !important;
    font-style: italic;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .legal-wrap {
      grid-template-columns: 1fr;
      padding: 0 40px 80px;
    }

    .legal-hero {
      padding: 140px 40px 48px;
    }

    .legal-toc {
      position: static;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 4px 16px;
      border-bottom: 1px solid rgba(28, 28, 20, 0.1);
      padding-bottom: 20px;
    }

    .legal-toc-link {
      border-left: none;
      padding-left: 0;
    }

    .legal-section--highlight {
      margin: 0;
    }
  }

  @media (max-width: 600px) {
    .legal-hero {
      padding: 120px 24px 40px;
    }

    .legal-wrap {
      padding: 0 24px 64px;
    }

    .legal-data-grid,
    .legal-two-col {
      grid-template-columns: 1fr;
    }

    .legal-cancel-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }
  }

  /* ═══════════════════════════════════════════════════════════════
   CONTACTO
═══════════════════════════════════════════════════════════════ */

  /* ─── HERO ─── */
  .contact-hero {
    padding: 160px 64px 80px;
    max-width: 680px;
  }

  .contact-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ink);
  }

  .contact-lead {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 480px;
  }

  /* ─── LAYOUT ─── */
  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px 120px;
  }

  /* ─── FORM ─── */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .cf-row {
    display: flex;
    gap: 16px;
  }

  .cf-row--half>.cf-field {
    flex: 1;
  }

  .cf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .cf-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .cf-input {
    background: rgba(28, 28, 20, 0.04);
    border: 1px solid rgba(28, 28, 20, 0.14);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
  }

  .cf-input::placeholder {
    color: rgba(122, 112, 96, 0.55);
  }

  .cf-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45, 74, 45, 0.08);
  }

  .cf-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7060' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
  }

  .cf-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
  }

  .cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 15px 32px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s, transform 0.15s;
  }

  .cf-submit:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
  }

  /* ─── INFO COLUMN ─── */
  .contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 8px;
  }

  .contact-info-block {
    border-top: 1px solid rgba(28, 28, 20, 0.1);
    padding-top: 24px;
  }

  .contact-info-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
  }

  .contact-info-text {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
  }

  .contact-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
  }

  .contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-social-link:hover {
    color: var(--green);
  }

  .contact-manifesto {
    background: var(--green);
    color: #fff;
    border-radius: 14px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
  }

  .contact-manifesto-mark {
    font-size: 1.2rem;
    opacity: 0.7;
  }

  .contact-manifesto p {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.5;
    opacity: 0.92;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .contact-wrap {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 0 40px 80px;
    }

    .contact-hero {
      padding: 140px 40px 60px;
    }
  }

  @media (max-width: 600px) {
    .contact-hero {
      padding: 120px 24px 48px;
    }

    .contact-wrap {
      padding: 0 24px 64px;
    }

    .cf-row--half {
      flex-direction: column;
    }
  }