:root {
  --color-bg: #f4f4f4;
  --color-surface: #ffffff;
  --color-ink: #171717;
  --color-muted: #545454;
  --color-line: #e7e2e2;
  --color-accent: #dfb9c0;
  --color-accent-soft: color-mix(in srgb, var(--color-accent) 22%, transparent);
  --color-violet-glow: #dfb9c0;
  --font-sans: "Geist", "DM Sans", system-ui, sans-serif;
  --font-zen: "Zen Antique Soft", "Geist", serif;
  --radius: 14px;
  --shadow: 0 16px 48px rgba(13, 13, 13, 0.06);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  margin: 0;
  font-family: var(--font-zen);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-bg);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-ink);
  color: #fff;
  z-index: 2000;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

code {
  font-size: 0.88em;
  background: var(--color-line);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.container {
  width: min(1040px, 92vw);
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, 92vw);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-surface) 94%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
}

.header-start {
  flex: 0 0 auto;
  min-width: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.header-wholesale-badge {
  flex-shrink: 0;
}

/* Logo centrado en el ancho del contenedor (márgenes izq./der. del layout) */
.header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: block;
  text-decoration: none;
  color: inherit;
}

.header-end {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  min-width: 0;
  z-index: 2;
}

.header-trade-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .header-logo .logo-img {
    height: 48px;
    max-width: 180px;
  }
}

.logo-img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.logo-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #777;
  border: 1px solid var(--color-line);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  margin-inline: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  top: var(--header-h);
  right: max(1rem, env(safe-area-inset-right));
  width: min(300px, calc(100vw - 2rem));
  margin: 0;
  padding: 1rem 1.1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
}

.nav-list a {
  display: block;
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.15s ease;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
}

.nav-list a:hover {
  color: var(--color-ink);
  background: color-mix(in srgb, var(--color-bg) 85%, transparent);
}

.nav-cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-ink);
  color: #fff !important;
  border-radius: 999px;
}

.nav-cta:hover {
  background: #2a2a2a;
}

.nav-item--trade {
  display: none;
  list-style: none;
  margin: 0;
}

.hero {
  position: relative;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 85% 10%, var(--color-accent-soft), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(91, 63, 122, 0.06), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
}

.hero-copy {
  max-width: 40rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}

.hero h1,
.hero h2 {
  font-family: var(--font-zen);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.lead {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin: 0 0 1.75rem;
}

/* Texto intro bajo el h2: dos mensajes + barra de progreso y pestañas */
.lead-slider-wrap {
  margin: 0 0 1.75rem;
  max-width: 40rem;
}

.lead-slider {
  display: grid;
  grid-template-areas: "stack";
  font-size: 1.1rem;
  color: var(--color-muted);
}

.lead-slider__item {
  grid-area: stack;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  line-height: 1.55;
}

.lead-slider__item.is-active {
  opacity: 1;
}

.lead-slider-ui {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lead-slider-bar {
  outline: none;
  border-radius: 999px;
  cursor: pointer;
  padding: 0.35rem 0;
  touch-action: none;
}

.lead-slider-bar:focus-visible {
  box-shadow: 0 0 0 2px var(--color-surface), 0 0 0 4px var(--color-accent);
  border-radius: 999px;
}

.lead-slider-bar__track {
  height: 5px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-line) 85%, var(--color-muted));
  overflow: hidden;
}

.lead-slider-bar__fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--color-accent) 75%, #8a6b72),
    var(--color-accent)
  );
  transform-origin: left center;
  will-change: width;
}

.lead-slider-pips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  align-items: center;
}

.lead-slider-pip {
  min-width: 2rem;
  min-height: 2rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-slider-pip:hover {
  border-color: color-mix(in srgb, var(--color-accent) 55%, var(--color-line));
  color: var(--color-ink);
}

.lead-slider-pip.is-active {
  background: color-mix(in srgb, var(--color-accent) 35%, #fff);
  border-color: color-mix(in srgb, var(--color-accent) 60%, var(--color-line));
  color: var(--color-ink);
  box-shadow: 0 2px 8px rgba(13, 13, 13, 0.06);
}

.lead-slider-pip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-surface), 0 0 0 4px var(--color-accent);
}

@media (prefers-reduced-motion: reduce) {
  .lead-slider {
    grid-template-areas: none;
    display: block;
  }

  .lead-slider__item {
    transition: none;
    display: none;
    opacity: 1;
  }

  .lead-slider__item.is-active {
    display: block;
  }

  .lead-slider-bar__fill {
    display: none;
  }

  .lead-slider-bar {
    cursor: default;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--color-ink);
  color: #fff;
}

.btn-primary:hover {
  background: #2a2a2a;
}

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-line);
}

.btn-ghost:hover {
  border-color: var(--color-ink);
  background: var(--color-surface);
}

.section {
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.section-tight {
  padding: 1.25rem 0;
}

.section-alt {
  background: var(--color-surface);
  border-block: 1px solid var(--color-line);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-zen);
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--color-muted);
}

.h3-like {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.muted {
  color: var(--color-muted);
  margin: 0;
}

.banner-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* —— Why This Works for Your Store (buyer bullets) —— */
.store-why .section-head.center {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.store-why__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 52rem;
  display: grid;
  gap: 0.85rem;
}

.store-why__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
  padding: 1rem 1.2rem;
  background: color-mix(in srgb, var(--color-bg) 88%, var(--color-surface));
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: var(--font-zen);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.store-why__icon {
  flex-shrink: 0;
  width: clamp(1.5rem, 2.8vw, 1.6875rem);
  height: clamp(1.5rem, 2.8vw, 1.6875rem);
  margin-top: 0.12em;
  color: #3d3d3d;
}

.store-why__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.store-why__text {
  min-width: 0;
}

.store-why__list li strong {
  font-weight: 600;
  color: var(--color-ink);
}

@media (min-width: 720px) {
  .store-why__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }
}

/* —— Coordinated Collection Overview —— */
.collection-overview .section-head.center {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.collection-overview__intro {
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  text-align: center;
  font-family: var(--font-zen);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.collection-overview__intro strong {
  color: var(--color-ink);
  font-weight: 600;
}

.collection-overview__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 48rem;
  display: grid;
  gap: 0.75rem;
}

.collection-overview__list > li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  padding: 1rem 1.2rem;
  background: color-mix(in srgb, var(--color-bg) 88%, var(--color-surface));
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: var(--font-zen);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.collection-overview__marker {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  min-height: 4rem;
  padding: 0.4rem 0.7rem;
  margin-top: 0.04em;
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #3d3d3d;
  background: color-mix(in srgb, var(--color-line) 65%, transparent);
  border-radius: 12px;
  box-sizing: border-box;
}

.collection-overview__item-body {
  min-width: 0;
}

.collection-overview__item-body strong {
  font-weight: 600;
  color: var(--color-ink);
}

.collection-overview__sep {
  font-weight: 400;
  color: var(--color-muted);
}

@media (min-width: 720px) {
  .collection-overview__list {
    gap: 0.85rem;
  }
}

/* —— Retail Opportunity (slider + copy, bloque centrado) —— */
.retail-opportunity__title {
  font-family: var(--font-zen);
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  margin: 0 0 clamp(0.35rem, 1.5vw, 0.5rem);
  letter-spacing: -0.02em;
  text-align: center;
  grid-column: 1;
  grid-row: 1;
}

.retail-opportunity__split {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.35rem;
  align-items: center;
  width: 100%;
  max-width: min(56rem, 100%);
  margin-inline: auto;
}

.retail-opportunity__slider {
  width: 100%;
  min-width: 0;
}

.retail-opportunity__viewport {
  position: relative;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: #1a1a1a;
  box-shadow: var(--shadow);
}

.retail-opportunity__track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .retail-opportunity__track {
    transition: none;
  }
}

