    :root {
      --bg-deep: #0a0e1a;
      --bg-card: rgba(18, 26, 48, 0.55);
      --navy: #141e38;
      --blue: #2d5cff;
      --blue-soft: #4a7cff;
      --cyan: #00d4c4;
      --cyan-dim: rgba(0, 212, 196, 0.15);
      --text: #e8ecf4;
      --text-muted: rgba(232, 236, 244, 0.62);
      --border: rgba(255, 255, 255, 0.08);
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --radius: 20px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Jost", "Futura", "Century Gothic", system-ui, sans-serif;
      font-weight: 400;
      font-feature-settings: "kern" 1, "liga" 1;
      background: var(--bg-deep);
      color: var(--text);
      line-height: 1.65;
      letter-spacing: 0.01em;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Ambient background */
    .bg-mesh {
      position: fixed;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(45, 92, 255, 0.35), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 20%, rgba(0, 212, 196, 0.2), transparent 50%),
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(20, 30, 56, 0.9), var(--bg-deep));
    }

    .bg-grid {
      position: fixed;
      inset: 0;
      z-index: -1;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 70%);
      pointer-events: none;
    }

    .noise {
      position: fixed;
      inset: 0;
      z-index: -1;
      opacity: 0.04;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* Floating cubes decoration */
    .cube-deco {
      position: absolute;
      width: 48px;
      height: 48px;
      transform-style: preserve-3d;
      opacity: 0.5;
      animation: cube-float 8s var(--ease-out) infinite;
    }

    .cube-deco::before,
    .cube-deco::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 6px;
    }

    .cube-deco::before {
      background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
      transform: rotate(-12deg) skewX(-6deg);
      box-shadow: 0 12px 40px rgba(0, 212, 196, 0.25);
    }

    .cube-deco::after {
      background: var(--navy);
      transform: translate(8px, 8px) rotate(-12deg) skewX(-6deg);
      z-index: -1;
    }

    @keyframes cube-float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(4deg); }
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
    }

    header.scrolled {
      background: rgba(10, 14, 26, 0.75);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .logo-link {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: var(--text);
    }

    .logo-link img {
      height: 40px;
      width: auto;
      filter: drop-shadow(0 4px 20px rgba(0, 212, 196, 0.3));
    }

    nav {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    nav a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.25s var(--ease-out);
    }

    nav a:hover {
      color: var(--cyan);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.85rem 1.6rem;
      font-family: inherit;
      font-size: 0.875rem;
      font-weight: 600;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--cyan), var(--blue-soft));
      color: #050810;
      box-shadow: 0 4px 24px rgba(0, 212, 196, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(45, 92, 255, 0.4);
    }

    .btn-ghost {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
    }

    .btn-ghost:hover {
      border-color: rgba(0, 212, 196, 0.4);
      color: var(--cyan);
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      display: grid;
      align-items: center;
      padding: clamp(5rem, 12vw, 8rem) clamp(1.25rem, 4vw, 3rem) 4rem;
      position: relative;
      isolation: isolate;
      overflow: clip;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      pointer-events: none;
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-video {
        display: none;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background-image: url("fotos/webp/fotos-qbos-gomez-editadas/fotos-qbos.webp");
        background-size: cover;
        background-position: center;
      }
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        105deg,
        rgba(10, 14, 26, 0.72) 0%,
        rgba(10, 14, 26, 0.52) 38%,
        rgba(10, 14, 26, 0.22) 62%,
        rgba(10, 14, 26, 0.38) 100%
      );
      pointer-events: none;
    }

    .hero .cube-deco {
      z-index: 2;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      gap: 3rem;
      grid-template-columns: 1fr;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 1rem;
      border-radius: 999px;
      background: var(--cyan-dim);
      border: 1px solid rgba(0, 212, 196, 0.25);
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 1.5rem;
      animation: fade-up 0.9s var(--ease-out) both;
    }

    .hero-badge span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--cyan);
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.85); }
    }

    .hero h1 {
      font-family: "Jost", "Futura", "Century Gothic", sans-serif;
      font-size: clamp(2.5rem, 6vw, 4.25rem);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.035em;
      margin-bottom: 1.25rem;
      animation: fade-up 0.9s var(--ease-out) 0.08s both;
    }

    .hero h1 em {
      font-style: normal;
      background: linear-gradient(120deg, var(--text) 0%, var(--cyan) 45%, var(--blue-soft) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-lead {
      font-size: 1.125rem;
      color: rgba(232, 236, 244, 0.78);
      max-width: 32ch;
      margin-bottom: 2rem;
      animation: fade-up 0.9s var(--ease-out) 0.16s both;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      animation: fade-up 0.9s var(--ease-out) 0.24s both;
    }

    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(28px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .deco-1 { top: 15%; right: 8%; animation-delay: 0s; }
    .deco-2 { bottom: 25%; left: 5%; animation-delay: -2s; width: 36px; height: 36px; }
    .deco-3 { top: 40%; right: 15%; animation-delay: -4s; width: 28px; height: 28px; opacity: 0.35; }

    /* Sections */
    section {
      padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
    }

    .section-head {
      max-width: 640px;
      margin-bottom: 3rem;
    }

    .section-label {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 0.75rem;
    }

    .section-head h2 {
      font-family: "Jost", "Futura", "Century Gothic", sans-serif;
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1.18;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Reveal on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }

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

    .features .reveal:nth-child(1) { transition-delay: 0s; }
    .features .reveal:nth-child(2) { transition-delay: 0.1s; }
    .features .reveal:nth-child(3) { transition-delay: 0.2s; }

    .process.reveal .step:nth-child(1) { transition-delay: 0s; }
    .process.reveal .step:nth-child(2) { transition-delay: 0.1s; }
    .process.reveal .step:nth-child(3) { transition-delay: 0.2s; }
    .process.reveal .step:nth-child(4) { transition-delay: 0.3s; }

    .process.reveal.visible .step {
      opacity: 1;
      transform: translateY(0);
    }

    .process .step {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
    }

    /* Features grid */
    .features {
      display: grid;
      gap: 1.25rem;
      grid-template-columns: 1fr;
    }

    @media (min-width: 640px) {
      .features {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 960px) {
      .features {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .feature-card {
      padding: 1.75rem;
      border-radius: var(--radius);
      background: var(--bg-card);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
    }

    .feature-card:hover {
      border-color: rgba(0, 212, 196, 0.25);
      transform: translateY(-4px);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-size: 1.35rem;
      margin-bottom: 1.25rem;
      background: linear-gradient(145deg, rgba(0, 212, 196, 0.2), rgba(45, 92, 255, 0.15));
    }

    .feature-card h3 {
      font-family: "Jost", "Futura", "Century Gothic", sans-serif;
      font-size: 1.125rem;
      font-weight: 600;
      letter-spacing: -0.015em;
      margin-bottom: 0.5rem;
    }

    .feature-card p {
      font-size: 0.9375rem;
      color: var(--text-muted);
    }

    /* Bloque libros / referencias (landing) */
    .studio-books {
      display: grid;
      gap: 1.75rem;
      align-items: center;
      margin-top: 2.5rem;
      padding: 1.5rem;
      border-radius: calc(var(--radius) + 6px);
      border: 1px solid var(--border);
      background: rgba(18, 26, 48, 0.35);
      backdrop-filter: blur(12px);
    }

    @media (min-width: 768px) {
      .studio-books {
        grid-template-columns: 1.15fr 1fr;
        gap: 2.25rem;
        padding: 1.75rem 2rem;
      }
    }

    .studio-books-figure {
      margin: 0;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .studio-books-figure img {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .studio-books-copy h3 {
      font-family: "Jost", "Futura", "Century Gothic", sans-serif;
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 0.65rem;
    }

    .studio-books-copy p:last-child {
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .studio-grid {
      display: grid;
      gap: 1rem;
      margin-top: 2.5rem;
      grid-template-columns: 1fr;
      width: 100%;
    }

    @media (min-width: 768px) {
      .studio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
      }

      .studio-grid img {
        width: 100%;
        height: 200px;
        max-height: 200px;
        object-fit: cover;
        object-position: center;
      }
    }

    .studio-grid figure {
      margin: 0;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      width: 100%;
    }

    .studio-grid img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s var(--ease-out);
    }

    .studio-grid figure:hover img {
      transform: scale(1.03);
    }

    .studio-grid figcaption {
      padding: 0.75rem 1rem;
      font-size: 0.8125rem;
      color: var(--text-muted);
      background: rgba(18, 26, 48, 0.5);
    }

    .works-band {
      background: rgba(0, 0, 0, 0.22);
    }

    .work-block {
      padding: clamp(3rem, 8vw, 5rem) 0;
      border-bottom: 1px solid var(--border);
    }

    .work-block:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .work-block .section-head {
      margin-bottom: 1.5rem;
    }

    .works-intro {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 46rem;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .work-block {
        padding: clamp(2rem, 4vw, 2.75rem) 0;
      }

      .work-block .section-head {
        margin-bottom: 1rem;
      }

      .works-intro {
        margin-bottom: 1.25rem;
        font-size: 0.9375rem;
      }
    }

    .gallery-item.featured {
      grid-column: span 1;
    }

    .gallery-item.featured img {
      aspect-ratio: 16 / 10;
    }

    .gallery-caption-title {
      display: block;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .gallery-caption-desc {
      display: block;
      font-weight: 400;
      font-size: 0.75rem;
      color: rgba(232, 236, 244, 0.72);
      line-height: 1.45;
      margin-top: 0.25rem;
    }

    /* Process timeline */
    .process {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .process {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
      }
    }

    .step {
      position: relative;
      padding-top: 2.5rem;
    }

    .step-num {
      position: absolute;
      top: 0;
      left: 0;
      font-family: "Jost", "Futura", "Century Gothic", sans-serif;
      font-size: 3rem;
      font-weight: 700;
      line-height: 1;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .step h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .step p {
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    /* Location strip */
    .location {
      border-radius: calc(var(--radius) + 8px);
      overflow: hidden;
      border: 1px solid var(--border);
      display: grid;
    }

    @media (min-width: 768px) {
      .location {
        grid-template-columns: 1fr 1fr;
      }
    }

    .location-map {
      min-height: 280px;
      background: linear-gradient(160deg, var(--navy) 0%, #0d1528 100%);
      display: grid;
      place-items: center;
      position: relative;
    }

    .location-map::after {
      content: "";
      position: absolute;
      inset: 20%;
      border: 2px dashed rgba(0, 212, 196, 0.2);
      border-radius: 12px;
      animation: dash-pulse 3s ease-in-out infinite;
    }

    @keyframes dash-pulse {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 1; }
    }

    .pin {
      position: relative;
      z-index: 1;
      width: 22px;
      height: 22px;
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      background: linear-gradient(135deg, var(--cyan), var(--blue));
      box-shadow: 0 12px 40px rgba(0, 212, 196, 0.4);
      animation: pin-bounce 2s ease-in-out infinite;
    }

    .pin::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 8px;
      height: 8px;
      margin: -4px 0 0 -4px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      transform: rotate(45deg);
    }

    @keyframes pin-bounce {
      0%, 100% { transform: rotate(-45deg) translateY(0); }
      50% { transform: rotate(-45deg) translateY(-8px); }
    }

    .location-info {
      padding: 2.5rem;
      background: rgba(18, 26, 48, 0.4);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
    }

    .location-info h3 {
      font-family: "Jost", "Futura", "Century Gothic", sans-serif;
      font-size: 1.5rem;
    }

    .location-info address {
      font-style: normal;
      color: var(--text-muted);
      font-size: 1rem;
    }

    /* CTA footer band */
    .cta-band {
      text-align: center;
      padding: clamp(4rem, 8vw, 6rem) 1.5rem;
      position: relative;
    }

    .cta-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(45, 92, 255, 0.25), transparent 70%);
      pointer-events: none;
    }

    .cta-band h2 {
      font-family: "Jost", "Futura", "Century Gothic", sans-serif;
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
    }

    .cta-band p {
      color: var(--text-muted);
      max-width: 36ch;
      margin: 0 auto 2rem;
      position: relative;
    }

    .cta-band .btn-wrap {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }

    .btn-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .btn-wrap.align-start {
      justify-content: flex-start;
      margin-top: 1.5rem;
    }

    .location-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    footer {
      padding: 2rem clamp(1.25rem, 4vw, 3rem) 3rem;
      border-top: 1px solid var(--border);
      text-align: center;
      font-size: 0.8125rem;
      color: var(--text-muted);
    }

    footer a {
      color: var(--cyan);
      text-decoration: none;
    }

    /* Mobile nav */
    .menu-toggle {
      display: none;
      position: relative;
      z-index: 112;
      background: none;
      border: none;
      color: var(--text);
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      padding: 0.35rem;
      border-radius: 8px;
      transition: background 0.2s var(--ease-out), color 0.2s;
    }

    .menu-toggle:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 2px;
    }

    body.nav-open {
      overflow: hidden;
    }

    @media (max-width: 768px) {
      header {
        z-index: 111;
      }

      .menu-toggle {
        display: block;
      }

      header.nav-open {
        background: #0a0e1a;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 1px solid var(--border);
      }

      .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 108;
        background: rgba(5, 8, 16, 0.82);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s var(--ease-out), visibility 0.35s;
      }

      .nav-overlay.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 110;
        width: min(300px, 88vw);
        background: #0a0e1a;
        flex-direction: column;
        align-items: stretch;
        padding: calc(4.75rem + env(safe-area-inset-top, 0px)) 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
        gap: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -12px 0 48px rgba(0, 0, 0, 0.55);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      nav.open {
        transform: translateX(0);
      }

      nav a {
        display: block;
        width: 100%;
        padding: 0.95rem 0.25rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      nav a:last-child {
        border-bottom: none;
        margin-top: 0.75rem;
      }

      nav a:hover,
      nav a:focus-visible {
        color: var(--cyan);
      }

      nav a.nav-active {
        color: var(--cyan);
      }

      nav .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.25rem;
        font-size: 0.875rem;
        border-bottom: none;
      }

      nav .btn-primary {
        margin-top: 0.25rem;
      }

      /* Móvil: fotos y botones más compactos */
      section {
        padding: clamp(2.5rem, 8vw, 4rem) 1rem;
      }

      .hero {
        min-height: 100svh;
        padding: clamp(4.5rem, 10vw, 6rem) 1rem 2.5rem;
      }

      .hero h1 {
        font-size: clamp(1.85rem, 8.5vw, 2.5rem);
      }

      .hero-lead {
        font-size: 1rem;
        max-width: none;
      }

      .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
      }

      .hero-cta .btn {
        width: auto;
        min-width: 0;
        max-width: 100%;
        padding: 0.6rem 1.15rem;
        font-size: 0.8125rem;
      }

      .btn {
        padding: 0.6rem 1.15rem;
        font-size: 0.8125rem;
      }

      nav .btn {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.8125rem;
      }

      .cta-band .btn-wrap,
      .btn-wrap,
      .location-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
      }

      .cta-band .btn-wrap .btn,
      .btn-wrap .btn,
      .location-actions .btn {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
      }

      .studio-grid {
        margin-top: 1.5rem;
        gap: 0.75rem;
      }

      .studio-grid figcaption {
        padding: 0.55rem 0.75rem;
        font-size: 0.75rem;
      }

      .features-compact {
        gap: 0.5rem;
        grid-template-columns: 1fr;
      }

      .features-compact .feature-card {
        display: grid;
        grid-template-columns: 2.25rem 1fr;
        column-gap: 0.75rem;
        row-gap: 0.12rem;
        padding: 0.7rem 0.85rem;
        align-items: start;
      }

      .features-compact .feature-card:hover {
        transform: none;
      }

      .features-compact .feature-icon {
        grid-row: 1 / 3;
        align-self: center;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.95rem;
        margin-bottom: 0;
        border-radius: 10px;
      }

      .features-compact .feature-card h3 {
        font-size: 0.875rem;
        margin-bottom: 0;
      }

      .features-compact .feature-card p {
        font-size: 0.75rem;
        line-height: 1.4;
      }

      .gallery-grid--tattoo {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
      }

      .gallery-grid--tattoo .gallery-item {
        border-radius: 8px;
      }

      .gallery-grid--tattoo .gallery-item img {
        aspect-ratio: 3 / 4;
        max-height: 130px;
        object-fit: cover;
        object-position: center;
      }

      .gallery-grid--jewelry {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
      }

      .gallery-grid--jewelry .gallery-item {
        border-radius: 12px;
      }

      .gallery-grid--jewelry .gallery-item img {
        aspect-ratio: 1 / 1;
        max-height: 140px;
      }

      .gallery-grid--jewelry .gallery-item.featured {
        grid-column: span 2;
      }

      .gallery-grid--jewelry .gallery-item.featured img {
        aspect-ratio: 16 / 9;
        max-height: 130px;
      }

      .team-card {
        grid-template-columns: 1fr;
      }

      .team-card-photo-wrap {
        max-height: min(52vh, 360px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--navy);
      }

      .team-card-photo {
        width: 100%;
        height: auto;
        max-height: min(52vh, 360px);
        aspect-ratio: unset;
        object-fit: contain;
        object-position: center;
      }

      .map-embed {
        height: 200px;
        min-height: 200px;
      }

      .location-info {
        padding: 1.5rem;
      }

      .section-head h2 {
        font-size: clamp(1.45rem, 5.5vw, 2rem);
      }

      .works-intro {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
      }

      .work-block {
        padding: clamp(2rem, 6vw, 3rem) 0;
      }

      .wa-float {
        width: 48px;
        height: 48px;
        right: max(0.85rem, env(safe-area-inset-right, 0px));
        bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
      }

      .wa-float svg {
        width: 24px;
        height: 24px;
      }
    }

/* Mapa embebido */
.location-map--embed {
  display: block;
  min-height: 320px;
  padding: 0;
}

.location-map--embed::after {
  display: none;
}

.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.03);
}

@media (min-width: 768px) {
  .map-embed {
    min-height: 340px;
    height: 100%;
  }
}

/* Página equipo — intro alineada al contenido */
.page-intro {
  padding: clamp(5.25rem, 11vw, 7rem) 0 2.5rem;
  margin: 0 auto;
  max-width: 1200px;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.page-intro-crumb {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(232, 236, 244, 0.42);
  margin-bottom: 1.35rem;
}

.page-intro-crumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.page-intro-crumb a:hover {
  color: var(--cyan);
}

.page-intro-crumb-sep {
  margin: 0 0.5rem;
  opacity: 0.55;
  font-weight: 400;
}

.page-intro-crumb-here {
  color: rgba(232, 236, 244, 0.55);
  font-weight: 500;
}

.page-intro-kicker {
  margin-bottom: 0.6rem;
}

.page-intro-heading {
  font-family: "Jost", "Futura", "Century Gothic", sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.14;
  max-width: 22ch;
}

.page-intro-text {
  color: var(--text-muted);
  margin-top: 1.15rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 40rem;
}

.team-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.team-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .team-card {
    grid-template-columns: minmax(280px, 380px) 1fr;
  }
}

.team-card-photo-wrap {
  margin: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-card-photo {
  width: 100%;
  height: auto;
  max-height: 420px;
  aspect-ratio: unset;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (min-width: 768px) {
  .team-card-photo-wrap {
    min-height: 300px;
    max-height: 420px;
  }

  .team-card-photo {
    min-height: 300px;
    max-height: 420px;
    width: 100%;
    object-fit: cover;
    object-position: center 15%;
  }
}

.team-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.team-card-body h2 {
  font-family: "Jost", "Futura", "Century Gothic", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.team-role {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}

.team-bio {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.gallery-grid--tattoo {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

@media (max-width: 767px) {
  .gallery-grid--tattoo {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .gallery-grid--tattoo .gallery-item img {
    max-height: 130px;
    object-fit: cover;
    object-position: center;
  }
}

@media (min-width: 768px) {
  .gallery-grid--tattoo {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.55rem;
  }

  .gallery-grid--tattoo .gallery-item {
    border-radius: 10px;
  }

  .gallery-grid--tattoo .gallery-item img {
    aspect-ratio: 4 / 5;
    max-height: 165px;
    object-fit: cover;
    object-position: center;
  }
}

@media (min-width: 1100px) {
  .gallery-grid--tattoo {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
  }

  .gallery-grid--tattoo .gallery-item img {
    max-height: 145px;
  }
}

.gallery-grid--jewelry {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .gallery-grid--jewelry {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
  }

  .gallery-grid--jewelry .gallery-item.featured {
    grid-column: span 2;
    border-radius: 12px;
  }

  .gallery-grid--jewelry .gallery-item.featured img {
    aspect-ratio: 16 / 9;
    max-height: 175px;
    object-fit: cover;
    object-position: center;
  }

  .gallery-grid--jewelry .gallery-item:not(.featured) {
    border-radius: 10px;
  }

  .gallery-grid--jewelry .gallery-item:not(.featured) img {
    aspect-ratio: 1 / 1;
    max-height: 115px;
    object-fit: cover;
    object-position: center;
  }
}

.gallery-grid--jewelry .gallery-item.featured img {
  aspect-ratio: 16 / 10;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(10, 14, 26, 0.94));
  font-size: 0.8125rem;
  font-weight: 600;
}

.gallery-item .tattoo-artist {
  display: block;
  font-weight: 500;
  color: var(--cyan);
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

.gallery-grid .reveal:nth-child(1) { transition-delay: 0s; }
.gallery-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.gallery-grid .reveal:nth-child(7) { transition-delay: 0.36s; }
.gallery-grid .reveal:nth-child(8) { transition-delay: 0.42s; }
.gallery-grid .reveal:nth-child(9) { transition-delay: 0.48s; }

.cta-band p.cta-wide {
  max-width: 52ch;
}

nav a.nav-active {
  color: var(--text);
}

/* Lightbox */
.gallery-item,
.studio-grid figure,
.team-card-photo-wrap {
  cursor: zoom-in;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 16, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(18, 26, 48, 0.85);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}

.lightbox-close:hover {
  border-color: rgba(0, 212, 196, 0.5);
  color: var(--cyan);
  transform: scale(1.05);
}

.lightbox-close:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(92vh - 2.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.lightbox-caption {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 40rem;
}

.lightbox-caption[hidden] {
  display: none;
}

/* Botón flotante WhatsApp */
.wa-float {
  position: fixed;
  z-index: 200;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow:
    0 6px 28px rgba(37, 211, 102, 0.42),
    0 2px 10px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow:
    0 8px 32px rgba(37, 211, 102, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.wa-float:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .works-band .work-block {
    padding: 1.5rem 0;
  }

  .works-band .work-block .section-head {
    margin-bottom: 0.5rem;
  }

  .works-band .work-block .section-head .section-label {
    margin-bottom: 0.35rem;
    font-size: 0.625rem;
  }

  .works-band .work-block .section-head h2 {
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
  }

  .works-band .work-block .works-intro {
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    max-width: 40rem;
  }

  .works-band .gallery-grid--tattoo {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.55rem;
  }

  .works-band .gallery-grid--tattoo .gallery-item {
    border-radius: 10px;
  }

  .works-band .gallery-grid--tattoo .gallery-item img {
    width: 100%;
    height: 168px;
    max-height: 168px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .works-band .gallery-grid--jewelry {
    gap: 0.6rem;
  }

  .works-band .gallery-grid--jewelry .gallery-item.featured {
    border-radius: 12px;
  }

  .works-band .gallery-grid--jewelry .gallery-item.featured img {
    height: 260px;
    max-height: 260px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .works-band .gallery-grid--jewelry .gallery-item:not(.featured) {
    border-radius: 10px;
  }

  .works-band .gallery-grid--jewelry .gallery-item:not(.featured) img {
    height: 175px;
    max-height: 175px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .works-band .gallery-item:hover img {
    transform: scale(1.02);
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .works-band .gallery-grid--tattoo {
    grid-template-columns: repeat(3, 1fr);
  }

  .works-band .gallery-grid--tattoo .gallery-item img {
    height: 155px;
    max-height: 155px;
  }
}