@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --black:       #000000;
  --white:       #ffffff;
  --nav-bg:      #000000;
  --nav-text:    #ffffff;
  --nav-sep:     rgba(255,255,255,0.35);
  --nav-active:  #c8a96e;      /* dorado suave — el "Inicio" resaltado */
  --dropdown-bg: #1a1a1a;
  --dropdown-hover: #000000;
  --hero-right:  rgba(30,30,30,0.82);
  --text:        #000000;
  --text-soft:   #3a3a3a;
  --muted:       #767676;
  --border:      #e0e0e0;
  --bg:          #ffffff;
  --footer-bg:   #000000;
  --footer-text: #ffffff;
  --footer-link: #cccccc;
  --input-bg:    #f5f5f5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex; flex-direction: column;
}

/* ═══════════════════════════════════════════════
   NAV — negro, logo izquierda, links con | derecha
═══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 72px;
  background: var(--nav-bg);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 52px; display: block; }
.nav-logo-fallback {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 400; font-style: italic;
  color: var(--white); letter-spacing: 0.04em;
  line-height: 1;
}
.nav-logo-fallback sub {
  display: block; font-style: normal; font-size: 0.55em;
  letter-spacing: 0.3em; text-transform: uppercase; font-weight: 300;
}

/* Links con separadores | */
.nav-right {
  display: flex; align-items: center;
  list-style: none; gap: 0;
}
.nav-right > li { position: relative; display: flex; align-items: center; }

/* separador | entre items (no antes del primero ni del instagram) */
.nav-right > li.sep-before::before {
  content: '';
  display: block; width: 1px; height: 22px;
  background: var(--nav-sep);
  flex-shrink: 0;
}

.nav-right > li > a,
.nav-right > li > span {
  display: flex; align-items: center;
  padding: 0 1.1rem; height: 72px;
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--nav-text); text-decoration: none;
  cursor: pointer; white-space: nowrap;
  transition: color 0.2s;
}
.nav-right > li > a:hover,
.nav-right > li > span:hover { color: rgba(255,255,255,0.7); }
.nav-right > li > a.active { color: var(--nav-active); }
.nav-right > li > span::after { content: ' ▾'; font-size: 0.58rem; opacity: 0.8; }

/* Instagram */
.nav-instagram {
  display: flex; align-items: center;
  padding: 0 0.8rem; height: 72px;
  color: var(--white); text-decoration: none;
}
.nav-instagram svg {
  width: 26px; height: 26px;
  stroke: var(--white); fill: none; stroke-width: 1.6;
}

/* Dropdown — fondo negro/muy oscuro */
.dropdown {
  display: none;
  position: absolute; top: 72px; left: 0;
  min-width: 140px;
  background: var(--dropdown-bg);
  z-index: 600;
}
.nav-right > li:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.8rem; font-weight: 400;
  color: var(--white); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: rgba(255,255,255,0.08); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  background: none; border: none; padding: 0.3rem;
}
.hamburger span { display: block; width: 23px; height: 1.5px; background: var(--white); }

/* ═══════════════════════════════════════════════
   HOME HERO — imagen izquierda | texto derecha
═══════════════════════════════════════════════ */
.home-hero {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  background: #1a1a1a;
}

/* Panel izquierdo: imagen del cuadro */
.hero-img-panel {
  position: relative; overflow: hidden;
}
.hero-img-panel img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* Panel derecho: logo grande + texto */
.hero-text-panel {
  background: rgba(25,25,25,0.92);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  color: var(--white);
}
.hero-logo-big {
  width: 80%; max-width: 360px;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}
