/* ============================================================
   VARIABLES
============================================================ */

:root {
  --black: #080808;
  --ink: #111111;

  --paper: #f3efe4;

  --yellow: #ffd21c;
  --yellow-soft: #ffe36b;
  --yellow-dark: #c89e00;

  --white: #fffdf7;

  --line-dark: rgba(17, 17, 17, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);

  --gutter: clamp(22px, 5vw, 76px);

  --radius: 26px;
}

/* ============================================================
   RESET
============================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--black);

  color: var(--ink);

  font-family: "DM Sans", sans-serif;

  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img,
video {
  display: block;

  width: 100%;
}

button,
a {
  font-family: inherit;
}

a {
  color: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Fraunces", serif;

  font-weight: 500;
}

::selection {
  background: var(--yellow);

  color: var(--black);
}

/* ============================================================
   HEADER
============================================================ */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 18px var(--gutter);

  color: var(--white);

  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
}

/* ============================================================
   LOGO HEADER
============================================================ */

.brand {
  display: flex;

  align-items: center;

  justify-content: center;

  width: auto;

  height: 52px;

  flex-shrink: 0;

  text-decoration: none;
}

.brand-logo {
  display: block;

  width: auto;

  height: auto;

  max-width: 105px;

  max-height: 52px;

  object-fit: contain;

  object-position: center;
}

/* ============================================================
   NAV
============================================================ */

.site-nav {
  display: flex;

  gap: 28px;
}

.site-nav a {
  text-decoration: none;

  font-size: 13px;

  opacity: 0.7;

  transition:
    opacity 0.2s,
    color 0.2s;
}

.site-nav a:hover {
  opacity: 1;

  color: var(--yellow);
}

/* ============================================================
   MENU BUTTON
============================================================ */

.menu-toggle {
  display: none;

  align-items: center;

  gap: 10px;

  border: 0;

  color: var(--white);

  background: transparent;

  cursor: pointer;
}

.menu-toggle-label {
  font-size: 12px;

  font-weight: 700;
}

.menu-icon {
  width: 22px;

  height: 16px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.menu-icon i {
  width: 100%;

  height: 1.5px;

  background: currentColor;

  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.menu-toggle.is-open .menu-icon i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-icon i:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-icon i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   GENERALES
============================================================ */

.panel {
  position: relative;

  min-height: 100svh;

  overflow: hidden;
}

.panel-inner {
  position: relative;

  z-index: 5;

  width: min(1500px, 100%);

  min-height: 100svh;

  margin: auto;

  padding: clamp(105px, 12vh, 160px) var(--gutter) clamp(80px, 10vh, 120px);
}

.section-number {
  margin-bottom: 34px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.17em;

  text-transform: uppercase;
}

.section-number.light {
  color: rgba(255, 255, 255, 0.58);
}

/* ============================================================
   HERO
============================================================ */

.hero {
  background: var(--black);

  color: var(--white);
}

.hero-photo {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.58) 50%,
      rgba(0, 0, 0, 0.16) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 55%);
}

.hero-grid {
  display: flex;

  flex-direction: column;

  justify-content: flex-end;
}

