      :root {
        /* Base tierra (crema + arena) */
        --bg: #fbf6ee; /* crema */
        --card: #fffaf2; /* papel cálido */
        --text: #2a1f16; /* café muy oscuro (legible, serio) */
        --muted: #5a4637; /* café apagado */

        /* Líneas / bordes */
        --line: rgba(42, 31, 22, 0.14);

        /* Paleta rústica */
        --earth-brown: #3b2a1f; /* marrón tierra */
        --terracotta: #c46a3b; /* terracota (acento) */
        --sand: #e6d3b8; /* arena */
        --beige: #d9c3a6; /* beige madera */
        --wood: #a97c50; /* madera natural (detalle) */

        /* UI */
        --shadow: 0 10px 28px rgba(42, 31, 22, 0.12);
        --radius: 18px;
        --max: 920px;
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        font-family:
          system-ui,
          -apple-system,
          Segoe UI,
          Roboto,
          Helvetica,
          Arial,
          sans-serif;
        color: var(--text);
        line-height: 1.5;
        background:
          radial-gradient(
            900px 520px at 18% -10%,
            rgba(196, 106, 59, 0.14),
            transparent 60%
          ),
          radial-gradient(
            900px 520px at 95% 0%,
            rgba(169, 124, 80, 0.12),
            transparent 58%
          ),
          linear-gradient(180deg, #fffaf2, var(--bg));
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      .wrap {
        max-width: var(--max);
        margin: 0 auto;
        padding: 22px 18px 60px;
      }

      /* Topbar */
      .topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 0 6px;
      }

      .brand .kicker {
        font-size: 12px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(42, 31, 22, 0.65);
      }

      .brand .name {
        font-size: 16px;
        font-weight: 650;
      }

      /* Language selector */
      .lang {
        display: flex;
        gap: 6px;
        padding: 6px;
        border-radius: 999px;
        background: rgba(255, 250, 242, 0.92);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
      }

      .lang button {
        border: 0;
        background: transparent;
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 650;
        color: rgba(42, 31, 22, 0.7);
        cursor: pointer;
      }

      .lang button[aria-pressed="true"] {
        background: rgba(230, 211, 184, 0.75); /* arena */
        color: var(--text);
      }

      /* Main card */
      .card {
        margin-top: 16px;
        background: rgba(255, 250, 242, 0.94);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      /* Hero (limpio, 3 capas: imagen / isla / texto) */
.hero{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 44px 40px 34px;
  min-height: 420px;
  background: transparent;
}

/* Capa 0: imagen + overlay (fondo) */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;

background-image:
  linear-gradient(
    180deg,
    rgba(255,250,242,0.35) 0%,
    rgba(255,250,242,0.18) 45%,
    rgba(255,250,242,0.42) 100%
  ),
  url("../img/ulnf-hero.jpg");

background-size: cover;
background-position: center;
}

/* Capa 1: “isla” detrás del texto (para legibilidad) */
.hero::after{
  content:"";
  position:absolute;
  left: 26px;
  top: 26px;
  width: min(620px, calc(100% - 52px));
  height: calc(100% - 52px);
  z-index:1;

  background:
    linear-gradient(
      180deg,
      rgba(255,250,242,0.80) 0%,
      rgba(255,250,242,0.62) 55%,
      rgba(255,250,242,0.80) 100%
    );

  border: 1px solid rgba(42,31,22,0.14);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(42,31,22,0.18);
  backdrop-filter: blur(2px);
}

/* Capa 2: contenido SIEMPRE arriba */
.hero > *{
  position: relative;
  z-index:2;
}

/* Ajuste de lectura */
.hero h1{ color: #2a1f16; }
.hero .lead{
  color: rgba(42,31,22,0.86);
  max-width: 52ch;
}

/* Mobile: isla más compacta */
@media (max-width: 520px){
  .hero{
    padding: 34px 18px 24px;
    min-height: 460px;
  }
  .hero::after{
    left: 14px;
    top: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    border-radius: 16px;
  }
}

      .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 12px;
        font-size: 12px;
        font-weight: 650;
        border-radius: 999px;
        color: rgba(42, 31, 22, 0.7);
        background: rgba(255, 250, 242, 0.92);
        border: 1px solid var(--line);
      }

      .badge .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--terracotta);
        box-shadow: 0 0 0 4px rgba(196, 106, 59, 0.18);
      }

      h1 {
        margin: 16px 0 12px;
        font-size: clamp(30px, 4.8vw, 46px);
        line-height: 1.05;
        letter-spacing: -0.03em;
      }

      .lead {
        margin: 0;
        font-size: clamp(16px, 2.2vw, 19px);
        color: rgba(90, 70, 55, 0.95);
        max-width: 52ch;
      }

      /* CTA */
      .ctaRow {
        margin-top: 18px;
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: rgba(255, 250, 242, 0.95);
        font-size: 14px;
        font-weight: 700;
        color: var(--text);
        cursor: pointer;
        transition:
          transform 0.12s ease,
          box-shadow 0.12s ease,
          background 0.12s ease;
      }

      .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(42, 31, 22, 0.14);
        background: rgba(255, 250, 242, 1);
      }

      .btn.primary {
        border-color: rgba(196, 106, 59, 0.35);
        background: rgba(196, 106, 59, 0.12); /* terracota suave */
      }

      .btn.primary:hover {
        background: rgba(196, 106, 59, 0.16);
      }

      /* Grid */
      .grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 26px;
      }

      @media (min-width: 760px) {
        .grid {
          grid-template-columns: 1fr 1fr;
        }
        .hero {
          padding: 44px 40px 34px;
        }
      }

      .panel {
        padding: 20px 20px 18px;
        background: rgba(255, 250, 242, 0.92);
        border-radius: 18px;
        border: 1px solid rgba(42, 31, 22, 0.12);
      }

      .panel h2 {
        margin: 0 0 8px;
        font-size: 16px;
        letter-spacing: -0.01em;
      }

      .panel p {
        margin: 0;
        font-size: 15px;
        color: rgba(90, 70, 55, 0.95);
        max-width: 56ch;
      }

      .bullets {
        margin: 12px 0 0;
        padding-left: 18px;
        font-size: 15px;
        color: rgba(90, 70, 55, 0.95);
      }

      .bullets li {
        margin: 10px 0;
        max-width: 54ch;
      }

      /* Preview note */
      .preview {
        padding: 18px 24px;
        background: rgba(230, 211, 184, 0.55); /* arena */
        border-top: 1px solid var(--line);
        font-size: 13px;
        color: rgba(90, 70, 55, 0.95);
      }

      .preview strong {
        color: var(--text);
      }

      /* Footer */
      .footer {
        margin-top: 16px;
        padding: 0 6px;
        font-size: 12px;
        color: rgba(42, 31, 22, 0.55);
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
      }

      .smalllink {
        text-decoration: underline;
        text-underline-offset: 3px;
      }
      .image-band{
  margin: 0;
  padding: 0;
}