.retail-opportunity__slide {
  flex: 0 0 33.333333%;
  height: 100%;
}

.retail-opportunity__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.retail-opportunity__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.retail-opportunity__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #ccc;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.retail-opportunity__dot.is-active {
  background: var(--color-ink);
  transform: scale(1.12);
}

.retail-opportunity__dot:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 2px;
}

.retail-opportunity__box {
  margin: 0;
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 1.6rem) clamp(1.25rem, 3vw, 1.75rem);
  background: color-mix(in srgb, var(--color-bg) 88%, var(--color-surface));
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.retail-opportunity__box p {
  margin: 0;
  font-family: var(--font-zen);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-muted);
  text-wrap: pretty;
}

@media (min-width: 768px) {
  .retail-opportunity__split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: clamp(1.1rem, 2.8vw, 1.65rem) clamp(1.35rem, 3.5vw, 2.25rem);
    align-items: start;
  }

  /* Título solo sobre la columna del texto (derecha), centrado encima del cuadro */
  .retail-opportunity__title {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    align-self: end;
    text-align: center;
    width: 100%;
  }

  .retail-opportunity__slider {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: center;
  }

  .retail-opportunity__box {
    grid-column: 2;
    grid-row: 2;
  }

  .retail-opportunity__viewport {
    margin-inline: 0;
    max-width: none;
  }
}

/* —— Brand DNA (visual editorial grid) —— */
.brand-dna {
  background: linear-gradient(
    185deg,
    color-mix(in srgb, var(--color-bg) 55%, var(--color-accent-soft)),
    var(--color-bg) 42%
  );
}

.brand-dna-intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.dna-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 720px) {
  .dna-visual-grid {
    grid-template-columns: 1fr;
  }
}

/* Una sola fila en desktop ancho = menos altura de sección */
@media (min-width: 1024px) {
  .dna-visual-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.dna-card--visual {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.dna-card--visual:hover {
  box-shadow: 0 20px 50px rgba(13, 13, 13, 0.1);
}

.dna-card__figure {
  margin: 0;
  width: 100%;
  min-width: 0;
  /* Brand DNA icon container: ~1/3 de la altura anterior */
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f4f4 0%, #ece7e8 100%);
  display: grid;
  place-items: center;
  padding: calc(clamp(1.4rem, 3vw, 2rem) + 50px) clamp(1.4rem, 3vw, 2rem);
}

.dna-card__figure img,
.dna-card__figure .dna-card__icon {
  width: 100%;
  max-width: none;
  height: 100%;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.dna-card__figure img {
  object-fit: cover;
  object-position: center 22%;
}

.dna-card__figure .dna-card__icon {
  width: min(62%, 12rem);
  height: auto;
  max-width: 100%;
  color: color-mix(in srgb, var(--color-accent) 84%, #57444a);
}

@media (max-width: 720px) {
  .dna-card__figure {
    width: 100%;
    aspect-ratio: 2 / 1;
  }

  .dna-card__copy {
    text-align: center;
  }

  .dna-card__copy h3 {
    text-align: center;
  }

  .dna-card__copy p {
    text-align: center;
    margin-inline: auto;
    max-width: 36rem;
  }

  .dna-voice__content {
    text-align: center;
  }

  .dna-voice__content h3 {
    text-align: center;
  }

  .dna-voice__content p {
    text-align: center;
  }

  .dna-voice__quote {
    text-align: center;
    margin-inline: auto;
    max-width: 32rem;
    border-left: none;
    border-top: 3px solid var(--color-accent);
    padding: 1rem 1rem 0.85rem;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .dna-voice__visual-note {
    text-align: center;
    margin-inline: auto;
    max-width: 36rem;
  }
}

.dna-card--visual:hover .dna-card__figure img,
.dna-card--visual:hover .dna-card__figure .dna-card__icon {
  transform: scale(1.035);
}

@media (prefers-reduced-motion: reduce) {
  .dna-card__figure img,
  .dna-card__figure .dna-card__icon,
  .dna-card--visual:hover .dna-card__figure img,
  .dna-card--visual:hover .dna-card__figure .dna-card__icon {
    transition: none;
    transform: none;
  }
}

.dna-card__copy {
  padding: 1.15rem 1.25rem 1.35rem;
}

/* Grid 4 columnas: contenedor de texto ~la mitad de alto que el paso intermedio anterior */
.dna-visual-grid .dna-card__copy {
  padding: 0.29rem 1.1rem 0.34rem;
}

.dna-visual-grid .dna-card__copy h3 {
  margin: 0 0 0.11rem;
  font-size: 0.88rem;
  text-align: center;
}

.dna-visual-grid .dna-card__copy p {
  line-height: 1.22;
  font-size: 0.8rem;
}

.dna-visual-grid .dna-card--mission .dna-card__copy h3,
.dna-visual-grid .dna-card--philosophy .dna-card__copy h3,
.dna-visual-grid .dna-card--values .dna-card__copy h3,
.dna-visual-grid .dna-card--palette .dna-card__copy h3 {
  font-size: calc(0.76rem * 1.5);
}

.dna-card__copy h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-family: var(--font-zen);
  color: #222;
}

.dna-card--mission .dna-card__copy h3,
.dna-card--philosophy .dna-card__copy h3,
.dna-card--values .dna-card__copy h3,
.dna-card--palette .dna-card__copy h3 {
  color: color-mix(in srgb, var(--color-accent) 82%, #6b4f56);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.98rem;
}

.dna-visual-grid .dna-card--values .dna-card__copy p + p,
.dna-visual-grid .dna-card--palette .dna-card__copy p + p {
  margin-top: 0.35em;
}

.dna-card__values-keywords {
  margin: 0.45em 0 0 !important;
  font-size: 0.72rem !important;
  line-height: 1.25 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-accent) 78%, #6b4f56) !important;
  font-weight: 600;
}

.dna-card__copy p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.dna-voice--panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 0;
  margin-top: 1.15rem;
  padding: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  box-shadow: var(--shadow);
  align-items: stretch;
}

/* Oculto: panel Voice, story & experience en #brand-dna. Quitar .brand-dna-voice-panel--hidden del div en index.html para mostrarlo de nuevo. */
.brand-dna-voice-panel--hidden {
  display: none !important;
}

.dna-voice__media {
  margin: 0;
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #ddd;
  align-self: stretch;
}

.dna-voice__media img {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.dna-voice__content {
  padding: 1.5rem 1.55rem 1.65rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--color-line);
  background: linear-gradient(
    150deg,
    color-mix(in srgb, #fff 90%, var(--color-accent-soft)),
    #fff 65%
  );
}

.dna-voice__content h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  font-family: var(--font-zen);
}

.dna-voice__content p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.dna-voice__content p + p {
  margin-top: 0.85rem;
}

.dna-voice__quote {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--color-accent);
  background: color-mix(in srgb, var(--color-accent-soft) 40%, transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.dna-voice__quote p {
  margin: 0 0 0.35rem;
  font-family: var(--font-zen);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-ink);
}

.dna-voice__quote cite {
  font-size: 0.82rem;
  font-style: normal;
  color: var(--color-muted);
}

.dna-voice__visual-note {
  margin: 0.9rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .dna-voice--panel {
    grid-template-columns: 1fr;
  }

  .dna-voice__media {
    width: 100%;
    height: auto;
    min-height: min(220px, 45vh);
    aspect-ratio: 16 / 10;
  }

  .dna-voice__media img {
    min-height: 0;
  }

  .dna-voice__content {
    border-left: none;
    border-top: 1px solid var(--color-line);
  }
}

.founder-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: #fff;
}

.founder-card p {
  margin: 0 0 0.9rem;
  color: var(--color-muted);
}

.founder-card p:last-child {
  margin-bottom: 0;
}

/* Biografía completa: área con barra de desplazamiento vertical (lectura con rueda / arrastre del thumb) */
.founder-card__scroll {
  max-height: min(48vh, 26rem);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.4rem;
  margin-right: -0.05rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  outline: none;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--color-accent) 55%, #888)
    color-mix(in srgb, var(--color-accent-soft) 45%, #f0f0f0);
}

.founder-card__scroll:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--color-accent) 65%, var(--color-ink));
  outline-offset: 3px;
}