.hero-small {
  margin-bottom: 20px;

  color: var(--yellow);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.hero h1 {
  position: relative;

  z-index: 2;

  margin: 0 0 35px;

  font-size: clamp(84px, 14vw, 220px);

  line-height: 0.72;

  letter-spacing: -0.075em;
}

.hero h1 em {
  display: block;

  color: var(--yellow);

  font-style: italic;
}

.hero-copy {
  width: min(650px, 100%);

  margin-left: 26%;

  font-size: clamp(19px, 2vw, 31px);

  line-height: 1.15;
}

.hero blockquote {
  width: min(550px, 75%);

  margin: 20px 0 0 26%;

  font-family: "Fraunces", serif;

  font-size: 15px;

  line-height: 1.45;

  color: rgba(255, 255, 255, 0.62);
}

.hero cite {
  display: block;

  margin-top: 4px;

  font-family: "DM Sans", sans-serif;

  font-size: 11px;

  font-style: normal;
}

.scroll-cue {
  position: absolute;

  right: var(--gutter);

  bottom: 33px;

  display: flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;

  font-size: 10px;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.scroll-cue span {
  color: var(--yellow);

  font-size: 20px;
}

.hero-eye {
  position: absolute;

  z-index: 2;

  border: 2px solid rgba(255, 210, 28, 0.25);

  border-radius: 50%;
}

.hero-eye-one {
  width: 33vw;

  height: 33vw;

  right: -12vw;

  top: 12vh;
}

.hero-eye-two {
  width: 12vw;

  height: 12vw;

  left: 6vw;

  top: 17vh;
}

/* ============================================================
   PRESENTACIÓN
============================================================ */

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: clamp(45px, 8vw, 120px);
}

.intro h2 {
  max-width: 650px;

  font-size: clamp(60px, 8vw, 120px);

  line-height: 0.85;

  letter-spacing: -0.06em;
}

.large-prose {
  padding-left: clamp(25px, 5vw, 65px);

  border-left: 1px solid var(--line-dark);
}

.prose p {
  font-size: clamp(17px, 1.4vw, 21px);

  line-height: 1.5;
}

.intro-gallery {
  display: grid;

  grid-template-columns: 1.4fr 0.8fr 0.8fr;

  gap: 14px;

  margin-top: 80px;
}

.intro-photo {
  height: 420px;

  overflow: hidden;

  border-radius: 18px;
}

.intro-photo-wide {
  height: 520px;
}

.intro-photo img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* ============================================================
   ARTISTAS
============================================================ */

.artists {
  background: var(--black);

  color: var(--white);
}

.artist-grid {
  display: grid;

  gap: 90px;
}

.artist-card {
  display: grid;

  grid-template-columns: 1fr 1fr;

  min-height: 70vh;
}

.artist-photo {
  min-height: 650px;

  overflow: hidden;
}

.artist-photo img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.artist-card:first-child .artist-photo {
  border-radius: var(--radius) 0 0 var(--radius);
}

.artist-card-reverse .artist-photo {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.artist-copy {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: clamp(40px, 6vw, 90px);
}

.artist-copy-dark {
  background: #151515;

  border-radius: 0 var(--radius) var(--radius) 0;
}

.artist-copy-yellow {
  background: var(--yellow);

  color: var(--ink);

  border-radius: var(--radius) 0 0 var(--radius);
}

.artist-number {
  margin-bottom: 15px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.16em;

  opacity: 0.45;
}

.artist-copy h2 {
  margin-bottom: 40px;

  font-size: clamp(70px, 9vw, 140px);

  line-height: 0.75;

  letter-spacing: -0.07em;
}

.artist-copy p {
  max-width: 600px;

  font-size: clamp(16px, 1.3vw, 20px);

  line-height: 1.5;
}

/* ============================================================
   LA MUDANZA
============================================================ */

.work {
  background: var(--black);

  color: var(--white);
}

.work-background {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.work-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.63) 45%,
      rgba(0, 0, 0, 0.3) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
}

.work-inner {
  display: flex;

  flex-direction: column;

  justify-content: flex-end;
}

.work-main {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 8vw;

  align-items: end;
}

.kicker {
  color: var(--yellow);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.13em;
}

.work h2 {
  margin: 16px 0 25px;

  color: var(--white);

  font-size: clamp(90px, 13vw, 190px);

  line-height: 0.68;

  letter-spacing: -0.075em;
}

.work-lead {
  color: var(--yellow);

  font-family: "Fraunces", serif;

  font-size: clamp(25px, 3vw, 42px);
}

.work-copy {
  padding: 35px;

  background: var(--yellow);

  color: var(--black);

  border-radius: 20px;
}

.work-copy p {
  margin-bottom: 22px;

  color: var(--black);

  font-size: clamp(17px, 1.4vw, 21px);

  line-height: 1.5;
}

.work-copy p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   FICHA
============================================================ */

.ficha {
  background: var(--paper);
}

.big-title {
  margin: 0 0 80px;

  font-size: clamp(80px, 11vw, 170px);

  line-height: 0.72;

  letter-spacing: -0.07em;
}

.stats-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line-dark);
}

.stats-grid article {
  min-height: 210px;

  padding: 27px 25px;

  border-right: 1px solid var(--line-dark);
}

.stats-grid article:first-child {
  padding-left: 0;
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid span {
  display: block;

  margin-bottom: 27px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  opacity: 0.45;
}

.stats-grid strong {
  display: block;

  font-family: "Fraunces", serif;

  font-size: clamp(28px, 3vw, 47px);

  font-weight: 500;

  line-height: 1;
}

.stats-grid small {
  display: block;

  margin-top: 8px;
}

.languages {
  display: grid;

  grid-template-columns: 1fr 3fr;

  padding-top: 30px;

  border-top: 1px solid var(--line-dark);
}

.languages span {
  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  opacity: 0.45;
}

.languages p {
  max-width: 950px;

  font-size: clamp(18px, 1.7vw, 25px);

  line-height: 1.45;
}

.ficha-image {
  height: 65vh;

  margin-top: 70px;

  overflow: hidden;

  border-radius: var(--radius);
}

.ficha-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;
}

/* ============================================================
   ELEMENTOS
============================================================ */

.elements {
  background: var(--black);

  color: var(--white);
}

.elements-layout {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 8vw;

  align-items: center;
}

.elements h2 {
  margin-bottom: 50px;

  color: var(--yellow);

  font-size: clamp(70px, 9vw, 140px);

  line-height: 0.78;

  letter-spacing: -0.065em;
}

.element-featured {
  width: 75%;

  aspect-ratio: 4 / 5;

  overflow: hidden;

  border-radius: var(--radius);
}

