/* =========================================
   MERCEDES ROLDÁN — Estilo inspirado en raffaellofiesta.es
   Font: Lato · Paleta: negro / blanco / gris
   ========================================= */

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

/* --- Variables -------------------------------------------------- */
:root {
  --black:       #000000;
  --white:       #FFFFFF;
  --gray-dark:   #1A1A1A;
  --gray-mid:    #555555;
  --gray-light:  #CACACA;
  --gray-bg:     #F0EDE9;
  --gray-warm:   #E8E4DF;
  --gray-soft:   #F7F5F2;
  --border:      #DDD9D4;
  --overlay-nav: rgba(0,0,0,0.38);
  --overlay-card:rgba(0,0,0,0.32);

  --ff: 'Lato', sans-serif;
  --nav-h: 100px;
}

/* --- Reset ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@keyframes mrFadeIn { from { opacity: 0; } to { opacity: 1; } }
body {
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  animation: mrFadeIn 0.2s ease forwards;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =========================================
   NAVEGACIÓN — dos filas, logo izquierda
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s;
}
.nav--transparent { background: transparent; }
.nav--scrolled    { background: var(--black); }

/* Fila 1 */
.nav__row1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.nav__burger {
  position: absolute;
  right: 20px;
}
/* Fila 2 */
.nav__row2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 50px;
  gap: 50px;
  position: relative;
}

.nav__logo {
  display: flex;
  align-items: center;
  color: var(--white);
}
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__link {
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  padding-bottom: 4px;
  transition: color .2s;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav__link:hover,
.nav__link.active { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav__dropdown { position: relative; display: flex; align-items: center; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--black);
  min-width: 210px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color .2s;
}
.nav__dropdown-menu a:hover { color: var(--white); }

/* Burger mobile */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none; border: none; padding: 4px;
  position: absolute;
  right: 20px;
}
.nav__burger span {
  display: block; width: 24px; height: 1px;
  background: var(--white);
}

/* =========================================
   BOTONES
   ========================================= */
.btn {
  display: inline-block;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  transition: background .2s, color .2s;
  border: none;
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--gray-dark);
  color: var(--white);
}
.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover {
  background: #333;
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

/* =========================================
   HERO — vídeo/foto full screen
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1A1814;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.36);
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 40px;
}
.hero__content h1 {
  font-family: var(--ff);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.hero__content p {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

/* =========================================
   GRID DE COLECCIONES — 2×2 full bleed
   ========================================= */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.collection-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.collection-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform .7s ease;
}
.collection-card:hover .collection-card__img { transform: scale(1.04); }
.collection-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.32);
  transition: background .3s;
}
.collection-card:hover .collection-card__overlay { background: rgba(0,0,0,0.44); }
.collection-card__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 20px;
}
.collection-card__title {
  font-family: var(--ff);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
/* Card novia — misma proporción que las otras en 3 columnas */
.collection-card--wide {
  aspect-ratio: 3/4;
}

/* =========================================
   SECCIÓN TEXTO — centrada, fondo blanco
   ========================================= */
.section-text {
  padding: 80px 60px;
  text-align: center;
  background: var(--gray-soft);
}
.section-text h2 {
  font-family: var(--ff);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
}
.section-text p {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-mid);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* =========================================
   SECCIÓN NEGRA — fondo negro
   ========================================= */
.section-dark {
  background: var(--black);
  padding: 80px 60px;
  text-align: center;
}
.section-dark h2 {
  font-family: var(--ff);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.section-dark p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* =========================================
   SPLIT — foto + texto (50/50)
   ========================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  max-height: 600px;
}
.split__img {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-height: 600px;
}
.split__img img,
.split__img .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 80px;
  background: var(--white);
}
.split__content--dark {
  background: var(--black);
}
.split__content h2 {
  font-family: var(--ff);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
}
.split__content--dark h2 { color: var(--white); }
.split__content p {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.split__content--dark p { color: rgba(255,255,255,0.65); }
.split__content .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 16px;
}
.split__content--dark .label { color: rgba(255,255,255,0.45); }

