html {
  scroll-behavior: smooth;
  background: #02020a; /* evita bordes blancos en móvil */
}
    :root {
      --bg: #02020a;
      --bg-soft: #050515;
      --fg: #f5f5f5;
      --fg-muted: #9090a5;
      --accent: #ff5caa;
      --border-soft: #272738;
      --radius-lg: 18px;
      --transition: 220ms ease;
      --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

body {
  font-family: var(--font-main, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif);
  background: radial-gradient(circle at top, #181826 0, #02020a 45%);
  color: #f5f5f5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  opacity: 0; /* empieza oculto */
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-ready {
  opacity: 1;
}

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      min-height: 100vh;
    }

    .container {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* NAVBAR MINIMAL */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      padding: 0.7rem 0;
      mix-blend-mode: difference;
      pointer-events: none;
      transition: background 260ms ease, box-shadow 260ms ease, mix-blend-mode 260ms ease;
    }

    .navbar--scrolled {
      background: rgba(2, 2, 10, 0.9);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
      mix-blend-mode: normal;
    }

    .navbar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #fdfdfd;
    }

    .navbar-inner > * {
      pointer-events: auto;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .brand-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 18px rgba(255, 92, 170, 0.8);
    }

    .brand-name {
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .brand-name img {
      width: 20px;
      height: 20px;
      border-radius: 999px;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
    }

    .nav-links a {
      opacity: 0.8;
      position: relative;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 1px;
      background: var(--accent);
      transition: width var(--transition);
    }

    .nav-links a:hover {
      opacity: 1;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* INTRO FULLSCREEN */
    .intro {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .intro-inner {
      text-align: center;
      line-height: 1;
      padding: 0 1rem;
    }

    .intro-tagline {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: var(--fg-muted);
      margin-bottom: 1.5rem;
    }

    .intro-word {
      display: inline-flex;
      gap: clamp(0.1em, 0.3vw, 0.18em);
      font-size: clamp(2.8rem, 7vw, 4.6rem);
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .intro-line {
      display: flex;
      justify-content: center;
      gap: clamp(0.1em, 0.3vw, 0.18em);
      margin-bottom: clamp(0.1em, 0.4vw, 0.2em);
    }

    .intro-sub {
      margin-top: 1.8rem;
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--fg-muted);
    }

    .intro-sub span {
      color: var(--accent);
    }

    /* SCROLL INDICATOR */
    .scroll-indicator {
      position: absolute;
      bottom: 1.8rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--fg-muted);
      cursor: pointer;
    }

    .scroll-wheel {
      width: 20px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      display: flex;
      justify-content: center;
      padding-top: 4px;
    }

    .scroll-dot {
      width: 4px;
      height: 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.85);
      animation: scrollDot 1.5s ease-in-out infinite;
    }

    @keyframes scrollDot {
      0%   { transform: translateY(0); opacity: 1; }
      60%  { transform: translateY(12px); opacity: 0; }
      61%  { transform: translateY(-4px); opacity: 0; }
      100% { transform: translateY(0); opacity: 1; }
    }

    /* EFECTO FADE / SLIDE AL APARECER */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition:
        opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }

    .reveal--delay {
      transition-delay: 120ms;
    }

    .reveal--delay-lg {
      transition-delay: 220ms;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* CONTENT SECTION MINIMAL */
    main {
      background: linear-gradient(to bottom, rgba(2, 2, 10, 0) 0, #02020a 18%, #050515 100%);
    }

    .section {
      padding: 5rem 0 4rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .section-head {
      margin-bottom: 2rem;
    }

    .section-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--fg-muted);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-size: 1.4rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      margin-bottom: 0.75rem;
    }

    .section-text {
      max-width: 480px;
      font-size: 0.95rem;
      color: var(--fg-muted);
      line-height: 1.7;
    }

    .grid {
      display: grid;
      grid-template-columns: minmax(0, 2.2fr) minmax(0, 2fr);
      gap: 2.5rem;
      align-items: flex-start;
    }

    .card-list {
      display: grid;
      gap: 1rem;
    }

    .card {
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      background: var(--bg-soft);
      padding: 1rem 1.1rem;
      font-size: 0.9rem;
      color: var(--fg-muted);
    }

    .card-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #d4d4ff;
      margin-bottom: 0.4rem;
    }

    .card-title {
      font-size: 1rem;
      color: var(--fg);
      margin-bottom: 0.3rem;
    }

    .mini-meta {
      margin-top: 0.5rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #7f7fa0;
    }

    .note {
      font-size: 0.8rem;
      margin-top: 1.2rem;
      color: #696985;
    }

    /* CONTACT GRID */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
      gap: 2.5rem;
      align-items: flex-start;
    }

    .contact-highlight {
      font-size: 0.9rem;
      color: #c5c5e0;
      line-height: 1.7;
      max-width: 460px;
    }

    .contact-meta {
      margin-top: 1.2rem;
      font-size: 0.82rem;
      color: #9696c0;
    }

    .contact-meta a {
      color: #ffb0da;
      text-decoration: none;
    }

    .contact-meta a:hover {
      text-decoration: underline;
    }

    .contact-card {
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.12);
      background: #050515;
      padding: 1.2rem 1.3rem 1.4rem;
      font-size: 0.85rem;
      color: #c8c8e2;
    }

    .contact-row {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      margin-bottom: 0.8rem;
    }

    .contact-label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #9c9ccd;
    }

    .contact-value {
      font-size: 0.9rem;
    }

    .contact-note {
      margin-top: 0.9rem;
      font-size: 0.78rem;
      color: #8f8fb5;
    }

    /* FOOTER */
    .footer {
      padding: 2rem 0 2.5rem;
      font-size: 0.78rem;
      color: var(--fg-muted);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 1rem;
    }

    .footer-logo {
      width: 45px;
      height: auto;
      opacity: 0.85;
      transition: opacity .25s ease;
    }

    .footer-logo:hover {
      opacity: 1;
    }

    @media (max-width: 900px) {
      .grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .section {
        padding-top: 4rem;
      }

      .navbar-inner {
        font-size: 0.7rem;
      }

      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 640px) {
      .intro-tagline {
        letter-spacing: 0.2em;
      }

      .section-title {
        letter-spacing: 0.18em;
      }

      .navbar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
      }
    }
    /* ===========================
   ART GALLERY — NEW HEADER
   =========================== */

.ag-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.7rem 0;
}

.ag-header-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.ag-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.ag-header-logo img {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* NAV RIGHT */
.ag-header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ag-header-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  position: relative;
  transition: opacity 0.2s ease;
}

.ag-header-nav a:hover {
  opacity: 1;
}

.ag-header-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ff5caa;
  transition: width 0.18s ease;
}

.ag-header-nav a:hover::after {
  width: 100%;
}

/* MOBILE */
@media (max-width: 640px) {
  .ag-header-nav {
    gap: 1.2rem;
  }
  .ag-header-logo img {
    height: 26px;
  }
}
.ag-header.navbar--scrolled {
  background: rgba(2, 2, 10, 0.9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