.founder-card__scroll::-webkit-scrollbar {
  width: 10px;
}

.founder-card__scroll::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--color-accent-soft) 40%, #f5f5f5);
  border-radius: 999px;
}

.founder-card__scroll::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--color-accent) 50%, #9a9a9a);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.founder-card__scroll::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--color-accent) 65%, #888);
}

.founder-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  box-shadow: var(--shadow);
}

.founder-split__media {
  margin: 0;
  min-height: 280px;
  overflow: hidden;
  background: #c8c8c8;
}

.founder-split__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.founder-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.35rem, 3vw, 2rem);
  border-left: 1px solid var(--color-line);
  background: linear-gradient(
    155deg,
    color-mix(in srgb, #fff 88%, var(--color-accent-soft)),
    #fff 62%
  );
}

.founder-split__head {
  margin-bottom: 1.15rem;
  max-width: none;
}

.founder-split__head h2 {
  font-family: var(--font-zen);
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.founder-split__head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.1em;
}

.founder-split .founder-card p {
  font-size: 1.1em;
}

.founder-split .founder-card {
  border: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.founder-read-more {
  margin-top: 1.1rem;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .founder-split {
    grid-template-columns: 1fr;
  }

  .founder-split__media {
    align-self: stretch;
    height: auto;
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: 72vh;
  }

  .founder-split__media img {
    min-height: 0;
  }

  .founder-split__content {
    border-left: none;
    border-top: 1px solid var(--color-line);
  }

  .founder-card__scroll {
    max-height: min(52vh, 28rem);
  }
}

/* From the brand — mismo patrón que Founder, texto izquierda / imagen derecha */
.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  box-shadow: var(--shadow);
}

.story-split__media {
  margin: 0;
  min-height: 280px;
  overflow: hidden;
  background: #e8e8e8;
  order: 2;
}

.story-split__media > img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.story-split__content {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.35rem, 3vw, 2rem);
  border-right: 1px solid var(--color-line);
  background: linear-gradient(
    155deg,
    color-mix(in srgb, #fff 88%, var(--color-accent-soft)),
    #fff 62%
  );
}

.story-split__head {
  margin-bottom: 1.15rem;
  max-width: none;
  text-align: left;
}

.story-split__head h2 {
  font-family: var(--font-zen);
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  margin: 0;
  letter-spacing: -0.02em;
}

.brand-quote--split {
  max-width: none;
}

.story-split .quote-tagline {
  font-size: 1.1rem;
}

.story-split__media--brand-cycle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-split__media--brand-cycle .story-split__brand-wrap {
  flex: 1;
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .story-split {
    grid-template-columns: 1fr;
  }

  .story-split__media {
    order: 1;
    align-self: stretch;
    height: auto;
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: 72vh;
  }

  .story-split__media > img {
    min-height: 0;
  }

  .story-split__media--brand-cycle {
    aspect-ratio: auto;
    min-height: min(320px, 58vh);
    max-height: none;
  }

  .story-split__content {
    order: 2;
    border-right: none;
    border-bottom: none;
    border-top: 1px solid var(--color-line);
  }
}

/* Logo + bolso (alternancia) en “From the brand”: visible también en viewport estrecho */
@media (max-width: 899px) {
  .story-split__media--brand-cycle .concept-desktop-logo,
  .story-split__media--brand-cycle .concept-desktop-bag {
    display: block;
  }

  .story-split__media--brand-cycle .story-split__brand-wrap {
    min-height: min(260px, 50vh);
    padding: clamp(0.75rem, 3vw, 1.25rem);
  }

  .story-split__media--brand-cycle .concept-brand-cycle {
    --concept-brand-duration: 10s;
    position: relative;
    width: 100%;
    min-height: min(240px, 48vw);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .story-split__media--brand-cycle .concept-brand-cycle__logo,
  .story-split__media--brand-cycle .concept-brand-cycle__bag {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    object-fit: contain;
    pointer-events: none;
  }

  .story-split__media--brand-cycle .concept-brand-cycle__logo {
    width: min(92vw, 440px);
    max-height: 130px;
    height: auto;
    animation: concept-brand-logo var(--concept-brand-duration) cubic-bezier(0.42, 0, 0.58, 1) infinite;
  }

  .story-split__media--brand-cycle .concept-brand-cycle__bag {
    width: auto;
    max-width: min(85vw, 360px);
    max-height: min(42vh, 340px);
    height: auto;
    animation: concept-brand-bag var(--concept-brand-duration) cubic-bezier(0.42, 0, 0.58, 1) infinite;
  }
}

body.founder-modal-open {
  overflow: hidden;
}

.founder-text-modal {
  position: fixed;
  inset: 0;
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.founder-text-modal[hidden] {
  display: none !important;
}

.founder-text-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  cursor: pointer;
}

.founder-text-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(40rem, calc(100vw - 2rem));
  max-height: min(88vh, 820px);
  background: var(--color-surface);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.founder-text-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--color-bg);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-ink);
  flex-shrink: 0;
}