.hero-logo-big-fallback {
  margin-bottom: 2rem;
  line-height: 1.05;
}
.hero-logo-big-fallback .script {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400; font-style: italic;
  color: var(--white); display: block;
}
.hero-logo-big-fallback .caps {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.8rem);
  font-weight: 300; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--white);
  display: block; margin-top: -0.3rem;
}
.hero-text-panel p {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════
   PAGE HERO — páginas interiores
   imagen difuminada de fondo + título centrado
═══════════════════════════════════════════════ */
.page-hero {
  margin-top: 72px;
  position: relative; height: 280px;
  overflow: hidden; background: #111;
  display: flex; align-items: center; justify-content: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: blur(4px) brightness(0.4);
  transform: scale(1.06);
}
.page-hero-text {
  position: relative; z-index: 1;
  text-align: center; color: var(--white);
}
.page-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400; letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.page-hero-text p {
  font-size: 0.82rem; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.82;
}

/* ═══════════════════════════════════════════════
   MAIN
═══════════════════════════════════════════════ */
main {
  flex: 1;
  padding: 4rem 3rem 6rem;
  max-width: 1200px; margin: 0 auto; width: 100%;
}

/* ═══════════════════════════════════════════════
   GALERÍA MASONRY
═══════════════════════════════════════════════ */
.masonry { columns: 3; column-gap: 0.8rem; }
.masonry-item {
  break-inside: avoid; margin-bottom: 0.8rem;
  overflow: hidden; cursor: pointer;
  position: relative; background: #eee;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.03); }
.masonry-item .overlay {
  position: absolute; inset: 0;
  background: transparent; transition: background 0.3s;
}
.masonry-item:hover .overlay { background: rgba(0,0,0,0.1); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.93);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lb-close {
  position: fixed; top: 1rem; right: 1.5rem;
  background: none; border: none; color: var(--white);
  font-size: 2.4rem; cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s; line-height: 1;
}
.lb-close:hover { opacity: 1; }

/* ═══════════════════════════════════════════════
   BIOGRAFÍA — fotos izquierda | texto derecha
═══════════════════════════════════════════════ */
.bio-grid {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 4.5rem; align-items: start;
}
.bio-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px; margin-bottom: 1rem;
}
.bio-photos img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.bio-blog-btn {
  display: block; width: 100%; text-align: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--black);
  color: var(--black); text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.25s;
}
.bio-blog-btn:hover { background: var(--black); color: var(--white); }

.bio-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 400; margin-bottom: 0.15rem;
}
.bio-right h3 {
  font-size: 0.88rem; font-weight: 300;
  color: var(--muted); letter-spacing: 0.05em; margin-bottom: 2rem;
}
.bio-right p {
  font-size: 0.97rem; font-weight: 300;
  line-height: 1.95; color: var(--text-soft); margin-bottom: 1.1rem;
}

/* ═══════════════════════════════════════════════
   EXPOSICIONES
═══════════════════════════════════════════════ */
.expo-list { list-style: none; }
.expo-card { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.expo-card:first-child { border-top: 1px solid var(--border); }
.expo-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 400; margin-bottom: 0.3rem;
}
.expo-card p {
  font-size: 0.88rem; font-weight: 300;
  color: var(--muted); line-height: 1.75; margin-bottom: 0.5rem;
}
.expo-card a {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--black);
  text-decoration: underline; text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.expo-card a:hover { opacity: 0.55; }

