/* ============================================================
   TALLER DOT — Audo Copenhagen exact visual reference
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500&display=swap');

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

:root {
  --bg:           #f5f0e8;
  --bg-light:     #faf7f2;
  --text:         #1c1410;
  --text-mid:     rgba(28,20,16,0.55);
  --text-faint:   rgba(28,20,16,0.35);
  --white:        #ffffff;
  --dark:         #0f0c09;
  --border:       rgba(28,20,16,0.12);

  /* Todo Montserrat — serif sustituido por weight 300 para elegancia */
  --font-serif:   'Montserrat', system-ui, sans-serif;
  --font-sans:    'Montserrat', system-ui, sans-serif;

  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --t:            0.4s;
  --t-slow:       0.85s;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg-light);
  color: var(--text);
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Cursor ─────────────────────────────────────────────── */
@media (pointer: fine) { * { cursor: none !important; } }
.cursor {
  position: fixed; width: 6px; height: 6px;
  background: var(--text); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-follower {
  position: fixed; width: 30px; height: 30px;
  border: 1px solid rgba(28,20,16,0.3); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), opacity .3s;
}
body.cursor-hover .cursor-follower { width: 54px; height: 54px; opacity: 0.15; }

/* ── Loader ─────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { text-align: center; }
.loader__text {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2rem;
}
.loader__bar { width: 120px; height: 1px; background: var(--border); margin: 0 auto; overflow: hidden; }
.loader__fill { height: 100%; background: var(--text); animation: loadFill 1.8s var(--ease-out) forwards; }
@keyframes loadFill { from { width: 0 } to { width: 100% } }

/* ── Reveal ─────────────────────────────────────────────── */
.reveal-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease-out) var(--delay,0s),
              transform var(--t-slow) var(--ease-out) var(--delay,0s);
}
.reveal-fade {
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease) var(--delay,0s);
}
.reveal-scale {
  opacity: 0; transform: scale(0.98);
  transition: opacity var(--t-slow) var(--ease-out) var(--delay,0s),
              transform var(--t-slow) var(--ease-out) var(--delay,0s);
}
.revealed { opacity: 1 !important; transform: none !important; }

/* ================================================================
   NAVIGATION — Audo: white bar, logo centered, links left, icons right
   ================================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  transition: background var(--t) var(--ease);
}
/* On hero: transparent */
.header--hero {
  background: transparent;
  border-color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 clamp(20px, 3vw, 48px);
  position: relative;
}

/* Left: category links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
}
.nav__link {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: opacity var(--t);
}
.header--hero .nav__link { color: var(--white); }
.nav__link:hover { opacity: 0.55; }

/* Center: brand name */
.nav__logo {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color var(--t);
}
.header--hero .nav__logo { color: var(--white); }
.nav__logo-dot { /* no special color — Audo logo is plain */ }

/* Right: icons group */
.nav__icons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  justify-content: flex-end;
}
.nav__icon {
  color: var(--text);
  transition: opacity var(--t);
  display: flex; align-items: center; justify-content: center;
}
.header--hero .nav__icon { color: var(--white); }
.nav__icon:hover { opacity: 0.5; }
.nav__icon svg { width: 18px; height: 18px; }

/* Mobile toggle */
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav__toggle span {
  display: block; width: 20px; height: 1px;
  background: var(--text);
  transition: all .25s var(--ease);
}
.header--hero .nav__toggle span { background: var(--white); }
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }

/* ── Mobile Menu ──────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.5rem; text-align: center; margin-bottom: 2.5rem; }
.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 7vw, 3.5rem);
  color: var(--text);
  opacity: 0.85;
}
.mobile-menu__link:hover { opacity: 1; }
.mobile-menu__footer {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--text-mid);
  text-align: center;
}

/* ================================================================
   HERO — Full-bleed video/image, title + "Explorar" centered bottom
   Exact Audo structure: no heavy overlay, minimal text overlay
   ================================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 10s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

/* Audo uses very subtle gradient — just a slight darkening at bottom */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,12,9,0.55) 0%,
    rgba(15,12,9,0.15) 40%,
    transparent 70%
  );
}

/* ── Hero video — same sizing as img, no zoom animation ─── */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* El video ya tiene movimiento propio, no necesita la animación heroZoom */
}

/* Grain — barely visible */
.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px; pointer-events: none;
}

/* Audo hero content: just title + "Explorar" centered at bottom */
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 2rem clamp(60px, 8vw, 100px);
  width: 100%;
}

/* Audo shows a small tag line on LEFT side — keep minimal */
.hero__tag {
  position: absolute;
  top: calc(56px + 2rem);
  left: clamp(20px, 3vw, 48px);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 2;
}
.hero__tag-line { width: 22px; height: 1px; background: rgba(255,255,255,0.4); display: block; }

.hero__title {
  margin-bottom: 0.875rem;
}
.hero__title-line {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: 0.01em;
}
.hero__title-line--accent { font-style: italic; }
.hero__dot { /* subtle — no color accent in Audo */ }

/* Audo "Explorar" link — small, centered, italic */
.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0;
}

/* Hide the original actions (Audo doesn't have two buttons) */
.hero__actions { display: none; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem; right: clamp(20px, 3vw, 48px);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.625rem;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: scrollBob 3s ease-in-out infinite;
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent); }
@keyframes scrollBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