.image-band img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;

  /* look editorial, no stock barato */
  filter: saturate(0.95) contrast(1.02);
}

@media (max-width: 600px){
  .image-band img{
    height: 240px;
  }
}
/* Guided intake mini (inline teaser, no modal) */
.intake-mini{
  margin-top: 14px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(42, 31, 22, 0.14);
  border-radius: 16px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 10px 24px rgba(42, 31, 22, 0.10);
  display: none;
}

.intake-mini.is-open{ display: block; }

.intake-mini-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 10px;
}

.intake-mini-progress{
  display:flex;
  align-items:center;
  gap:8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(42,31,22,0.78);
}

.intake-mini-progress .dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(196, 106, 59, 0.16);
}

.linklike{
  border:0;
  background: transparent;
  padding: 6px 8px;
  border-radius: 10px;
  cursor:pointer;
  color: rgba(42,31,22,0.65);
}
.linklike:hover{
  background: rgba(230, 211, 184, 0.45);
  color: rgba(42,31,22,0.85);
}

.qblock{ margin-top: 10px; }
.q{
  font-size: 13px;
  font-weight: 750;
  color: rgba(42,31,22,0.86);
  margin-bottom: 8px;
}
.choices{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill{
  border: 1px solid rgba(42, 31, 22, 0.14);
  background: rgba(255, 250, 242, 0.96);
  color: rgba(42,31,22,0.82);
  padding: 10px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(42,31,22,0.10);
}
.pill.is-selected{
  border-color: rgba(196, 106, 59, 0.35);
  background: rgba(196, 106, 59, 0.10);
  color: rgba(42,31,22,0.92);
}

.intake-mini-bottom{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.intake-mini-bottom .micro{
  margin: 0;
}
/* --- Language toggle --- */
[data-lang] {
  display: none;
}

[data-lang].active {
  display: block;
}
