/* APROP - hoja de estilos principal. Tema claro único (sin modo oscuro). */

@font-face { font-family: 'Bricolage Grotesque'; font-weight: 200 800; font-display: swap; src: url('../fonts/bricolage-var-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Bricolage Grotesque'; font-weight: 200 800; font-display: swap; src: url('../fonts/bricolage-var-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Manrope'; font-weight: 400; font-display: swap; src: url('../fonts/manrope-400.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-weight: 500; font-display: swap; src: url('../fonts/manrope-500.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-weight: 600; font-display: swap; src: url('../fonts/manrope-600.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-weight: 700; font-display: swap; src: url('../fonts/manrope-700.woff2') format('woff2'); }

:root {
  --bg: #f4f4f2;
  --surface: #ffffff;
  --surface-2: #ebebe8;
  --ink: #141414;
  --ink-2: #3a3a38;
  --muted: #5b5b58;
  --line: #dcdcd8;
  --line-strong: #b9b9b4;
  --accent: #1e3fae;
  --accent-ink: #172f85;
  --accent-tint: #e8ecf8;
  --accent-tint-2: #d5dcf3;
  --ok: #1f6b45;
  --ok-tint: #e2f1e8;
  --err: #a8261f;
  --err-tint: #fbe8e6;

  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r-ctrl: 8px;
  --r-card: 14px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 20, 20, .05), 0 2px 8px rgba(20, 20, 20, .05);
  --shadow-md: 0 8px 28px rgba(20, 20, 20, .10);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --container: 1280px;
  --gutter: clamp(1rem, 4vw, 2.25rem);

  --z-header: 50;
  --z-banner: 60;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-ink); }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-optical-sizing: auto; line-height: 1.06; letter-spacing: -0.025em; margin: 0 0 .55em; color: var(--ink); font-weight: 600; text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 1.4rem + 3vw, 4rem); }
h2 { font-size: clamp(1.8rem, 1.25rem + 1.9vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem); letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
.lead { font-size: 1.15rem; color: var(--ink-2); max-width: 60ch; text-wrap: pretty; }
.muted { color: var(--muted); }
.ph { flex: none; font-size: 1.15em; line-height: 1; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 100; border-radius: var(--r-ctrl); }
.skip-link:focus { left: 8px; }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.container--narrow { width: min(820px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--surface { background: var(--surface); border-block: 1px solid var(--line); }
.section--ink { background: var(--ink); color: #e9e9e6; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--ink-2); font-size: 1.08rem; text-wrap: pretty; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; max-width: none; flex-wrap: wrap; }
.section-head--row > div { max-width: 62ch; }
.section-head--row .btn { margin-bottom: .6rem; }
.eyebrow { font-family: var(--font-display); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: .8rem; }
.prose { max-width: 68ch; }
.prose p, .prose li { color: var(--ink-2); font-size: 1.04rem; }
.prose h2 { margin-top: 2em; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.prose h3 { margin-top: 1.6em; }
.prose strong { color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.8rem; font-size: .95rem; }
.prose th, .prose td { text-align: left; padding: .7rem .8rem; vertical-align: top; }
.prose thead th { background: var(--surface-2); font-family: var(--font-display); font-weight: 600; }
.prose tbody tr:nth-child(even) td { background: var(--surface); }
.table-wrap { overflow-x: auto; margin: 1rem 0 2rem; -webkit-overflow-scrolling: touch; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.45rem; border-radius: var(--r-ctrl); border: 1.5px solid transparent;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; line-height: 1.1; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s var(--ease), background-color .2s, border-color .2s, color .2s;
}
.btn:active { transform: translateY(1px) scale(.985); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-ink); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #2a2a2a; color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--outline:hover { border-color: var(--ink); color: var(--ink); background: var(--surface); }
.btn--light { background: var(--surface); color: var(--ink); }
.btn--light:hover { background: #fff; color: var(--accent-ink); }
.btn--sm { padding: .6rem 1rem; font-size: .92rem; }
.btn--lg { padding: 1rem 1.75rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }
.link-arrow { font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); }
.link-arrow .ph { transition: transform .2s var(--ease); }
.link-arrow:hover .ph { transform: translateX(3px); }
.linklike { background: none; border: 0; padding: 0; color: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

/* ---------- Barra superior + cabecera ---------- */
.topbar { background: var(--ink); color: #d6d6d2; font-size: .84rem; }
.topbar__in { display: flex; justify-content: center; gap: 2.5rem; padding-block: .45rem; }
.topbar p { margin: 0; white-space: nowrap; }
@media (max-width: 760px) { .topbar__hide-sm { display: none; } }

.site-header { position: sticky; top: 0; z-index: var(--z-header); background: rgba(244, 244, 242, .92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header__in { display: flex; align-items: center; gap: 2rem; min-height: 68px; }
@media (min-width: 1024px) {
  .site-header__in { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
  .site-header__in .nav { justify-self: center; flex: none; }
  .site-header__in .site-header__actions { justify-self: end; margin-left: 0; }
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 104px; height: auto; }
.nav { flex: 1; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .2rem; }
.nav a { display: block; padding: .55rem .8rem; color: var(--ink-2); text-decoration: none; font-weight: 500; border-radius: var(--r-ctrl); font-size: .98rem; }
.nav a:hover { color: var(--ink); background: rgba(20, 20, 20, .05); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; box-shadow: inset 0 -2px 0 var(--accent); border-radius: 0; }
.nav__mobile-only { display: none; }
.site-header__actions { display: flex; align-items: center; gap: .6rem; margin-left: auto; }
.header-link { display: inline-flex; align-items: center; gap: .35rem; color: var(--ink-2); text-decoration: none; font-weight: 500; padding: .5rem .6rem; font-size: .95rem; }
.header-link:hover { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--line-strong); border-radius: var(--r-ctrl); width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer; font-size: 1.4rem; }
.nav-toggle__close { display: none; }
.nav.is-open ~ .site-header__actions .nav-toggle__open { display: none; }
.nav.is-open ~ .site-header__actions .nav-toggle__close { display: block; }

@media (max-width: 1023px) {
  .site-header__in { gap: 1rem; }
  .nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); display: none; padding: .75rem var(--gutter) 1.25rem; }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav a { padding: .85rem .5rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.05rem; }
  .nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--accent); padding-left: .9rem; }
  .nav__mobile-only { display: block; }
  .nav-toggle { display: inline-flex; }
  .header-link { display: none; }
}
@media (max-width: 480px) {
  .site-header__actions .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4.5rem); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero__copy h1 { margin-bottom: .5em; max-width: 16ch; }
.hero__copy .lead { font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); margin-bottom: 1.8rem; max-width: 40ch; }
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero__media { position: relative; }
.hero__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-card); }
.hero__media::after { content: ''; position: absolute; inset: auto -12px -12px auto; width: 38%; height: 38%; border-radius: var(--r-card); background: var(--accent-tint-2); z-index: -1; }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero__copy h1 { max-width: none; }
  .hero__media { order: -1; }
  .hero__media img { aspect-ratio: 4 / 4.4; }
  .hero__media::after { display: none; }
}

/* Hero interior (páginas informativas) */
.page-hero { padding-block: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { margin-bottom: 0; }
.page-hero--media { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: end; }
.page-hero--media img { border-radius: var(--r-card); aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
@media (max-width: 860px) { .page-hero--media { grid-template-columns: 1fr; } }

.crumbs { font-size: .88rem; margin-bottom: 1.2rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; padding: 0; margin: 0; color: var(--muted); }
.crumbs li + li::before { content: '/'; margin-right: .35rem; color: var(--line-strong); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }

/* ---------- Díptico de categorías ---------- */
.diptych { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 2rem); align-items: start; }
.diptych__item { position: relative; display: block; border-radius: var(--r-card); overflow: hidden; color: #fff; text-decoration: none; isolation: isolate; }
.diptych__item img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .8s var(--ease); }
.diptych__item:nth-child(2) { margin-top: clamp(1.5rem, 5vw, 4.5rem); }
.diptych__item:nth-child(2) img { aspect-ratio: 4 / 4.6; }
.diptych__item:hover img { transform: scale(1.03); }
.diptych__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 20, 20, .72) 0%, rgba(20, 20, 20, .15) 45%, transparent 70%); }
.diptych__body { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(1.25rem, 3vw, 2.25rem); z-index: 1; }
.diptych__body h2 { color: #fff; font-size: clamp(2rem, 1.5rem + 2vw, 3.2rem); margin-bottom: .25em; }
.diptych__body p { color: rgba(255, 255, 255, .85); margin: 0 0 1rem; max-width: 34ch; }
.diptych__body .btn { color: var(--ink); }
@media (max-width: 640px) {
  .diptych { grid-template-columns: 1fr; }
  .diptych__item:nth-child(2) { margin-top: 0; }
  .diptych__item img, .diptych__item:nth-child(2) img { aspect-ratio: 4 / 4.2; }
}

/* ---------- Tarjetas de producto ---------- */
.pgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.75rem) clamp(.9rem, 1.6vw, 1.4rem); }
.pgrid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pgrid--feature .pcard--lg { grid-column: span 2; grid-row: span 2; }
.pcard { display: flex; flex-direction: column; min-width: 0; }
.pcard__media { position: relative; display: block; border-radius: var(--r-card); overflow: hidden; background: var(--surface-2); }
.pcard__media img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; transition: transform .7s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.035); }
.pcard__badge { position: absolute; top: .75rem; left: .75rem; background: var(--surface); color: var(--ink); font-family: var(--font-display); font-size: .78rem; font-weight: 600; padding: .3rem .6rem; border-radius: var(--r-ctrl); z-index: 1; }
.pcard__body { padding: .9rem .15rem 0; }
.pcard__cat { font-size: .82rem; color: var(--muted); margin: 0 0 .15rem; }
.pcard__title { font-size: 1.05rem; margin: 0 0 .35rem; font-weight: 600; }
.pcard--lg .pcard__title { font-size: 1.3rem; }
.pcard__title a { color: var(--ink); text-decoration: none; }
.pcard__title a:hover { color: var(--accent); }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.pcard__price { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
.pcard__colors { display: inline-flex; gap: .3rem; }
.swatch { width: 12px; height: 12px; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12); }
@media (max-width: 1023px) {
  .pgrid, .pgrid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .pgrid, .pgrid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pgrid--feature .pcard--lg { grid-column: span 2; grid-row: auto; }
  .pgrid--feature .pcard--lg .pcard__media img { aspect-ratio: 4 / 4.2; }
}

