﻿/* ============================================================
   UMO — style.css
   Secciones:
   01. Reset & Variables
   02. Tipografía base
   03. Nav
   04. Hero
   05. About
   06. Work Strip
   07. Cherry On Top
   08. Partners / Logos
   09. What We Create
   10. Manifesto
   11. Gallery
   12. CTA
   13. Footer
   14. Utilidades
   ============================================================ */


/* ── 01. Reset & Variables ─────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:  #0a0a0a;
  --white:  #f0ede8;
  --gray:   #b5b0a8;
  --footer: #d0ccc6;
  --font:   'Inter', sans-serif;
  --px: 40px;
}

@media (max-width: 768px) {
  :root { --px: 24px; }
}

@media (max-width: 480px) {
  :root { --px: 18px; }
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  overflow-y: auto;
}

::selection {
  background: var(--white);
  color: var(--black);
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}


/* ── 02. Tipografía base ───────────────────────────────────── */
h2 { font-weight: 900; }
h3 { font-weight: 700; }
h4 { font-weight: 400; }


/* ── 03. Nav ───────────────────────────────────────────────── */
#umo-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px var(--px);
  transform: translateY(0);
  transition: transform 0.35s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

#umo-navbar.nav-hidden {
  transform: translateY(-100%);
}

#umo-navbar.nav-scrolled {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 45px;
  width: auto;
}

.nav-menu {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-menu {
  transition: color 0.2s ease;
}

.nav-menu:hover {
  color: var(--white);
}

@media (max-width: 480px) {
  .nav-logo img {
    height: 34px;
  }
}

/* ── 04. Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111 0%, #232323 50%, #111 100%);
  background-size: 200% 200%;
  animation: mediaShimmer 2.4s ease-in-out infinite;
  /* ─── REEMPLAZAR con imagen real:
     background-image: url('images/hero.jpg');
     background-size: cover;
     background-position: center;
  ─── */
}

.hero-bg.media-ready {
  animation: none;
  background: #0a0a0a;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-video.is-ready {
  opacity: 1;
}

/* ── Video loading placeholder shimmer (shared) ─────────────── */
@keyframes mediaShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-title {
  font-size: clamp(32px, 5.95vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  max-width: 680px;
}

.hero-cta {
  display: inline-block;
  border: 1px solid rgba(240, 237, 232, 0.5);
  border-radius: 999px;
  padding: 10px 26px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hero-cta:hover {
  background: var(--white);
  color: #0a0a0a;
  border-color: var(--white);
  font-weight: 700;
}

/* ticker */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ── 05. About ─────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 100px var(--px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.4;
}


.about-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #1c1c1c;
  overflow: hidden;
  border-radius: 2px;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.about-word {
  color: var(--gray);
  transition: color 0.35s ease;
}
.about-word.lit {
  color: var(--white);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cursor-btn {
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 9px 19px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.about-image:hover .about-cursor-btn {
  opacity: 1;
}

.bold-italic {
  font-weight: 900;
  font-style: italic;
}

@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px var(--px);
  }
}

.about-mobile-label {
  display: none;
}

@media (max-width: 1180px) {
  .about-mobile-label {
    display: inline-block;
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(240, 237, 232, 0.25);
    color: var(--white);
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 13px;
    border-radius: 999px;
    z-index: 2;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .about-mobile-label.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .about-mobile-label:active {
    background: var(--white);
    color: #0a0a0a;
    border-color: var(--white);
    transform: translateY(0) scale(0.97);
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  }

  .about-cursor-btn {
    display: none;
  }
}



/* ── 06. Work Strip ────────────────────────────────────────── */
.work-strip {
  padding: 0 0 100px 0;
}

.work-strip-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 var(--px);
  margin-bottom: 32px;
  gap: 40px;
}

.work-strip-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.6;
}

a.work-strip-label {
  display: inline-block;
  border: 1px solid rgba(240, 237, 232, 0.5);
  border-radius: 999px;
  padding: 10px 26px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

a.work-strip-label:hover {
  background: var(--white);
  color: #0a0a0a;
  border-color: var(--white);
  font-weight: 700;
}

.work-carousel-wrap {
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  cursor: grab;
  user-select: none;
}

.work-carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: carouselScroll 110s linear infinite;
}

.work-carousel-item {
  flex: 0 0 auto;
  width: 420px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1c1c1c 0%, #262626 50%, #1c1c1c 100%);
  background-size: 200% 200%;
  animation: mediaShimmer 2.4s ease-in-out infinite;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.work-carousel-item.media-ready {
  animation: none;
  background: #1c1c1c;
}

.work-carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.work-carousel-item video.is-ready {
  opacity: 1;
}

@keyframes carouselScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .work-strip {
    padding-bottom: 64px;
  }

  .work-strip-top {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
  }

  .work-strip-sub {
    max-width: 480px;
  }

  a.work-strip-label {
    align-self: flex-start;
  }

  .work-carousel-item {
    width: 360px;
  }
}

@media (max-width: 480px) {
  .work-strip {
    padding-bottom: 48px;
  }

  .work-carousel-item {
    width: 80vw;
  }
}


/* ── 07. Cherry On Top ─────────────────────────────────────── */
.cherry {
  padding: 80px var(--px);
}

.cherry h2 {
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: 1.2;
  max-width: 700px;
}

.cherry h2 em {
  font-style: italic;
  font-weight: 900;
}

@media (max-width: 480px) {
  .cherry {
    padding: 56px var(--px);
  }
}


/* ── 08. Partners / Logos ──────────────────────────────────── */
.partners {
  padding: 0 var(--px) 100px;
}

.partners-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
}