.element-featured img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.elements-list {
  display: grid;

  grid-template-columns: 60px 1fr;

  border-top: 1px solid var(--line-light);
}

.elements-list span,
.elements-list p {
  margin: 0;

  padding: 19px 0;

  border-bottom: 1px solid var(--line-light);
}

.elements-list span {
  color: var(--yellow);

  font-size: 11px;
}

.elements-list p {
  font-size: clamp(18px, 1.6vw, 24px);
}

/* ============================================================
   ESPACIO
============================================================ */

.space {
  background: var(--yellow);
}

.space-layout {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 8vw;

  align-items: center;
}

.space h2 {
  font-size: clamp(90px, 12vw, 180px);

  line-height: 0.7;

  letter-spacing: -0.075em;
}

.space-specs {
  display: flex;

  gap: 55px;

  margin-top: 55px;
}

.space-specs span {
  display: block;

  margin-bottom: 8px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.space-specs strong {
  display: block;

  font-family: "Fraunces", serif;

  font-size: 45px;
}

.space-specs small {
  opacity: 0.6;
}

.space-photo {
  height: 75vh;

  overflow: hidden;

  border-radius: var(--radius);
}

.space-photo img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* ============================================================
   GALERÍA
============================================================ */

.gallery {
  min-height: 100svh;

  background: radial-gradient(circle at 70% 50%, #171405, #080808 55%);

  color: var(--white);
}

.sphere-gallery-inner {
  display: grid;

  grid-template-columns: 0.55fr 1.45fr;

  gap: clamp(30px, 6vw, 100px);

  align-items: center;
}

.gallery-heading {
  position: relative;

  z-index: 20;
}

.gallery-heading h2 {
  margin-bottom: 30px;

  color: var(--yellow);

  font-size: clamp(75px, 10vw, 150px);

  line-height: 0.72;

  letter-spacing: -0.07em;
}

.gallery-heading p {
  max-width: 330px;

  color: rgba(255, 255, 255, 0.56);

  line-height: 1.5;
}

.drag-hint {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 30px;

  padding: 10px 15px;

  border: 1px solid rgba(255, 210, 28, 0.25);

  border-radius: 999px;

  color: var(--yellow);

  font-size: 11px;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.drag-hint span {
  font-size: 18px;
}

/* ============================================================
   ESCENA ESFERA
============================================================ */

.sphere-scene {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;

  height: min(80vh, 850px);

  min-height: 620px;

  perspective: 1400px;

  perspective-origin: 50% 50%;

  touch-action: none;

  user-select: none;

  cursor: grab;
}

.sphere-scene:active {
  cursor: grabbing;
}

.sphere-glow {
  position: absolute;

  width: 72%;

  aspect-ratio: 1;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 210, 28, 0.18),
    rgba(255, 210, 28, 0.05) 40%,
    transparent 68%
  );

  filter: blur(20px);

  pointer-events: none;
}

.photo-sphere {
  position: absolute;

  left: 50%;

  top: 50%;

  width: 0;

  height: 0;

  transform-style: preserve-3d;

  transform-origin: center center;

  will-change: transform;
}

/* ============================================================
   FOTOS ESFERA
============================================================ */

.sphere-photo {
  position: absolute;

  left: 50%;

  top: 50%;

  width: clamp(95px, 9vw, 145px);

  height: clamp(125px, 12vw, 190px);

  margin: 0;

  padding: 0;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 13px;

  outline: none;

  background: #111;

  cursor: pointer;

  transform-style: preserve-3d;

  backface-visibility: visible;

  -webkit-backface-visibility: visible;

  will-change: transform;

  touch-action: none;

  pointer-events: auto;

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.sphere-photo img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  pointer-events: none;

  -webkit-user-drag: none;
}

.sphere-photo:hover {
  border-color: var(--yellow);

  box-shadow:
    0 0 0 2px var(--yellow),
    0 22px 55px rgba(0, 0, 0, 0.7);
}

/* ============================================================
   LOGO EN EL CENTRO REAL DE LA ESFERA
============================================================ */

.sphere-center-logo {
  position: absolute;

  left: 50%;

  top: 50%;

  width: clamp(170px, 16vw, 260px);

  height: clamp(170px, 16vw, 260px);

  transform: translate(-50%, -50%) translateZ(0px);

  transform-style: preserve-3d;

  pointer-events: none;

  backface-visibility: visible;

  -webkit-backface-visibility: visible;

  will-change: transform;
}

.sphere-center-logo img {
  display: block;

  width: 100%;

  height: 100%;

  max-width: 100%;

  max-height: 100%;

  object-fit: contain;

  pointer-events: none;

  filter: drop-shadow(0 0 22px rgba(255, 210, 28, 0.28));
}

/* ============================================================
   LIGHTBOX
============================================================ */

.gallery-lightbox {
  position: fixed;

  inset: 0;

  z-index: 5000;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(0, 0, 0, 0.96);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.gallery-lightbox.open {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

.lightbox-image-wrap {
  display: flex;

  align-items: center;

  justify-content: center;

  width: min(88vw, 1200px);

  height: 88vh;
}

.lightbox-image-wrap img {
  width: auto;

  max-width: 100%;

  height: auto;

  max-height: 100%;

  object-fit: contain;

  border-radius: 12px;

  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9);
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;

  z-index: 10;

  display: grid;

  place-items: center;

  width: 52px;

  height: 52px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  color: var(--white);

  cursor: pointer;

  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  border-color: var(--yellow);

  background: var(--yellow);

  color: var(--black);
}

.lightbox-close {
  top: 25px;

  right: 28px;

  font-size: 30px;
}

.lightbox-arrow {
  top: 50%;

  transform: translateY(-50%);

  font-size: 39px;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

/* ============================================================
   VIDEOS
============================================================ */

.videos-section {
  padding: 100px var(--gutter);

  background: var(--paper);
}

.videos-inner {
  width: min(1450px, 100%);

  margin: auto;
}

.videos-heading {
  margin-bottom: 55px;
}

.videos-heading span {
  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.videos-heading h2 {
  margin: 10px 0 0;

  font-size: clamp(70px, 9vw, 130px);

  line-height: 0.75;

  letter-spacing: -0.065em;
}

.video-grid {
  display: grid;

  grid-template-columns: 1.5fr 0.75fr 0.75fr;

  gap: 15px;
}

.video-card {
  overflow: hidden;

  border-radius: 20px;

  background: #111;
}

.video-card video {
  width: 100%;

  height: 100%;

  min-height: 500px;

  object-fit: cover;
}

/* ============================================================
   EXPERIENCIA
============================================================ */

.experience {
  background: var(--black);

  color: var(--white);
}

.experience-background {
  position: absolute;

  inset: 0;
}

.experience-background img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.experience-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2));
}

.experience-inner {
  display: flex;

  flex-direction: column;

  justify-content: flex-end;
}

.experience h2 {
  margin-bottom: 0;

  color: var(--yellow);

  font-size: clamp(80px, 12vw, 190px);

  line-height: 0.7;

  letter-spacing: -0.075em;
}

/* ============================================================
   CONTACTO
============================================================ */

.contact {
  background: var(--black);

  color: var(--white);
}

.contact-inner {
  display: flex;

  flex-direction: column;

  justify-content: flex-end;
}

.contact h2 {
  margin-bottom: 50px;

  color: var(--yellow);

  font-size: clamp(95px, 14vw, 220px);

  line-height: 0.7;

  letter-spacing: -0.075em;
}

.contact-links {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line-light);
}