.founder-text-modal-title {
  margin: 0 2.75rem 0.85rem 0;
  font-family: var(--font-zen);
  font-size: calc(clamp(1.15rem, 2.5vw, 1.4rem) * 1.1);
  font-weight: 600;
  line-height: 1.25;
  padding-right: 0.25rem;
}

.founder-text-modal-body {
  overflow-y: auto;
  padding-right: 0.25rem;
  -webkit-overflow-scrolling: touch;
}

.founder-text-modal-body p {
  margin: 0 0 1rem;
  color: var(--color-muted);
  font-size: calc(0.98rem * 1.1);
  line-height: 1.65;
}

.founder-text-modal-body p:last-child {
  margin-bottom: 0;
}

.video-root {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: #111;
  min-height: 200px;
}

.video-root.has-video {
  background: #000;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  padding: 2rem 1.5rem;
  color: #ccc;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.video-placeholder p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.brand-quote {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.05rem;
  color: var(--color-muted);
}

.brand-quote p {
  margin: 0 0 1.25rem;
}

.brand-quote p:last-child {
  margin-bottom: 0;
}

.quote-tagline {
  font-weight: 600;
  color: var(--color-ink);
  font-size: 1.1rem;
}

/* —— What’s in the set — 3D-style carousel + detail panel —— */
.pieces-showcase {
  margin-top: 0.35rem;
}

.pieces-showcase__lede {
  text-align: center;
  font-size: 0.92rem;
  color: var(--color-muted);
  margin: 0 auto 1.35rem;
  max-width: 38rem;
  line-height: 1.5;
}

.pieces-showcase__lede--set-rail {
  margin-left: auto;
  margin-right: auto;
}

.pieces-showcase__stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(0.25rem, 2vw, 0.65rem);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.pieces-showcase__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
  flex-shrink: 0;
  z-index: 2;
}

.pieces-showcase__arrow:hover {
  background: var(--color-bg);
  border-color: #ccc;
}

.pieces-showcase__arrow:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 2px;
}

.pieces-showcase__viewport {
  overflow: hidden;
  padding: 1.5rem 0 2.25rem;
  position: relative;
  perspective: 1400px;
  perspective-origin: 50% 40%;
  outline: none;
  touch-action: pan-y pinch-zoom;
}