.logos-wrap {
  overflow: hidden;
   width: 100vw;
    margin-left: calc(-1 * var(--px));
  cursor: grab;
  user-select: none;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: logosScroll 25s linear infinite;
}

@keyframes logosScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  height: 61px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}

@media (max-width: 480px) {
  .logos-track {
    gap: 36px;
  }

  .logo-item img {
    height: 42px;
  }
}


/* BACKUP — what we create original */
/* ── 09. What We Create ────────────────────────────────────── */
.what {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.what-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.what-bg-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.what-bg-vid.visible {
  opacity: 1;
}

.what-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(3px);
}

.what-bg-vid-mobile {
  display: none;
}

@media (max-width: 1180px) {
  .what-bg-vid-mobile {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: blur(8px);
    transform: scale(1.1);
  }

  .what-bg-overlay {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.what-center {
  position: relative;
  z-index: 1;
  text-align: center;
}

.what-center h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 36px;
  color: var(--white);
}

.what-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.what-item {
  cursor: pointer;
}

.what-link {
  font-size: clamp(20px, 2.8vw, 39px);
  font-weight: 700;
  color: var(--gray);
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  transition: color 0.25s ease, transform 0.25s ease;
  letter-spacing: 0.01em;
}

.what-item:hover .what-link {
  color: var(--white);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .what {
    min-height: auto;
    padding: 80px var(--px);
  }

  .what-list {
    gap: 14px;
  }
}


/* ── 10. Manifesto ─────────────────────────────────────────── */
.manifesto {
  padding: 100px var(--px);
  text-align: center;
}

.manifesto p {
  font-size: clamp(15px, 2.45vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto;
}

.manifesto p em { font-style: italic; }
.manifesto-italic { font-weight: 500; font-style: italic; }

@media (max-width: 480px) {
  .manifesto {
    padding: 64px var(--px);
  }
}


/* ── 11. Gallery ───────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: 1fr 2fr 1.5fr 1fr;
  height: 340px;
  overflow: hidden;
}

.gallery-cell {
  background: #1c1c1c;
  position: relative;
  overflow: hidden;
  /* ─── REEMPLAZAR con <img src="images/gallery-X.jpg"> ─── */
}

.gallery-cell + .gallery-cell {
  border-left: 3px solid var(--black);
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .gallery-cell {
    aspect-ratio: 4 / 3;
  }

  .gallery-cell:nth-child(odd) {
    border-left: none;
  }

  .gallery-cell:nth-child(n+3) {
    border-top: 3px solid var(--black);
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-cell {
    border-left: none !important;
  }

  .gallery-cell + .gallery-cell {
    border-top: 3px solid var(--black);
  }
}


/* ── 12. CTA ───────────────────────────────────────────────── */
.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px var(--px);
  background: var(--white);
}

.cta-section h2 {
  font-size: clamp(24px, 3.5vw, 44px);
  line-height: 1.2;
  color: #0a0a0a;
}

.cta-section h2 em {
  font-style: italic;
  font-weight: 900;
  color: #0a0a0a;
}

.cta-btn {
  flex-shrink: 0;
  border: 1px solid #0a0a0a;
  border-radius: 999px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--white);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.cta-btn:hover {
  background: #0a0a0a;
  color: var(--white);
  border-color: #0a0a0a;
  font-weight: 700;
}

@media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    padding: 60px var(--px);
  }

  .cta-section h2 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .cta-btn {
    align-self: center;
  }
}