.contact-links a {
  display: flex;

  justify-content: space-between;

  padding: 25px 20px;

  border-right: 1px solid var(--line-light);

  text-decoration: none;

  font-size: clamp(20px, 2vw, 30px);

  transition:
    background 0.2s,
    color 0.2s;
}

.contact-links a:first-child {
  padding-left: 0;
}

.contact-links a:last-child {
  border-right: 0;
}

.contact-links a span {
  color: var(--yellow);
}

.contact-links a:hover {
  padding-left: 20px;

  background: var(--yellow);

  color: var(--black);
}

.contact-links a:hover span {
  color: var(--black);
}

.contact footer {
  margin-top: 60px;

  font-size: 10px;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  opacity: 0.35;
}

/* ============================================================
   LOGO CONTACTO
============================================================ */

.contact-logo {
  position: absolute;

  right: clamp(20px, 5vw, 80px);

  top: 10vh;

  width: clamp(180px, 25vw, 380px);

  max-width: 380px;

  aspect-ratio: 1;

  z-index: 1;

  opacity: 0.28;

  pointer-events: none;
}

.contact-logo img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

/* ============================================================
   PROGRESS
============================================================ */

.progress {
  position: fixed;

  left: 0;

  bottom: 0;

  z-index: 6000;

  width: 100%;

  height: 3px;

  pointer-events: none;
}

.progress span {
  display: block;

  width: 0;

  height: 100%;

  background: var(--yellow);
}

/* ============================================================
   TABLET
============================================================ */