.hero__location {
  position: absolute;
  bottom: 2rem; left: clamp(20px, 3vw, 48px);
  display: flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-sans);
  font-size: 0.5rem; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
  z-index: 2; text-transform: uppercase;
}
.hero__location-sep { opacity: 0.5; }

/* ================================================================
   MARQUEE — Audo: thin dark band, uppercase tiny text
   ================================================================ */
.marquee-wrap {
  background: var(--dark);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track { display: flex; white-space: nowrap; }
.marquee-content {
  display: flex; align-items: center; gap: 2rem; padding-right: 2rem;
  animation: marqueeScroll 32s linear infinite;
  font-family: var(--font-sans);
  font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); flex-shrink: 0;
}
.marquee-dot { color: rgba(255,255,255,0.2); }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-100%)} }

/* ================================================================
   SPLIT PANELS — AUDO SIGNATURE: two equal columns, no padding,
   image fills column, label at bottom-left of each panel
   ================================================================ */
.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
  /* Audo panels: one can be video (dark), one photo */
}

.split-panel__media {
  width: 100%; height: 100%;
  position: relative;
}

.split-panel__media img,
.split-panel__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.split-panel:hover .split-panel__media img { transform: scale(1.03); }

/* Subtle gradient from bottom for text legibility */
.split-panel__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,12,9,0.5) 0%, transparent 50%);
  pointer-events: none;
}

/* Label: bottom left, white serif, very clean */
.split-panel__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 2.5rem;
  z-index: 2;
}
.split-panel__title {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.375rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}
.split-panel__title em { font-style: italic; }
.split-panel__link {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--t);
}
.split-panel__link:hover { color: var(--white); }

/* ================================================================
   CATEGORY GRID — 4 equal columns, image fills, title centered overlay
   Exactly as in Audo "Comprar por categoría"
   ================================================================ */
.category-section {
  background: var(--bg-light);
}
.category-section__header {
  text-align: center;
  padding: 3rem 2rem 2rem;
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  letter-spacing: 0.02em;
  color: var(--text);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.category-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.category-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.category-item:hover .category-item__img { transform: scale(1.04); }
.category-item__overlay {
  position: absolute; inset: 0;
  background: rgba(15,12,9,0);
  transition: background var(--t);
}
.category-item:hover .category-item__overlay { background: rgba(15,12,9,0.12); }
.category-item__label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--white);
  letter-spacing: 0.03em;
  font-weight: 400;
}

/* ================================================================
   EDITORIAL SPLIT — Audo "Casa del audio" pattern:
   LEFT ~33%: cream bg, small text, centered vertically
   RIGHT ~67%: two images side by side, no gap
   ================================================================ */
.editorial {
  display: grid;
  grid-template-columns: 33fr 67fr;
  min-height: 560px;
}

.editorial__text {
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(40px, 5vw, 80px) clamp(30px, 4vw, 60px);
}
.editorial__label {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.editorial__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}
.editorial__body {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.75rem;
}
.editorial__cta {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem;
  transition: opacity var(--t);
}
.editorial__cta:hover { opacity: 0.55; }

.editorial__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.editorial__img-wrap {
  overflow: hidden;
  position: relative;
}
.editorial__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.editorial__img-wrap:hover img { transform: scale(1.03); }

/* ================================================================
   FULL-WIDTH BANNER — single wide image with centered text overlay
   ================================================================ */
.banner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/7;
}
.banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.banner:hover img { transform: scale(1.02); }
.banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,12,9,0.45) 0%, transparent 55%);
}
.banner__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 3rem 2rem;
  text-align: center;
}
.banner__label {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.625rem;
}
.banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.banner__title em { font-style: italic; }
.banner__cta {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}

/* ================================================================
   STUDIO ABOUT — Keep from original but Audo-styled
   ================================================================ */