.pieces-showcase__viewport:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.pieces-showcase__track {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

.pieces-showcase__slide {
  flex: 0 0 min(300px, 82vw);
  width: min(300px, 82vw);
  margin: 0 8px;
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}

.pieces-showcase__slide-inner {
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  transform-origin: center center;
  will-change: transform;
}

.pieces-showcase__slide.is-active .pieces-showcase__slide-inner {
  box-shadow: 0 20px 50px rgba(13, 13, 13, 0.12);
}

.pieces-showcase__slide:not(.is-active) .pieces-showcase__slide-inner {
  filter: saturate(0.92);
}

.piece-card {
  margin: 0;
  padding: 0.85rem 1rem 1.15rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pieces-showcase__slide .piece-card {
  padding: 0.65rem 0.75rem 0.75rem;
}

.pieces-showcase__slide .piece-card:hover {
  border-color: var(--color-line);
  box-shadow: none;
}

.pieces-showcase__slide.is-active .piece-card {
  border-color: color-mix(in srgb, var(--color-accent) 40%, var(--color-line));
}

/* Specs live in the detail panel; keep in DOM for cloning / screen readers via panel */
.pieces-showcase__slide .piece-card__name,
.pieces-showcase__slide .piece-card__specs {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pieces-showcase__slide .piece-card__media {
  max-height: none;
  aspect-ratio: 3 / 4;
  height: min(300px, 48vh);
  margin-bottom: 0;
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Center slide: +15% image height to reveal more garment detail */
.pieces-showcase__slide.is-active .piece-card__media {
  height: min(345px, 55.2vh);
}

.pieces-showcase__slide.is-active .piece-card__media img {
  object-position: center 12%;
}

.pieces-showcase__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.pieces-showcase__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #c4c4c4;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.pieces-showcase__dot.is-active {
  background: var(--color-ink);
  transform: scale(1.2);
}

.pieces-showcase__dot:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 2px;
}

.pieces-showcase__detail {
  width: 100%;
  max-width: min(900px, 100%);
  margin: 0 auto;
  padding: 1.35rem clamp(1rem, 3vw, 1.75rem);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(1.25rem, 4vw, 2.25rem);
  row-gap: 0.75rem;
  align-items: start;
}

.pieces-showcase__detail h3 {
  grid-column: 1 / -1;
  font-family: var(--font-zen);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.pieces-showcase__detail .piece-card__specs {
  grid-column: 1 / -1;
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem clamp(1rem, 3vw, 2rem);
}

@media (max-width: 560px) {
  .pieces-showcase__detail {
    grid-template-columns: 1fr;
  }

  /* Móvil: SPECS en 2 columnas (Style code / Description | Sizes / Fabric…) */
  .pieces-showcase__detail .piece-card__specs {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.55rem 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pieces-showcase__track,
  .pieces-showcase__slide-inner {
    transition-duration: 0.01ms;
  }
}

.piece-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.45rem;
}

.piece-card__media {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: clamp(150px, 22vw, 210px);
  margin: 0 0 0.65rem;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: #e8e6e6;
  flex-shrink: 0;
}

.piece-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.piece-card__media--bag {
  background: linear-gradient(180deg, #f2f2f2, #e8e8e8);
}

.piece-card__media--bag img {
  object-fit: contain;
  object-position: center;
}

.piece-card__name {
  font-size: 1.02rem;
  margin: 0 0 0.65rem;
  line-height: 1.25;
  font-family: var(--font-zen);
}

.piece-card__specs {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.piece-card__spec {
  margin: 0;
}

.piece-card__spec dt {
  margin: 0 0 0.12rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 0.85;
}

.piece-card__spec dd {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--color-muted);
}

.piece-card--bag {
  border-width: 2px;
  border-color: var(--color-ink);
  background: var(--color-surface);
}

.retail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.retail-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: var(--color-bg);
}

.retail-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.retail-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.retail-card a {
  color: var(--color-accent);
  font-weight: 600;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 640px;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
}

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: var(--color-ink);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

@media (min-width: 960px) {
  #how-it-works .section-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  #how-it-works .steps {
    margin-left: auto;
    margin-right: auto;
  }
}

.cta-section {
  background: linear-gradient(165deg, #121212 0%, #1e1628 55%, #121212 100%);
  color: #ececec;
}

.cta-inner {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 768px) {
  .cta-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .cta-copy {
    padding-top: clamp(5.4rem, 12vh, 7rem);
  }
}

.cta-copy-logo-white {
  display: block;
  width: min(260px, 82%);
  max-width: 100%;
  height: auto;
  margin: 0 auto 1.35rem;
}

.cta-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  margin: 0 0 0.75rem;
  color: #fff;
}

.cta-copy p {
  margin: 0 0 0.75rem;
  color: color-mix(in srgb, #ececec 82%, transparent);
}

.cta-copy .muted {
  color: color-mix(in srgb, #ececec 65%, transparent);
}

.cta-copy a {
  color: #fff;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: color-mix(in srgb, #fff 6%, transparent);
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, #fff 12%, transparent);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form label span {
  color: color-mix(in srgb, #ececec 88%, transparent);
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, #fff 18%, transparent);
  background: #fff;
  color: var(--color-ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-form .btn-primary {
  margin-top: 0.25rem;
  background: #fff;
  color: var(--color-ink);
}

.contact-form .btn-primary:hover {
  background: #e8e8e8;
}

.site-footer {
  padding: 2.5rem 0;
  background: var(--color-ink);
  color: color-mix(in srgb, #fff 72%, transparent);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand strong {
  color: #fff;
  font-size: 1rem;
}

.footer-brand p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
}

.footer-nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
}

.footer-nav a:hover {
  color: #fff;
}

.copyright {
  flex-basis: 100%;
  margin: 0;
  font-size: 0.78rem;
  color: color-mix(in srgb, #fff 45%, transparent);
}

/* —— Main hero (full-width banner below header) —— */
.main-hero-banner {
  margin: 0;
  padding: 0;
  background: var(--color-ink);
  border-bottom: 1px solid var(--color-line);
}

.main-hero-banner__frame {
  position: relative;
  width: 100%;
  max-width: min(1920px, 100%);
  margin-inline: auto;
  line-height: 0;
}

.main-hero-banner__frame img {
  width: 100%;
  height: auto;
  display: block;
}

.main-hero-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: clamp(5.5vh, 9.5vh, 16vh);
  padding-right: clamp(1.25rem, 5vw, 4rem);
  padding-bottom: clamp(1.25rem, 5vw, 4rem);
  padding-left: clamp(2.75rem, 11vw, 8rem);
  pointer-events: none;
}

.story-split__media--brand-cycle .concept-brand-cycle__logo {
  filter: invert(1);
}

.story-split__media--brand-cycle .concept-brand-cycle__bag {
  transform: translate(-50%, -50%) scale(1.3);
}

.main-hero-banner__title {
  margin: 0;
  text-align: left;
  font-family: var(--font-zen);
  font-weight: 300;
  font-size: clamp(1.6rem, 6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0.04em;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow:
    0 2px 22px rgba(0, 0, 0, 0.42),
    0 1px 2px rgba(0, 0, 0, 0.32);
}

.lookbook-section {
  padding-top: clamp(2rem, 4vw, 2.8rem);
  padding-bottom: clamp(2rem, 4vw, 2.8rem);
  background: #dfcfd3;
  border-bottom: 1px solid var(--color-line);
}

.lookbook-title {
  font-size: clamp(1.9rem, 5.2vw, 3.05rem);
}

.lookbook-subtitle {
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: clamp(0.82rem, 1.8vw, 0.98rem);
  color: color-mix(in srgb, var(--color-ink) 70%, #555);
}

.lookbook-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem;
  align-items: center;
}

.lookbook-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: #fff;
  box-shadow: var(--shadow);
}

.lookbook-slider__track {
  display: flex;
  transition: transform 0.5s ease;
}

.lookbook-slider__slide {
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #fff;
}

.lookbook-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
}

.lookbook-slider__slide img:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 2px;
}

body.lookbook-modal-open {
  overflow: hidden;
}

.lookbook-modal {
  position: fixed;
  inset: 0;
  z-index: 5300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.6rem, 2vw, 1rem);
}

.lookbook-modal[hidden] {
  display: none !important;
}

.lookbook-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.82);
}

.lookbook-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 96vw);
  max-height: 94vh;
  border-radius: 14px;
  background: #0f0f11;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.35rem 0.65rem 0.85rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.lookbook-modal__close {
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(20, 20, 22, 0.75);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lookbook-modal__counter {
  margin: 0 0 0.65rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.lookbook-modal__viewport {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.45rem;
}

.lookbook-modal__image {
  width: 100%;
  max-height: min(80vh, calc(100dvh - 8.5rem));
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.lookbook-modal__arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(20, 20, 22, 0.74);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 768px) {
  .lookbook-modal__panel {
    width: 100%;
    border-radius: 12px;
    padding: 2.55rem 0.25rem 0.65rem;
  }

  .lookbook-modal__viewport {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .lookbook-modal__arrow {
    width: 42px;
    height: 42px;
    justify-self: center;
  }

  .lookbook-modal__image {
    max-height: min(76vh, calc(100dvh - 11rem));
  }
}

.lookbook-slider__arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  color: var(--color-ink);
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lookbook-slider__arrow:hover {
  background: var(--color-bg);
}

.lookbook-slider__dots {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lookbook-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid #bfbfbf;
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.lookbook-slider__dot.is-active {
  background: var(--color-ink);
  border-color: var(--color-ink);
}

@media (max-width: 768px) {
  .lookbook-slider {
    grid-template-columns: auto auto;
    grid-template-areas:
      "viewport viewport"
      "prev next";
    justify-content: center;
    column-gap: 1.35rem;
    row-gap: 0.65rem;
  }

  .lookbook-slider__viewport {
    grid-area: viewport;
  }

  .lookbook-slider [data-lookbook-prev] {
    grid-area: prev;
    justify-self: end;
  }

  .lookbook-slider [data-lookbook-next] {
    grid-area: next;
    justify-self: start;
  }

  .lookbook-slider__arrow {
    width: 38px;
    height: 38px;
  }
}

/* —— Concept: vertical video + story (above product hero) —— */
.concept-section {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-line);
}

.concept-inner {
  max-width: min(1100px, 92vw);
  margin-inline: auto;
}

.concept-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}

.concept-intro {
  margin: 0 0 0.5rem;
  font-family: var(--font-zen);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--color-muted);
}

.concept-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.concept-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-zen);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.concept-head .concept-title {
  font-size: clamp(1.9rem, 5.2vw, 3.05rem);
  font-weight: 600;
  margin: 0 0 0.65rem;
  line-height: 1.1;
}

.concept-sub {
  margin: 0;
  font-size: 0.98rem;
}

.concept-head .concept-sub {
  max-width: 32rem;
  margin-inline: auto;
  line-height: 1.5;
}

