@font-face {
      font-family: 'NeutonCursive';
      src: url('assets/fonts/NeutonCursive-Regular.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Neuton';
      src: url('assets/fonts/Neuton-Regular.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Neuton';
      src: url('assets/fonts/Neuton-Italic.woff2') format('woff2');
      font-weight: 400;
      font-style: italic;
      font-display: swap;
    }
    @font-face {
      font-family: 'Neuton';
      src: url('assets/fonts/Neuton-Bold.woff2') format('woff2');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'LouisGeorgeCafe';
      src: url('assets/fonts/LouisGeorgeCafe.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'LouisGeorgeCafe';
      src: url('assets/fonts/LouisGeorgeCafe-Bold.woff2') format('woff2');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'LouisGeorgeCafe';
      src: url('assets/fonts/LouisGeorgeCafeLight-.woff2') format('woff2');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }

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

    :root {
      --crema: #F2F1EC;
      --verde: #233C23;
      --verde-medio: #3a5c3a;
      --verde-claro: #6B8C5A;
      --barro: #6B4E3D;
      --texto-suave: rgba(35, 60, 35, 0.55);
      --texto-medio: rgba(35, 60, 35, 0.75);
    }

    html, body {
      height: 100%;
      background-color: var(--crema);
      color: var(--verde);
      font-family: 'LouisGeorgeCafe', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' 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: 100;
      opacity: 0.5;
    }

    .page {
      height: 100vh;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
    }

    /* ── Izquierda ── */
    .left {
      position: relative;
      overflow: hidden;
      height: 100vh;
    }

    .left img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 45%;
      display: block;
      opacity: 0;
      transition: opacity 1.2s ease;
    }

    .left img.loaded { opacity: 1; }

    .left-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 55%, var(--crema) 100%);
    }

    /* ── Derecha ── */
    .right {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100vh;
      overflow: hidden;
      padding: 3rem 4rem 2.5rem 3rem;
      position: relative;
    }

    /* Logo / imagotipo */
    .logo-block {
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp 0.9s ease 0.3s forwards;
    }

    .logo-block svg {
      width: 240px;
      max-width: 100%;
      height: auto;
    }

    /* Centro */
    .main-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 1.2rem 0;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp 0.9s ease 0.6s forwards;
    }

    .divider {
      width: 32px;
      height: 1px;
      background: var(--verde-claro);
      margin-bottom: 1.6rem;
    }

    /* Tagline — Neuton Cursive */
    .tagline {
      font-family: 'NeutonCursive', serif;
      font-size: clamp(1.7rem, 2.6vw, 2.4rem);
      font-weight: 400;
      line-height: 1.4;
      color: var(--verde);
      margin-bottom: 1rem;
      max-width: 420px;
    }

    /* Descripción — Louis George Cafe regular */
    .descripcion {
      font-family: 'LouisGeorgeCafe', sans-serif;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      line-height: 1.75;
      color: var(--texto-medio);
      max-width: 380px;
      margin-bottom: 1.4rem;
    }

    /* Pillars — Louis George Cafe light */
    .pillars {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      margin-bottom: 1.4rem;
    }

    .pillar {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-family: 'LouisGeorgeCafe', sans-serif;
      font-weight: 300;
      font-size: 0.82rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--texto-suave);
    }

    .pillar-line {
      width: 18px;
      height: 1px;
      background: var(--verde-claro);
      flex-shrink: 0;
    }

    /* Badge */
    .badge {
      display: inline-flex;
      align-self: flex-start;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid rgba(35, 60, 35, 0.22);
      border-radius: 100px;
      padding: 0.5rem 1.2rem;
      font-family: 'LouisGeorgeCafe', sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--texto-medio);
      margin-bottom: 1.4rem;
    }

    .badge-dot {
      width: 5px;
      height: 5px;
      background: var(--verde-claro);
      border-radius: 50%;
      animation: pulse 2.5s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.35; transform: scale(0.65); }
    }

    /* Links */
    .links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .link {
      font-family: 'LouisGeorgeCafe', sans-serif;
      font-size: 0.82rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--texto-medio);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.25s ease;
    }

    .link:hover { color: var(--verde); }

    .link svg { width: 14px; height: 14px; opacity: 0.7; }

    .link-sep {
      width: 1px;
      height: 14px;
      background: rgba(35, 60, 35, 0.22);
    }

    /* Footer */
    .footer {
      opacity: 0;
      animation: fadeUp 0.9s ease 0.9s forwards;
    }

    .origen {
      font-family: 'LouisGeorgeCafe', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--texto-suave);
      line-height: 2;
    }




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

    @media (max-width: 768px) {
      .page {
        height: auto;
        min-height: 100vh;
        overflow: visible;
        grid-template-columns: 1fr;
        grid-template-rows: 45vh 1fr;
      }

      .left {
        height: 45vh;
      }

      .left img {
        object-position: center 40%;
      }

      .left-overlay {
        background: linear-gradient(to bottom, transparent 40%, var(--crema) 100%);
      }

      .right {
        height: auto;
        overflow: visible;
        padding: 2rem 1.5rem 2.5rem;
      }

      .logo-block svg {
        width: 170px;
      }

      .tagline {
        font-size: 1.6rem;
        max-width: 100%;
      }

      .descripcion {
        font-size: 0.9rem;
        max-width: 100%;
      }

      .pillar {
        font-size: 0.75rem;
      }

      .badge {
        font-size: 0.72rem;
        padding: 0.45rem 1rem;
      }

      .link {
        font-size: 0.75rem;
      }

      .origen {
        font-size: 0.68rem;
        letter-spacing: 0.2em;
      }

      .main-content {
        padding: 1rem 0;
      }

      .divider {
        margin-bottom: 1.2rem;
      }
    }