/* =========================================
   PILARES — 4 columnas sobre negro
   ========================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black);
}
.pillar {
  padding: 50px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.pillar:last-child { border-right: none; }
.pillar__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.pillar h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.pillar p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* =========================================
   PRODUCT GRID
   ========================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: #e8e4de;
  cursor: pointer;
}
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.product-card:hover img { transform: scale(1.05); }
.product-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 16px;
}
.product-card:hover .product-card__overlay { background: rgba(0,0,0,0.18); }
.product-card__ref {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}
.product-card:hover .product-card__ref { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  display: block;
}
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  font-size: 28px; line-height: 1; color: #fff;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 32px; color: rgba(255,255,255,0.7);
  background: none; border: none; cursor: pointer; padding: 16px;
  transition: color .2s;
}
.lightbox__prev:hover, .lightbox__next:hover { color: #fff; }
.lightbox__prev { left: 12px; }
.lightbox__next { right: 12px; }

/* =========================================
   TABS
   ========================================= */
.tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}
.tab {
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  padding: 16px 36px;
  cursor: pointer;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  transition: color .2s, border-color .2s;
}
.tab:hover { color: var(--black); }
.tab.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

/* =========================================
   PÁGINA INTERIOR — HERO PEQUEÑO
   ========================================= */
.page-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1A1814;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.40);
}
.page-hero__content {
  position: relative; z-index: 2;
  text-align: center;
}
.page-hero__content .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.page-hero__title {
  font-family: var(--ff);
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
}

/* =========================================
   BREADCRUMB
   ========================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--gray-warm);
}
.breadcrumb a, .breadcrumb span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
}
.breadcrumb a:hover { color: var(--black); }
.breadcrumb__sep { color: var(--border); }

/* =========================================
   FIRMA BIO
   ========================================= */
.firma-bio {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 500px;
  background: var(--gray-soft);
}
.firma-bio__img {
  position: sticky;
  top: var(--nav-h);
  height: calc(80vh - var(--nav-h));
  max-height: 600px;
  overflow: hidden;
}
.firma-bio__img img,
.firma-bio__img .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.firma-bio__text {
  padding: 80px 80px;
  background: var(--gray-soft);
}
.firma-bio__text .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 20px;
}
.firma-bio__text h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 36px;
}
.firma-bio__text p {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.9;
  margin-bottom: 22px;
}
.firma-bio__text p.lead {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--gray-dark);
}

/* =========================================
   VÍDEOS
   ========================================= */
.videos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 0 40px 48px;
}
.video-card {
  position: relative;
  width: 280px;
  aspect-ratio: 9/16;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  flex-shrink: 0;
}
.video-card__thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .6;
  transition: opacity .3s, transform .4s;
}
.video-card:hover .video-card__thumb { opacity: .4; transform: scale(1.03); }
.video-card__content {
  position: relative; z-index: 2;
  text-align: center;
}
.video-card__play {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: background .25s, border-color .25s;
}
.video-card:hover .video-card__play {
  background: var(--white);
  border-color: var(--white);
}
.video-card:hover .video-card__play svg { fill: var(--black); }
.video-card__play svg { fill: white; width: 22px; height: 22px; margin-left: 4px; }
.video-card__title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.video-featured {
  position: relative;
  aspect-ratio: 16/7;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}
.video-featured__thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: opacity .3s;
}
.video-featured:hover .video-featured__thumb { opacity: .4; }
.video-featured__content {
  position: relative; z-index: 2;
  text-align: center;
}
.video-featured__play {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  transition: background .25s;
}
.video-featured:hover .video-featured__play { background: var(--white); }
.video-featured:hover .video-featured__play svg { fill: var(--black); }
.video-featured__play svg { fill: white; width: 28px; height: 28px; margin-left: 5px; }
.video-featured__title {
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.video-featured__sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* =========================================
   CONTACTO
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 80px;
  background: var(--gray-soft);
}
.contact-info__item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__item:first-child { border-top: 1px solid var(--border); }
.contact-info__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}
.contact-info__value {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.6;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-dark);
  padding: 10px 0;
  outline: none;
  transition: border-color .25s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--black); }