/* ── 13. Footer ────────────────────────────────────────────── */
footer {
  background: var(--white);
  padding: 60px var(--px) 32px;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.footer-tagline {
  font-size: 12px;
  font-weight: 400;
  color: #555;
  letter-spacing: 0.04em;
}

.footer-right {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-social a {
  font-size: 13px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: #000;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.06em;
}

.footer-privacy {
  font-size: 11px;
  font-weight: 400;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.footer-privacy:hover {
  color: #000;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-right {
    gap: 40px;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}


/* ── 14. Utilidades ────────────────────────────────────────── */
.gsap-title {
  opacity: 0;
}

.img-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
  pointer-events: none;
}

/* ── 15. Intro Screen ──────────────────────────────────────── */
#intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.intro-logo-img {
  height: 72px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(0.96);
  animation: introFadeIn 0.8s ease 0.2s forwards;
}

@keyframes introFadeIn {
  to { opacity: 1; transform: scale(1); }
}

/* ── 16. Dropdown Menu ─────────────────────────────────────── */
.menu-dropdown {
  position: fixed;
  top: 72px;
  right: var(--px);
  z-index: 300;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(240, 237, 232, 0.3);
  border-radius: 12px;
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.menu-dropdown .menu-row {
  padding: 0;
  display: flex;
  justify-content: center;
}

.menu-dropdown .menu-main-item {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-dropdown .menu-main-item:hover {
  color: var(--white);
}

.menu-dropdown .menu-main-item.current {
  color: var(--white);
}

/* ── 17. Shows Page ────────────────────────────────────────── */
.page-header {
  padding: 140px var(--px) 40px;
}

.page-title {
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 900;
  line-height: 1;
}

.services-ticker-wrap {
  overflow: hidden;
  padding: 12px 0;
  margin-bottom: 48px;
}

.services-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.services-ticker-group {
  display: flex;
  gap: 48px;
  padding-right: 48px;
}

.services-ticker-item {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 var(--px) 80px;
}

.project-card {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1c1c1c 0%, #262626 50%, #1c1c1c 100%);
  background-size: 200% 200%;
  animation: mediaShimmer 2.4s ease-in-out infinite;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.project-card.media-ready {
  animation: none;
  background: #1c1c1c;
}

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.project-card:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

.project-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.5s ease;
}

.project-card video.is-ready {
  opacity: 1;
}

.project-card:hover video {
  transform: scale(1.05);
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.project-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.project-artist {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  margin-top: 2px;
  transition: color 0.3s ease;
}

.project-card:hover .project-title,
.project-card:hover .project-artist {
  color: var(--white);
}

.page-quote {
  padding: 60px var(--px) 80px;
  max-width: 900px;
}

.page-quote p {
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--gray);
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* tablet */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.page-subnav {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.page-subnav-item {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(240, 237, 232, 0.6);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.page-subnav-item:hover {
  background: rgba(240, 237, 232, 0.15);
}

.page-subnav-item.active {
  background: var(--white);
  color: #0a0a0a;
  border-color: var(--white);
}

/* ── 18. Projects Menu Page ────────────────────────────────── */
body.menu-page {
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.menu-page-inner {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 28px var(--px);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto;
}

.menu-logo img {
  height: 45px;
  width: auto;
}

.menu-close {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-close:hover {
  color: var(--white);
}

.menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex: 1;
}

.menu-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8px 0;
}

.menu-main-item {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  color: var(--gray);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.menu-row:hover .menu-main-item {
  color: var(--white);
}

.menu-nav .menu-main-item {
  display: inline-block;
  transition: color 0.2s ease, transform 0.25s ease;
}

.menu-nav .menu-row:hover .menu-main-item {
  transform: scale(1.05);
}

body.menu-page .menu-nav {
  gap: 8px;
}

body.menu-page .menu-row {
  padding: 4px 0;
}

body.menu-page .menu-main-item {
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.04em;
}

/* ── 19. Documentary Page ──────────────────────────────────── */
.doc-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px var(--px) 80px;
  align-items: center;
}

.doc-feature-quote {
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 400;
  color: var(--gray);
  line-height: 1.7;
  text-transform: none;
  letter-spacing: 0.04em;
}

.doc-feature-titles {
  margin-bottom: 28px;
}

.doc-feature-name {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.doc-feature-artist {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.doc-feature-director {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
  margin-top: 2px;
}

.doc-feature-video {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1c1c1c 0%, #262626 50%, #1c1c1c 100%);
  background-size: 200% 200%;
  animation: mediaShimmer 2.4s ease-in-out infinite;
  border-radius: 2px;
  overflow: hidden;
}

.doc-feature-video.media-ready {
  animation: none;
  background: #1c1c1c;
}

.doc-feature-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.doc-feature-video video.is-ready {
  opacity: 1;
}

.doc-feature-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.doc-collage {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  padding: 0 var(--px) 80px;
}

.doc-collage-item {
  background: #1c1c1c;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  min-height: 180px;
}

.doc-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-collage-large {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 4 / 3;
}

.doc-collage-tall {
  grid-column: 2;
  grid-row: 1 / 3;
}

.doc-collage-small {
  grid-column: 3;
  grid-row: 1;
}

.doc-collage-medium {
  grid-column: 1;
  grid-row: 2;
}

.doc-collage-wide {
  grid-column: 3;
  grid-row: 2;
}

.doc-photogrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 0 var(--px) 80px;
}

.doc-photogrid-item {
  background: #1c1c1c;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
}

.doc-photogrid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doc-photogrid-large {
  grid-column: span 3;
}

.doc-photogrid-medium {
  grid-column: span 2;
}

.doc-photogrid-wide {
  grid-column: span 6;
}

@media (max-width: 768px) {
  .doc-feature {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px var(--px) 60px;
  }

  .doc-feature-text {
    display: contents;
  }

  .doc-feature-titles {
    order: 1;
    margin-bottom: 0;
  }

  .doc-feature-video {
    order: 2;
  }

  .doc-feature-quote {
    order: 3;
  }
}

/* ── 20. About Page ────────────────────────────────────────── */
.about-hero {
  padding: 140px var(--px) 100px;
}

.about-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}

.about-hero-title {
  font-size: clamp(36px, 6.5vw, 92px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.about-hero-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroLineIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about-hero-line:nth-child(1) { animation-delay: 0.1s; }
.about-hero-line:nth-child(2) { animation-delay: 0.25s; }
.about-hero-line:nth-child(3) { animation-delay: 0.4s; }

@keyframes heroLineIn {
  to { opacity: 1; transform: translateY(0); }
}

.about-hero-title em {
  font-style: italic;
}

.about-hero-paragraph {
  display: block;
  margin-top: 64px;
}

.about-hero-paragraph p {
  max-width: none;
  width: 100%;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  color: var(--gray);
  line-height: 1.7;
  opacity: 0;
  animation: heroLineIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.team {
  padding: 60px var(--px) 60px;
}

.team-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  margin-bottom: 12px;
}

.team-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 460px));
  gap: 32px;
  margin: 0 auto 48px;
  justify-content: center;
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  overflow: visible;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* the white card follows the cursor */
.team-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 210px;
  background: #f0ede8;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 5;
}

.team-photo:hover .team-card {
  opacity: 1;
}

.team-card-text {
  font-size: 10.5px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.team-card-socials {
  display: flex;
  gap: 14px;
}

.team-card-socials a {
  font-size: 11px;
  font-weight: 700;
  color: #0a0a0a;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* mobile info block — hidden on desktop */
.team-mobile-info {
  display: none;
}

/* tablet and mobile: hide hover-card, show static info below photo */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .team-photo {
    cursor: default;
  }

  .team-card {
    display: none !important;
  }

  .team-mobile-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }

  .team-mobile-bio {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 400;
  }

  .team-mobile-socials {
    display: flex;
    gap: 16px;
  }

  .team-mobile-socials a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .team-mobile-socials a:hover {
    opacity: 0.6;
  }
}

@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.team-closing {
  font-size: clamp(14px, 1.3vw, 15px);
  font-weight: 400;
  color: var(--gray);
  line-height: 1.7;
  max-width: 720px;
}

.team-closing strong {
  color: var(--white);
  font-weight: 700;
}

a.team-member {
  text-decoration: none;
  color: inherit;
}

.team-photo-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  z-index: 2;
}

.team-photo-name .team-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

/* hide the old team-name that sits below the photo (now merged into the overlay) */
.team-member > .team-name {
  display: none;
}

.cta-mail {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cta-mail:hover {
  opacity: 0.7;
}

/* ── 21. Mail Contact Modal ────────────────────────────────── */
.mail-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mail-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.mail-modal {
  position: relative;
  text-align: center;
  padding: 40px 48px;
  border: 1px solid rgba(240, 237, 232, 0.3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(12px);
  transition: transform 0.3s ease;
}

.mail-modal-overlay.visible .mail-modal {
  transform: translateY(0);
}

.mail-modal-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.6);
  margin-bottom: 12px;
}

.mail-modal-email {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.mail-modal-cc {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: rgba(240, 237, 232, 0.6);
  margin-bottom: 24px;
}

.mail-modal-copy {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--white);
  color: #0a0a0a;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.mail-modal-copy:hover {
  opacity: 0.8;
}

.mail-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: rgba(240, 237, 232, 0.6);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.mail-modal-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(240, 237, 232, 0.15);
}

.mail-modal-socials a {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mail-modal-socials a:hover {
  color: var(--white);
}

.mail-modal-close:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}