/* Filtros (chips) */
.chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.chip { display: inline-flex; align-items: center; padding: .5rem 1rem; border-radius: var(--r-pill); border: 1.5px solid var(--line-strong); color: var(--ink-2); text-decoration: none; font-weight: 500; font-size: .93rem; background: transparent; transition: border-color .2s, background-color .2s, color .2s; }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-current="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.catalog-count { color: var(--muted); font-size: .92rem; margin: -1rem 0 1.5rem; }

/* ---------- Bento de valores ---------- */
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: minmax(220px, auto); gap: clamp(.9rem, 1.6vw, 1.4rem); }
.bento__cell { border-radius: var(--r-card); padding: clamp(1.4rem, 2.5vw, 2rem); display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; min-width: 0; }
.bento__cell h3 { margin-bottom: .4em; }
.bento__cell p { margin: 0; color: var(--ink-2); text-wrap: pretty; }
.bento__cell--img { padding: 0; grid-row: span 2; }
.bento__cell--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento__cell--img .bento__caption { position: relative; z-index: 1; margin-top: auto; padding: clamp(1.4rem, 2.5vw, 2rem); background: linear-gradient(to top, rgba(20, 20, 20, .78), transparent); color: #fff; }
.bento__cell--img .bento__caption h3, .bento__cell--img .bento__caption p { color: #fff; }
.bento__cell--surface { background: var(--surface); border: 1px solid var(--line); }
.bento__cell--tint { background: var(--accent-tint); }
.bento__cell--accent { background: var(--accent); color: #fff; }
.bento__cell--accent h3, .bento__cell--accent p { color: #fff; }
.bento__cell--accent p { color: rgba(255, 255, 255, .86); }
.bento__cell--ink { background: var(--ink); }
.bento__cell--ink h3 { color: #fff; }
.bento__cell--ink p { color: #cfcfcb; }
.bento__num { font-family: var(--font-display); font-size: clamp(2.4rem, 2rem + 1.5vw, 3.6rem); font-weight: 600; line-height: 1; letter-spacing: -0.03em; margin-bottom: .35rem; }
.bento__cell .ph { font-size: 1.6rem; margin-bottom: auto; color: var(--accent); }
.bento__cell--accent .ph, .bento__cell--ink .ph { color: #fff; }
@media (max-width: 860px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: minmax(190px, auto); }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell--img { grid-row: auto; min-height: 320px; }
}

/* ---------- Lookbook (scroll horizontal) ---------- */
.strip-wrap { position: relative; }
.strip { display: flex; gap: clamp(.9rem, 1.6vw, 1.4rem); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .75rem; scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
.strip > * { flex: 0 0 auto; scroll-snap-align: start; }
.strip figure { margin: 0; width: min(78vw, 360px); }
.strip figure.is-wide { width: min(92vw, 560px); }
.strip img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--r-card); }
.strip figure.is-wide img { aspect-ratio: 3 / 2; }
.strip figcaption { font-size: .9rem; color: var(--muted); margin-top: .6rem; }
.strip figcaption a { color: var(--ink); font-weight: 600; text-decoration: none; }
.strip figcaption a:hover { text-decoration: underline; }
.strip-nav { display: flex; gap: .5rem; }
.strip-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line-strong); background: var(--surface); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: border-color .2s, transform .15s; }
.strip-nav button:hover { border-color: var(--ink); }
.strip-nav button:active { transform: scale(.95); }

/* ---------- Opiniones ---------- */
.quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem) clamp(2rem, 4vw, 4rem); }
.quote { border-top: 2px solid var(--ink); padding-top: 1.25rem; }
.quote p { font-family: var(--font-display); font-size: clamp(1.15rem, 1.05rem + .5vw, 1.45rem); line-height: 1.3; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 1rem; text-wrap: pretty; }
.quote footer { font-size: .92rem; color: var(--muted); }
.quote footer strong { color: var(--ink); font-weight: 600; }
@media (max-width: 720px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- Formulario / bloque de cita ---------- */
.lead-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.lead-split__copy h2 { margin-bottom: .5em; }
.lead-split__copy .lead { margin-bottom: 1.5rem; }
.lead-split__copy img { border-radius: var(--r-card); aspect-ratio: 3 / 2; object-fit: cover; margin-top: 1.75rem; }
.steps { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .9rem; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; color: var(--ink-2); }
.steps li .ph { color: var(--accent); font-size: 1.4rem; margin-top: .1rem; }
.steps li strong { color: var(--ink); display: block; font-family: var(--font-display); font-weight: 600; }
.lead-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(1.4rem, 3vw, 2.25rem); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.1rem; margin-bottom: .5rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .93rem; color: var(--ink); }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line-strong); border-radius: var(--r-ctrl); background: #fff; color: var(--ink); font: inherit; font-size: 1rem; transition: border-color .2s, box-shadow .2s; }
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #7a7a76; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint-2); }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 2.4rem; }
.error { color: var(--err); font-size: .86rem; margin: 0; min-height: 1.1em; }
.is-invalid input, .is-invalid select, .is-invalid textarea { border-color: var(--err); }
.check { margin: .9rem 0; }
.check label { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; font-size: .93rem; color: var(--ink-2); cursor: pointer; }
.check input { width: 18px; height: 18px; margin: .15rem 0 0; accent-color: var(--accent); }
.check .error { margin-left: 1.8rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.privacy-note { font-size: .8rem; color: var(--muted); margin: 1.1rem 0 0; line-height: 1.5; }
.notice { padding: .9rem 1.1rem; border-radius: var(--r-ctrl); margin-bottom: 1.2rem; font-weight: 500; }
.notice--err { background: var(--err-tint); color: var(--err); }
.notice--ok { background: var(--ok-tint); color: var(--ok); }
@media (max-width: 900px) { .lead-split { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ (acordeón) ---------- */
.faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.faq__intro { position: sticky; top: 100px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; cursor: pointer; padding: 1.1rem 2.5rem 1.1rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; position: relative; letter-spacing: -0.01em; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: '+'; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--accent); transition: transform .3s var(--ease); }
.accordion details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.accordion .accordion__body { padding: 0 2.5rem 1.2rem 0; color: var(--ink-2); max-width: 70ch; }
.accordion .accordion__body p:last-child { margin-bottom: 0; }
.faq-group { margin-bottom: clamp(2rem, 4vw, 3rem); }
.faq-group h2 { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.9rem); margin-bottom: .6em; }
@media (max-width: 860px) { .faq { grid-template-columns: 1fr; } .faq__intro { position: static; } }

/* ---------- Journal ---------- */
.posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 2.5vw, 2.25rem); }
.post { display: flex; flex-direction: column; }
.post img { border-radius: var(--r-card); aspect-ratio: 16 / 10; object-fit: cover; width: 100%; transition: transform .7s var(--ease); }
.post a.post__media { display: block; overflow: hidden; border-radius: var(--r-card); }
.post:hover img { transform: scale(1.03); }
.post__meta { font-size: .85rem; color: var(--muted); margin: .9rem 0 .3rem; }
.post h3 { font-size: 1.25rem; margin-bottom: .4em; }
.post h3 a { color: var(--ink); text-decoration: none; }
.post h3 a:hover { color: var(--accent); }
.post p { color: var(--ink-2); margin: 0; font-size: .97rem; }
@media (max-width: 860px) { .posts { grid-template-columns: 1fr; max-width: 560px; } }