.form-group textarea { resize: none; height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* =========================================
   HOME CONTACTO
   ========================================= */
.home-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.home-contact__photo {
  position: relative;
  overflow: hidden;
}
.home-contact__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.home-contact__photo iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
}
.home-contact__photo-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.18);
}
.home-contact__body {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 80px;
}
.home-contact__body .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.home-contact__body h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.home-contact__body > p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 0;
}
.home-contact__data {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 32px;
}
.home-contact__item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.home-contact__item-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  min-width: 80px;
  flex-shrink: 0;
}
.home-contact__item-value {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.home-contact__item-value a {
  color: rgba(255,255,255,0.75);
  transition: color .2s;
}
.home-contact__item-value a:hover { color: var(--white); }

/* =========================================
   PLACEHOLDER IMAGES
   ========================================= */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #D8D0C4;
  font-family: var(--ff);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  text-align: center;
  padding: 20px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 64px 60px 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}
.footer__brand {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 28px;
}
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.footer__col-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color .2s;
}
.footer__col-links a:hover { color: var(--white); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  font-weight: 400;
  transition: border-color .2s, color .2s;
}
.footer__social a:hover { border-color: var(--white); color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color .2s;
}
.footer__legal a:hover { color: var(--white); }

/* =========================================
   SECTION WRAPPER
   ========================================= */
.section { padding: 80px 60px; }
.section--white { background: var(--white); }
.section--black { background: var(--black); }
.section--gray  { background: var(--gray-soft); }

.section__header { text-align: center; margin-bottom: 56px; }
.section__header .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 14px;
}
.section__header h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
}
.section__header--white h2 { color: var(--white); }
.section__header--white .label { color: rgba(255,255,255,0.4); }

/* =========================================
   MODAL VÍDEO
   ========================================= */
.video-modal {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.94);
  align-items: center; justify-content: center;
}
.video-modal.open { display: flex; }
.video-modal__inner {
  position: relative;
  width: 90%; max-width: 960px;
  aspect-ratio: 16/9;
}
.video-modal__inner iframe { width: 100%; height: 100%; border: none; }
.video-modal__close {
  position: absolute;
  top: -44px; right: 0;
  background: none; border: none;
  color: white; font-size: 28px;
  cursor: pointer; line-height: 1;
  font-family: var(--ff);
}

/* =========================================
   ANIMACIÓN FADE-UP
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }

/* =========================================
   RESPONSIVE — Tablet (≤1024px)
   ========================================= */
/* =========================================
   RESPONSIVE — Tablet (≤1024px)
   ========================================= */
@media (max-width: 1024px) {
  :root { --nav-h: 90px; }

  .nav__row1, .nav__row2 { padding: 0 30px; }
  .nav__row2 { gap: 30px; }

  .section        { padding: 70px 40px; }
  .section-text   { padding: 70px 40px; }
  .section-dark   { padding: 70px 40px; }

  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collection-card--wide { grid-column: span 1; }

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

  .product-grid { grid-template-columns: repeat(3, 1fr); }

  .split__content { padding: 60px 50px; }

  .firma-bio { grid-template-columns: 1fr 1fr; }
  .firma-bio__text { padding: 60px 50px; }
  .firma-bio__img { position: sticky; height: calc(100vh - 90px); }

  .home-contact__body { padding: 48px 50px; }

  .contact-grid { padding: 70px 40px; gap: 50px; }

  .footer { padding: 60px 40px 32px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }

  .videos-grid { gap: 10px; padding: 0 16px 32px; }
  .video-card { width: calc(50% - 5px); }
}

/* =========================================
   RESPONSIVE — Mobile (≤768px)
   ========================================= */