.studio {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 3vw, 48px);
  background: var(--bg-light);
}
.studio__container { max-width: 1360px; margin: 0 auto; }
.studio__header {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 3rem;
  margin-bottom: clamp(50px, 7vw, 90px);
  align-items: start;
}
.studio__label { padding-top: 0.6rem; }
.studio__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.studio__split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  margin-bottom: clamp(60px, 9vw, 120px);
}
.studio__intro {
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  line-height: 1.6; margin-bottom: 1.5rem;
}
.studio__body {
  font-family: var(--font-sans);
  font-size: 0.8125rem; line-height: 1.9;
  color: var(--text-mid); margin-bottom: 2.5rem;
}
.studio__img-frame { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.studio__img { transition: transform 1s var(--ease); }
.studio__img-frame:hover .studio__img { transform: scale(1.03); }
.studio__img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,12,9,0.45), transparent);
  padding: 2rem 1.5rem 1.5rem;
  font-family: var(--font-sans); font-size: 0.5625rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.team-card {
  background: var(--bg-light);
  padding: clamp(28px, 4vw, 52px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.team-card:hover { background: var(--bg); }
.team-card__number {
  font-family: var(--font-sans); font-size: 0.5625rem;
  font-weight: 600; letter-spacing: 0.25em;
  color: var(--text-mid); margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.team-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 0.4rem;
}
.team-card__role {
  display: block;
  font-family: var(--font-sans); font-size: 0.5625rem;
  font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.team-card__bio {
  font-family: var(--font-sans); font-size: 0.8rem;
  line-height: 1.85; color: var(--text-mid);
}

/* ================================================================
   SERVICES — Audo-style: stacked, full-width, thin border separators
   ================================================================ */
.services {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 3vw, 48px);
  background: var(--bg);
}
.services__container { max-width: 1360px; margin: 0 auto; }
.services__header {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 3rem;
  margin-bottom: clamp(50px, 7vw, 90px);
  align-items: start;
}
.services__label { padding-top: 0.6rem; }
.services__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -0.01em; grid-column: 2;
}
.services__intro {
  font-family: var(--font-sans); font-size: 0.8125rem;
  line-height: 1.9; color: var(--text-mid);
  max-width: 480px; grid-column: 2; margin-top: 0.875rem;
}

.service-list { border-top: 1px solid var(--border); }
.service-item { border-bottom: 1px solid var(--border); }
.service-item__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.service-item--reverse .service-item__inner { direction: rtl; }
.service-item--reverse .service-item__info,
.service-item--reverse .service-item__image { direction: ltr; }
.service-item__info {
  display: flex; gap: 2rem;
  padding: clamp(40px, 5vw, 70px);
  align-items: flex-start;
}
.service-item__num {
  font-family: var(--font-sans); font-size: 0.5625rem;
  font-weight: 600; letter-spacing: 0.25em;
  color: var(--text-mid); flex-shrink: 0;
  margin-top: 0.6rem; text-transform: uppercase;
}
.service-item__title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.2vw, 2.125rem);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 1.25rem; letter-spacing: -0.01em;
}
.service-item__desc {
  font-family: var(--font-sans); font-size: 0.8rem;
  line-height: 1.9; color: var(--text-mid); margin-bottom: 2rem;
}
.service-item__cta {
  display: inline-block;
  font-family: var(--font-serif); font-style: italic; font-size: 0.875rem;
  color: var(--text); border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem;
  transition: opacity var(--t);
}
.service-item__cta:hover { opacity: 0.5; }
.service-item__image { position: relative; overflow: hidden; }
.service-item__image img { transition: transform 1s var(--ease); }
.service-item:hover .service-item__image img { transform: scale(1.04); }
.service-item__img-overlay {
  position: absolute; inset: 0;
  background: rgba(15,12,9,0);
  transition: background var(--t);
}
.service-item:hover .service-item__img-overlay { background: rgba(15,12,9,0.04); }

/* ================================================================
   PORTFOLIO — Audo-style editorial grid
   ================================================================ */
.portfolio {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 3vw, 48px);
  background: var(--bg-light);
}
.portfolio__container { max-width: 1360px; margin: 0 auto; }
.portfolio__header {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 3rem;
  margin-bottom: clamp(50px, 7vw, 90px);
  align-items: start;
}
.portfolio__label { padding-top: 0.6rem; }
.portfolio__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.01em;
}

/* Audo editorial portfolio: irregular grid with very thin gaps */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 2px;
}
.portfolio__item { overflow: hidden; }
.portfolio__item--large { grid-column: span 7; grid-row: span 2; }
.portfolio__item--wide  { grid-column: span 12; }
.portfolio__item:not(.portfolio__item--large):not(.portfolio__item--wide) { grid-column: span 5; }

.portfolio__img-wrap {
  position: relative; overflow: hidden; height: 100%;
  background: var(--bg);
}
.portfolio__img-wrap img { transition: transform 1s var(--ease); }
.portfolio__item:hover .portfolio__img-wrap img { transform: scale(1.05); }
.portfolio__hover {
  position: absolute; inset: 0;
  background: rgba(15,12,9,0);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background var(--t) var(--ease);
}
.portfolio__item:hover .portfolio__hover { background: rgba(15,12,9,0.4); }
.portfolio__hover-title,
.portfolio__hover-sub {
  font-family: var(--font-sans); color: var(--white);
  opacity: 0; transform: translateY(10px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.portfolio__hover-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.portfolio__hover-sub { font-size: 0.5625rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.65); transition-delay: 0.04s; }
.portfolio__item:hover .portfolio__hover-title,
.portfolio__item:hover .portfolio__hover-sub { opacity: 1; transform: none; }
.portfolio__note { margin-top: 2.5rem; text-align: center; font-size: 0.875rem; color: var(--text-mid); }

/* ================================================================
   MANIFESTO — Audo: dark section
   ================================================================ */
.manifesto {
  background: var(--dark);
  padding: clamp(80px, 12vw, 160px) clamp(20px, 3vw, 48px);
  text-align: center;
}
.manifesto__container { max-width: 800px; margin: 0 auto; }
.manifesto__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 3vw, 2.5rem);
  font-style: italic; font-weight: 400;
  line-height: 1.55; color: rgba(255,255,255,0.85);
}
.manifesto__open, .manifesto__close {
  font-size: 1.1em; color: rgba(255,255,255,0.35);
}
.manifesto__cite {
  display: block; margin-top: 2.5rem;
  font-family: var(--font-sans); font-size: 0.5rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); font-style: normal;
}

/* ================================================================
   CONTACT — Clean, Audo-style
   ================================================================ */