@media (max-width: 980px) {
  .site-header {
    position: sticky;

    top: 0;

    display: grid;

    grid-template-columns: 1fr auto;

    padding: 14px var(--gutter);

    background: var(--black);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  }

  .brand {
    height: 44px;
  }

  .brand-logo {
    max-width: 90px;

    max-height: 44px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    grid-column: 1 / -1;

    display: flex;

    flex-direction: column;

    gap: 0;

    width: calc(100% + var(--gutter) * 2);

    max-height: 0;

    margin: 0 calc(var(--gutter) * -1);

    padding: 0 var(--gutter);

    overflow: hidden;

    visibility: hidden;

    opacity: 0;

    background: var(--black);

    pointer-events: none;

    transition:
      max-height 0.3s ease,
      padding 0.3s ease,
      opacity 0.2s ease;
  }

  .site-nav.open {
    max-height: 430px;

    padding-top: 15px;

    padding-bottom: 15px;

    visibility: visible;

    opacity: 1;

    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.11);

    font-size: 14px;

    opacity: 0.9;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .panel {
    scroll-margin-top: 58px;
  }

  .intro-grid,
  .elements-layout,
  .space-layout,
  .sphere-gallery-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero blockquote {
    margin-left: 0;
  }

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

  .artist-card-reverse .artist-copy {
    order: 2;
  }

  .artist-card:first-child .artist-photo,
  .artist-card-reverse .artist-photo {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .artist-copy-dark,
  .artist-copy-yellow {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .work-main {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .languages {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .sphere-gallery-inner {
    gap: 10px;
  }

  .sphere-scene {
    height: 72svh;

    min-height: 550px;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .video-main {
    grid-column: 1 / -1;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-links a {
    padding: 22px 0;

    border-right: 0;

    border-bottom: 1px solid var(--line-light);
  }
}

/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 640px) {
  :root {
    --gutter: 19px;

    --radius: 18px;
  }

  .brand {
    height: 38px;
  }

  .brand-logo {
    max-width: 76px;

    max-height: 38px;
  }

  .panel {
    min-height: auto;
  }

  .panel-inner {
    min-height: auto;

    padding: 75px var(--gutter) 70px;
  }

  /* HERO */

  .hero {
    min-height: calc(100svh - 55px);
  }

  .hero .panel-inner {
    min-height: calc(100svh - 55px);
  }

  .hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.45) 65%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }

  .hero h1 {
    font-size: clamp(75px, 24vw, 115px);

    margin-bottom: 25px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero blockquote {
    width: 100%;

    font-size: 13px;
  }

  .scroll-cue {
    position: static;

    margin-top: 30px;

    align-self: flex-end;
  }

  .hero-eye-one {
    width: 75vw;

    height: 75vw;
  }

  .hero-eye-two {
    display: none;
  }

  /* INTRO */

  .intro h2 {
    font-size: 62px;
  }

  .large-prose {
    padding: 28px 0 0;

    border-left: 0;

    border-top: 1px solid var(--line-dark);
  }

  .intro-gallery {
    grid-template-columns: 1fr 1fr;

    margin-top: 45px;
  }

  .intro-photo {
    height: 260px;
  }

  .intro-photo-wide {
    grid-column: 1 / -1;

    height: 310px;
  }

  /* ARTISTAS */

  .artist-grid {
    gap: 45px;
  }

  .artist-photo {
    min-height: 440px;
  }

  .artist-copy {
    padding: 34px 23px;
  }

  .artist-copy h2 {
    font-size: 76px;

    margin-bottom: 28px;
  }

  /* LA MUDANZA */

  .work {
    min-height: 100svh;
  }

  .work .panel-inner {
    min-height: 100svh;
  }

  .work-overlay {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.5) 70%,
      rgba(0, 0, 0, 0.2)
    );
  }

  .work h2 {
    font-size: 88px;
  }

  .work-copy {
    margin: 15px calc(var(--gutter) * -1) -70px;

    padding: 28px var(--gutter) 40px;

    border-radius: 0;
  }

  /* FICHA */

  .big-title {
    font-size: 72px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid article {
    min-height: 0;

    padding: 24px 0;

    border-right: 0;

    border-bottom: 1px solid var(--line-dark);
  }

  .ficha-image {
    height: 520px;
  }

  /* ELEMENTOS */

  .elements h2 {
    font-size: 61px;
  }

  .element-featured {
    width: 100%;

    margin-bottom: 50px;
  }

  .elements-list {
    grid-template-columns: 45px 1fr;
  }

  /* ESPACIO */

  .space h2 {
    font-size: 80px;
  }

  .space-specs {
    gap: 25px;
  }

  .space-specs strong {
    font-size: 34px;
  }

  .space-photo {
    height: 520px;
  }

  /* ESFERA */

  .gallery {
    min-height: 100svh;
  }

  .sphere-gallery-inner {
    padding-left: 0;

    padding-right: 0;

    padding-bottom: 0;
  }

  .gallery-heading {
    padding-left: var(--gutter);

    padding-right: var(--gutter);
  }

  .gallery-heading h2 {
    font-size: 68px;
  }

  .sphere-scene {
    width: 100vw;

    height: 67svh;

    min-height: 500px;

    overflow: hidden;
  }

  .sphere-photo {
    width: 82px;

    height: 110px;

    border-radius: 9px;
  }

  .sphere-center-logo {
    width: 135px;

    height: 135px;
  }

  /* LIGHTBOX */

  .lightbox-image-wrap {
    width: 94vw;

    height: 85vh;
  }

  .lightbox-close {
    top: 14px;

    right: 14px;
  }

  .lightbox-arrow {
    width: 42px;

    height: 42px;

    background: rgba(0, 0, 0, 0.65);
  }

  .lightbox-prev {
    left: 9px;
  }

  .lightbox-next {
    right: 9px;
  }

  /* VIDEOS */

  .videos-section {
    padding: 70px var(--gutter);
  }

  .videos-heading h2 {
    font-size: 65px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-main {
    grid-column: auto;
  }

  .video-card video {
    min-height: 450px;
  }

  /* EXPERIENCIA */

  .experience {
    min-height: 85svh;
  }

  .experience .panel-inner {
    min-height: 85svh;
  }

  .experience h2 {
    font-size: 74px;
  }

  /* CONTACTO */

  .contact {
    min-height: 90svh;
  }

  .contact .panel-inner {
    min-height: 90svh;
  }

  .contact h2 {
    font-size: 80px;
  }

  .contact-logo {
    width: 180px;

    max-width: 45vw;

    right: -30px;

    top: 45px;
  }
}

/* ============================================================
   REDUCIR MOVIMIENTO
============================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   OBRAS
============================================================ */

.works {
  background: var(--black);
  color: var(--white);
}

.works .panel-inner {
  min-height: 100svh;
}

.works-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.works-header h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.72;
  letter-spacing: -0.075em;
}

.works-header p {
  width: min(320px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.5;
}

/* ============================================================
   TARJETA DE OBRA
============================================================ */

.works-grid {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  gap: 30px;
}

.obra-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #111;
}

.obra-card-image {
  position: relative;
  height: min(68vh, 720px);
  min-height: 520px;
  overflow: hidden;
}

.obra-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.obra-card:hover .obra-card-image img {
  transform: scale(1.035);
}

.obra-card-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.32) 45%,
    rgba(0, 0, 0, 0.04) 80%
  );
}