/* ═══════════════════════════════════════════════
   CONTACTO / COMPRAS
═══════════════════════════════════════════════ */
.contact-wrap { max-width: 580px; margin: 0 auto; text-align: center; }
.contact-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 400; margin-bottom: 0.8rem;
}
.contact-wrap .sub {
  font-size: 0.93rem; font-weight: 300;
  color: var(--text-soft); line-height: 1.75; margin-bottom: 0.4rem;
}
.contact-wrap .info {
  font-size: 0.87rem; font-weight: 300;
  color: var(--muted); line-height: 2.1; margin-bottom: 1.5rem;
}
.contact-wrap .info a { color: var(--black); text-decoration: none; }
.contact-wrap .info a:hover { text-decoration: underline; }
.call-btn {
  display: inline-block; margin-bottom: 2rem;
  background: var(--black); color: var(--white);
  text-decoration: none; padding: 0.7rem 2rem;
  font-size: 0.77rem; letter-spacing: 0.15em; text-transform: uppercase;
  transition: opacity 0.25s;
}
.call-btn:hover { opacity: 0.72; }
.contact-form { display: flex; flex-direction: column; gap: 0.7rem; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1px solid var(--border); background: var(--input-bg);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem; font-weight: 300;
  color: var(--black); outline: none; transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: #888; background: var(--white); }
.contact-form textarea { resize: vertical; min-height: 115px; }
.submit-btn {
  align-self: center; margin-top: 0.2rem;
  background: var(--black); color: var(--white);
  border: none; cursor: pointer; padding: 0.75rem 2.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.77rem; letter-spacing: 0.2em; text-transform: uppercase;
  transition: opacity 0.25s;
}
.submit-btn:hover { opacity: 0.72; }
.form-thanks { display: none; margin-top: 1rem; font-size: 0.9rem; color: #333; font-style: italic; }

/* ═══════════════════════════════════════════════
   MULTIMEDIA
═══════════════════════════════════════════════ */
.multimedia-intro { text-align: center; margin-bottom: 3rem; }
.multimedia-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 400; margin-bottom: 0.4rem;
}
.multimedia-intro p { font-size: 0.93rem; color: var(--muted); font-weight: 300; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.video-card { border: 1px solid var(--border); }
.video-wrap { position: relative; padding-top: 56.25%; background: #111; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-info { padding: 0.9rem 1.1rem; }
.video-info h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 400; margin-bottom: 0.2rem; }
.video-info p { font-size: 0.82rem; color: var(--muted); font-weight: 300; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--footer-bg); color: var(--footer-text);
  text-align: center; padding: 1.4rem 2rem;
  font-size: 0.78rem; font-weight: 300; line-height: 2;
}
footer a { color: var(--footer-link); text-decoration: none; }
footer a:hover { color: var(--white); text-decoration: underline; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 980px) {
  nav { padding: 0 1.2rem; }
  .nav-right {
    display: none; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--nav-bg);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 0; z-index: 499;
  }
  .nav-right.open { display: flex; }
  .nav-right > li.sep-before::before { display: none; }
  .nav-right > li > a,
  .nav-right > li > span {
    height: auto; padding: 0.8rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .dropdown {
    display: none !important; position: static;
    box-shadow: none; border-left: 2px solid rgba(255,255,255,0.15);
    margin-left: 1.5rem;
  }
  .nav-right > li.open .dropdown { display: block !important; }
  .hamburger { display: flex; }
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-img-panel { height: 50vw; min-height: 260px; }
  .hero-text-panel { padding: 3rem 2rem; }
  .masonry { columns: 2; }
  .bio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  main { padding: 3rem 1.5rem 5rem; }
}
@media (max-width: 560px) {
  .masonry { columns: 1; }
  .page-hero { height: 200px; }
  main { padding: 2.5rem 1rem 4rem; }
  .hero-text-panel { padding: 2rem 1.5rem; }
}

/* ═══════════════════════════════════════════════
   LIGHTBOX — imagen izquierda | título+desc derecha
═══════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(30,30,30,0.96);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }

.lb-close {
  position: fixed; top: 1rem; right: 1.5rem;
  background: none; border: none; color: #fff;
  font-size: 2.6rem; line-height: 1; cursor: pointer;
  opacity: 0.7; transition: opacity 0.2s; z-index: 10;
}
.lb-close:hover { opacity: 1; }

.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #fff;
  font-size: 4rem; line-height: 1; cursor: pointer;
  opacity: 0.6; transition: opacity 0.2s;
  padding: 0 0.8rem; z-index: 10; user-select: none;
}
.lb-arrow:hover { opacity: 1; }
.lb-prev { left: 0.5rem; }
.lb-next { right: 0.5rem; }

.lb-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  width: 92vw; max-width: 1300px;
  height: 80vh;
  background: #1e1e1e;
}

/* Imagen izquierda */
.lb-img-wrap {
  background: #111;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 1.5rem;
}
.lb-img-wrap img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; display: block;
}

/* Info derecha */
.lb-info {
  background: #2a2a2a;
  padding: 3rem 2.5rem;
  overflow-y: auto;
  display: flex; flex-direction: column;
  color: #fff;
}
.lb-info h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem; font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  color: #fff; line-height: 1.4;
}
.lb-info p {
  font-size: 0.9rem; font-weight: 300;
  line-height: 1.85; color: rgba(255,255,255,0.82);
  margin-bottom: 1rem;
}
.lb-info p:last-child { margin-bottom: 0; }

@media (max-width: 800px) {
  .lb-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 55% 45%;
    height: 90vh; width: 96vw;
  }
  .lb-info { padding: 1.5rem; }
  .lb-info h2 { font-size: 1rem; margin-bottom: 1rem; }
  .lb-arrow { font-size: 2.8rem; }
}

/* ═══════════════════════════════════════════════
   INNER SPLIT — imagen izquierda | contenido derecha
   (mismo formato que el home, para Bio/Expo/Contacto/Compras)
═══════════════════════════════════════════════ */
.inner-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: #1a1a1a;
}

/* Panel izquierdo: imagen o fotos */
.inner-left {
  position: relative;
  overflow: hidden;
  background: #111;
}
.inner-left img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
/* Bio: cuadrícula de 4 fotos */
.bio-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px; height: 100%;
}
.bio-photos img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  min-height: 160px;
}