.contact {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 3vw, 48px);
  background: var(--bg-light);
}
.contact__container {
  max-width: 1360px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: start;
}
.contact__label { margin-bottom: 1.75rem; }
.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.contact__body {
  font-family: var(--font-sans); font-size: 0.8125rem;
  line-height: 1.9; color: var(--text-mid); margin-bottom: 2.5rem;
}
.contact__channels { display: flex; flex-direction: column; gap: 1px; margin-bottom: 3rem; background: var(--border); }
.contact__channel {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.375rem 1.625rem;
  background: var(--bg-light);
  position: relative; overflow: hidden;
  transition: background var(--t);
}
.contact__channel::before {
  content: ''; position: absolute; inset: 0;
  background: var(--dark);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease); z-index: 0;
}
.contact__channel:hover::before { transform: scaleX(1); }
.contact__channel:hover .contact__channel-label,
.contact__channel:hover .contact__channel-sub,
.contact__channel:hover .contact__channel-arrow { color: var(--white); }
.contact__channel:hover .contact__channel-icon svg { stroke: var(--white); fill: var(--white); }
.contact__channel-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; flex-shrink: 0;
}
.contact__channel-icon svg { width: 20px; height: 20px; transition: all var(--t); }
.contact__channel--wa .contact__channel-icon svg { fill: var(--text); stroke: none; }
.contact__channel--email .contact__channel-icon svg { fill: none; stroke: var(--text); }
.contact__channel-text { flex: 1; position: relative; z-index: 1; }
.contact__channel-label {
  display: block; font-family: var(--font-sans); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.08em; color: var(--text);
  transition: color var(--t);
}
.contact__channel-sub {
  display: block; font-family: var(--font-sans); font-size: 0.6875rem;
  color: var(--text-mid); transition: color var(--t);
}
.contact__channel-arrow {
  font-size: 1rem; color: var(--text-mid);
  position: relative; z-index: 1;
  transition: color var(--t), transform var(--t);
}
.contact__channel:hover .contact__channel-arrow { transform: translateX(4px); }
.contact__locations {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-sans); font-size: 0.5625rem;
  letter-spacing: 0.2em; color: var(--text-mid); text-transform: uppercase;
}
.contact__loc-sep { opacity: 0.4; }
.contact__calendar { border: 1px solid var(--border); overflow: hidden; }
.contact__calendar-header {
  background: var(--dark);
  padding: 1.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-sans); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.1em; color: var(--white);
}
.contact__calendar-sub { font-size: 0.5625rem; font-weight: 400; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); }
.contact__calendly-fallback { display: none; }
.contact__calendly-placeholder {
  background: var(--bg);
  padding: clamp(40px, 5vw, 70px) 2rem;
  text-align: center; display: flex;
  flex-direction: column; align-items: center; gap: 1.25rem;
}
.contact__cal-icon svg { width: 32px; height: 32px; stroke: var(--text-mid); }
.contact__calendly-placeholder h4 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; }
.contact__calendly-placeholder p { font-family: var(--font-sans); font-size: 0.8125rem; line-height: 1.8; color: var(--text-mid); max-width: 300px; }

/* ================================================================
   BUTTON styles
   ================================================================ */
.btn {
  display: inline-flex; align-items: center;
  font-family: var(--font-sans); font-size: 0.6rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.9rem 2rem;
  transition: all .22s var(--ease);
}
.btn--primary { background: var(--dark); color: var(--white); border: 1px solid var(--dark); }
.btn--primary:hover { background: transparent; color: var(--dark); }
.btn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }
.btn--outline { background: transparent; color: var(--dark); border: 1px solid var(--dark); }
.btn--outline:hover { background: var(--dark); color: var(--white); }
.btn--sm { padding: 0.65rem 1.4rem; font-size: 0.5625rem; }

.label {
  font-family: var(--font-sans); font-size: 0.5rem;
  font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-mid);
}

/* ================================================================
   FOOTER — Audo: warm beige bg, 4 cols, logo centered at bottom
   ================================================================ */
.footer {
  background: var(--bg);
  color: var(--text);
  padding: clamp(50px, 7vw, 90px) clamp(20px, 3vw, 48px) 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: clamp(40px, 5vw, 70px);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.footer__nav-title {
  font-family: var(--font-sans); font-size: 0.5rem;
  font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text);
  margin-bottom: 1.25rem; display: block;
}
.footer__nav-col { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__nav-col a {
  font-family: var(--font-sans); font-size: 0.75rem;
  color: var(--text-mid); transition: color var(--t);
}
.footer__nav-col a:hover { color: var(--text); }

/* Audo newsletter column */
.footer__newsletter { display: flex; flex-direction: column; gap: 0; }
.footer__newsletter-text {
  font-family: var(--font-sans); font-size: 0.75rem;
  line-height: 1.75; color: var(--text-mid); margin-bottom: 1.25rem;
}
.footer__newsletter-form { display: flex; gap: 0; }
.footer__newsletter-input {
  flex: 1;
  border: 1px solid var(--border);
  background: var(--bg-light);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--t);
}
.footer__newsletter-input:focus { border-color: var(--text); }
.footer__newsletter-btn {
  background: var(--dark); color: var(--white);
  border: 1px solid var(--dark);
  padding: 0 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--t);
}
.footer__newsletter-btn:hover { background: var(--text-mid); border-color: var(--text-mid); }

/* Audo bottom: centered logo + address */
.footer__brand {
  text-align: center;
  padding: 2.5rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.footer__logo {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem; font-weight: 400;
  letter-spacing: 0.1em; color: var(--text);
  margin-bottom: 0.5rem;
}
.footer__address {
  font-family: var(--font-sans);
  font-size: 0.6875rem; color: var(--text-mid);
  line-height: 1.7; letter-spacing: 0.03em;
}
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0 2rem;
  font-family: var(--font-sans); font-size: 0.5625rem;
  letter-spacing: 0.1em; color: var(--text-faint);
  border-top: 1px solid var(--border);
}

