    /* ─── RESET & BASE ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* ── Grises (primario) ── */
      --gris-900:     #191616;
      --gris-700:     #2c2c2c;
      --gris-600:     #4b4b4b;
      --gris-500:     #6e6e6e;
      --gris-200:     #e0e0e0;
      --gris-100:     #f0f0f0;
      --gris-50:      #f8f8f8;

      /* ── Granate (marca ABC) ── */
      --granate:      #4B0307;
      --granate-dark: #2e0205;
      --granate-mid:  #6B0A10;
      --granate-light:#921520;

      /* ── Dorado ── */
      --oro:          #e6bb4f;
      --oro-pale:     #F2DFA0;
      --oro-dim:      rgba(232,200,122,0.15);
      --oro-border:   rgba(232,200,122,0.48);

      /* ── Aliases ── */
      --white:        #FFFFFF;
      --off-white:    #f8f8f8;
      --text-body:    #1e1e1e;
      --text-muted:   #4b4b4b;
      --section-bg:   #f0f0f0;
      --gris-border:  #e0e0e0;

      --ff-display:   'Cormorant Garamond', Georgia, serif;
      --ff-body:      'Inter', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--ff-body);
      font-size: 16px;
      color: var(--text-body);
      background: var(--off-white);
      overflow-x: hidden;
    }

    img { display: block; max-width: 100%; }
    a   { color: inherit; text-decoration: none; }

    /* Accesibilidad: skip link */
    .skip-link {
      position: absolute; top: -40px; left: 1rem;
      background: var(--oro); color: var(--granate);
      padding: 8px 14px; border-radius: 4px; font-size: 14px;
      z-index: 9999;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 1rem; }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }

    /* ─── NAV ───────────────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw;
      height: 60px;
      background: transparent;
      transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
    }
    .nav.scrolled {
      background: rgba(30,30,30,0.94);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-logo {
      font-family: var(--ff-display);
      font-size: 20px;
      font-weight: 300;
      letter-spacing: 3px;
      color: #ffffff;
    }
    .nav-links {
      display: flex; gap: 32px; list-style: none;
    }
    .nav-links a {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--oro); }
    .nav-cta {
      background: var(--oro);
      color: var(--gris-900);
      border: none;
      padding: 8px 20px;
      border-radius: 3px;
      font-family: var(--ff-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover { background: var(--oro-pale); transform: translateY(-1px); }

    /* Hamburger mobile */
    .nav-hamburger {
      display: none;
      flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 1.5px;
      background: var(--oro);
      transition: transform 0.3s, opacity 0.3s;
    }

    /* ─── HERO ──────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center;
      background: var(--gris-900);
      overflow: hidden;
      padding: 100px 5vw 80px;
    }

    /* Cruz decorativa SVG animada con anime.js */
    .hero-cross-wrap {
      position: absolute;
      right: 8vw; top: 50%;
      transform: translateY(-50%);
      width: min(38vw, 500px);
      opacity: 0; /* anime.js la anima */
    }
    .hero-cross-wrap svg { width: 100%; height: auto; }

    /* Texto grandísimo de fondo */
    .hero-bg-word {
      position: absolute;
      bottom: -4vh; right: -2vw;
      font-family: var(--ff-display);
      font-size: clamp(120px, 20vw, 280px);
      font-weight: 300;
      color: rgba(232,200,122,0.04);
      letter-spacing: -8px;
      line-height: 1;
      user-select: none;
      pointer-events: none;
    }

    /* Línea horizontal decorativa */
    .hero-line {
      position: absolute;
      left: 0; top: 50%;
      width: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--oro-border), transparent);
    }

    .hero-inner {
      position: relative; z-index: 2;
      max-width: 600px;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      margin-bottom: 28px;
      opacity: 0; transform: translateY(20px); /* GSAP */
    }
    .hero-eyebrow-line {
      width: 32px; height: 1px;
      background: var(--oro);
    }
    .hero-eyebrow-text {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--oro);
    }

    .hero-h1 {
      font-family: var(--ff-display);
      font-size: clamp(48px, 7vw, 96px);
      font-weight: 300;
      line-height: 1.0;
      color: var(--white);
      margin-bottom: 10px;
      opacity: 0; transform: translateY(30px); /* GSAP */
    }
    .hero-h1 em {
      font-style: italic;
      color: var(--oro);
    }
    .hero-h1-sub {
      font-family: var(--ff-display);
      font-size: clamp(20px, 3vw, 36px);
      font-weight: 300;
      color: rgba(255,255,255,0.45);
      letter-spacing: 1px;
      margin-bottom: 32px;
      opacity: 0; transform: translateY(20px);
    }

    .hero-verse {
      font-family: var(--ff-display);
      font-size: 17px;
      font-style: italic;
      color: rgba(232,200,122,0.55);
      line-height: 1.6;
      margin-bottom: 40px;
      padding-left: 16px;
      border-left: 1px solid var(--oro-border);
      opacity: 0;
    }

    .hero-actions {
      display: flex; gap: 14px; flex-wrap: wrap;
      opacity: 0; transform: translateY(16px);
    }
    .btn-primary {
      background: var(--oro);
      color: var(--gris-900);
      border: none;
      padding: 14px 32px;
      border-radius: 3px;
      font-family: var(--ff-body);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-primary:hover {
      background: var(--oro-pale);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232,200,122,0.28);
    }
    .btn-ghost {
      background: transparent;
      color: var(--oro);
      border: 1px solid var(--oro-border);
      padding: 14px 32px;
      border-radius: 3px;
      font-family: var(--ff-body);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .btn-ghost:hover {
      border-color: var(--oro);
      background: var(--oro-dim);
      transform: translateY(-2px);
    }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 32px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.3);
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, var(--oro), transparent);
      animation: scrollDrop 2s ease-in-out infinite;
    }
    @keyframes scrollDrop {
      0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
      50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
      100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
    }

    /* ─── STATS BAR ─────────────────────────────────────────── */
    .stats-bar {
      background: var(--gris-600);
      display: flex;
    }
    .stat-item {
      flex: 1;
      padding: 20px 16px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      display: block;
      font-family: var(--ff-display);
      font-size: 32px;
      font-weight: 600;
      color: var(--oro);
      line-height: 1;
    }
    .stat-label {
      display: block;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-top: 4px;
    }

    /* ─── SECTIONS ──────────────────────────────────────────── */
    section { padding: 80px 5vw; }
    section.alt { background: var(--gris-100); }
    section.dark { background: var(--gris-900); }

    .section-eyebrow {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gris-600);
      margin-bottom: 10px;
      display: flex; align-items: center; gap: 10px;
    }
    .section-eyebrow::before {
      content: '';
      display: inline-block;
      width: 24px; height: 1px;
      background: var(--gris-600);
    }
    .section-title {
      font-family: var(--ff-display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--text-body);
      margin-bottom: 16px;
    }
    .section-title em { color: var(--granate); font-style: italic; }
    .section-desc {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 520px;
      line-height: 1.7;
    }
    .section-header { margin-bottom: 48px; }

    /* Dark section overrides */
    section.dark .section-eyebrow { color: var(--oro); }
    section.dark .section-eyebrow::before { background: var(--oro); }
    section.dark .section-title { color: var(--white); }
    section.dark .section-title em { color: var(--oro); }
    section.dark .section-desc { color: rgba(255,255,255,0.5); }

    /* ─── ÁREAS GRID ─────────────────────────────────────────── */
    .areas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1px;
      border: 1px solid var(--gris-border);
      background: var(--gris-border);
      overflow: hidden;
      border-radius: 8px;
    }
    .area-card {
      background: var(--white);
      padding: 28px 24px;
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
      cursor: default;
    }
    .area-card:hover { background: var(--off-white); }
    .area-card-top-line {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }
    .area-card:hover .area-card-top-line { transform: scaleX(1); }
    .area-icon-wrap {
      width: 40px; height: 40px;
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      font-size: 20px;
    }
    .area-tag {
      font-size: 9px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 6px;
    }
    .area-name {
      font-family: var(--ff-display);
      font-size: 20px;
      font-weight: 400;
      color: var(--text-body);
      margin-bottom: 10px;
      line-height: 1.2;
    }
    .area-materias {
      list-style: none;
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.8;
    }
    .area-materias li::before {
      content: '—';
      margin-right: 6px;
      opacity: 0.4;
    }

    /* ─── CALENDARIO ────────────────────────────────────────── */
    .cal-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
      gap: 10px;
    }
    .cal-chip {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 4px;
      padding: 14px 8px;
      text-align: center;
      transition: background 0.2s, border-color 0.2s;
    }
    .cal-chip.active {
      background: var(--oro);
      border-color: var(--oro);
    }
    .cal-chip:hover:not(.active) {
      background: rgba(255,255,255,0.12);
      border-color: rgba(232,200,122,0.3);
    }
    .cal-chip-day {
      display: block;
      font-family: var(--ff-display);
      font-size: 28px;
      font-weight: 300;
      color: var(--oro);
      line-height: 1;
    }
    .cal-chip.active .cal-chip-day { color: var(--gris-900); }
    .cal-chip-month {
      display: block;
      font-size: 9px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(232,200,122,0.5);
      margin-top: 4px;
    }
    .cal-chip.active .cal-chip-month { color: rgba(26,46,84,0.65); }
    .cal-nota {
      margin-top: 28px;
      font-family: var(--ff-display);
      font-size: 19px;
      font-style: italic;
      color: rgba(255,255,255,0.45);
      max-width: 480px;
      line-height: 1.6;
    }
    .cal-nota strong { color: var(--oro); font-weight: 400; }

    /* ─── COSTES ────────────────────────────────────────────── */
    .costes-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
    }
    .costes-list { list-style: none; }
    .coste-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 0;
      border-bottom: 1px solid var(--gris-border);
    }
    .coste-row:first-child { border-top: 1px solid var(--gris-border); }
    .coste-label { font-size: 14px; color: var(--text-muted); }
    .coste-label strong { color: var(--text-body); font-weight: 400; }
    .coste-price {
      font-family: var(--ff-display);
      font-size: 22px;
      font-weight: 400;
      color: var(--gris-600);
    }
    .coste-price.free { color: #2E7D52; }

    .costes-aside {
      background: var(--gris-600);
      border-radius: 8px;
      padding: 32px 28px;
      color: var(--white);
    }
    .costes-aside-title {
      font-family: var(--ff-display);
      font-size: 22px;
      font-weight: 300;
      color: var(--oro);
      margin-bottom: 16px;
    }
    .costes-aside p {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .costes-aside a {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px;
      color: var(--oro);
      border: 1px solid var(--oro-border);
      padding: 10px 18px;
      border-radius: 3px;
      transition: background 0.2s;
    }
    .costes-aside a:hover { background: rgba(232,200,122,0.12); }

    /* ─── CTA FINAL ─────────────────────────────────────────── */
    .cta-section {
      background: var(--granate);
      text-align: center;
      padding: 100px 5vw;
      position: relative;
      overflow: hidden;
    }
    .cta-verse {
      font-family: var(--ff-display);
      font-size: clamp(22px, 3.5vw, 42px);
      font-weight: 300;
      font-style: italic;
      color: rgba(255,255,255,0.7);
      max-width: 700px;
      margin: 0 auto 12px;
      line-height: 1.3;
    }
    .cta-ref {
      font-size: 12px;
      letter-spacing: 2px;
      color: var(--oro);
      margin-bottom: 48px;
    }
    .cta-bg-ornament {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: min(600px, 90vw);
      height: min(600px, 90vw);
      pointer-events: none;
      opacity: 0.04;
    }

    /* ─── FOOTER ────────────────────────────────────────────── */
    .footer {
      background: var(--gris-900);
      padding: 40px 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      border-top: 1px solid rgba(232,200,122,0.15);
    }
    .footer-brand {}
    .footer-logo {
      font-family: var(--ff-display);
      font-size: 18px;
      letter-spacing: 3px;
      color: var(--oro);
      display: block;
      margin-bottom: 4px;
    }
    .footer-tagline {
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.5px;
    }
    .footer-links {
      display: flex; gap: 28px; list-style: none;
    }
    .footer-links a {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--oro); }
    .footer-social {
      display: flex; gap: 16px;
    }
    .footer-social a {
      width: 32px; height: 32px;
      border: 1px solid rgba(232,200,122,0.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4);
      font-size: 12px;
      transition: border-color 0.2s, color 0.2s;
    }
    .footer-social a:hover {
      border-color: var(--oro);
      color: var(--oro);
    }
    .footer-copy {
      width: 100%;
      font-size: 10px;
      color: rgba(255,255,255,0.2);
      letter-spacing: 0.5px;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 20px;
      margin-top: 8px;
      text-align: center;
    }

    /* ─── RESPONSIVE ────────────────────────────────────────── */
    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      .hero-cross-wrap { width: 55vw; opacity: 0.15; right: 4vw; }
      .costes-wrap { grid-template-columns: 1fr; }
      .footer { flex-direction: column; text-align: center; }
      .footer-links, .footer-social { justify-content: center; }
    }

    /* Mobile nav drawer */
    .nav-drawer {
      position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: var(--gris-900);
      z-index: 200;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 28px;
      transform: translateX(-100%);
      transition: transform 0.35s ease;
    }
    .nav-drawer.open { transform: translateX(0); }
    .nav-drawer a {
      font-family: var(--ff-display);
      font-size: 28px;
      font-weight: 300;
      color: var(--white);
      transition: color 0.2s;
    }
    .nav-drawer a:hover { color: var(--oro); }
    .nav-drawer-close {
      position: absolute; top: 20px; right: 20px;
      background: none; border: none;
      color: var(--oro); font-size: 28px; cursor: pointer;
    }


    /* ════════════════════════════════════════════════════════
       TESTIMONIOS
    ════════════════════════════════════════════════════════ */
    .testimonios-section {
      background: var(--gris-900);
      padding: 90px 5vw;
      overflow: hidden;
      position: relative;
    }
    .testimonios-section .section-eyebrow { color: var(--oro); }
    .testimonios-section .section-eyebrow::before { background: var(--oro); }
    .testimonios-section .section-title { color: var(--white); }
    .testimonios-section .section-title em { color: var(--oro); }

    /* Rail horizontal de cards */
    .test-rail-wrap {
      position: relative;
      margin-top: 48px;
    }
    .test-rail {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 20px;
      cursor: grab;
      user-select: none;
    }
    .test-rail:active { cursor: grabbing; }
    .test-rail::-webkit-scrollbar { height: 3px; }
    .test-rail::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
    .test-rail::-webkit-scrollbar-thumb { background: var(--oro-border); border-radius: 2px; }

    .test-card {
      flex: 0 0 340px;
      scroll-snap-align: start;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px;
      padding: 28px 24px;
      position: relative;
      transition: border-color 0.25s, background 0.25s;
    }
    .test-card:hover {
      border-color: var(--oro-border);
      background: rgba(232,200,122,0.04);
    }
    .test-quote-mark {
      font-family: var(--ff-display);
      font-size: 64px;
      line-height: 0.6;
      color: var(--oro);
      opacity: 0.25;
      margin-bottom: 16px;
      display: block;
    }
    .test-text {
      font-family: var(--ff-display);
      font-size: 17px;
      font-style: italic;
      color: rgba(255,255,255,0.75);
      line-height: 1.65;
      margin-bottom: 24px;
    }
    .test-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .test-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--granate);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-display);
      font-size: 15px;
      font-weight: 600;
      color: var(--oro);
      flex-shrink: 0;
      border: 1px solid var(--oro-border);
    }
    .test-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--white);
    }
    .test-role {
      font-size: 11px;
      color: rgba(255,255,255,0.35);
      margin-top: 2px;
      letter-spacing: 0.3px;
    }
    .test-area-tag {
      position: absolute;
      top: 20px; right: 20px;
      font-size: 9px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--oro);
      opacity: 0.55;
    }

    /* Botones de navegación del rail */
    .test-nav {
      display: flex;
      gap: 8px;
      margin-top: 24px;
    }
    .test-nav-btn {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50%;
      background: none;
      color: rgba(255,255,255,0.5);
      font-size: 16px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .test-nav-btn:hover {
      border-color: var(--oro);
      color: var(--oro);
      background: rgba(232,200,122,0.08);
    }

    /* ════════════════════════════════════════════════════════
       SEDE / MAPA
    ════════════════════════════════════════════════════════ */
    .sede-section {
      background: var(--off-white);
      padding: 90px 5vw;
      position: relative;
      overflow: hidden;
    }
    .sede-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 56px;
      align-items: start;
      margin-top: 48px;
    }

    /* Info lateral */
    .sede-info {}
    .sede-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(75,3,7,0.08);
      border: 1px solid rgba(75,3,7,0.15);
      border-radius: 20px;
      padding: 5px 12px 5px 8px;
      font-size: 11px;
      color: var(--granate);
      margin-bottom: 24px;
    }
    .sede-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--granate);
      animation: sedePulse 2s ease-in-out infinite;
    }
    @keyframes sedePulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.4; transform: scale(0.7); }
    }
    .sede-nombre {
      font-family: var(--ff-display);
      font-size: 26px;
      font-weight: 400;
      color: var(--text-body);
      line-height: 1.25;
      margin-bottom: 6px;
    }
    .sede-direccion {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 28px;
    }
    .sede-meta-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 32px;
    }
    .sede-meta-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .sede-meta-icon {
      width: 28px; height: 28px;
      border-radius: 6px;
      background: var(--gris-100);
      border: 1px solid var(--gris-200);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 13px;
    }
    .sede-meta-label {
      font-size: 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gris-500);
      display: block;
      margin-bottom: 2px;
    }
    .sede-meta-val {
      color: var(--text-body);
      font-weight: 400;
    }
    .sede-cta-maps {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--granate);
      border: 1px solid rgba(75,3,7,0.25);
      padding: 10px 18px;
      border-radius: 3px;
      transition: background 0.2s, transform 0.15s;
      cursor: pointer;
      background: none;
    }
    .sede-cta-maps:hover {
      background: rgba(75,3,7,0.06);
      transform: translateY(-1px);
    }

    /* Mapa decorativo SVG estilo "tech world" */
    .sede-map-container {
      position: relative;
      aspect-ratio: 4/3;
      background: #0f0f0f;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.06);
      box-shadow: 0 24px 64px rgba(0,0,0,0.18);
    }
    /* Grid de fondo tipo blueprint */
    .map-grid-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(232,200,122,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,200,122,0.04) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    /* Scan line animado */
    .map-scanline {
      position: absolute;
      left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(232,200,122,0.35), transparent);
      animation: scanDown 4s linear infinite;
      pointer-events: none;
    }
    @keyframes scanDown {
      0%   { top: -2px; opacity: 0; }
      5%   { opacity: 1; }
      95%  { opacity: 1; }
      100% { top: 100%; opacity: 0; }
    }
    /* Mapa SVG de España/Madrid */
    .map-svg-wrap {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      padding: 24px;
    }
    /* Pin de ubicación */
    .map-pin-group {
      position: absolute;
      transform: translate(-50%, -50%);
    }
    .map-pin-rings {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    .map-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid var(--oro);
      transform: translate(-50%, -50%);
      top: 50%; left: 50%;
      animation: ringExpand 3s ease-out infinite;
    }
    .map-ring:nth-child(2) { animation-delay: 1s; }
    .map-ring:nth-child(3) { animation-delay: 2s; }
    @keyframes ringExpand {
      0%   { width: 8px;  height: 8px;  opacity: 0.8; }
      100% { width: 80px; height: 80px; opacity: 0; }
    }
    .map-pin-dot {
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--oro);
      border: 2px solid #0f0f0f;
      box-shadow: 0 0 12px rgba(232,200,122,0.6);
      position: relative;
      z-index: 2;
    }
    .map-pin-label {
      position: absolute;
      left: 20px;
      top: 50%; transform: translateY(-50%);
      background: rgba(15,15,15,0.85);
      border: 1px solid var(--oro-border);
      border-radius: 4px;
      padding: 5px 10px;
      white-space: nowrap;
      backdrop-filter: blur(8px);
    }
    .map-pin-label-name {
      font-size: 11px;
      font-weight: 500;
      color: var(--oro);
      display: block;
    }
    .map-pin-label-sub {
      font-size: 9px;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.5px;
      display: block;
    }
    /* Corner decorations */
    .map-corner {
      position: absolute;
      width: 16px; height: 16px;
      border-color: rgba(232,200,122,0.3);
      border-style: solid;
    }
    .map-corner-tl { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
    .map-corner-tr { top: 12px; right: 12px; border-width: 1px 1px 0 0; }
    .map-corner-bl { bottom: 12px; left: 12px; border-width: 0 0 1px 1px; }
    .map-corner-br { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }
    /* HUD info */
    .map-hud {
      position: absolute;
      bottom: 16px; left: 16px;
      display: flex; flex-direction: column; gap: 4px;
    }
    .map-hud-row {
      display: flex; align-items: center; gap: 6px;
      font-size: 9px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(232,200,122,0.4);
    }
    .map-hud-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--oro);
      opacity: 0.4;
    }
    .map-curso-badge {
      position: absolute;
      top: 16px; right: 16px;
      background: rgba(75,3,7,0.7);
      border: 1px solid rgba(232,200,122,0.2);
      border-radius: 4px;
      padding: 6px 10px;
      font-size: 9px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--oro);
      backdrop-filter: blur(8px);
    }

    @media (max-width: 768px) {
      .sede-layout { grid-template-columns: 1fr; }
    }

    /* ════════════════════════════════════════════════════════
       CONTACTO + REDES
    ════════════════════════════════════════════════════════ */
    .contacto-section {
      background: var(--gris-100);
      padding: 90px 5vw;
    }
    .contacto-layout {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 64px;
      align-items: start;
      margin-top: 48px;
    }

    /* Formulario */
    .contacto-form-wrap {}
    .cf-group {
      margin-bottom: 20px;
    }
    .cf-label {
      display: block;
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gris-600);
      margin-bottom: 6px;
    }
    .cf-input, .cf-select, .cf-textarea {
      width: 100%;
      background: var(--white);
      border: 1px solid var(--gris-200);
      border-radius: 3px;
      padding: 12px 14px;
      font-family: var(--ff-body);
      font-size: 14px;
      color: var(--text-body);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      appearance: none;
    }
    .cf-input:focus, .cf-select:focus, .cf-textarea:focus {
      border-color: var(--granate);
      box-shadow: 0 0 0 3px rgba(75,3,7,0.08);
    }
    .cf-textarea {
      resize: vertical;
      min-height: 110px;
      line-height: 1.6;
    }
    .cf-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .cf-submit {
      width: 100%;
      background: var(--granate);
      color: var(--white);
      border: none;
      padding: 14px;
      border-radius: 3px;
      font-family: var(--ff-body);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      margin-top: 6px;
    }
    .cf-submit:hover {
      background: var(--granate-mid);
      transform: translateY(-1px);
    }
    .cf-note {
      font-size: 11px;
      color: var(--gris-500);
      margin-top: 12px;
      text-align: center;
      line-height: 1.5;
    }

    /* Panel lateral: datos + redes */
    .contacto-aside {}
    .contacto-dato {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid var(--gris-200);
    }
    .contacto-dato:first-child { border-top: 1px solid var(--gris-200); }
    .cd-icon {
      width: 36px; height: 36px;
      border-radius: 6px;
      background: var(--white);
      border: 1px solid var(--gris-200);
      display: flex; align-items: center; justify-content: center;
      font-size: 15px;
      flex-shrink: 0;
    }
    .cd-label {
      font-size: 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gris-500);
      display: block;
      margin-bottom: 3px;
    }
    .cd-value {
      font-size: 14px;
      color: var(--text-body);
    }
    .cd-value a { color: var(--granate); transition: opacity 0.2s; }
    .cd-value a:hover { opacity: 0.7; }

    /* Redes sociales */
    .redes-titulo {
      font-family: var(--ff-display);
      font-size: 18px;
      font-weight: 400;
      color: var(--text-body);
      margin: 32px 0 16px;
    }
    .redes-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .red-card {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      background: var(--white);
      border: 1px solid var(--gris-200);
      border-radius: 6px;
      text-decoration: none;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    }
    .red-card:hover {
      border-color: var(--granate);
      box-shadow: 0 4px 12px rgba(75,3,7,0.08);
      transform: translateY(-1px);
    }
    .red-icon {
      width: 32px; height: 32px;
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      flex-shrink: 0;
    }
    .red-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-body);
      display: block;
    }
    .red-handle {
      font-size: 10px;
      color: var(--gris-500);
    }
    
    
    /* menu logo */
    .logo {
        z-index:5;
        padding: 0px 10px;
        position: fixed;
        margin: 5px 0px 0px 0px;
        line-height: 0;
        font-size: 0;
    }
    .logo-campus {
       z-index:5;
        padding: 0px 20px;
        /*position: fixed;*/
        margin: 0px 0px 0px 0px;
        line-height: 0;
        font-size: 0; 
    }
    .imglogo {
        width: 35px;
        height: auto;
    }
    .imglogo-footer{
        width: 30%; 
        padding:0; 
        margin:0;
    }
    /* final menu logo */

    @media (max-width: 768px) {
      .contacto-layout { grid-template-columns: 1fr; }
      .cf-row { grid-template-columns: 1fr; }
      .redes-grid { grid-template-columns: 1fr; }
      
      
      .imglogo {
          width: 40px;
          height: auto;
      }
      .logo-campus {
          position: relative;
          padding: 0;
          top:0;
          margin: 0px 0px 0px 0px;
          z-index: 5;
      }
      .logo {
          position: absolute;
          padding: 0;
          margin: 5px 0px 0px 0px;
          z-index: 5;
      }
    }

    /* ─── GSAP INITIAL STATES ───────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(28px); }
    .reveal-left { opacity: 0; transform: translateX(-28px); }