.obra-card-number {
  position: absolute;
  top: 25px;
  left: 25px;

  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 210, 28, 0.5);
  border-radius: 50%;

  color: var(--yellow);

  font-size: 11px;
  font-weight: 700;
}

.obra-card-title {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 35px;
}

.obra-card-title span {
  display: block;
  margin-bottom: 12px;

  color: var(--yellow);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.obra-card-title h3 {
  margin: 0;

  color: var(--white);

  font-family: "Fraunces", serif;

  font-size: clamp(65px, 8vw, 125px);
  font-weight: 500;

  line-height: 0.78;
  letter-spacing: -0.065em;
}

.obra-card-footer {
  display: grid;
  grid-template-columns: 1fr auto;

  align-items: center;

  gap: 40px;

  padding: 30px 35px;
}

.obra-card-footer p {
  max-width: 560px;
  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 16px;
  line-height: 1.5;
}

/* ============================================================
   BOTÓN VER MÁS
============================================================ */

.obra-ver-mas {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  min-width: 160px;

  padding: 14px 18px;

  border: 1px solid rgba(255, 210, 28, 0.5);
  border-radius: 999px;

  background: transparent;

  color: var(--yellow);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.obra-ver-mas:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

/* ============================================================
   MODAL OBRA
============================================================ */

.obra-modal {
  position: fixed;
  inset: 0;

  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 25px;

  visibility: hidden;
  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

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

.obra-modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.91);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ============================================================
   CONTENEDOR DEL MODAL
============================================================ */

.obra-modal-dialog {
  position: relative;

  z-index: 2;

  width: min(1300px, 100%);
  max-height: 94vh;

  overflow-x: hidden;
  overflow-y: auto;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;

  background: var(--paper);
  color: var(--ink);

  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.75);

  transform: translateY(30px) scale(0.98);

  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);

  overscroll-behavior: contain;
}

.obra-modal.open .obra-modal-dialog {
  transform: translateY(0) scale(1);
}

/* ============================================================
   BOTÓN CERRAR
============================================================ */

.obra-modal-close {
  position: sticky;

  top: 20px;

  z-index: 50;

  float: right;

  width: 50px;
  height: 50px;

  margin: 20px 20px -70px 0;

  display: grid;
  place-items: center;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.55);

  color: var(--white);

  font-size: 30px;
  line-height: 1;

  cursor: pointer;

  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.obra-modal-close:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

/* ============================================================
   HERO MODAL
============================================================ */

.obra-modal-hero {
  position: relative;

  width: 100%;
  height: min(78vh, 820px);

  overflow: hidden;
}

.obra-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.obra-modal-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.06) 80%
  );
}

.obra-modal-hero-content {
  position: absolute;

  left: clamp(25px, 5vw, 70px);
  right: clamp(25px, 5vw, 70px);
  bottom: clamp(35px, 6vw, 70px);

  color: var(--white);
}