.article { padding-block: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem); }
.article__hero img { border-radius: var(--r-card); aspect-ratio: 16 / 9; object-fit: cover; width: 100%; margin: 1.5rem 0 2.5rem; }
.article .prose p { font-size: 1.08rem; line-height: 1.7; }
.article .prose h2 { margin-top: 1.8em; }

/* ---------- Banda de CTA ---------- */
.cta-band { background: var(--ink); color: #e9e9e6; border-radius: var(--r-card); padding: clamp(2rem, 4vw, 3.5rem); display: grid; grid-template-columns: minmax(0, 1.2fr) auto; gap: 2rem; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { margin: 0; color: #cfcfcb; max-width: 50ch; }
.cta-band .btn { color: var(--ink); }
@media (max-width: 720px) { .cta-band { grid-template-columns: 1fr; } }

/* ---------- Ficha de producto ---------- */
.product { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; padding-block: clamp(1rem, 2vw, 2rem) clamp(3rem, 6vw, 5rem); }
.product__gallery { position: sticky; top: 96px; display: grid; grid-template-columns: 1fr; gap: 1rem; }
.product__gallery img { width: 100%; border-radius: var(--r-card); aspect-ratio: 2 / 3; object-fit: cover; }
.product__gallery .product__detail { aspect-ratio: 3 / 2; }
.product__head .pcard__cat { margin-bottom: .25rem; }
.product__head h1 { font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.9rem); margin-bottom: .3em; }
.product__price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: .2rem; }
.product__tax { font-size: .88rem; color: var(--muted); margin-bottom: 1.2rem; }
.product__short { font-size: 1.1rem; color: var(--ink-2); margin-bottom: 1.5rem; text-wrap: pretty; }
.opt-group { margin-bottom: 1.25rem; }
.opt-group__label { font-weight: 600; font-size: .93rem; margin-bottom: .5rem; display: flex; justify-content: space-between; gap: 1rem; }
.opt-group__label a { font-weight: 500; font-size: .88rem; }
.swatches { display: flex; gap: .6rem; flex-wrap: wrap; }
.swatches .swatch-lg { display: inline-flex; align-items: center; gap: .45rem; padding: .4rem .8rem .4rem .45rem; border: 1.5px solid var(--line-strong); border-radius: var(--r-pill); font-size: .9rem; color: var(--ink-2); }
.swatches .swatch-lg .swatch { width: 18px; height: 18px; }
.sizes { display: flex; gap: .5rem; flex-wrap: wrap; }
.sizes span { min-width: 46px; text-align: center; padding: .5rem .7rem; border: 1.5px solid var(--line-strong); border-radius: var(--r-ctrl); font-weight: 500; font-size: .93rem; background: var(--surface); }
.product__cta { display: flex; gap: .75rem; flex-wrap: wrap; margin: 1.6rem 0 1.2rem; }
.product__perks { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: .5rem; font-size: .93rem; color: var(--ink-2); }
.product__perks li { display: flex; gap: .55rem; align-items: center; }
.product__perks .ph { color: var(--accent); }
.product__info { border-top: 1px solid var(--line); }
.product__info details { border-bottom: 1px solid var(--line); }
.product__info summary { list-style: none; cursor: pointer; padding: 1rem 2rem 1rem 0; font-family: var(--font-display); font-weight: 600; position: relative; }
.product__info summary::-webkit-details-marker { display: none; }
.product__info summary::after { content: '+'; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; font-weight: 400; color: var(--accent); }
.product__info details[open] summary::after { content: '\2013'; }
.product__info .accordion__body { padding: 0 0 1.1rem; color: var(--ink-2); }
.product__info ul { margin: 0; padding-left: 1.1em; }
.product__info li { margin-bottom: .25rem; }
.product__desc { padding-block: clamp(2rem, 4vw, 3.5rem); border-top: 1px solid var(--line); }
.product__desc .prose { margin: 0; }
.product__desc-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(2rem, 4vw, 4rem); }
.spec-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; align-content: start; }
.spec-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.1rem 1.2rem; }
.spec-card h4 { font-size: .85rem; color: var(--muted); font-weight: 600; margin-bottom: .3rem; letter-spacing: 0; font-family: var(--font-body); }
.spec-card p { margin: 0; font-size: .95rem; color: var(--ink); }
@media (max-width: 900px) {
  .product { grid-template-columns: 1fr; }
  .product__gallery { position: static; grid-template-columns: 1fr 1fr; }
  .product__gallery img { aspect-ratio: 3 / 4; }
  .product__gallery .product__detail { aspect-ratio: 3 / 4; }
  .product__desc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .spec-cards { grid-template-columns: 1fr; } .product__gallery { grid-template-columns: 1fr; } }