/* ── WhatsApp Float ──────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 50; box-shadow: 0 4px 20px rgba(15,12,9,0.2);
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}
.wa-float svg { width: 22px; height: 22px; fill: rgba(255,255,255,0.8); }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(15,12,9,0.3); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial { grid-template-columns: 1fr; }
  .editorial__text { padding: clamp(40px, 6vw, 70px); }
  .studio__split { grid-template-columns: 1fr; }
  .contact__container { grid-template-columns: 1fr; }
  .contact__right { order: -1; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__icons { display: none; }
  .nav__toggle { display: flex; }
  .split-panels { grid-template-columns: 1fr; }
  .split-panel { aspect-ratio: 4/3; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item__inner { grid-template-columns: 1fr; min-height: auto; }
  .service-item--reverse .service-item__inner { direction: ltr; }
  .service-item__image { aspect-ratio: 16/9; }
  .studio__header, .services__header, .portfolio__header { grid-template-columns: 1fr; gap: 1.25rem; }
  .services__title, .services__intro { grid-column: 1; }
  .team-grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .portfolio__item--large { grid-column: span 2; grid-row: span 1; }
  .portfolio__item--wide  { grid-column: span 2; }
  .portfolio__item:not(.portfolio__item--large):not(.portfolio__item--wide) { grid-column: span 1; }
  .banner { aspect-ratio: 4/3; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__item--large, .portfolio__item--wide,
  .portfolio__item:not(.portfolio__item--large):not(.portfolio__item--wide) { grid-column: span 1; grid-row: span 1; }
  .footer__top { grid-template-columns: 1fr; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(28,20,16,0.3); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--text); }

::selection { background: var(--text); color: var(--bg); }

/* ── Nav icon CTA text ───────────────────────────────────── */
.nav__icon--cta {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(28,20,16,0.25);
  padding: 0.45rem 1.1rem;
  width: auto;
  height: auto;
  border-radius: 0;
}
.header--hero .nav__icon--cta { border-color: rgba(255,255,255,0.35); }
.nav__icon--cta:hover { opacity: 1 !important; background: var(--dark); color: var(--white) !important; border-color: var(--dark); }

/* ── Ensure split panels are exactly edge-to-edge ───────── */
.split-panels,
.category-grid,
.editorial__images { margin: 0; padding: 0; }

/* editorial images exact height */
.editorial { min-height: 520px; }
.editorial__images { min-height: 520px; }
.editorial__img-wrap { min-height: 260px; }

/* ================================================================
   FIX 1 — NAV: semi-barra exacta como Audo
   Fondo blanco puro, borde inferior 1px sutil, logo más grande
   ================================================================ */
.header {
  background: rgba(250, 247, 242, 0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(28,20,16,0.09) !important;
}
.header--hero {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
}

/* Logo más grande y serif puro — igual que "Audo" en la imagen */
.nav__logo {
  font-family: var(--font-serif) !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em !important;
  color: var(--text) !important;
}
.header--hero .nav__logo { color: rgba(255,255,255,0.92) !important; }

/* Links aún más pequeños y finos — 10px exacto como Audo */
.nav__links { gap: 2rem; }
.nav__link {
  font-size: 0.5625rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
  color: var(--text) !important;
  text-transform: uppercase;
}
.header--hero .nav__link { color: rgba(255,255,255,0.85) !important; }

/* Íconos más finos */
.nav__icon svg { width: 16px !important; height: 16px !important; stroke-width: 1.25; }

/* ================================================================
   FIX 2 — GAPS entre fotos: 3px exactos como Audo
   Aplica a category-grid, split-panels y portfolio__grid
   ================================================================ */
.split-panels {
  gap: 3px !important;
  background: var(--bg) !important;
}
.category-grid {
  gap: 3px !important;
  background: var(--bg) !important;
}
.portfolio__grid {
  gap: 3px !important;
  background: var(--bg) !important;
}
/* El gap visible es el background del padre mostrándose entre celdas */
.split-panel,
.category-item,
.portfolio__item { background: var(--dark); }

/* ================================================================
   FIX 3 — HERO TITLE: semi-barra/cápsula para que el texto
   no se superponga al video — igual que Audo (sin barra visible,
   el texto flota sobre un degradado bien definido)
   ================================================================ */
.hero__overlay {
  background: linear-gradient(
    to top,
    rgba(10,8,6,0.72) 0%,
    rgba(10,8,6,0.35) 35%,
    rgba(10,8,6,0.08) 65%,
    transparent       100%
  ) !important;
}

/* Cápsula semitransparente detrás del título — sutil, no intrusiva */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 2rem clamp(60px, 8vw, 100px);
  width: 100%;
  text-align: center;
}
.hero__content::before {
  content: '';
  position: absolute;
  bottom: clamp(40px, 6vw, 80px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(280px, 40vw, 560px);
  height: calc(100% - clamp(40px,6vw,80px));
  background: radial-gradient(ellipse at center bottom,
    rgba(10,8,6,0.38) 0%,
    transparent 75%
  );
  pointer-events: none;
  z-index: -1;
}

/* ================================================================
   FIX 4 — SECCIÓN CINEMATIC-VIDEO (la "sección 4" de Audo):
   3 paneles horizontales, el del centro lleva Hero-2.mp4
   Estructura: [imagen madera] [VIDEO negro] [imagen dark texture]
   ================================================================ */
.cinematic-strip {
  display: grid;
  grid-template-columns: 33fr 34fr 33fr;
  gap: 3px;
  background: var(--bg);
  /* Altura cinematográfica — como en el screenshot de Audo */
  height: clamp(220px, 28vw, 400px);
}

.cinematic-panel {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.cinematic-panel img,
.cinematic-panel video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s var(--ease);
}
.cinematic-panel:hover img,
.cinematic-panel:hover video { transform: scale(1.03); }

/* Label opcional en la esquina inferior derecha del strip */
.cinematic-panel__label {
  position: absolute;
  bottom: 0; right: 0;
  padding: 1.25rem 1.75rem;
  text-align: right;
  z-index: 2;
}
.cinematic-panel__label span {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.82);
  font-style: italic;
  letter-spacing: 0.02em;
}
.cinematic-panel__label a {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
  transition: color var(--t);
}
.cinematic-panel__label a:hover { color: var(--white); }