.concept-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

.concept-split-media {
  justify-self: center;
  width: 100%;
  max-width: 420px;
}

.concept-vertical-root.video-root {
  min-height: 0;
}

.concept-vertical-root {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(82vh, 760px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, #fff 12%, transparent);
  background: #0a0a0a;
  box-shadow: var(--shadow);
  /* “Cover”: ancho del iframe = 100% × (ratio_embed / ratio_marco). Drive 16:9 → ancho > 100%, se recorta a los lados. Vídeo 9:16: 9 y 16 abajo → 100% */
  --concept-shell-w: 9;
  --concept-shell-h: 16;
  --concept-embed-w: 16;
  --concept-embed-h: 9;
  /* Zoom >1 recorta el marco del reproductor (p. ej. bandas negras laterales en Drive). Ajusta si recorta de más */
  --concept-iframe-zoom: 1.18;
}

.concept-vertical-root .video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  margin: 0;
  max-width: none;
}

.concept-vertical-root.has-video .video-frame {
  position: absolute;
  inset: 0;
  padding-bottom: 0;
  height: 100%;
  overflow: hidden;
}

/* Cover + zoom: llena el marco y amplía el iframe para ocultar bandas del reproductor embebido */
.concept-vertical-root.has-video:not(.has-video-native) .video-frame iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(var(--concept-iframe-zoom, 1));
  transform-origin: center center;
  border: 0;
  height: 100%;
  width: calc(
    100% * var(--concept-embed-w) / var(--concept-embed-h) * var(--concept-shell-h) /
      var(--concept-shell-w)
  );
  max-width: none;
}

/* MP4 local: sin zoom; object-fit cubre el marco 9:16 */
.concept-vertical-root.has-video-native .video-native-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.concept-vertical-root.has-video-native .concept-video-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #000;
}

.concept-story-card {
  width: 100%;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--color-accent) 18%, #fff),
    #fff 55%
  );
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

/* Misma escala que .section-head h2 / .story-split__head h2 (cabeceras de sección) */
.concept-story-heading {
  margin: 0 0 1rem;
  font-family: var(--font-zen);
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.concept-story-prose {
  margin: 0;
  font-family: var(--font-zen);
  font-size: clamp(1.24rem, 2.47vw, 1.37rem);
  /* Zen Antique Soft solo publica peso 400; el 300 lo interpola el motor para un trazo más fino */
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.65;
  color: var(--color-ink);
}

.story-kicker {
  margin: 0;
  font-family: var(--font-zen);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.story-lead {
  margin: 0;
  font-family: var(--font-zen);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-ink);
}

.story-bullets {
  margin: 0;
  padding-left: 1.1rem;
  font-family: var(--font-zen);
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.story-bullets li {
  margin-bottom: 0.35rem;
}

/* Logo + bolso (desktop): alternancia con fundido suave; ~4s por imagen + cruce largo */
.concept-desktop-logo,
.concept-desktop-bag {
  display: none;
}

@keyframes concept-brand-logo {
  0%,
  40% {
    opacity: 1;
  }
  50%,
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes concept-brand-bag {
  0%,
  40% {
    opacity: 0;
  }
  50%,
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (min-width: 900px) {
  .concept-split {
    grid-template-columns: minmax(240px, min(38vw, 400px)) minmax(0, 1fr);
    gap: clamp(1.5rem, 3.5vw, 2.75rem);
    align-items: start;
  }

  .concept-split-media {
    justify-self: start;
    max-width: none;
    align-self: start;
  }

  .concept-vertical-root {
    max-width: 400px;
  }

  .concept-split-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .concept-copy-logo-wrap {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .concept-brand-cycle {
    --concept-brand-duration: 10s;
    position: relative;
    width: 100%;
    min-height: clamp(260px, 36vw, 350px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .concept-brand-cycle__logo,
  .concept-brand-cycle__bag {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    object-fit: contain;
    pointer-events: none;
  }

  .concept-desktop-logo,
  .concept-desktop-bag {
    display: block;
  }

  .concept-brand-cycle__logo {
    width: min(440px, 96%);
    max-width: 480px;
    height: auto;
    max-height: min(240px, 32vw);
    animation: concept-brand-logo var(--concept-brand-duration)
      cubic-bezier(0.42, 0, 0.58, 1) infinite;
  }

  .concept-brand-cycle__bag {
    width: auto;
    max-width: min(400px, 96%);
    height: auto;
    max-height: min(350px, 44vw);
    animation: concept-brand-bag var(--concept-brand-duration)
      cubic-bezier(0.42, 0, 0.58, 1) infinite;
  }

  .concept-story-card {
    flex-shrink: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  @media (min-width: 900px) {
    .concept-brand-cycle__logo,
    .concept-brand-cycle__bag {
      animation: none !important;
    }

    .concept-brand-cycle__logo {
      opacity: 1;
    }

    .concept-brand-cycle__bag {
      opacity: 0;
      visibility: hidden;
    }
  }

  .story-split__media--brand-cycle .concept-brand-cycle__logo,
  .story-split__media--brand-cycle .concept-brand-cycle__bag {
    animation: none !important;
  }

  .story-split__media--brand-cycle .concept-brand-cycle__logo {
    opacity: 1;
  }

  .story-split__media--brand-cycle .concept-brand-cycle__bag {
    opacity: 0;
    visibility: hidden;
  }
}

/* —— Interactive hero (9 pieces) —— */
.interactive-hero {
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.interactive-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

/* Phase 1 hero: mobile order = headline → bag slider → lead + CTAs (DOM order). */
.interactive-hero-head {
  max-width: 40rem;
}

/* Headline line break: solo móvil; en desktop el flujo es una sola línea (salvo wrap natural). */
@media (min-width: 960px) {
  .interactive-hero-head .title-break--mobile-only {
    display: none;
  }
}

@media (min-width: 960px) {
  .interactive-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 504px);
    grid-template-rows: auto auto;
    column-gap: 2.5rem;
    /* Tight stack headline → lead (same visual rhythm as former single .hero-copy block). */
    row-gap: 1rem;
    align-items: center;
  }

  /* Desktop: same two-column layout as before — text column (head + copy), image right. */
  .interactive-hero-head {
    grid-column: 1;
    grid-row: 1;
  }

  .interactive-hero-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .interactive-hero-visual {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
  }
}

.interactive-hero-visual {
  width: 100%;
}

/* Slider de concepto del bolso (hero Phase 1 — 3 fotos, autoplay en JS) */
.bag-concept-slider-wrap {
  width: 100%;
}

.bag-concept-slider {
  width: 100%;
}

.bag-concept-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  max-height: min(calc(72vh * 0.9 * 1.2), calc(640px * 0.9 * 1.2));
  margin-inline: auto;
  width: 100%;
  position: relative;
}

/* Phase 1 hero: móvil — marco del carrusel ~20% más estrecho para dar aire al copy y CTAs debajo */
@media (max-width: 959px) {
  .interactive-hero .bag-concept-slider__viewport {
    width: 80%;
  }
}

.bag-concept-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.bag-concept-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.bag-concept-slider__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.bag-concept-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bag-concept-slider__dots {
  display: none; /* oculto: la navegación va sincronizada con el carrusel de texto */
}

.bag-concept-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #ccc;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.bag-concept-slider__dot.is-active {
  background: var(--color-ink);
  transform: scale(1.15);
}

.bag-concept-slider__dot:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 2px;
}

.pieces-showcase__stage--set-carousel {
  max-width: 504px;
  margin-inline: auto;
}

/* #pieces — móvil: título centrado; carrusel de modelos ~15% más estrecho y centrado */
@media (max-width: 959px) {
  #pieces .section-head h2 {
    text-align: center;
  }

  #pieces .pieces-showcase__col--carousel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #pieces .pieces-showcase__stage--set-carousel {
    width: min(428px, 85%);
    max-width: none;
    margin-inline: auto;
  }

  /* Instrucciones encima del carrusel; separación del párrafo del section-head */
  #pieces .pieces-showcase__layout > .pieces-showcase__lede--set-rail {
    margin-top: clamp(1.25rem, 4vw, 1.75rem);
    margin-bottom: 1rem;
  }
}

.pieces-showcase__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.pieces-showcase__col--carousel,
.pieces-showcase__col--specs {
  min-width: 0;
}

@media (min-width: 960px) {
  #pieces .container {
    position: relative;
  }

  #pieces .section-head {
    position: absolute;
    right: 0;
    top: calc(clamp(11rem, 25vh, 15.5rem) - 200px);
    width: calc((100% - clamp(1.75rem, 3vw, 2.75rem)) / 2);
    max-width: none;
    margin: 0;
    text-align: center;
    z-index: 2;
  }

  #pieces .section-head p {
    max-width: 36rem;
    margin-inline: auto;
  }

  /* DOM: lede, carousel, specs — en desktop el lede va abajo a la derecha (debajo de caption+SPECS) */
  .pieces-showcase__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "carousel specs"
      "carousel lede";
    column-gap: clamp(1.75rem, 3vw, 2.75rem);
    row-gap: clamp(1rem, 2vw, 1.35rem);
    align-items: start;
  }

  .pieces-showcase__col--carousel {
    grid-area: carousel;
  }

  .pieces-showcase__col--specs {
    grid-area: specs;
    margin-top: clamp(15rem, 36vh, 22rem);
  }

  .pieces-showcase__layout > .pieces-showcase__lede--set-rail {
    grid-area: lede;
    margin: 0;
    max-width: none;
  }

  .pieces-showcase__col--carousel .pieces-showcase__stage--set-carousel {
    margin-inline: 0;
    max-width: 100%;
  }

  .pieces-showcase__col--specs .pieces-showcase__detail {
    margin-inline: 0;
    max-width: none;
    position: sticky;
    top: 1.25rem;
  }
}