.obra-modal-hero-content > span {
  display: block;

  margin-bottom: 18px;

  color: var(--yellow);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.obra-modal-hero-content h2 {
  margin: 0;

  color: var(--white);

  font-family: "Fraunces", serif;

  font-size: clamp(85px, 12vw, 180px);
  font-weight: 500;

  line-height: 0.67;
  letter-spacing: -0.075em;
}

.obra-modal-hero-content p {
  margin: 28px 0 0;

  color: var(--yellow);

  font-family: "Fraunces", serif;

  font-size: clamp(26px, 3vw, 42px);
}

/* ============================================================
   CUERPO DEL MODAL
============================================================ */

.obra-modal-body {
  padding: clamp(55px, 7vw, 100px) clamp(25px, 6vw, 90px);
}

.obra-modal-section {
  padding: clamp(50px, 7vw, 90px) 0;

  border-bottom: 1px solid var(--line-dark);
}

.obra-modal-section:first-child {
  padding-top: 0;
}

.obra-section-label {
  margin-bottom: 35px;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  opacity: 0.45;
}

/* ============================================================
   DESCRIPCIÓN
============================================================ */

.obra-description {
  display: grid;

  grid-template-columns:
    0.45fr
    1.55fr;

  gap: 7vw;
}

.obra-description-content {
  max-width: 800px;
}

.obra-description h3 {
  margin: 0 0 35px;

  font-family: "Fraunces", serif;

  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;

  line-height: 0.86;
  letter-spacing: -0.055em;
}

.obra-description p {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

/* ============================================================
   VERSIONES
============================================================ */

.obra-versions {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 15px;
}

.obra-version {
  position: relative;

  min-height: 270px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 30px;

  border: 1px solid var(--line-dark);
  border-radius: 20px;
}

.obra-version-featured {
  border-color: var(--yellow);
  background: var(--yellow);
}

.obra-version-number {
  position: absolute;

  top: 25px;
  right: 25px;

  font-size: 11px;

  opacity: 0.45;
}

.obra-version-name {
  display: block;

  margin-bottom: 15px;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.obra-version strong {
  display: block;

  font-family: "Fraunces", serif;

  font-size: clamp(55px, 6vw, 90px);
  font-weight: 500;

  line-height: 0.8;
}

.obra-version small {
  display: block;

  margin-top: 13px;

  opacity: 0.55;
}

/* ============================================================
   FOTOS DEL MODAL
============================================================ */

.obra-modal-photo {
  width: 100%;
  height: min(75vh, 780px);

  margin: 70px 0;

  overflow: hidden;

  border-radius: 22px;
}

.obra-modal-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* ============================================================
   FICHA ARTÍSTICA
============================================================ */

.obra-ficha-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line-dark);
}

.obra-ficha-grid article {
  min-height: 170px;

  padding: 25px;

  border-right: 1px solid var(--line-dark);
}

.obra-ficha-grid article:first-child {
  padding-left: 0;
}

.obra-ficha-grid article:last-child {
  border-right: 0;
}

.obra-ficha-grid span {
  display: block;

  margin-bottom: 25px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.13em;
  text-transform: uppercase;

  opacity: 0.45;
}

.obra-ficha-grid strong {
  font-family: "Fraunces", serif;

  font-size: clamp(23px, 2.5vw, 36px);
  font-weight: 500;
}

/* ============================================================
   LENGUAJES
============================================================ */

.obra-languages {
  display: grid;

  grid-template-columns:
    0.45fr
    1.55fr;

  gap: 7vw;
}

.obra-languages p {
  max-width: 850px;
  margin: 0;

  font-family: "Fraunces", serif;

  font-size: clamp(26px, 3vw, 44px);

  line-height: 1.15;
  letter-spacing: -0.025em;
}

/* ============================================================
   ELEMENTOS
============================================================ */

.obra-elements-layout {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 6vw;

  align-items: center;
}

.obra-elements-layout figure {
  height: 650px;

  overflow: hidden;

  border-radius: 20px;
}

.obra-elements-layout figure img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.obra-elements-list {
  border-top: 1px solid var(--line-dark);
}

.obra-elements-list div {
  display: grid;

  grid-template-columns:
    50px
    1fr;

  border-bottom: 1px solid var(--line-dark);
}

.obra-elements-list span,
.obra-elements-list p {
  margin: 0;

  padding: 17px 0;
}

.obra-elements-list span {
  color: var(--yellow-dark);

  font-size: 10px;
  font-weight: 700;
}

.obra-elements-list p {
  font-size: clamp(16px, 1.3vw, 20px);
}

/* ============================================================
   REQUERIMIENTO FÍSICO
============================================================ */

.obra-space-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 15px;
}

.obra-space-grid article {
  padding: 35px;

  border-radius: 20px;

  background: var(--black);
  color: var(--white);
}

.obra-space-grid article:first-child {
  background: var(--yellow);
  color: var(--black);
}

