/* ══════════════════════════════════════════════
       VERO GARCÍA · Landing · Diseño Andino Cálido
       ══════════════════════════════════════════════ */
    :root {
      /* ── Paleta Andina ── */
      --azul-profundo: #152238;
      --azul-medio:   #1c3050;
      --azul-claro:   #2a4570;
      --dorado:       #b8943e;
      --dorado-suave: #c9a84c;
      --dorado-claro: #d4c090;
      --gold-light: #c9a84c;
      --naranja-calido: #c0682e;
      --naranja-suave:  #d4783b;
      --crema:        #faf6f0;
      --crema-oscuro: #e8dfd0;
      --tierra:       #8b7355;
      --tierra-claro: #a89070;

      /* ── Superficies ── */
      --card-bg:      rgba(30,50,75,0.75);
      --card-border:  rgba(184,148,62,0.18);
      --card-hover:   rgba(184,148,62,0.10);

      /* ── Sombras ── */
      --shadow-card:  0 4px 24px rgba(0,0,0,0.25);
      --shadow-btn:   0 2px 12px rgba(184,148,62,0.25);

      /* ── Tipografía ── */

      /* ── Radios ── */
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
    
      /* Faltantes — compatibilidad */
      --gold: #b8943e;
      --gold-light: #c9a84c;
      --bg: #152238;
      --card-bg: #1c3050;
      --card-border: #2a4570;
      --crema: #f5e6d3;
      --crema-oscuro: #e8d4b8;
      --naranja-suave: #e8a87c;
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --shadow-card: 0 4px 20px rgba(0,0,0,0.3);
      --font-display: Poppins, system-ui, sans-serif;
}

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
      font-size: 17px;
    }

    body {
      font-family: var(--font-display);
      background: var(--azul-profundo);
      color: var(--crema);
      line-height: 1.72;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Textura de fondo sutil ── */
    body::before {
      content: '';
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background:
        radial-gradient(ellipse at 20% 10%, rgba(45,140,74,0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(184,148,62,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 40%, rgba(42,69,112,0.3) 0%, transparent 70%);
      pointer-events: none; z-index: 0;
    }

    .container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }

    /* ═══════════════════════════════════════
       NAV — Minimalista, cálido
       ═══════════════════════════════════════ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(21,34,56,0.94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--card-border);
      padding: 0.65rem 0;
      transition: all 0.3s;
    }
    .nav-inner {
      display: flex; justify-content: space-between; align-items: center;
      max-width: 1120px; margin: 0 auto; padding: 0 1.5rem;
    }
    .nav-logo {
      font-weight: 800; font-size: 1.25rem;
      color: var(--dorado);
      text-decoration: none;
      letter-spacing: -0.01em;
    }
    .nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
    .nav-links a {
      color: #b0bfd0; text-decoration: none;
      font-size: 0.92rem; font-weight: 500;
      transition: color 0.2s; letter-spacing: 0.01em;
    }
    .nav-links a:hover { color: var(--dorado-claro); }
    .nav-cta {
      background: var(--dorado); color: #152238 !important;
      padding: 0.45rem 1.2rem; border-radius: 20px;
      font-weight: 700 !important; font-size: 0.85rem !important;
      min-height: 44px;
      transition: all 0.2s !important;
    }
    .nav-cta:hover {
      background: var(--dorado-suave) !important;
      color: #152238 !important;
      transform: translateY(-1px);
      box-shadow: var(--shadow-btn);
    }

    .hamburger {
      display: none; background: none; border: none; cursor: pointer;
      flex-direction: column; gap: 5px; padding: 6px; z-index: 101;
    }
    .hamburger span {
      display: block; width: 25px; height: 2.5px;
      background: var(--dorado); border-radius: 3px; transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px,5.5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px,-5.5px); }

    /* ═══════════════════════════════════════
       HERO — Vero frontal, cálida, impactante
       ═══════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 5rem 0 3rem;
      position: relative; overflow: hidden;
      background:
        radial-gradient(ellipse at 65% 30%, rgba(184,148,62,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 35% 70%, rgba(45,140,74,0.05) 0%, transparent 50%),
        linear-gradient(170deg, #1b2d50 0%, #152238 30%, #0f1c32 100%);
    }
    .hero::after {
      content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
      background: linear-gradient(to top, var(--azul-profundo), transparent);
      z-index: 1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: center;
      position: relative; z-index: 2;
    }

    .hero-photo {
      display: flex; justify-content: center;
      position: relative;
    }
    .hero-photo-wrapper {
      position: relative;
      display: inline-block;
    }
    .hero-photo-wrapper img {
      width: 280px; height: auto;
      border-radius: var(--radius-lg);
      display: block;
      box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 3px rgba(184,148,62,0.25);
      transition: transform 0.4s;
    }
    .hero-photo-wrapper::before {
      content: '';
      position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px;
      border-radius: 26px;
      background: radial-gradient(circle at 30% 30%, rgba(184,148,62,0.15), transparent 70%);
      z-index: -1;
    }
    .hero-photo-badge {
      position: absolute; top: 100%; margin-top: -16px; left: 50%; transform: translateX(-50%);
      background: var(--dorado);
      color: #fff;
      padding: 0.4rem 1.5rem;
      border-radius: 20px;
      font-weight: 700; font-size: 0.82rem;
      white-space: nowrap;
      letter-spacing: 0.03em;
      max-height: 4rem;
      box-shadow: 0 3px 16px rgba(184,148,62,0.35);
      display: flex; align-items: center; gap: 0.3rem;
    }
    .hero-photo-badge img { width: 14px !important; height: 14px !important; flex-shrink: 0; }

    .hero-text { text-align: left; }
    .hero-label {
      display: inline-block;
      background: rgba(192,104,46,0.18);
      color: var(--naranja-suave);
      padding: 0.35rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem; font-weight: 600;
      margin-bottom: 1rem;
      letter-spacing: 0.03em;
    }
    .hero-text h1 {
      font-size: clamp(2.6rem, 6.5vw, 4.8rem);
      font-weight: 850;
      line-height: 1.05;
      color: var(--crema);
      margin-bottom: 0.3rem;
      letter-spacing: -0.02em;
    }
    .hero-text h1 .gold {
      color: var(--dorado);
      display: block;
      font-size: clamp(1.8rem, 4.5vw, 3.2rem);
      font-weight: 700;
      letter-spacing: 0.01em;
      margin-top: 0.1rem;
    }
    .hero-cargo {
      font-size: clamp(1.05rem, 2vw, 1.25rem);
      color: var(--crema-oscuro);
      font-weight: 500;
      margin-bottom: 0.9rem;
      letter-spacing: 0.02em;
    }
    .hero-tagline {
      font-size: clamp(0.95rem, 1.8vw, 1.1rem);
      color: #9aadc0;
      line-height: 1.65;
      margin-bottom: 2rem;
      max-width: 480px;
    }
    .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

    /* ── Botones ── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0.85rem 2.2rem; border-radius: 30px;
      text-decoration: none; font-weight: 700; font-size: 1rem;
      letter-spacing: 0.02em; transition: all 0.25s;
      cursor: pointer; border: none;
    }
    .btn-primary {
      background: var(--dorado);
      color: #152238;
      box-shadow: 0 2px 14px rgba(184,148,62,0.3);
    }
    .btn-primary:hover {
      background: var(--dorado-suave);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(184,148,62,0.35);
    }
    .btn-outline {
      border: 2px solid var(--dorado);
      color: var(--dorado-claro);
      background: transparent;
    }
    .btn-outline:hover {
      background: rgba(184,148,62,0.12);
      transform: translateY(-2px);
    }
    .btn-green {
      background: var(--dorado);
      color: #fff;
      box-shadow: 0 2px 14px rgba(45,140,74,0.3);
    }
    .btn-green:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(45,140,74,0.35);
    }

    .scroll-hint {
      position: absolute; bottom: 2.8rem; left: 50%; transform: translateX(-50%);
      z-index: 3;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 2px solid rgba(184,148,62,0.3);
      display: flex; align-items: center; justify-content: center;
      color: rgba(184,148,62,0.5); font-size: 0.9rem;
      animation: bounce 2s infinite;
    }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-10px); }
    }

    /* ═══════════════════════════════════════
       SECCIONES
       ═══════════════════════════════════════ */
    .section { padding: 5rem 0; position: relative; z-index: 1; }
    .section-alt {
      background: linear-gradient(180deg, rgba(28,48,68,0.5) 0%, rgba(15,28,50,0.5) 100%);
      border-top: 1px solid rgba(184,148,62,0.08);
      border-bottom: 1px solid rgba(184,148,62,0.08);
    }

    .section-title {
      text-align: center; margin-bottom: 3rem;
    }
    .section-title .icon-ring {
      display: inline-flex; align-items: center; justify-content: center;
      width: 56px; height: 56px; border-radius: 50%;
      background: rgba(184,148,62,0.12);
      margin-bottom: 1rem; font-size: 1.6rem;
    }
    .section-title h2 {
      font-size: clamp(1.7rem, 4vw, 2.4rem);
      color: var(--crema);
      font-weight: 800;
      letter-spacing: -0.01em;
      margin-bottom: 0.5rem;
    }
    .section-title .subtitle {
      color: #8a9cb0; font-size: 1.05rem; max-width: 600px; margin: 0 auto;
      line-height: 1.6;
    }

    /* ── Stats Bar ── */
    .stats-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
      max-width: 920px;
      margin: 0 auto 3.5rem;
    }
    .stat-card {
      text-align: center;
      padding: 2rem 1rem 1.5rem;
      background: var(--card-bg);
      border-radius: var(--radius-md);
      border: 1px solid var(--card-border);
      transition: all 0.3s;
      backdrop-filter: blur(8px);
    }
    .stat-card:hover {
      transform: translateY(-4px);
      border-color: rgba(184,148,62,0.3);
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }
    .stat-card .stat-icon {
      font-size: 2rem; margin-bottom: 0.5rem;
    }
    .stat-card .num {
      font-size: 2.8rem; font-weight: 850;
      background: linear-gradient(180deg, var(--dorado-claro) 0%, var(--dorado) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      line-height: 1.1;
      margin-bottom: 0.4rem;
    }
    .stat-card .label {
      font-size: 0.9rem; color: #8a9cb0; line-height: 1.35;
    }
    .stat-card .small-label {
      font-size: 0.78rem; color: #5d7085; display: block; margin-top: 0.2rem;
    }

    /* ── Bio Grid ── */
    .bio-grid {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 3rem;
      align-items: start;
    }
    .bio-image-wrap {
      position: sticky; top: 5rem;
    }
    .bio-image-wrap img {
      width: 100%; height: auto;
      border-radius: var(--radius-lg);
      display: block;
      box-shadow: 0 8px 40px rgba(0,0,0,0.35);
      border: 2px solid rgba(184,148,62,0.2);
    }
    .bio-image-caption {
      text-align: center; margin-top: 0.8rem;
      color: var(--dorado-claro); font-size: 0.82rem; font-weight: 600;
      letter-spacing: 0.03em;
    }

    .bio-text h3 {
      color: var(--dorado-claro);
      font-size: 1.5rem; font-weight: 700;
      margin-bottom: 1.2rem;
      line-height: 1.3;
    }
    .bio-text p {
      margin-bottom: 1.1rem;
      color: #bcc8d6;
      font-size: 1.02rem;
      line-height: 1.75;
    }
    .bio-text p strong { color: var(--crema); font-weight: 700; }
    .bio-highlight {
      display: inline-block;
      background: rgba(45,140,74,0.12);
      border-left: 3px solid var(--dorado);
      padding: 0.8rem 1.2rem;
      margin: 1rem 0;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      font-size: 0.95rem; color: #bcc8d6;
      line-height: 1.6;
    }

    /* ── Credentials ── */
    .creds-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
      gap: 1.3rem;
    }
    .cred-card {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      padding: 1.8rem;
      border: 1px solid var(--card-border);
      transition: all 0.3s;
      backdrop-filter: blur(8px);
    }
    .cred-card:hover {
      transform: translateY(-3px);
      border-color: rgba(184,148,62,0.3);
      box-shadow: 0 6px 28px rgba(0,0,0,0.2);
    }
    .cred-card .cred-icon {
      font-size: 2.2rem; margin-bottom: 0.8rem;
      display: block;
    }
    .cred-card h3 {
      color: var(--dorado-claro);
      font-size: 1.08rem; font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .cred-card p {
      color: #bcc8d6; font-size: 0.95rem;
      line-height: 1.6;
    }
    .cred-card .institucion {
      color: #708090; font-size: 0.84rem;
      margin-top: 0.5rem; font-weight: 500;
    }

    /* ── Timeline ── */
    .timeline {
      max-width: 720px; margin: 0 auto;
      position: relative; padding-left: 2.5rem;
    }
    .timeline::before {
      content: '';
      position: absolute; left: 1.05rem; top: 0.4rem; bottom: 0.4rem;
      width: 3px;
      background: linear-gradient(to bottom,
        var(--dorado) 0%, rgba(184,148,62,0.4) 60%, transparent 100%);
      border-radius: 3px;
    }
    .tl-item {
      display: flex; gap: 1.5rem;
      margin-bottom: 2rem; position: relative;
    }
    .tl-dot {
      width: 16px; height: 16px; border-radius: 50%;
      background: var(--dorado);
      border: 3px solid var(--azul-profundo);
      box-shadow: 0 0 0 4px rgba(184,148,62,0.15);
      position: absolute; left: -0.55rem; top: 0.45rem; z-index: 2;
    }
    .tl-year {
      min-width: 100px; text-align: right;
      font-size: 0.85rem; color: var(--dorado);
      font-weight: 700; padding-top: 0.25rem;
    }
    .tl-content {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      padding: 1.2rem 1.5rem;
      flex: 1;
      border: 1px solid var(--card-border);
      transition: all 0.3s;
    }
    .tl-content:hover {
      border-color: rgba(184,148,62,0.3);
      transform: translateX(3px);
    }
    .tl-content h3 {
      color: var(--crema); font-size: 1rem; font-weight: 700;
      margin-bottom: 0.3rem;
    }
    .tl-content .org {
      color: var(--dorado-claro); font-size: 0.84rem;
      margin-bottom: 0.4rem; font-weight: 600;
    }
    .tl-content p {
      color: #8a9cb0; font-size: 0.9rem; line-height: 1.55;
    }

    /* ── Red de Mujeres ── */
    .red-section { text-align: center; }
    .red-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.3rem; margin-top: 2.5rem;
    }
    .red-card {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      padding: 2rem 1.5rem;
      border: 1px solid var(--card-border);
      text-align: left;
      transition: all 0.3s;
      backdrop-filter: blur(8px);
    }
    .red-card:hover {
      transform: translateY(-3px);
      border-color: rgba(45,140,74,0.3);
      box-shadow: 0 6px 28px rgba(0,0,0,0.2);
    }
    .red-card .re-icon {
      font-size: 2.4rem; margin-bottom: 1rem;
      display: block;
    }
    .red-card h3 {
      color: var(--dorado-claro); font-size: 1.05rem;
      font-weight: 700; margin-bottom: 0.6rem;
    }
    .red-card p {
      color: #bcc8d6; font-size: 0.93rem; line-height: 1.6;
    }
    .red-card p strong {
      color: var(--crema); font-weight: 700;
    }

    /* ── Internacional ── */
    .intl-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1rem;
    }
    .intl-item {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      display: flex; gap: 1rem; align-items: flex-start;
      border: 1px solid var(--card-border);
      transition: all 0.3s;
    }
    .intl-item:hover {
      border-color: rgba(184,148,62,0.3);
      transform: translateY(-2px);
    }
    .intl-flag {
      font-size: 2.5rem; min-width: 44px; text-align: center;
      line-height: 1;
    }
    .intl-info h3 {
      color: var(--crema); font-size: 0.95rem; font-weight: 700;
      margin-bottom: 0.3rem;
    }
    .intl-info .lugar {
      color: var(--dorado-claro); font-size: 0.82rem;
      font-weight: 600; margin-bottom: 0.3rem;
    }
    .intl-info p {
      color: #8a9cb0; font-size: 0.84rem; line-height: 1.5;
    }

    /* ── Voluntariado ── */
    .voluntario-box {
      max-width: 540px; margin: 0 auto;
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      padding: 2.5rem 2rem;
      border: 1px solid var(--card-border);
      text-align: center;
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow-card);
    }
    .voluntario-box h3 {
      color: var(--crema); font-size: 1.35rem; font-weight: 800;
      margin-bottom: 0.5rem;
    }
    .voluntario-box .vol-icon {
      font-size: 3rem; margin-bottom: 0.5rem; display: block;
    }
    .voluntario-box p.desc {
      color: #8a9cb0; margin-bottom: 1.5rem;
      font-size: 0.95rem; line-height: 1.6;
    }
    .vol-form { display: flex; flex-direction: column; gap: 0.8rem; }
    .vol-form input {
      padding: 0.85rem 1rem;
      background: rgba(15,28,50,0.7);
      border: 1.5px solid rgba(184,148,62,0.2);
      border-radius: var(--radius-sm);
      color: var(--crema);
      font-size: 0.95rem; font-family: var(--font-display);
      transition: all 0.2s;
    }
    .vol-form input:focus {
      outline: none;
      border-color: var(--dorado);
      box-shadow: 0 0 0 3px rgba(184,148,62,0.12);
      background: rgba(21,34,56,0.8);
    }
    .vol-form input::placeholder { color: #5d7085; }
    .vol-form button {
      margin-top: 0.3rem;
      width: 100%;
    }

    /* ── Footer ── */
    footer {
      text-align: center; padding: 3rem 1.5rem 2rem;
      border-top: 1px solid rgba(184,148,62,0.12);
      color: #4a5e80; position: relative; z-index: 1;
    }
    footer a { color: #7a9ec0; text-decoration: none; transition: color 0.2s; }
    footer a:hover { color: var(--dorado-claro); }
    .footer-social {
      display: flex; gap: 1rem; justify-content: center;
      flex-wrap: wrap; margin-bottom: 1.8rem;
    }
    .footer-social a {
      color: var(--dorado); text-decoration: none;
      font-size: 0.92rem; font-weight: 600;
      padding: 0.3rem 0;
    }
    .footer-dot { color: #2a4060; }
    .footer-legal {
      font-size: 0.9rem; color: #8a9cb0;
      font-weight: 600; margin-bottom: 0.3rem;
    }
    .footer-legal2 {
      font-size: 0.84rem; color: #5d7085;
    }

    /* ═══════════════════════════════════════
       RESPONSIVE — Mobile-first
       ═══════════════════════════════════════ */
    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .hero-photo { order: -1; }
      .hero-photo-wrapper img {
        width: 200px;
      }
      .hero-text { text-align: center; }
      .hero-tagline { max-width: 100%; margin-left: auto; margin-right: auto; }
      .hero-buttons { justify-content: center; }
      .bio-grid {
        grid-template-columns: 1fr;
      }
      .bio-image-wrap {
        max-width: 220px; margin: 0 auto;
        position: static;
      }
      .stats-bar {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      html { font-size: 16px; }
      .hero { min-height: auto; padding: 6rem 0 3rem; }
      .hero-photo-wrapper img { width: 180px; }
      .hero-photo-badge { font-size: 0.73rem; padding: 0.35rem 1.1rem; }
      .hero-text h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
      }
      .hero-text h1 .gold {
        font-size: clamp(1.4rem, 7vw, 2rem);
      }
      .btn { padding: 0.75rem 1.6rem; font-size: 0.92rem; }
      .hamburger { display: flex; }
      .nav-links {
        display: none;
        position: fixed; top: 56px; left: 0; right: 0;
        background: rgba(21,34,56,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column; padding: 1.5rem; gap: 1.1rem;
        border-bottom: 2px solid rgba(184,148,62,0.2);
      }
      .nav-links.show { display: flex; }
      .nav-cta { text-align: center; }
      .stats-bar { gap: 0.8rem; }
      .stat-card { padding: 1.5rem 0.8rem 1.2rem; }
      .stat-card .num { font-size: 2rem; }
      .stat-card .label { font-size: 0.8rem; }
      .section { padding: 3.5rem 0; }
      .timeline { padding-left: 2rem; }
      .tl-year { min-width: 70px; font-size: 0.78rem; }
      .tl-content { padding: 1rem 1.2rem; }
      .creds-grid { grid-template-columns: 1fr; }
      .red-cards { grid-template-columns: 1fr; }
      .intl-grid { grid-template-columns: 1fr; }
      .voluntario-box { padding: 2rem 1.5rem; }
    }

    @media (max-width: 400px) {
      .container { padding: 0 1rem; }
      .hero-photo-wrapper img { width: 150px; }
      .hero-photo-badge { font-size: 0.7rem; padding: 0.3rem 0.9rem; }
      .hero-text h1 { font-size: 2rem; }
      .hero-text h1 .gold { font-size: 1.3rem; }
      .btn { width: 100%; text-align: center; }
      .hero-buttons { flex-direction: column; width: 100%; }
      .stats-bar { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
      .stat-card { padding: 1.2rem 0.6rem 1rem; }
      .stat-card .num { font-size: 1.6rem; }
      .nav-inner { padding: 0 1rem; }
    }

    /* ── Viewport + Touch ── */
    html {
      overflow-x: hidden;
      -webkit-text-size-adjust: 100%;
    }
    img, video, canvas, svg, iframe, table {
      max-width: 100%;
      height: auto;
    }
    @media screen and (max-width: 768px) {
      input, textarea, select {
        font-size: 16px !important;
      }
    }
    /* touch-action */
    img, .bio-image-wrap, .hero-photo-wrapper {
      touch-action: pinch-zoom;
    }
    button, a, input, select, .card, nav {
      touch-action: manipulation;
    }
    .inline-icon { vertical-align: middle; margin-right: 0.15rem; margin-top: -2px; }
    .icon-ring img { display: block; margin: auto; }
    .stat-icon img { display: block; margin: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
    .cred-icon img, .re-icon img, .icon img, .role-icon img, .hero-icon img, .vol-icon img, .eje-icon img, .num img { vertical-align: middle; }

    .skip-link{position:absolute;top:-40px;left:0;background:var(--gold, #b8943e);color:var(--bg, #152238);padding:8px 16px;z-index:1000;transition:top .2s}.skip-link:focus{top:0}