@media (max-width: 768px) {
  :root { --nav-h: 54px; }

  /* NAV */
  .nav__row1 { padding: 0 20px; height: 54px; }
  .nav__row2 { display: none; }
  .nav__row2.open {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 16px 20px 24px;
    gap: 18px;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav__row2.open .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    padding: 8px 0 0 16px;
    box-shadow: none;
    min-width: 0;
  }
  .nav__burger { display: flex; }

  /* HERO */
  .hero { min-height: 100svh; }
  .hero__content { padding: 0 24px; }
  .hero__content h1 { font-size: clamp(26px, 8vw, 42px); letter-spacing: 2px; }
  .hero__content p  { font-size: 11px; letter-spacing: 1.5px; }
  .btn { font-size: 11px; padding: 12px 22px; }

  /* PAGE HERO */
  .page-hero { height: 45vh; min-height: 280px; margin-top: var(--nav-h) !important; }
  .page-hero__title { font-size: clamp(26px, 8vw, 44px); letter-spacing: 3px; }

  /* BREADCRUMB */
  .breadcrumb { padding: 14px 20px; }

  /* COLLECTION CARDS */
  .collections-grid { grid-template-columns: 1fr; width: 100%; }
  .collections-grid .collection-card,
  .collections-grid .collection-card--wide {
    grid-column: span 1;
    width: 100%;
    aspect-ratio: unset;
    height: 70vw;
    max-height: 380px;
    min-height: 220px;
  }
  .collection-card__title { font-size: 20px; letter-spacing: 1.5px; }

  /* SECTIONS */
  .section-text   { padding: 56px 20px; }
  .section-text h2 { font-size: clamp(20px, 6vw, 28px); letter-spacing: 2px; }
  .section-text p  { font-size: 15px; }
  .section-dark   { padding: 56px 20px; }
  .section-dark h2 { font-size: clamp(20px, 6vw, 28px); letter-spacing: 2px; }
  .section-dark p  { font-size: 15px; }
  .section { padding: 56px 20px; }
  .section__header h2 { font-size: clamp(20px, 6vw, 28px); letter-spacing: 2px; }

  /* SPLIT */
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__img { order: -1; }
  .split__img { height: 70vw; min-height: 280px; }
  .split__content { padding: 48px 20px; }
  .split__content h2 { font-size: clamp(18px, 5vw, 24px); letter-spacing: 2px; }
  .split__content p  { font-size: 15px; }

  /* PILARES */
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { padding: 32px 18px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .pillar:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); }
  .pillar:last-child, .pillar:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .pillar h3 { font-size: 12px; }
  .pillar p  { font-size: 13px; }

  /* PRODUCT GRID */
  .product-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

  /* TABS */
  .tabs { flex-wrap: wrap; justify-content: center; gap: 4px; padding: 0 20px 20px; }
  .tab { padding: 10px 14px; font-size: 10px; letter-spacing: 1.5px; }

  /* CATEGORY INTRO */
  .category-intro h2 { font-size: clamp(18px, 6vw, 24px) !important; letter-spacing: 2px !important; }
  .category-intro p.desc { font-size: 14px !important; }

  /* VIDEOS */
  .videos-grid { flex-direction: column; align-items: center; padding: 0 20px 32px; gap: 12px; }
  .video-card { width: 100%; max-width: 360px; flex-shrink: 1; }
  .video-featured { aspect-ratio: 4/3; }
  .video-featured__title { font-size: clamp(16px, 5vw, 24px); letter-spacing: 2px; }

  /* FIRMA BIO */
  .firma-bio { grid-template-columns: 1fr; }
  .firma-bio__img { position: static; height: 75vw; min-height: 280px; }
  .firma-bio__text { padding: 48px 20px; }
  .firma-bio__text h2 { font-size: clamp(18px, 5vw, 26px); letter-spacing: 2px; }
  .firma-bio__text p  { font-size: 15px; }
  .firma-bio__text p.lead { font-size: 17px; }

  /* HOME CONTACTO */
  .home-contact { grid-template-columns: 1fr; }
  .home-contact__photo { height: 55vw; min-height: 260px; }
  .home-contact__photo iframe { width: 100%; height: 100%; border: 0; display: block; }
  .home-contact__body { padding: 48px 20px; }
  .home-contact__body h2 { font-size: clamp(20px, 6vw, 28px); }

  /* CONTACTO */
  .contact-grid { grid-template-columns: 1fr; padding: 48px 20px; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-info__value { font-size: 15px; }

  /* FOOTER */
  .footer { padding: 48px 20px 28px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: 16px; }

  /* MODAL */
  .video-modal__inner { width: 95%; }
  .video-modal__close { top: -38px; font-size: 22px; }
}

/* =========================================
   RESPONSIVE — Mobile pequeño (≤480px)
   ========================================= */
@media (max-width: 480px) {
  .hero__content h1 { font-size: clamp(22px, 8vw, 34px); }

  .collections-grid .collection-card,
  .collections-grid .collection-card--wide { width: 100%; height: 80vw; }

  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; }

  .product-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

  .home-contact__photo { height: 65vw; min-height: 240px; }
  .home-contact__body { padding: 36px 20px; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__social a { width: 36px; height: 36px; }

  .btn { width: 100%; text-align: center; display: block; }
  .hero__content .btn { display: inline-block; width: auto; }
  .home-contact__body .btn { width: 100%; text-align: center; }
}