/* Panel central: video puro, sin hover zoom para no distraer */
.cinematic-panel--video video { transition: none; }
.cinematic-panel--video:hover video { transform: none; }

/* Overlay suave en los laterales — el central es puro */
.cinematic-panel:not(.cinematic-panel--video)::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,8,6,0.15);
  transition: background var(--t);
  pointer-events: none;
}
.cinematic-panel:not(.cinematic-panel--video):hover::after {
  background: rgba(10,8,6,0.05);
}

/* ── Responsive cinematic strip ─────────────────────────── */
@media (max-width: 768px) {
  .cinematic-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .cinematic-panel { aspect-ratio: 16/9; }
  .cinematic-panel--video { aspect-ratio: 16/9; }
}

/* ================================================================
   BOTÓN MUTE / UNMUTE — pequeño, esquina inferior izquierda del video
   Estética Audo: minimalista, círculo semitransparente, ícono fino
   ================================================================ */
.video-sound-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(10,8,6,0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  transition: background var(--t) var(--ease),
              border-color var(--t) var(--ease),
              transform 0.2s var(--ease);
}
.video-sound-btn:hover {
  background: rgba(10,8,6,0.62);
  border-color: rgba(255,255,255,0.65);
  transform: scale(1.08);
}
.video-sound-btn:active { transform: scale(0.95); }

.video-sound-btn svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.9);
  flex-shrink: 0;
}

/* Estado muted: muestra ícono barrado, oculta el de sonido */
.video-sound-btn .icon-sound { display: none; }
.video-sound-btn .icon-muted { display: block; }

/* Estado unmuted: al revés */
.video-sound-btn.is-unmuted .icon-muted { display: none; }
.video-sound-btn.is-unmuted .icon-sound { display: block; }

/* Posición del botón en el cinematic strip — esquina inferior izquierda */
.video-sound-btn--cinema {
  bottom: 1.25rem;
  left: 1.25rem;
  width: 32px;
  height: 32px;
}
.video-sound-btn--cinema svg { width: 12px; height: 12px; }

/* ================================================================
   MONTSERRAT — ajuste de pesos para elegancia máxima
   Títulos grandes: 200-300 (ligero y editorial)
   Subtítulos: 300
   Cuerpo: 300
   Labels/caps: 500-600
   ================================================================ */

/* Títulos de sección — peso ligero, elegante */
.studio__title,
.services__title,
.portfolio__title,
.contact__title,
.manifesto__quote {
  font-weight: 200 !important;
  letter-spacing: -0.02em !important;
  font-style: normal !important;
}

/* Cursivas → reemplazadas por weight 200 + italic Montserrat */
.studio__title em,
.services__title em,
.portfolio__title em,
.contact__title em,
.manifesto__quote em,
.editorial__title em,
.split-panel__title em,
.banner__title em {
  font-style: italic !important;
  font-weight: 200 !important;
}

/* Hero título — muy grande, muy ligero */
.hero__title-line {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 200 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.05 !important;
}
.hero__title-line--accent {
  font-style: italic !important;
  font-weight: 200 !important;
}

/* Hero "Explorar" */
.hero__sub {
  font-family: 'Montserrat', sans-serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.08em !important;
}

/* Nav logo */
.nav__logo {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.18em !important;
  font-size: 1rem !important;
  text-transform: uppercase !important;
}

/* Nav links */
.nav__link {
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
  font-size: 0.5625rem !important;
}

/* Split panel títulos */
.split-panel__title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(0.875rem, 1.4vw, 1.125rem) !important;
  letter-spacing: 0.04em !important;
}
.split-panel__link {
  font-family: 'Montserrat', sans-serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 0.6875rem !important;
  letter-spacing: 0.06em !important;
}

/* Category labels */
.category-item__label {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  font-size: clamp(0.6875rem, 1.2vw, 0.875rem) !important;
}
.category-section__header {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  font-size: 0.625rem !important;
  color: var(--text-mid) !important;
}

/* Editorial */
.editorial__title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 200 !important;
  letter-spacing: -0.01em !important;
}
.editorial__label {
  font-weight: 500 !important;
  letter-spacing: 0.3em !important;
  font-size: 0.5rem !important;
}
.editorial__cta {
  font-family: 'Montserrat', sans-serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.06em !important;
}
.editorial__body {
  font-weight: 300 !important;
  line-height: 1.9 !important;
}