/* ---------- Banda editorial (catálogo) ---------- */
.editorial { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.editorial img { border-radius: var(--r-card); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.editorial--wide img { aspect-ratio: 3 / 2; }
.editorial__copy h2 { margin-bottom: .5em; }
.editorial__copy p { color: var(--ink-2); font-size: 1.04rem; }
.editorial--flip img { order: 2; }
@media (max-width: 800px) { .editorial { grid-template-columns: 1fr; } .editorial--flip img { order: 0; } }

/* Lista de materiales / tejidos */
.materials { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.75rem); }
.material { padding: 1.4rem 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); }
.material h3 { font-size: 1.15rem; margin-bottom: .35em; }
.material p { margin: 0; color: var(--ink-2); font-size: .96rem; }
.material__origin { font-size: .84rem; color: var(--muted); margin-top: .6rem; display: block; }
@media (max-width: 860px) { .materials { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .materials { grid-template-columns: 1fr; } }

/* ---------- Cifras ---------- */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.stat { border-left: 2px solid var(--accent); padding-left: 1.1rem; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(2rem, 1.6rem + 1.4vw, 3rem); font-weight: 600; line-height: 1; letter-spacing: -0.03em; margin-bottom: .35rem; }
.stat span { color: var(--ink-2); font-size: .95rem; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------- Línea de tiempo / proceso ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.timeline li { list-style: none; padding-top: 1rem; border-top: 2px solid var(--line-strong); }
.timeline strong { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: .35rem; }
.timeline p { margin: 0; color: var(--ink-2); font-size: .96rem; }
.timeline .timeline__year { color: var(--accent); font-family: var(--font-display); font-weight: 600; font-size: .9rem; display: block; margin-bottom: .3rem; }
@media (max-width: 860px) { .timeline { grid-template-columns: 1fr 1fr; padding: 0; } }
@media (max-width: 520px) { .timeline { grid-template-columns: 1fr; } }

/* Galería 2+1 */
.gallery-3 { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: clamp(.9rem, 1.6vw, 1.4rem); }
.gallery-3 img { border-radius: var(--r-card); width: 100%; height: 100%; object-fit: cover; }
.gallery-3 > :first-child { grid-row: span 2; aspect-ratio: 3 / 2; }
.gallery-3 > :not(:first-child) { aspect-ratio: 3 / 2; }
@media (max-width: 720px) { .gallery-3 { grid-template-columns: 1fr; } .gallery-3 > :first-child { grid-row: auto; } }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1.1rem; }
.contact-list li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.contact-list .ph { color: var(--accent); font-size: 1.4rem; margin-top: .1rem; }
.contact-list strong { display: block; font-family: var(--font-display); font-weight: 600; }
.contact-list span, .contact-list a { color: var(--ink-2); }
.contact-grid img { border-radius: var(--r-card); aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Guía de tallas ---------- */
.size-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.size-panel[hidden] { display: none; }
.measure-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.measure-grid img { border-radius: var(--r-card); aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.measure-list { list-style: none; padding: 0; margin: 0; counter-reset: m; display: grid; gap: 1rem; }
.measure-list li { counter-increment: m; display: grid; grid-template-columns: auto 1fr; gap: .9rem; color: var(--ink-2); }
.measure-list li::before { content: counter(m); width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: .9rem; }
.measure-list strong { color: var(--ink); display: block; }
@media (max-width: 720px) { .measure-grid { grid-template-columns: 1fr; } }

/* ---------- Páginas legales ---------- */
.legal { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; padding-block: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem); }
.legal-nav { position: sticky; top: 100px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.2rem; }
.legal-nav h2 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .6rem; }
.legal-nav ul { list-style: none; padding: 0; margin: 0; }
.legal-nav a, .legal-nav__cookies { display: block; padding: .45rem .7rem; border-radius: var(--r-ctrl); color: var(--ink-2); text-decoration: none; font-size: .95rem; }
.legal-nav a:hover { background: var(--bg); color: var(--ink); }
.legal-nav a[aria-current="page"] { background: var(--accent-tint); color: var(--accent-ink); font-weight: 600; }
.legal-nav__cookies { width: 100%; text-align: left; }
.legal__body h1 { font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.8rem); }
.legal__updated { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.legal__body .prose h2 { font-size: 1.35rem; margin-top: 2.2em; padding-top: 1.2em; border-top: 1px solid var(--line); }
.legal__body .prose h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 1.5em; }
.legal__body .prose p, .legal__body .prose li { font-size: 1rem; }
.legal__box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.2rem 1.4rem; margin: 1.5rem 0; }
.legal__box p:last-child { margin-bottom: 0; }
@media (max-width: 860px) { .legal { grid-template-columns: 1fr; } .legal-nav { position: static; } }