.pieces-showcase-cards-source {
  display: none !important;
}

.hero-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.35rem;
  align-items: center;
}

/* “What’s in the set”: flechas bajo la imagen, a los lados de los dots */
.hero-carousel--set-piece {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.hero-carousel--set-piece .hero-carousel-viewport {
  width: 100%;
  max-width: 100%;
}

.hero-carousel-nav-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 0.35rem;
  margin-top: 0.75rem;
  width: 100%;
}

/* Flechas ~30% más grandes; alineadas hacia el centro (mitad de camino respecto a los bordes y los dots) */
.hero-carousel-nav-row .hero-carousel-arrow {
  width: 52px;
  height: 52px;
  font-size: 1.755rem;
}

.hero-carousel-nav-row .hero-carousel-arrow:first-of-type {
  justify-self: end;
}

.hero-carousel-nav-row .hero-carousel-arrow:last-of-type {
  justify-self: start;
}

.hero-carousel-nav-row .hero-carousel-dots-wrap {
  grid-column: 2;
  justify-self: center;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-carousel-nav-row .hero-carousel-dots {
  margin-top: 0;
}

.hero-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  max-height: min(calc(72vh * 1.2), calc(640px * 1.2));
  margin-inline: auto;
  width: 100%;
}

.hero-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 100%;
}

.hero-carousel-hit {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: #f0f0f0;
  cursor: zoom-in;
}

.hero-carousel-hit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-carousel-hit:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 2px;
}

.hero-carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.hero-carousel-arrow:hover {
  background: var(--color-bg);
  border-color: #ccc;
}

.hero-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #ccc;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.hero-dot.is-active {
  background: var(--color-ink);
  transform: scale(1.15);
}

.hero-caption {
  margin-top: 0.85rem;
  text-align: center;
}

.hero-caption-name {
  margin: 0 auto;
  max-width: min(100%, 26rem);
  font-family: var(--font-zen);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  text-wrap: balance;
}

.hero-caption-hint {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
}

.hero-thumbs-wrap {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
  text-align: center;
}

/* Reservado: tira “Choose a piece to preview” (#piece-preview-thumbnail-rail). Quitar clase --inactive y aria-hidden en index.html para reactivar. */
.piece-preview-thumbnail-rail--inactive {
  display: none !important;
}

.hero-thumbs-title {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.hero-thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  margin-inline: auto;
}

.hero-thumb {
  position: relative;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #ececec;
  /* ~30% más grande que 64px; formato vertical para ver mejor la figura */
  width: 84px;
  flex: 0 0 auto;
  aspect-ratio: 3 / 4;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.hero-thumb-label {
  position: absolute;
  bottom: 2px;
  left: 2px;
  right: 2px;
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
  background: color-mix(in srgb, #fff 88%, transparent);
  color: var(--color-ink);
  border-radius: 4px;
  padding: 1px 2px;
}

.hero-thumb.is-active {
  border-color: var(--color-ink);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

body.hero-modal-open {
  overflow: hidden;
}

.hero-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero-modal[hidden] {
  display: none !important;
}

.hero-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  cursor: pointer;
}

.hero-modal-panel {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: min(960px, calc(100vw - 2rem));
  max-height: min(92vh, 900px);
  background: var(--color-surface);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.25rem 1rem 1rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.hero-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--color-bg);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-ink);
}

.hero-modal-title {
  margin: 0 2.5rem 0.35rem 0;
  font-family: var(--font-zen);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  padding-right: 0.5rem;
  max-width: min(36rem, calc(100vw - 5rem));
  line-height: 1.25;
}

.hero-modal-counter {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.hero-modal-viewport {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 1;
  min-height: 0;
  width: max-content;
  max-width: 100%;
}

.hero-modal-window {
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: #eaeaea;
  height: min(78vh, 720px);
  aspect-ratio: 3 / 4;
  width: auto;
  max-width: min(calc((min(78vh, 720px) * 3) / 4), calc(100vw - 7rem));
  max-height: min(78vh, 720px);
}

.hero-modal-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-modal-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.hero-modal-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f5f5f5;
}