/* Banner */
.banner__title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 200 !important;
  letter-spacing: -0.01em !important;
}
.banner__cta {
  font-family: 'Montserrat', sans-serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
}

/* Studio */
.studio__intro { font-weight: 300 !important; }
.studio__body  { font-weight: 300 !important; }

/* Team cards */
.team-card__name {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.01em !important;
}
.team-card__bio  { font-weight: 300 !important; }
.team-card__role { font-weight: 500 !important; letter-spacing: 0.15em !important; }
.team-card__number { font-weight: 600 !important; }

/* Service items */
.service-item__title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 200 !important;
  letter-spacing: -0.01em !important;
}
.service-item__desc { font-weight: 300 !important; }
.service-item__cta {
  font-family: 'Montserrat', sans-serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  letter-spacing: 0.06em !important;
}
.service-item__num { font-weight: 500 !important; }

/* Portfolio */
.portfolio__hover-title { font-weight: 400 !important; letter-spacing: 0.06em !important; }
.portfolio__hover-sub   { font-weight: 400 !important; }

/* Contact */
.contact__body { font-weight: 300 !important; }
.contact__channel-label { font-weight: 500 !important; }
.contact__channel-sub   { font-weight: 300 !important; }

/* Manifesto */
.manifesto__cite {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300 !important;
  font-style: italic !important;
  letter-spacing: 0.2em !important;
  font-size: 0.5625rem !important;
}

/* Footer */
.footer__logo {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.2em !important;
}
.footer__nav-title { font-weight: 500 !important; letter-spacing: 0.28em !important; }
.footer__nav-col a  { font-weight: 300 !important; }
.footer__address    { font-weight: 300 !important; }
.footer__tagline    { font-weight: 300 !important; }

/* Cinematic strip */
.cinematic-panel__label span { font-style: italic !important; font-weight: 200 !important; }
.cinematic-panel__label a    { font-style: italic !important; font-weight: 300 !important; }

/* HTML head — update link en index también */

/* ================================================================
   MONTSERRAT BOLD — mayor profundidad y presencia tipográfica
   ================================================================ */

/* Títulos grandes → 700 bold */
.studio__title,
.services__title,
.portfolio__title,
.contact__title { font-weight: 700 !important; letter-spacing: -0.03em !important; }

/* Hero — impacto máximo */
.hero__title-line { font-weight: 700 !important; letter-spacing: -0.04em !important; }
.hero__title-line--accent { font-weight: 700 !important; font-style: italic !important; }

/* Manifesto */
.manifesto__quote { font-weight: 600 !important; letter-spacing: -0.02em !important; }

/* Sección editorial + banner */
.editorial__title { font-weight: 700 !important; letter-spacing: -0.02em !important; }
.banner__title    { font-weight: 700 !important; letter-spacing: -0.02em !important; }

/* Servicios */
.service-item__title { font-weight: 700 !important; letter-spacing: -0.02em !important; }

/* Split panels */
.split-panel__title  { font-weight: 600 !important; letter-spacing: 0 !important; }

/* Team names */
.team-card__name { font-weight: 600 !important; }

/* Nav logo — bold con espaciado */
.nav__logo { font-weight: 700 !important; letter-spacing: 0.22em !important; }

/* Footer logo */
.footer__logo { font-weight: 700 !important; letter-spacing: 0.22em !important; }

/* ================================================================
   CORMORANT GARAMOND — Sistema tipográfico definitivo
   Títulos / marca: Cormorant Garamond
   Interfaz / cuerpo: Montserrat
   ================================================================ */

/* ── Variables base ─────────────────────────────────────── */
:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif !important;
  --font-sans:  'Montserrat', system-ui, sans-serif !important;
}

/* ── Body: Montserrat 300 para interfaz limpia ───────────── */
body {
  font-family: 'Montserrat', system-ui, sans-serif !important;
  font-weight: 300 !important;
}

/* ================================================================
   CORMORANT — todos los elementos de impacto visual
   ================================================================ */

/* Hero — el momento más grande de la marca */
.hero__title-line {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  font-style: normal !important;
  font-size: clamp(4.5rem, 11vw, 10rem) !important;
  letter-spacing: -0.02em !important;
  line-height: 0.95 !important;
}
.hero__title-line--accent {
  font-style: italic !important;
  font-weight: 300 !important;
}
.hero__dot { font-style: normal !important; }

/* Hero "Explorar" */
.hero__sub {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 1.125rem !important;
  letter-spacing: 0.06em !important;
  color: rgba(255,255,255,0.8) !important;
}

/* Nav logo — Cormorant espaciado, mayúsculas propias */
.nav__logo {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 500 !important;
  font-size: 1.375rem !important;
  letter-spacing: 0.12em !important;
  text-transform: none !important;
  font-style: normal !important;
}

/* Títulos de sección */
.studio__title,
.services__title,
.portfolio__title,
.contact__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  font-style: normal !important;
  letter-spacing: -0.01em !important;
}
.studio__title em,
.services__title em,
.portfolio__title em,
.contact__title em {
  font-style: italic !important;
  font-weight: 300 !important;
}

/* Manifesto — máximo impacto */
.manifesto__quote {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  font-style: italic !important;
  font-size: clamp(1.75rem, 3.5vw, 3.25rem) !important;
  letter-spacing: 0.01em !important;
  line-height: 1.45 !important;
}
.manifesto__open,
.manifesto__close {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
}