/* Panel derecho: contenido sobre fondo oscuro */
.inner-right {
  background: rgba(25,25,25,0.95);
  padding: 3.5rem 3rem;
  color: #fff;
  overflow-y: auto;
  display: flex; flex-direction: column;
  justify-content: center;
}
.inner-right p {
  font-size: 0.95rem; font-weight: 300;
  line-height: 1.9; color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.inner-right p:last-child { margin-bottom: 0; }

/* Bio: botón blog */
.bio-blog-btn {
  display: block; width: 100%; text-align: center;
  padding: 0.65rem 1rem; margin-top: 0.5rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff; text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.25s;
}
.bio-blog-btn:hover { background: rgba(255,255,255,0.1); }

/* Títulos y elementos del panel derecho */
.split-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 400;
  color: #fff; margin-bottom: 0.6rem;
}
.split-sub {
  font-size: 0.9rem; font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 0.3rem;
}
.split-info {
  font-size: 0.85rem; font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 2; margin-bottom: 1.2rem;
}
.split-info a { color: rgba(255,255,255,0.85); text-decoration: none; }
.split-info a:hover { text-decoration: underline; }

/* Botón llamar en panel oscuro */
.inner-right .call-btn {
  display: inline-block; margin-bottom: 1.2rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff; text-decoration: none;
  padding: 0.6rem 1.8rem;
  font-size: 0.77rem; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.25s; align-self: flex-start;
}
.inner-right .call-btn:hover { background: rgba(255,255,255,0.1); }

/* Formulario en panel oscuro */
.inner-right .contact-form input,
.inner-right .contact-form textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.inner-right .contact-form input::placeholder,
.inner-right .contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.inner-right .contact-form input:focus,
.inner-right .contact-form textarea:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
}
.inner-right .submit-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
}
.inner-right .submit-btn:hover { background: rgba(255,255,255,0.1); }
.inner-right .form-thanks { color: rgba(255,255,255,0.8); }

/* Exposiciones en panel oscuro */
.inner-right .expo-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.inner-right .expo-card {
  background: #000;
  padding: 1.4rem 1.6rem;
  border: none;
}
.inner-right .expo-card:first-child { border-top: none; }
.inner-right .expo-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 0.35rem;
}
.inner-right .expo-card p {
  font-size: 0.84rem; color: rgba(255,255,255,0.7);
  line-height: 1.65; margin-bottom: 0.5rem;
}
.inner-right .expo-card a {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.4rem 1.1rem;
  text-decoration: none;
  transition: background 0.2s;
}
.inner-right .expo-card a:hover { background: rgba(255,255,255,0.1); }

/* Responsive inner-split */
@media (max-width: 980px) {
  .inner-split { grid-template-columns: 1fr; min-height: auto; }
  .inner-left { height: 50vw; min-height: 240px; }
  .inner-left img { height: 100%; }
  .bio-photos { height: 50vw; min-height: 240px; }
  .inner-right { padding: 2.5rem 1.5rem; justify-content: flex-start; }
}
@media (max-width: 560px) {
  .inner-left { height: 60vw; }
  .bio-photos { height: 60vw; }
  .inner-right { padding: 2rem 1rem; }
  .split-title { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════════
   FULLPAGE — split que ocupa toda la pantalla
   sin hero de cabecera (Bio, Expo, Contacto, Compras)
═══════════════════════════════════════════════ */
.inner-split.fullpage {
  margin-top: 72px;           /* compensa la nav fija */
  min-height: calc(100vh - 72px);
}

/* Título y subtítulo de página dentro del panel derecho */
.split-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: #fff;
  margin-bottom: 0.4rem; line-height: 1.1;
}
.split-page-sub {
  font-size: 0.78rem; font-weight: 300;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.65);
  text-transform: uppercase; margin-bottom: 2rem;
}

/* Bio fotos: ocupa todo el panel izquierdo en fullpage */
.fullpage .inner-left {
  min-height: calc(100vh - 72px);
}
.fullpage .inner-left img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.fullpage .bio-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 100%; height: 100%;
  min-height: calc(100vh - 72px);
}
.fullpage .bio-photos img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  min-height: 0;
}

/* Panel derecho en fullpage: scroll si el contenido desborda */
.fullpage .inner-right {
  justify-content: flex-start;
  padding: 3.5rem 3rem;
  overflow-y: auto;
  max-height: calc(100vh - 72px);
}

@media (max-width: 980px) {
  .inner-split.fullpage { margin-top: 70px; min-height: auto; }
  .fullpage .inner-left { min-height: 55vw; }
  .fullpage .bio-photos { min-height: 55vw; }
  .fullpage .inner-right { max-height: none; padding: 2.5rem 1.5rem; }
}
@media (max-width: 560px) {
  .fullpage .inner-left { min-height: 65vw; }
  .fullpage .bio-photos { min-height: 65vw; }
  .split-page-title { font-size: 1.8rem; }
  .fullpage .inner-right { padding: 2rem 1rem; }
}