/* ---------- Gracias / 404 ---------- */
.center-page { text-align: center; padding-block: clamp(4rem, 10vw, 8rem); }
.center-page h1 { margin-bottom: .4em; }
.center-page .lead { margin-inline: auto; }
.center-page .actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }

/* ---------- Pie ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 5rem) 1.5rem; margin-top: clamp(2rem, 5vw, 4rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand p { color: var(--ink-2); margin: 1rem 0 1.2rem; max-width: 42ch; font-size: .97rem; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; font-size: .93rem; }
.footer-contact li { display: flex; gap: .55rem; align-items: center; color: var(--ink-2); }
.footer-contact .ph { color: var(--accent); }
.footer-contact a { color: var(--ink-2); text-decoration: none; }
.footer-contact a:hover { color: var(--accent); text-decoration: underline; }
.footer-col h2 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.footer-col a, .footer-col .linklike { color: var(--ink-2); text-decoration: none; font-size: .95rem; }
.footer-col a:hover, .footer-col .linklike:hover { color: var(--accent); text-decoration: underline; }
.footer-trust { display: flex; gap: 2rem; flex-wrap: wrap; padding-block: 1.25rem; border-block: 1px solid var(--line); font-size: .9rem; color: var(--ink-2); }
.footer-trust p { margin: 0; display: flex; gap: .5rem; align-items: center; }
.footer-trust .ph { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem; color: var(--muted); padding-top: 1.25rem; }
.footer-bottom p { margin: 0; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Banner de cookies ---------- */
.cookie-banner { position: fixed; left: var(--gutter); bottom: var(--gutter); z-index: var(--z-banner); width: min(380px, 100% - 2 * var(--gutter)); }
.cookie-banner__in { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1rem 1.1rem; box-shadow: var(--shadow-md); animation: cookie-in .5s var(--ease) both; }
@keyframes cookie-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.cookie-banner h2 { font-size: .95rem; margin-bottom: .3rem; display: flex; align-items: center; gap: .4rem; }
.cookie-banner h2 .ph { color: var(--accent); }
.cookie-banner__text { font-size: .84rem; color: var(--ink-2); margin-bottom: .8rem; line-height: 1.5; }
.cookie-banner__text a { color: var(--ink); }
.cookie-banner__prefs { display: grid; gap: .5rem; margin-bottom: .8rem; padding: .7rem .8rem; background: var(--bg); border-radius: var(--r-ctrl); }
.cookie-banner__prefs .check { margin: 0; }
.cookie-banner__prefs .check label { font-size: .82rem; gap: .55rem; }
.cookie-banner__prefs .check input { width: 16px; height: 16px; margin-top: .1rem; }
.cookie-banner__actions { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.cookie-banner__actions .btn { padding: .5rem .85rem; font-size: .86rem; }
.cookie-banner__cfg { margin-left: auto; font-size: .84rem; color: var(--muted); }
@media (max-width: 560px) { .cookie-banner { left: .75rem; right: .75rem; bottom: .75rem; width: auto; } }
@media (prefers-reduced-motion: reduce) { .cookie-banner__in { animation: none; } }

/* ---------- Revelado / movimiento ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .pcard:hover .pcard__media img, .diptych__item:hover img, .post:hover img { transform: none; }
}

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