/* Editorial + Banner */
.editorial__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem) !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
}
.editorial__title em { font-style: italic !important; font-weight: 300 !important; }

.banner__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
  letter-spacing: -0.01em !important;
}
.banner__title em { font-style: italic !important; }
.banner__cta {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 1rem !important;
}

/* Split panels */
.split-panel__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  font-size: clamp(1.25rem, 2vw, 1.75rem) !important;
  letter-spacing: 0.01em !important;
}
.split-panel__title em { font-style: italic !important; }
.split-panel__link {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 0.9375rem !important;
}

/* Servicios */
.service-item__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: clamp(1.75rem, 2.8vw, 2.75rem) !important;
  letter-spacing: -0.01em !important;
}
.service-item__cta {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  letter-spacing: 0.04em !important;
  border-bottom: 1px solid var(--border) !important;
}

/* Team names */
.team-card__name {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 400 !important;
  font-size: clamp(1.25rem, 2vw, 1.625rem) !important;
  letter-spacing: 0 !important;
}

/* Studio intro */
.studio__intro {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  font-size: clamp(1.125rem, 1.8vw, 1.5rem) !important;
  line-height: 1.55 !important;
}

/* Editorial CTA */
.editorial__cta {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 1.0625rem !important;
}

/* Cinematic label */
.cinematic-panel__label span {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 1.125rem !important;
}
.cinematic-panel__label a {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 0.9375rem !important;
}

/* Footer logo */
.footer__logo {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 400 !important;
  font-size: 2rem !important;
  letter-spacing: 0.1em !important;
  text-transform: none !important;
}
.footer__tagline {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 1rem !important;
}

/* Loader */
.loader__text {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.5em !important;
}

/* ================================================================
   MONTSERRAT — interfaz, labels, textos pequeños
   ================================================================ */
.nav__link,
.nav__icon--cta,
.mobile-menu__footer,
.label,
.team-card__role,
.team-card__number,
.team-card__bio,
.service-item__desc,
.service-item__num,
.studio__body,
.editorial__label,
.editorial__body,
.contact__body,
.contact__channel-label,
.contact__channel-sub,
.contact__locations,
.portfolio__hover-title,
.portfolio__hover-sub,
.portfolio__note,
.manifesto__cite,
.banner__label,
.marquee-content,
.hero__tag,
.hero__location,
.hero__scroll,
.footer__nav-title,
.footer__nav-col a,
.footer__newsletter-text,
.footer__address,
.footer__bottom,
.category-section__header,
.category-item__label {
  font-family: 'Montserrat', system-ui, sans-serif !important;
}

/* Hero title — más pequeño */
.hero__title-line {
  font-size: clamp(2.75rem, 6.5vw, 6rem) !important;
}

/* Hero title — tamaño mínimo, protagonismo al video */
.hero__title-line {
  font-size: clamp(1.25rem, 2.2vw, 2rem) !important;
  line-height: 1.2 !important;
  letter-spacing: 0.04em !important;
  font-weight: 300 !important;
}

/* Ocultar texto alt de imágenes rotas */
img {
  font-size: 0 !important;
  color: transparent !important;
}

/* Gap 3px uniforme — horizontal Y vertical en todos los grids */
.split-panels,
.category-grid,
.portfolio__grid,
.cinematic-strip,
.editorial__images {
  gap: 3px !important;
  row-gap: 3px !important;
  column-gap: 3px !important;
}

/* Bloques de imagen: sin espacio entre secciones — se tocan exacto */
.split-panels,
.category-grid,
.cinematic-strip,
.banner,
.editorial,
.marquee-wrap {
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
}

/* El fondo del body no debe verse entre bloques */
.split-panels + .split-panels,
.split-panels + .category-section,
.category-section + .banner,
.banner + .editorial,
.editorial + .split-panels,
.split-panels + .cinematic-strip,
.cinematic-strip + .studio,
.marquee-wrap + .split-panels {
  margin-top: 0 !important;
}

/* category-section: el header y el grid sin gap entre ellos */
.category-section {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.category-section__header {
  margin: 0 !important;
  padding: 1.5rem 2rem !important;
  background: var(--bg-light) !important;
}

/* ================================================================
   MEDIA-GRID — contenedor maestro Audo-style
   Un solo grid con gap: 3px en todas direcciones.
   El background beige (#f5f0e8) es el "espacio" visible entre celdas.
   ================================================================ */
.media-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--bg);   /* beige — lo que se ve entre filas */
  padding: 0;
  margin: 0;
}

/* Cada hijo directo hereda el fondo transparente para que el beige pase */
.media-grid > * {
  margin: 0 !important;
  padding: 0 !important;
}

/* Los grids internos también usan gap 3px con el mismo beige */
.media-grid .split-panels,
.media-grid .category-grid,
.media-grid .cinematic-strip {
  gap: 3px !important;
  background: var(--bg) !important;  /* beige entre columnas */
}

/* Editorial: la columna de texto tiene el mismo beige de fondo */
.media-grid .editorial {
  background: var(--bg) !important;
  gap: 3px !important;
}
.media-grid .editorial__images {
  gap: 3px !important;
  background: var(--bg) !important;
}

/* Banner: sin margin/padding adicional */
.media-grid .banner {
  margin: 0 !important;
}

/* category-section wrapper ya no necesario — quitamos el header separado */
.media-grid .category-section__header {
  display: none !important;
}