.obra-space-grid span {
  display: block;

  margin-bottom: 30px;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.obra-space-grid strong {
  display: block;

  font-family: "Fraunces", serif;

  font-size: clamp(65px, 8vw, 120px);
  font-weight: 500;

  line-height: 0.75;
}

.obra-space-grid small {
  display: block;

  margin-top: 15px;

  opacity: 0.55;
}

/* ============================================================
   FINAL MODAL
============================================================ */

.obra-modal-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 60px;

  padding-top: 30px;

  border-top: 1px solid var(--line-dark);
}

.obra-modal-bottom > span {
  font-family: "Fraunces", serif;

  font-size: 30px;
}

.obra-modal-bottom button {
  padding: 13px 26px;

  border: 1px solid var(--black);
  border-radius: 999px;

  background: transparent;

  color: var(--black);

  font-weight: 700;

  cursor: pointer;
}

.obra-modal-bottom button:hover {
  background: var(--black);
  color: var(--white);
}

/* ============================================================
   EXPERIENCIA CIRCENSE - TEXTO NUEVO
============================================================ */

.experience-layout {
  display: grid;

  grid-template-columns:
    1.05fr
    0.95fr;

  gap: clamp(50px, 8vw, 130px);

  align-items: end;

  width: 100%;
}

.experience-title h2 {
  margin: 0;
}

.experience-copy {
  max-width: 650px;

  padding: clamp(25px, 3vw, 40px);

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;

  background: rgba(0, 0, 0, 0.52);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.experience-copy p {
  margin-bottom: 22px;

  color: rgba(255, 255, 255, 0.78);

  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
}

.experience-copy .experience-lead {
  color: var(--white);

  font-family: "Fraunces", serif;

  font-size: clamp(22px, 2.3vw, 32px);

  line-height: 1.25;
}

.experience-notes {
  margin-top: 35px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 210, 28, 0.3);
}

.experience-notes p {
  margin-bottom: 12px;

  color: var(--yellow);

  font-size: 12px;
  line-height: 1.45;
}

.experience-notes p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   TABLET
============================================================ */

@media (max-width: 980px) {
  .works-header {
    display: block;
  }

  .works-header p {
    margin-top: 25px;
  }

  .obra-description,
  .obra-languages,
  .obra-elements-layout,
  .experience-layout {
    grid-template-columns: 1fr;
  }

  .obra-elements-layout {
    gap: 40px;
  }
}

/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 640px) {
  .works .panel-inner {
    padding-top: 75px;
    padding-bottom: 70px;
  }

  .works-header {
    margin-bottom: 35px;
  }

  .works-header h2 {
    font-size: 78px;
  }

  .obra-card-image {
    height: 58svh;
    min-height: 430px;
  }

  .obra-card-title {
    left: 22px;
    right: 22px;
    bottom: 25px;
  }

  .obra-card-title h3 {
    font-size: 64px;
  }

  .obra-card-footer {
    grid-template-columns: 1fr;

    gap: 25px;

    padding: 25px;
  }

  .obra-ver-mas {
    width: 100%;
  }

  /* MODAL */

  .obra-modal {
    padding: 0;
  }

  .obra-modal-dialog {
    width: 100%;
    height: 100svh;

    max-height: 100svh;

    border: 0;
    border-radius: 0;
  }

  .obra-modal-close {
    top: 13px;

    width: 46px;
    height: 46px;

    margin: 13px 13px -59px 0;
  }

  .obra-modal-hero {
    height: 64svh;
  }

  .obra-modal-hero-content {
    left: 20px;
    right: 20px;
    bottom: 30px;
  }

  .obra-modal-hero-content h2 {
    font-size: 76px;
  }

  .obra-modal-hero-content p {
    margin-top: 20px;
    font-size: 26px;
  }

  .obra-modal-body {
    padding: 45px 20px 70px;
  }

  .obra-modal-section {
    padding: 50px 0;
  }

  .obra-description,
  .obra-languages,
  .obra-elements-layout {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .obra-description h3 {
    font-size: 48px;
  }

  .obra-versions {
    grid-template-columns: 1fr;
  }

  .obra-version {
    min-height: 220px;
  }

  .obra-version strong {
    font-size: 60px;
  }

  .obra-modal-photo {
    height: 56svh;

    margin: 45px 0;

    border-radius: 16px;
  }

  .obra-ficha-grid {
    grid-template-columns: 1fr;
  }

  .obra-ficha-grid article {
    min-height: 0;

    padding: 24px 0;

    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .obra-ficha-grid article:last-child {
    border-bottom: 0;
  }

  .obra-elements-layout figure {
    height: 500px;
  }

  .obra-space-grid {
    grid-template-columns: 1fr;
  }

  .obra-space-grid strong {
    font-size: 68px;
  }

  .obra-modal-bottom > span {
    font-size: 25px;
  }

  /* EXPERIENCIA */

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .experience-copy {
    padding: 24px 21px;
  }

  .experience-copy .experience-lead {
    font-size: 23px;
  }
}