.hero-modal-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 720px) {
  .site-nav {
    left: max(1rem, env(safe-area-inset-left));
    right: max(1rem, env(safe-area-inset-right));
    width: auto;
    max-height: min(75vh, calc(100dvh - var(--header-h) - 1rem));
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }

  .nav-list a:hover {
    background: var(--color-bg);
  }

  .banner-download {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1rem;
  }

  .banner-download .btn {
    width: 100%;
  }
}

/* Large phone / small tablet: header still shows Trade CTA + menu — keep tap targets without crowding the logo */
@media (max-width: 719px) {
  .header-end {
    gap: 0.25rem;
  }

  .header-trade-cta {
    font-size: 0.8125rem;
    padding: 0.42rem 0.8rem;
  }
}

/* Anchor jumps (#video, #contact, …) land below the sticky header on small screens */
@media (max-width: 899px) {
  html {
    scroll-padding-top: calc(var(--header-h) + 0.65rem);
  }
}

/* —— Floating WhatsApp —— */
.whatsapp-float {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  z-index: 4000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(15, 40, 25, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(15, 40, 25, 0.42);
}

.whatsapp-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.text-link.text-link--whatsapp {
  color: var(--color-ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #25d366;
  text-underline-offset: 0.18em;
}

.text-link.text-link--whatsapp:hover {
  color: #128c7e;
}

/* ========== Mobile & touch: readable type, safe areas, portrait + landscape ========== */

.btn,
.nav-cta,
.nav-toggle,
.whatsapp-float,
.hero-carousel-arrow,
.pieces-showcase__arrow {
  touch-action: manipulation;
}

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  body {
    line-height: 1.62;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  #contact.cta-section {
    padding-bottom: max(3rem, calc(2.5rem + env(safe-area-inset-bottom, 0px)));
  }

  .container {
    width: min(1040px, calc(100vw - 1.5rem));
  }

  .muted,
  .section-head p:not(.concept-intro),
  .retail-card p,
  .steps p,
  .founder-split__head p,
  .founder-card p,
  .cta-copy p,
  .dna-card__copy p,
  .dna-voice__content p {
    font-size: 1rem;
  }

  .concept-intro,
  .eyebrow {
    font-size: max(0.78rem, 11px);
  }

  .concept-head .concept-sub {
    font-size: 1rem;
  }

  .header-trade-cta {
    display: none !important;
  }

  .nav-item--trade {
    display: list-item;
    margin-bottom: 0.35rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-line);
  }

  .nav-item--trade .nav-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    min-height: 44px;
    align-items: center;
    padding: 0.6rem 1rem;
  }

  .main-hero-banner__overlay {
    padding-top: clamp(0.65rem, 8vh, 11vh);
    padding-left: clamp(1rem, 4vw, 1.75rem);
    padding-right: 1rem;
    padding-bottom: 1rem;
  }

  .main-hero-banner__title {
    font-size: clamp(1.32rem, 5.44vw, 2.28rem);
    line-height: 1.06;
  }

  .btn {
    min-height: 48px;
    padding: 0.85rem 1.2rem;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .hero h2 {
    font-size: clamp(1.55rem, 5.5vw, 2.35rem);
  }

  .lead,
  .lead-slider,
  .lead-slider-wrap {
    font-size: 1.05rem;
  }

  .concept-vertical-root {
    max-height: min(70vh, 720px);
  }

  .pieces-showcase__slide {
    flex: 0 0 min(280px, 88vw);
    width: min(280px, 88vw);
  }

  .pieces-showcase__slide .piece-card__media {
    height: min(280px, 50vh);
  }

  .pieces-showcase__slide.is-active .piece-card__media {
    height: min(320px, 58vh);
  }

  .pieces-showcase__detail {
    padding: 1.25rem 1rem;
  }

  .pieces-showcase__detail h3 {
    font-size: clamp(1.15rem, 4vw, 1.25rem);
  }

  .piece-card__spec dt {
    font-size: 0.72rem;
  }

  .piece-card__spec dd {
    font-size: 0.98rem;
  }

  .pieces-showcase__dot {
    width: 14px;
    height: 14px;
  }

  .pieces-showcase__dots {
    gap: 0.55rem;
    margin-bottom: 1.5rem;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

  .hero-carousel-dots {
    gap: 0.45rem;
  }

  .hero-caption-hint {
    font-size: 0.92rem;
  }

  .hero-thumbs-title {
    font-size: 0.78rem;
  }

  .hero-carousel-arrow,
  .pieces-showcase__arrow {
    min-width: 44px;
    min-height: 44px;
    font-size: 1.5rem;
  }

  .hero-carousel-nav-row .hero-carousel-arrow {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    font-size: 1.755rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-brand p,
  .footer-nav a {
    font-size: max(0.9rem, 14px);
  }

  .copyright {
    font-size: max(0.8rem, 12px);
  }

  .whatsapp-float {
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    width: 54px;
    height: 54px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .store-why__list li,
  .collection-overview__list > li {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .retail-opportunity__dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
  }

  .bag-concept-slider__viewport {
    max-height: min(calc(68vh * 1.2), calc(100vw * 1.35));
  }
}

/* Short viewports: phones in landscape, compact height */
@media (max-height: 520px) and (orientation: landscape) {
  :root {
    --header-h: 54px;
  }

  .logo-img {
    height: 42px !important;
    max-width: 160px !important;
  }

  .logo-badge {
    font-size: 0.65rem;
    padding: 0.28rem 0.5rem;
  }

  .main-hero-banner__overlay {
    padding-top: 0.35rem;
    padding-left: 1rem;
    padding-right: 0.75rem;
    align-items: flex-start;
  }

  .main-hero-banner__title {
    font-size: clamp(0.88rem, 4.4vh, 1.48rem);
    line-height: 1.05;
    letter-spacing: 0.03em;
  }

  .section {
    padding: 1.35rem 0;
  }

  .concept-vertical-root {
    max-height: min(88vh, 900px);
  }

  .interactive-hero {
    padding-bottom: 1rem;
  }

  .hero {
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
  }

  .story-split__media:not(.story-split__media--brand-cycle),
  .founder-split__media {
    max-height: min(55vh, 420px);
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
    right: max(0.5rem, env(safe-area-inset-right, 0px));
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* Wide but short (e.g. landscape tablet): keep hero title readable */
@media (min-width: 641px) and (max-height: 500px) {
  .main-hero-banner__title {
    font-size: clamp(1.2rem, 3.2vh, 2.4rem);
  }

  .main-hero-banner__overlay {
    padding-top: clamp(0.5rem, 4vh, 2rem);
  }
}
