  :root {
    --bg: #0a0a0c;
    --bg-soft: #101015;
    --surface: rgba(255, 255, 255, 0.045);
    --surface-2: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text: #f4f1ea;
    --muted: #a7a299;
    --muted-2: #6f6b64;
    --gold: #f5b544;
    --gold-soft: #ffcf7a;
    --gold-deep: #c98a1f;
    --ink: #160f04;

    --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;

    --radius: 20px;
    --radius-sm: 14px;
    --maxw: 1200px;
    --nav-h: 74px;
    --pad: clamp(20px, 5vw, 64px);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  body {
    font-family: var(--sans);
    color: var(--text);
    background-color: var(--bg);
    background-image:
      radial-gradient(900px 620px at 88% -6%, rgba(245, 181, 68, 0.16), transparent 60%),
      radial-gradient(680px 520px at 8% 6%, rgba(245, 181, 68, 0.07), transparent 55%),
      radial-gradient(1100px 900px at 50% 118%, rgba(245, 181, 68, 0.06), transparent 60%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  /* Grano cinematográfico */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.045;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  ::selection { background: var(--gold); color: var(--ink); }

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

  :focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 11px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: #2a2a30; border-radius: 99px; border: 3px solid var(--bg); }
  ::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

  /* ---------- Utilidades ---------- */
  .wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

  section { position: relative; z-index: 2; scroll-margin-top: calc(var(--nav-h) + 14px); }

  .section-pad { padding-block: clamp(72px, 11vw, 140px); }

  .glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .eyebrow {
    font-family: var(--mono);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
  }
  .eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
  }

  .h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-optical-sizing: auto;
    font-size: clamp(2.1rem, 5.2vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-top: 1.1rem;
  }

  .lead {
    color: var(--muted);
    font-size: clamp(1rem, 2.1vw, 1.15rem);
    line-height: 1.75;
    max-width: 62ch;
  }

  .accent {
    background: linear-gradient(116deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 68px); }

  /* ---------- Botones ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.005em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
      background 0.28s, border-color 0.28s, color 0.28s;
    will-change: transform;
  }
  .btn svg { width: 18px; height: 18px; }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--ink);
    box-shadow: 0 12px 34px -12px rgba(245, 181, 68, 0.55);
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -12px rgba(245, 181, 68, 0.7); }
  .btn-ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .btn-ghost:hover { transform: translateY(-3px); border-color: rgba(245, 181, 68, 0.55); color: var(--gold-soft); }

  /* ---------- Navegación ---------- */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
    border-bottom: 1px solid transparent;
  }
  .nav.scrolled {
    background: rgba(10, 10, 12, 0.72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    width: 100%; max-width: var(--maxw);
    margin-inline: auto; padding-inline: var(--pad);
    display: flex; align-items: center; justify-content: space-between;
  }
  .brand {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.45rem;
    letter-spacing: -0.01em;
  }
  .brand .dot { color: var(--gold); }
  .nav-links { display: flex; align-items: center; gap: 0.4rem; }
  .nav-links a {
    padding: 0.5rem 0.9rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--muted);
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links .nav-cta {
    margin-left: 0.5rem;
    color: var(--gold-soft);
    border: 1px solid rgba(245, 181, 68, 0.35);
    background: rgba(245, 181, 68, 0.06);
  }
  .nav-links .nav-cta:hover { background: rgba(245, 181, 68, 0.14); color: var(--gold-soft); }

  .nav-toggle {
    display: none;
    width: 44px; height: 44px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .nav-toggle span {
    display: block; width: 18px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 48px) var(--pad) 72px;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(440px circle at var(--mx, 82%) var(--my, 22%), rgba(245, 181, 68, 0.1), transparent 60%);
    transition: background 0.2s ease;
    pointer-events: none;
  }
  .hero-grid {
    position: relative;
    width: 100%; max-width: var(--maxw); margin-inline: auto;
    display: grid; gap: 48px;
    grid-template-columns: 1fr;
    align-items: center;
  }
  .hero-eyebrow {
    font-family: var(--mono);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(245, 181, 68, 0.28);
    border-radius: 999px;
    background: rgba(245, 181, 68, 0.05);
    margin-bottom: 1.6rem;
  }
  .hero-title {
    font-family: var(--serif);
    font-weight: 600;
    font-optical-sizing: auto;
    font-size: clamp(2.7rem, 7vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
  }
  .hero-title .ht-line { display: block; }
  .hero-sub {
    margin-top: 1.6rem;
    color: var(--muted);
    font-size: clamp(1.02rem, 2.2vw, 1.22rem);
    line-height: 1.7;
    max-width: 52ch;
  }
  .hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

  .hero-media { position: relative; }
  .hero-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8);
  }
  .hero-frame img { width: 100%; height: 100%; object-fit: cover; }
  .hero-frame::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(10, 10, 12, 0.55));
  }
  .hero-pill {
    position: absolute;
    top: 18px; left: 18px;
    display: inline-flex; align-items: center; gap: 0.55rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    font-size: 0.82rem; font-weight: 600;
  }
  .pulse {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--gold); box-shadow: 0 0 0 rgba(245, 181, 68, 0.6);
    animation: pulse 2.2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 181, 68, 0.55); }
    70% { box-shadow: 0 0 0 11px rgba(245, 181, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 181, 68, 0); }
  }
  .hero-tag {
    position: absolute;
    bottom: 18px; right: 18px;
    padding: 0.7rem 1rem;
    border-radius: 14px;
    font-size: 0.85rem; color: var(--muted);
  }
  .hero-tag strong {
    font-family: var(--serif);
    font-size: 1.3rem; color: var(--gold-soft);
    margin-right: 0.25rem;
  }

  @media (min-width: 980px) {
    .hero-grid { grid-template-columns: 1.12fr 0.88fr; gap: 64px; }
    .hero-frame { aspect-ratio: 3 / 4; }
  }

  /* ---------- Marquee de disciplinas ---------- */
  .marquee {
    position: relative; z-index: 2;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding-block: 1.1rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }
  .marquee-track {
    display: flex; gap: 3rem; width: max-content;
    animation: scrollx 28s linear infinite;
  }
  .marquee-track span {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2.6vw, 1.7rem);
    color: var(--muted-2);
    display: inline-flex; align-items: center; gap: 3rem;
    white-space: nowrap;
  }
  .marquee-track span::after { content: '✦'; color: var(--gold); font-size: 0.8em; }
  @keyframes scrollx { to { transform: translateX(-50%); } }

  /* ---------- Servicios ---------- */
  .services-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
  .service {
    position: relative;
    padding: 2rem 1.9rem;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
  }
  .service:hover { transform: translateY(-6px); border-color: var(--border-strong); }
  .service-icon {
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: rgba(245, 181, 68, 0.1);
    border: 1px solid rgba(245, 181, 68, 0.22);
    color: var(--gold-soft);
    margin-bottom: 1.4rem;
    transition: transform 0.4s var(--ease);
  }
  .service:hover .service-icon { transform: translateY(-2px) rotate(-4deg); }
  .service-icon svg { width: 27px; height: 27px; }
  .service h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.45rem;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
  }
  .service p { color: var(--muted); font-size: 0.97rem; line-height: 1.65; }
  .service-num {
    position: absolute; top: 1.4rem; right: 1.6rem;
    font-family: var(--mono); font-size: 0.8rem; color: var(--muted-2);
  }

  .service.featured {
    color: #fff;
    isolation: isolate;
    min-height: 280px;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .service.featured .service-bg {
    position: absolute; inset: 0; z-index: -2;
  }
  .service.featured .service-bg img { width: 100%; height: 100%; object-fit: cover; }
  .service.featured::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(160deg, rgba(10, 10, 12, 0.35), rgba(10, 10, 12, 0.88));
  }
  .service.featured .service-icon { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.2); }
  .service.featured h3 { font-size: 1.7rem; }
  .service.featured p { color: rgba(244, 241, 234, 0.82); max-width: 46ch; }
  .featured-flag {
    position: absolute; top: 1.4rem; left: 1.9rem;
    font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold-soft);
    padding: 0.35rem 0.7rem; border-radius: 999px;
    background: rgba(245, 181, 68, 0.16); border: 1px solid rgba(245, 181, 68, 0.3);
  }

  @media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 980px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .service.featured { grid-column: span 2; }
  }

  /* ---------- Paquetes ---------- */
  .packages-grid { display: grid; gap: 24px; grid-template-columns: 1fr; margin-top: 2rem; }
  .package {
    padding: 2.4rem 2rem;
    display: flex; flex-direction: column;
    border-radius: var(--radius);
    transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
    position: relative;
  }
  .package:hover { transform: translateY(-6px); border-color: var(--border-strong); }
  .package h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; margin-bottom: 0.5rem; }
  .package-price { font-family: var(--sans); font-size: 2.8rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; line-height: 1; display: flex; align-items: baseline; }
  .package-price .currency { font-size: 1.4rem; font-weight: 500; margin-right: 0.2rem; }
  .package-price .period { font-size: 0.9rem; font-weight: 500; color: var(--muted-2); margin-left: 0.3rem; }
  .package-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.6; }
  .package-features { list-style: none; margin-bottom: 2.5rem; flex-grow: 1; padding-left: 0;}
  .package-features li { display: flex; gap: 0.8rem; margin-bottom: 1rem; color: var(--text); font-size: 0.95rem; align-items: flex-start; }
  .package-features svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
  
  .package.featured {
    border-color: rgba(245, 181, 68, 0.4);
    background: linear-gradient(180deg, rgba(245, 181, 68, 0.08), rgba(245, 181, 68, 0.02));
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), 0 0 0 1px rgba(245, 181, 68, 0.1) inset;
  }
  .package.featured:hover { border-color: rgba(245, 181, 68, 0.6); }
  .w-full { width: 100%; justify-content: center; }

  @media (min-width: 800px) {
    .packages-grid { grid-template-columns: repeat(3, 1fr); align-items: center; }
    .package.featured { transform: scale(1.05); z-index: 2; padding-block: 3.2rem; }
    .package.featured:hover { transform: scale(1.05) translateY(-6px); }
  }


  /* ---------- Portafolio ---------- */
  .work-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
  .work {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border);
    display: block;
  }
  .work img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s var(--ease), filter 0.5s;
    filter: saturate(0.92);
  }
  .work::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(8, 8, 10, 0.92));
    opacity: 0.85;
    transition: opacity 0.4s;
  }
  .work-overlay {
    position: absolute; left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 1.4rem 1.5rem;
    transform: translateY(8px);
    transition: transform 0.45s var(--ease);
  }
  .work-cat {
    font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold);
  }
  .work-title {
    font-family: var(--serif); font-weight: 600;
    font-size: 1.25rem; letter-spacing: -0.01em; margin-top: 0.35rem;
    color: #fff;
  }
  .work:hover img { transform: scale(1.07); filter: saturate(1.05); }
  .work:hover::after { opacity: 1; }
  .work:hover .work-overlay { transform: translateY(0); }

  @media (min-width: 680px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 980px) {
    .work-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 188px; }
    .work { aspect-ratio: auto; height: 100%; }
    .work:nth-child(1) { grid-column: 1 / span 4; grid-row: 1 / span 2; }
    .work:nth-child(2) { grid-column: 5 / span 2; grid-row: 1; }
    .work:nth-child(3) { grid-column: 5 / span 2; grid-row: 2; }
    .work:nth-child(4) { grid-column: 1 / span 2; grid-row: 3; }
    .work:nth-child(5) { grid-column: 3 / span 2; grid-row: 3; }
    .work:nth-child(6) { grid-column: 5 / span 2; grid-row: 3; }
  }

  /* ---------- Equipo / gear ---------- */
  .gear-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
  .gear {
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s;
  }
  .gear:hover { transform: translateY(-5px); border-color: var(--border-strong); }
  .gear-img { aspect-ratio: 4 / 3; overflow: hidden; }
  .gear-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
  .gear:hover .gear-img img { transform: scale(1.06); }
  .gear-body { padding: 1.1rem 1.2rem 1.3rem; }
  .gear-body h3 { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; }
  .gear-body p { color: var(--muted); font-size: 0.85rem; margin-top: 0.25rem; }
  @media (min-width: 880px) { .gear-grid { grid-template-columns: repeat(4, 1fr); } }

  /* ---------- Sobre mí ---------- */
  .about-grid { display: grid; gap: 44px; grid-template-columns: 1fr; align-items: center; }
  .about-photo { position: relative; max-width: 360px; margin-inline: auto; }
  .about-photo .glass {
    overflow: hidden; border-radius: 22px; aspect-ratio: 4 / 5;
    box-shadow: 0 40px 90px -45px rgba(0, 0, 0, 0.8);
  }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; }
  .about-points { list-style: none; margin-top: 1.8rem; display: grid; gap: 0.9rem; padding-left: 0; }
  .about-points li { display: flex; gap: 0.8rem; color: var(--muted); font-size: 0.98rem; }
  .about-points svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
  @media (min-width: 900px) { .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 64px; } }

  /* ---------- Contacto ---------- */
  .contact-card { padding: clamp(2rem, 5vw, 3.6rem); }
  .contact-grid { display: grid; gap: 44px; grid-template-columns: 1fr; }
  .contact-title { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.05; letter-spacing: -0.025em; }
  .contact-methods { margin-top: 2rem; display: grid; gap: 0.8rem; }
  .contact-method {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.2rem; border-radius: 14px;
    background: var(--surface); border: 1px solid var(--border);
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
  }
  .contact-method:hover { border-color: rgba(245, 181, 68, 0.45); transform: translateX(4px); background: var(--surface-2); }
  .contact-method .ic {
    width: 42px; height: 42px; flex-shrink: 0;
    display: grid; place-items: center; border-radius: 11px;
    background: rgba(245, 181, 68, 0.1); color: var(--gold-soft);
    border: 1px solid rgba(245, 181, 68, 0.2);
  }
  .contact-method .ic svg { width: 20px; height: 20px; }
  .contact-method small { display: block; color: var(--muted-2); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--mono); }
  .contact-method strong { font-weight: 600; font-size: 1rem; }

  .form-field { margin-bottom: 1rem; }
  .form-field label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.4rem; font-weight: 500; }
  .form-field input, .form-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.95rem;
    transition: border-color 0.25s, background 0.25s;
  }
  .form-field input:focus, .form-field textarea:focus {
    outline: none; border-color: rgba(245, 181, 68, 0.5);
    background: rgba(255, 255, 255, 0.05);
  }
  .form-field textarea { resize: vertical; min-height: 120px; }
  .socials { margin-top: 1.6rem; display: flex; gap: 0.7rem; }
  .socials a {
    width: 44px; height: 44px; display: grid; place-items: center;
    border-radius: 12px; background: var(--surface); border: 1px solid var(--border);
    color: var(--muted); transition: color 0.25s, border-color 0.25s, transform 0.25s;
  }
  .socials a:hover { color: var(--gold-soft); border-color: rgba(245, 181, 68, 0.45); transform: translateY(-3px); }
  .socials svg { width: 20px; height: 20px; }

  @media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 0.95fr; gap: 56px; } }

  /* ---------- Footer ---------- */
  .footer { position: relative; z-index: 2; border-top: 1px solid var(--border); padding-block: 3rem 2.4rem; margin-top: 2rem; }
  .footer-top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
  .footer-brand { max-width: 340px; }
  .footer-brand .brand { font-size: 1.6rem; }
  .footer-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 0.7rem; }
  .footer-nav { display: flex; gap: 2.4rem; flex-wrap: wrap; }
  .footer-col h4 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 0.9rem; }
  .footer-col a { display: block; color: var(--muted); font-size: 0.92rem; margin-bottom: 0.55rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold-soft); }
  .footer-bottom {
    margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--border);
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
    color: var(--muted-2); font-size: 0.84rem;
  }
  .to-top { color: var(--muted); transition: color 0.2s; }
  .to-top:hover { color: var(--gold-soft); }

  /* ---------- Responsive: menú móvil ---------- */
  @media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .nav-links {
      position: fixed; inset: 0 0 0 auto;
      width: min(80vw, 320px);
      flex-direction: column;
      align-items: stretch;
      justify-content: center;
      gap: 0.4rem;
      padding: 2rem;
      background: rgba(12, 12, 15, 0.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-left: 1px solid var(--border);
      transform: translateX(105%);
      transition: transform 0.4s var(--ease);
      z-index: 49;
    }
    body.menu-open .nav-links { transform: translateX(0); }
    .nav-links a { font-size: 1.05rem; padding: 0.85rem 1rem; color: var(--text); }
    .nav-links .nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }
  }

  /* ---------- Estados iniciales de animación ---------- */
  .gsap-ready [data-hero] { opacity: 0; transform: translateY(28px); }
  .gsap-ready [data-hero-visual] { opacity: 0; transform: translateY(40px) scale(1.05); }
  .gsap-ready [data-reveal] { opacity: 0; transform: translateY(32px); }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .marquee-track, .pulse { animation: none !important; }
  }
