/* ==========================================================================
   Joieria Grau — hoja de estilos
   Paleta: marfil + tinta + verde Grau + oro. Tipos: Playfair Display / Montserrat
   ========================================================================== */

:root {
  --ivory:   #f7f3ec;
  --sand:    #ece3d4;
  --paper:   #fffdf9;
  --ink:     #1d1d1b;
  --ink-2:   #3a3833;
  --mute:    #66615b;
  --teal:    #1f5c5d;
  --teal-2:  #257576;
  --teal-dk: #133d3e;
  --gold:    #a8834f;
  --gold-lt: #d9c29a;
  --gold-text: #7d5e37; /* oro con contraste suficiente para texto sobre fondos claros */
  --line:    rgba(29, 29, 27, .14);
  --line-lt: rgba(255, 255, 255, .22);
  --line-strong: rgba(29, 29, 27, .3);

  --serif: "Playfair Display", "Times New Roman", Georgia, serif;
  --sans:  "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--teal); color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Tipografía ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-text);
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.eyebrow--plain::before { display: none; }

.display {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(38px, 5.4vw, 76px); line-height: 1.04; letter-spacing: -.015em;
  margin: 0;
}
.display em, .h2 em, .h3 em { font-style: normal; color: inherit; }
.h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3.6vw, 50px); line-height: 1.1; letter-spacing: -.01em;
  margin: 0;
}
.h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.25; margin: 0; }
.lead { font-size: clamp(15px, 1.25vw, 17px); color: var(--ink-2); max-width: 46ch; }
.display, .h2, .h3, .faq summary { text-wrap: balance; }
p, .lead { text-wrap: pretty; }

/* ---------- Botones ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 50px; padding: 0 30px;
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid var(--ink); background: var(--ink); color: var(--paper);
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--teal); transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.btn:hover::after, .btn:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.btn:hover { border-color: var(--teal); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { color: #fff; }
.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light::after { background: var(--gold); }
.btn--light:hover { color: #fff; border-color: var(--gold); }
.btn .arrow { width: 18px; height: 1px; background: currentColor; position: relative; transition: width .4s var(--ease); }
.btn .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.btn:hover .arrow { width: 26px; }

.link-line {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  padding-bottom: 6px; background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
  transition: background-size .5s var(--ease), color .3s;
}
.link-line:hover { background-size: 30% 1px; color: var(--teal); }

:focus-visible { outline: 2px solid var(--teal-2); outline-offset: 3px; }

/* ---------- Topbar + header ---------- */
.topbar {
  background: var(--teal-dk); color: #e9e2d6; text-align: center;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; padding: 9px 16px;
}
.topbar strong { font-weight: 600; color: #fff; }

.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ivory);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.header.is-solid { background: rgba(247, 243, 236, .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.header__row {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 78px;
}
.header__logo img { height: 30px; width: auto; }
.nav { display: flex; gap: 30px; }
.nav--right { justify-content: flex-end; align-items: center; }
.nav a {
  font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  position: relative; padding: 6px 0;
}
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .4s var(--ease); }
.nav a:hover::after, .nav a[aria-current]::after { transform: scaleX(1); }
.nav .nav__cta { border: 1px solid var(--ink); padding: 8px 16px; transition: background .3s, color .3s; }
.nav .nav__cta::after { display: none; }
.nav .nav__cta:hover { background: var(--ink); color: var(--paper); }

.burger { display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 0; justify-self: start; }
.burger span { display: block; width: 24px; height: 1px; background: var(--ink); margin: 6px 0; transition: transform .35s var(--ease), opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 40; background: var(--ivory);
  padding: 140px var(--gutter) 40px; display: flex; flex-direction: column; gap: 6px;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer a { font-family: var(--serif); font-size: 32px; line-height: 1.5; border-bottom: 1px solid var(--line); padding: 8px 0; }
.drawer .btn { margin-top: 28px; font-family: var(--sans); font-size: 11px; }

/* ---------- Hero (home) ---------- */
picture { display: block; width: 100%; height: 100%; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero {
  position: relative; isolation: isolate;
  padding: clamp(40px, 5vw, 72px) 0 clamp(64px, 7vw, 100px);
  min-height: min(calc(100vh - 112px), 900px);
  display: flex; align-items: center;
}
/* Bloque de color arena detrás de la imagen */
.hero::before {
  content: ""; position: absolute; z-index: -1;
  top: 0; right: 0; bottom: 18%; width: 40%;
  background: var(--sand);
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); gap: clamp(40px, 6vw, 96px); align-items: center; }

.hero__content { max-width: 560px; }
.hero__title { margin: 22px 0 26px; font-size: clamp(42px, 5vw, 72px); line-height: 1.06; }
.hero__line { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.hero__line > span { display: block; animation: lineUp 1.1s var(--ease) both; animation-delay: var(--d, 0s); }
.hero__in { animation: fadeUp 1s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes lineUp { from { transform: translateY(110%); } to { transform: none; } }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero__facts {
  list-style: none; margin: 48px 0 0; padding: 26px 0 0;
  display: grid; grid-template-columns: repeat(3, auto); justify-content: start;
  border-top: 1px solid var(--line);
}
.hero__facts li { padding: 0 28px; border-left: 1px solid var(--line); }
.hero__facts li:first-child { padding-left: 0; border-left: 0; }
.hero__facts b { display: block; font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.2; color: var(--teal); }
.hero__facts span { display: block; font-size: 10px; line-height: 1.5; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }

.hero__visual { position: relative; padding-left: clamp(0px, 3vw, 40px); }
.hero__frame {
  position: relative; margin: 0 0 0 auto; aspect-ratio: 4 / 5; width: 100%;
  max-width: calc((100vh - 200px) * .8);
  overflow: hidden; background: #e9dcc3;
  animation: frameIn 1.4s var(--ease) both; animation-delay: .1s;
}
@keyframes frameIn { from { clip-path: inset(10% 0 0 0); opacity: 0; } to { clip-path: inset(0 0 0 0); opacity: 1; } }
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.4s var(--ease), transform 7s linear;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 62%, rgba(20,16,12,.55) 100%); pointer-events: none; }

.hero__caption {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px;
  padding: 20px 24px; color: #fff; text-shadow: 0 1px 10px rgba(0, 0, 0, .35);
}
.hero__count { font-size: 11px; letter-spacing: .16em; color: rgba(255,255,255,.75); }
.hero__count b { font-weight: 600; color: #fff; }
.hero__label { font-family: var(--serif); font-size: 19px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: opacity .4s var(--ease); }
.hero__label:hover { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.hero__label.is-changing { opacity: 0; }
.hero__dots { display: flex; gap: 8px; }
.hero__dots button { width: 34px; height: 24px; padding: 0; border: 0; background: none; cursor: pointer; display: flex; align-items: center; }
.hero__dots i { position: relative; display: block; width: 100%; height: 1px; background: rgba(255,255,255,.4); overflow: hidden; }
.hero__dots i::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.hero__dots .is-active i::after { animation: dotFill var(--hero-interval, 6s) linear forwards; }
.hero__frame.is-paused .hero__dots .is-active i::after { animation-play-state: paused; }
@keyframes dotFill { to { transform: scaleX(1); } }

.hero__stores {
  position: absolute; z-index: 3; left: -36px; top: 12%; width: 250px;
  animation: fadeUp 1s var(--ease) both; animation-delay: 1s;
}
.hero__inset {
  display: flex; align-items: center; gap: 14px; width: 100%;
  background: var(--paper); padding: 10px 18px 10px 10px;
  box-shadow: 0 24px 50px -24px rgba(29,29,27,.35), 0 0 0 1px var(--line);
  transition: opacity .7s var(--ease), transform .7s var(--ease), visibility .7s, box-shadow .5s var(--ease);
}
.hero__inset + .hero__inset { position: absolute; top: 0; left: 0; }
.hero__inset:not(.is-active) { opacity: 0; visibility: hidden; transform: translateY(8px); }
.hero__inset.is-leaving { opacity: 0; visibility: hidden; transform: translateY(-8px); }
.hero__inset.is-active:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -24px rgba(29,29,27,.45), 0 0 0 1px var(--line); }
.hero__inset img { flex: none; width: 76px; height: 76px; object-fit: cover; }
.hero__inset-text { display: flex; flex-direction: column; font-family: var(--serif); font-size: 19px; line-height: 1.2; }
.hero__inset-text small { font-family: var(--sans); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 4px; }
.hero__inset-text small b { font-weight: 600; }
.hero__inset-text em { font-family: var(--sans); font-style: normal; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); margin-top: 6px; }

.hero__scroll { position: absolute; left: 50%; bottom: 22px; width: 22px; height: 36px; margin-left: -11px; border: 1px solid var(--line); border-radius: 12px; }
.hero__scroll span { position: absolute; left: 50%; top: 7px; width: 2px; height: 7px; margin-left: -1px; background: var(--gold); border-radius: 2px; animation: scrollDot 2.2s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ---------- Marquee marcas ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; }
.marquee__item {
  font-family: var(--serif); font-size: clamp(20px, 2.2vw, 28px); letter-spacing: .06em;
  padding: 26px clamp(22px, 3vw, 44px); white-space: nowrap; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: clamp(22px, 3vw, 44px);
}
.marquee__item::after { content: "✦"; font-size: 10px; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Secciones ---------- */
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--sand { background: var(--sand); }
.section--paper { background: var(--paper); }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: clamp(40px, 5vw, 64px); flex-wrap: wrap; }
.section__head .h2 { margin-top: 18px; }
.section__head p { max-width: 38ch; color: var(--mute); margin: 0; }

/* Categorías */
.cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat { display: block; }
.cat__img { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #fff; }
.cat__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.cat:hover .cat__img img { transform: scale(1.07); }
.cat__img--packshot { background: #efe7da; }
.cat__img--packshot img { mix-blend-mode: multiply; }
.cat__img::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.0); transition: border-color .5s var(--ease); }
.cat:hover .cat__img::after { border-color: rgba(255,255,255,.8); }
.cat__label { display: flex; align-items: baseline; gap: 10px; margin-top: 14px; font-family: var(--serif); font-size: 19px; }
.cat__label small { order: -1; font-family: var(--sans); font-size: 10px; letter-spacing: .16em; color: var(--gold-text); }

/* Relojería — dúo editorial */
.duo { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(16px, 2vw, 28px); }
.feature { position: relative; display: block; overflow: hidden; color: #fff; min-height: 560px; background: var(--ink); }
.feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.feature:hover img { transform: scale(1.04); }
.feature::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(10,20,22,.72) 100%); }
.feature__body { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: clamp(24px, 3vw, 44px); }
.feature__body .eyebrow { color: var(--gold-lt); }
.feature__body .h3 { font-size: clamp(26px, 2.6vw, 38px); margin: 14px 0 18px; }
.feature--rolex img { object-position: 76% center; }
.feature--cartier img { object-position: 85% 0%; transform-origin: top; height: 145%; }
.feature--cartier:hover img { transform: scale(1.03); }

/* Compromiso */
.promise { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; background: var(--ivory); }
.promise img { position: absolute; top: 0; left: 0; width: 60%; height: 115%; object-fit: cover; object-position: 42% 60%; will-change: transform; }
.promise::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 60%; z-index: 1; background: linear-gradient(90deg, rgba(247,243,236,0) 78%, rgba(247,243,236,1) 100%); }
.promise__body { position: relative; z-index: 2; max-width: 440px; margin-left: auto; }
.promise__body .h2 { margin: 20px 0 22px; }
.promise__links { display: flex; gap: 30px; margin-top: 34px; flex-wrap: wrap; }

/* Journal */
.journal { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 36px); }
.post { display: flex; flex-direction: column; }
.post__img { aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand); }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.post:hover .post__img img { transform: scale(1.05); }
.post__tag { margin-top: 20px; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-text); }
.post .h3 { margin: 10px 0 10px; transition: color .3s; }
.post:hover .h3 { color: var(--teal); }
.post p { margin: 0 0 18px; color: var(--mute); font-size: 14px; }
.post .link-line { align-self: flex-start; margin-top: auto; }

/* Banda newsletter (home) */
.nl-band { background: var(--teal-dk); color: #f1ebe1; position: relative; overflow: hidden; }
.nl-band::before {
  content: ""; position: absolute; right: -180px; top: 50%; width: 560px; height: 560px; transform: translateY(-50%);
  border: 1px solid rgba(217, 194, 154, .25); border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(217,194,154,.04), 0 0 0 140px rgba(217,194,154,.03);
}
.nl-band__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.nl-band .eyebrow { color: var(--gold-lt); }
.nl-band .h2 { margin-top: 18px; }
.nl-band p { color: rgba(241, 235, 225, .78); max-width: 44ch; }
.nl-band__more { margin-top: 6px; color: #fff; }
.nl-band__more:hover { color: var(--gold-lt); }

/* ---------- Formulario newsletter (compartido) ---------- */
.nl-form { display: grid; gap: 14px; }
.nl-form__row { display: flex; gap: 0; }
.field { position: relative; flex: 1; }
.field input, .field select {
  width: 100%; height: 56px; padding: 22px 18px 6px; border: 1px solid var(--line-strong); background: var(--paper);
  border-radius: 0; outline: none; transition: border-color .3s; appearance: none; -webkit-appearance: none;
}
.field select { padding-top: 20px; padding-right: 42px; text-overflow: ellipsis; white-space: nowrap; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 22px) 27px, calc(100% - 17px) 27px; background-size: 5px 5px; background-repeat: no-repeat; }
.field label {
  position: absolute; left: 18px; top: 18px; font-size: 13px; color: var(--mute); pointer-events: none;
  transition: top .25s var(--ease), font-size .25s var(--ease), letter-spacing .25s;
}
.field input:focus, .field select:focus { border-color: var(--teal); box-shadow: inset 0 0 0 1px var(--teal); }
.field input:focus + label, .field input:not(:placeholder-shown) + label, .field select + label {
  top: 8px; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
}
.field.is-invalid input { border-color: #a4452f; }
.field__error { display: none; font-size: 12px; color: #a4452f; margin-top: 6px; }
.field.is-invalid .field__error { display: block; }

.nl-form--dark .field input { background: transparent; border-color: var(--line-lt); color: #fff; }
.nl-form--dark .field input:focus { border-color: var(--gold-lt); box-shadow: inset 0 0 0 1px var(--gold-lt); }
.nl-form--dark .field label { color: rgba(255,255,255,.78); }
.nl-form--dark .field.is-invalid .field__error, .nl-form--dark .consent.is-invalid .consent__error { color: #f0b39f; }
.nl-form--dark .nl-form__row .btn { border-color: var(--paper); }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 12.5px; line-height: 1.55; cursor: pointer; }
.consent input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.consent__box { flex: none; width: 18px; height: 18px; border: 1px solid currentColor; margin-top: 1px; position: relative; opacity: .8; }
.consent input:checked + .consent__box::after { content: ""; position: absolute; left: 5px; top: 1px; width: 6px; height: 11px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); }
.consent input:focus-visible + .consent__box { outline: 2px solid var(--teal-2); outline-offset: 2px; }
.consent a { text-decoration: underline; text-underline-offset: 3px; }
.consent__error { display: none; font-size: 12px; color: #a4452f; margin: -4px 0 0 30px; }
.consent.is-invalid + .consent__error { display: block; }

.nl-success { display: none; padding: 26px 0 6px; }
.nl-success .h3 { margin-bottom: 8px; }
.nl-success .h2 { margin: 18px 0 14px; }
.nl-success .btn { margin-top: 24px; }
.nl-success:focus { outline: none; }
.nl-success--center { text-align: center; }
.nl-success--center p { margin: 8px auto 0; }
.is-sent .nl-form { display: none; }
.is-sent .nl-success { display: block; animation: fadeUp .8s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Tiendas ---------- */
.stores { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 6vw, 90px); align-items: start; }
.stores__img { aspect-ratio: 4 / 5; overflow: hidden; }
.stores__img img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.store-list { list-style: none; margin: 34px 0 0; padding: 0; border-top: 1px solid var(--line); }
.store-list li { border-bottom: 1px solid var(--line); }
.store-list a { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 12px; padding: 22px 0; transition: padding .4s var(--ease), color .3s; }
.store-list a:hover { padding-left: 12px; color: var(--teal); }
.store-list .num { font-size: 11px; letter-spacing: .14em; color: var(--gold-text); }
.store-list .name { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 30px); }
.store-list .go { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--mute); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 40px; }
.contact-grid a { background: var(--ivory); padding: 22px 16px; text-align: center; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; transition: background .3s, color .3s; }
.contact-grid a:hover { background: var(--ink); color: var(--paper); }
.contact-grid svg { display: block; width: 22px; height: 22px; margin: 0 auto 10px; stroke: currentColor; fill: none; stroke-width: 1.2; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 80px 0 34px; font-size: 13px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr)); gap: 40px; }
.footer__about { max-width: 32ch; }
.footer__logo { height: 30px; width: auto; filter: invert(1); margin-bottom: 20px; }
.footer__title { margin: 0 0 18px; font-family: var(--sans); line-height: 1.4; font-size: 10.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: #fff; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; color: rgba(255,255,255,.72); }
.footer a:hover { color: var(--gold-lt); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px 28px; flex-wrap: wrap; margin-top: 64px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11.5px; }
.footer__bottom p { margin: 0; }
.footer__links { display: flex; flex-wrap: wrap; gap: 6px 18px; }

/* ==========================================================================
   Landing newsletter
   ========================================================================== */
.lp-header { position: absolute; top: 0; left: 0; right: 0; z-index: 10; }
.lp-header .wrap { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.lp-header img { height: 30px; width: auto; }

.lp-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.lp-hero__media { position: relative; overflow: hidden; background: #e9dcc3; }
.lp-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; animation: heroZoom 20s var(--ease) both; }
.lp-hero__badge {
  position: absolute; left: 32px; bottom: 32px; z-index: 2;
  background: rgba(255, 253, 249, .92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 16px 20px; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; display: flex; gap: 14px; align-items: center;
}
.lp-hero__badge b { font-family: var(--serif); font-weight: 400; font-size: 26px; letter-spacing: 0; text-transform: none; color: var(--teal); }
.lp-hero__panel { display: flex; align-items: center; padding: 130px clamp(24px, 6vw, 96px) 60px; background: var(--ivory); }
.lp-hero__inner { max-width: 520px; width: 100%; }
.lp-hero__inner .display { font-size: clamp(38px, 4.2vw, 60px); margin: 22px 0 20px; }
.lp-hero__inner .lead { margin-bottom: 34px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; border: 0; padding: 0; margin: 4px 0 2px; }
.chips legend { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); margin-bottom: 10px; padding: 0; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span { display: inline-block; padding: 9px 16px; border: 1px solid var(--line); font-size: 12.5px; cursor: pointer; transition: background .3s, color .3s, border-color .3s; background: var(--paper); }
.chip span:hover { border-color: var(--ink); }
.chip input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip input:focus-visible + span { outline: 2px solid var(--teal-2); outline-offset: 2px; }
.nl-form .btn--full { width: 100%; min-height: 58px; }
.fine { font-size: 12px; color: var(--mute); margin: 4px 0 0; }

.proof { background: var(--paper); border-bottom: 1px solid var(--line); }
.proof .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof__item { padding: 34px 20px; text-align: center; border-right: 1px solid var(--line); }
.proof__item:last-child { border-right: 0; }
.proof__item b { display: block; font-family: var(--serif); font-weight: 400; font-size: 30px; color: var(--teal); line-height: 1.2; }
.proof__item span { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.benefit { padding: 36px 28px 10px 0; border-right: 1px solid var(--line); margin-right: 28px; }
.benefit:last-child { border-right: 0; margin-right: 0; }
.benefit__n { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .2em; color: var(--gold-text); }
.benefit .h3 { margin: 16px 0 12px; }
.benefit p { color: var(--mute); font-size: 14px; margin: 0; }

.issue { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.issue__text .h2 { margin: 18px 0 20px; }
.issue__list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.issue__list li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; color: var(--ink-2); }
.issue__list li::before { content: "✦"; color: var(--gold); font-size: 11px; padding-top: 5px; }

.mail {
  background: var(--paper); box-shadow: 0 40px 80px -40px rgba(29, 29, 27, .35), 0 0 0 1px var(--line);
  transform: rotate(-1.2deg); transition: transform .8s var(--ease); max-width: 520px; margin-left: auto;
}
.mail:hover { transform: rotate(0deg) translateY(-6px); }
.mail__bar { display: flex; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--line); align-items: center; font-size: 11px; color: var(--mute); }
.mail__bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--sand); }
.mail__bar span { margin-left: 10px; }
.mail__body { padding: 30px 32px 34px; text-align: center; }
.mail__body > img:first-child { height: 22px; width: auto; margin: 0 auto 6px; }
.mail__date { font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--mute); }
.mail__hero { margin: 22px 0 18px; aspect-ratio: 16 / 9; overflow: hidden; }
.mail__hero img { width: 100%; height: 100%; object-fit: cover; }
.mail__body .mail__title { margin: 0; font-family: var(--serif); font-size: 24px; line-height: 1.25; color: var(--ink); }
.mail__body p { font-size: 13px; color: var(--mute); margin: 8px auto 20px; max-width: 34ch; }
.mail__cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 24px; text-align: left; }
.mail__cols img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.mail__cols span { display: block; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; margin-top: 8px; }
.mail__btn { display: inline-block; font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; padding: 11px 20px; background: var(--ink); color: #fff; transition: background .3s; }
.mail__btn:hover { background: var(--teal); }
.mail__cols a { display: block; }
.mail__cols a img { transition: opacity .3s; }
.mail__cols a:hover img { opacity: .85; }
.mail__cols a:hover span { color: var(--teal); }

.faq { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0; font-family: var(--serif); font-size: clamp(19px, 1.8vw, 23px); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 26px; color: var(--gold); transition: transform .4s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: -6px 0 26px; color: var(--mute); max-width: 62ch; }

.final { position: relative; overflow: hidden; background: var(--teal-dk); color: #f1ebe1; text-align: center; }
.final::before, .final::after { content: ""; position: absolute; top: 50%; border: 1px solid rgba(217, 194, 154, .2); border-radius: 50%; pointer-events: none; }
.final::before { left: -220px; width: 520px; height: 520px; transform: translateY(-50%); box-shadow: 0 0 0 70px rgba(217,194,154,.03); }
.final::after { right: -160px; width: 380px; height: 380px; transform: translateY(-40%); }
.final .wrap { position: relative; max-width: 760px; }
.final .eyebrow { color: var(--gold-lt); }
.final .h2 { margin: 20px 0 18px; }
.final p { color: rgba(241,235,225,.78); margin: 0 auto 34px; max-width: 56ch; }
.final .nl-form { max-width: 560px; margin: 0 auto; text-align: left; }
.final .consent { color: rgba(241,235,225,.85); }

.lp-footer { background: var(--ink); color: rgba(255,255,255,.6); font-size: 12px; padding: 30px 0; }
.lp-footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.lp-footer a:hover { color: var(--gold-lt); }
.lp-footer nav { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.no-js .reveal { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .nav { gap: 16px; }
  .nav a { letter-spacing: .12em; white-space: nowrap; }
  .nav .nav__cta { padding: 8px 12px; }
  .hero__count { display: none; }
  .hero__caption { grid-template-columns: minmax(0, 1fr) auto; gap: 14px; padding: 18px 20px; }
  .cats { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2) { border-right: 0; margin-right: 0; }
  .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  body { font-size: 14.5px; }
  .header__row { height: 66px; }
  .nav { display: none; }
  .burger { display: block; }
  .header__logo img { height: 24px; }
  .hero { min-height: 0; padding: 0 0 60px; }
  .hero::before { top: 0; bottom: auto; height: 42vw; width: 100%; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { order: -1; padding: 0; margin: 0 calc(var(--gutter) * -1); }
  .hero__frame { aspect-ratio: 1 / 1.05; max-width: none; }
  .hero__stores { left: var(--gutter); top: auto; bottom: -28px; width: 226px; }
  .hero__inset { padding: 8px 14px 8px 8px; }
  .hero__inset img { width: 56px; height: 56px; }
  .hero__inset-text { font-size: 16px; }
  .hero__frame::after { background: linear-gradient(0deg, rgba(0,0,0,0) 72%, rgba(20,16,12,.45) 100%); }
  .hero__caption { top: 0; bottom: auto; grid-template-columns: 1fr; padding: 14px var(--gutter); }
  .hero__count, .hero__label { display: none; }
  .hero__title { font-size: clamp(40px, 11vw, 60px); }
  .hero__scroll { display: none; }


  .cats { gap: 32px 14px; }

  .duo { grid-template-columns: 1fr; }
  .feature { min-height: 520px; }
  .feature--rolex img { object-position: center; }
  .promise { min-height: 0; flex-direction: column; align-items: stretch; background: var(--ivory); }
  .promise img { position: relative; width: 100%; height: 70vw; transform: none !important; }
  .promise::before { display: none; }
  .promise__body { padding: 44px 0 70px; margin-left: 0; max-width: none; }

  .journal { grid-template-columns: 1fr; gap: 48px; }
  .post__img { aspect-ratio: 3 / 2; }
  .nl-band__grid, .stores, .issue { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }

  .lp-hero { grid-template-columns: 1fr; min-height: 0; }
  .lp-hero__media { height: 58vh; min-height: 340px; order: -1; }
  .lp-hero__panel { padding: 44px var(--gutter) 70px; }
  .lp-header { position: absolute; }
  .lp-header .wrap { height: 72px; }
  .lp-header img { height: 24px; filter: none; }
  .proof .wrap { grid-template-columns: repeat(2, 1fr); }
  .proof__item:nth-child(2) { border-right: 0; }
  .proof__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof__item { padding: 26px 12px; }
  .proof__item span { font-size: 9.5px; letter-spacing: .12em; }
  .mail { margin: 0 auto; transform: none; }
}

@media (max-width: 560px) {
  .nl-form__row { flex-direction: column; gap: 10px; }
  .nl-form__row .btn { width: 100%; }
  .cats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 12px; }
  .cat__label { margin-top: 10px; font-size: 17px; gap: 8px; }
  .feature--cartier img { height: 100%; object-position: center bottom; }
  .feature--cartier::before { background: linear-gradient(0deg, rgba(0,0,0,0) 45%, rgba(10,20,22,.72) 100%); }
  .feature--cartier .feature__body { top: 0; bottom: auto; }
  .benefits { grid-template-columns: 1fr; }
  .benefit { border-right: 0; margin-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 30px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .topbar { font-size: 9.5px; letter-spacing: .12em; }
  .hero__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 36px; }
  .hero__facts li { padding: 0 10px; }
  .hero__facts b { font-size: 20px; }
  .hero__facts span { font-size: 8.5px; letter-spacing: .12em; }
  .lp-hero__badge { left: 16px; bottom: 16px; }
  .mail__body { padding: 24px 18px; }
}

/* Evita que el foco o scrollIntoView desplacen contenedores recortados */
.hero, .marquee, .promise, .nl-band, .final, .lp-hero__media, .feature, .cat__img, .post__img { overflow: clip; }

/* ==========================================================================
   Páginas interiores
   ========================================================================== */

/* Ruta de navegación */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0 0 26px; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); }
.crumbs a:hover { color: var(--teal); }
.crumbs i { width: 14px; height: 1px; background: var(--line); }

/* Cabecera de página */
.page-hero { position: relative; isolation: isolate; padding: clamp(36px, 5vw, 72px) 0 clamp(64px, 7vw, 104px); }
.page-hero::before { content: ""; position: absolute; z-index: -1; top: 0; right: 0; bottom: 20%; width: 34%; background: var(--sand); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.page-hero__text { max-width: 600px; }
.page-hero__title { font-size: clamp(40px, 4.6vw, 64px); line-height: 1.06; margin: 20px 0 22px; }
.page-hero__text .hero__actions { margin-top: 32px; }
.page-hero__media { position: relative; margin: 0 0 0 auto; width: 100%; max-width: 520px; aspect-ratio: 4 / 5; overflow: clip; background: #e9dcc3; animation: frameIn 1.3s var(--ease) both; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s var(--ease) both; }
.page-hero__media--wide { max-width: none; aspect-ratio: 1148 / 700; }
.page-hero--plain { padding-bottom: clamp(48px, 5vw, 72px); border-bottom: 1px solid var(--line); }
.page-hero--plain::before { display: none; }
.page-hero--plain .page-hero__grid { grid-template-columns: 1fr; }
.page-hero--plain .page-hero__text { max-width: 820px; }
.media-caption { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 10px 16px; background: rgba(255, 253, 249, .94); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }

/* Bloques imagen + texto */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.split + .split { margin-top: clamp(72px, 9vw, 130px); }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; margin: 0; aspect-ratio: 4 / 5; overflow: clip; background: var(--sand); }
.split__media--square { aspect-ratio: 1 / 1; }
.split__media--landscape { aspect-ratio: 5 / 4; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.split__media:hover img { transform: scale(1.03); }
.split__media--contain { background: #fff; border: 1px solid var(--line); }
.split__media--contain img { object-fit: contain; }
.split__body { max-width: 540px; }
.split__body .h2 { margin: 18px 0 20px; }
.split__body > p { color: var(--ink-2); }
.split__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; margin-top: 32px; }

/* Productos destacados de una colección */
.mini-products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 30px; }
.mini-product { display: block; }
.mini-product__img { aspect-ratio: 1; overflow: clip; background: #fff; border: 1px solid var(--line); }
.mini-product__img img { width: 100%; height: 100%; object-fit: contain; transition: transform .8s var(--ease); }
.mini-product:hover .mini-product__img img { transform: scale(1.05); }
.mini-product span { display: block; margin-top: 10px; font-size: 12.5px; line-height: 1.45; color: var(--ink-2); }

/* Modelos (anillos y alianzas) */
.models { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.model { display: block; background: #fff; border: 1px solid var(--line); padding: 12px 12px 24px; text-align: center; transition: border-color .4s var(--ease), transform .5s var(--ease); }
.model:hover { border-color: var(--gold); transform: translateY(-3px); }
.model img { width: 100%; aspect-ratio: 500 / 338; object-fit: contain; }
.model small { display: block; margin-top: 10px; font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-text); }
.model .h3 { margin-top: 4px; font-size: 22px; }

/* Rejilla de beneficios a 3 columnas */
.benefits--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Rejilla de enlaces */
.link-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.link-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.link-grid a { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 96px; padding: 22px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 19px; line-height: 1.25; transition: background .3s, color .3s; }
.link-grid a::after { content: "→"; flex: none; font-family: var(--sans); font-size: 14px; color: var(--gold); transition: transform .35s var(--ease); }
.link-grid a:hover { background: var(--paper); color: var(--teal); }
.link-grid a:hover::after { transform: translateX(4px); }
.link-grid small { display: block; margin-bottom: 4px; font-family: var(--sans); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }

/* Marcas */
.brand-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.brand-nav a { padding: 10px 18px; border: 1px solid var(--line); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; transition: background .3s, color .3s, border-color .3s; }
.brand-nav a:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.brand-group + .brand-group { margin-top: clamp(64px, 8vw, 110px); }
.brand-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.brand { display: flex; flex-direction: column; justify-content: space-between; gap: 26px; min-height: 150px; padding: 28px 24px 22px; background: var(--ivory); transition: background .35s var(--ease); }
.section--paper .brand { background: var(--paper); }
.brand:hover { background: var(--sand); }
.brand__name { font-family: var(--serif); font-size: clamp(21px, 1.9vw, 27px); line-height: 1.15; }
.brand__meta { display: flex; align-items: center; justify-content: space-between; font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }
.brand__meta::after { content: "→"; font-size: 13px; letter-spacing: 0; color: var(--gold); transition: transform .35s var(--ease); }
.brand:hover .brand__meta::after { transform: translateX(4px); }
.brand--official .brand__meta { color: var(--gold-text); }

/* Tres tarjetas destacadas */
.trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 22px); }
.trio .feature { min-height: 0; aspect-ratio: 4 / 5; }
.trio .feature__body .h3 { font-size: clamp(24px, 2.2vw, 32px); }

/* Tarjetas de tienda */
.store-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); }
.store-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); scroll-margin-top: 110px; }
.store-card__img { aspect-ratio: 3 / 2; overflow: clip; background: var(--sand); }
.store-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.store-card:hover .store-card__img img { transform: scale(1.03); }
.store-card__body { display: flex; flex: 1; flex-direction: column; gap: 22px; padding: clamp(24px, 3vw, 38px); }
.store-card__body .h2 { font-size: clamp(28px, 2.6vw, 36px); }
.store-card__body .eyebrow { margin-bottom: 10px; }
.store-info { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 12px 18px; margin: 0; font-size: 14px; }
.store-info dt { padding-top: 3px; font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); }
.store-info dd { margin: 0; color: var(--ink-2); }
.store-info a { border-bottom: 1px solid var(--line); }
.store-info a:hover { color: var(--teal); border-color: var(--teal); }
.store-card__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }
.btn--sm { min-height: 44px; padding: 0 22px; }

/* Línea de tiempo */
.timeline { position: relative; max-width: 1080px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--line); }
.milestone { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0 clamp(56px, 8vw, 120px); align-items: center; padding: clamp(28px, 4vw, 52px) 0; }
.milestone::before { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 11px; margin: -5px 0 0 -5px; border: 1px solid var(--gold); border-radius: 50%; background: var(--ivory); }
.milestone__media { position: relative; margin: 0; aspect-ratio: 566 / 450; overflow: clip; background: var(--sand); }
.milestone__media img { width: 100%; height: 100%; object-fit: cover; }
.milestone:nth-child(even) .milestone__media { order: 2; }
.milestone:nth-child(even) .milestone__text { text-align: right; justify-self: end; }
.milestone__year { font-family: var(--serif); font-size: clamp(38px, 4vw, 54px); line-height: 1; color: var(--teal); }
.milestone .h3 { margin: 14px 0 10px; }
.milestone p { max-width: 42ch; margin: 0; color: var(--ink-2); }
.milestone:nth-child(even) p { margin-left: auto; }

/* Cita destacada */
.quote { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: center; max-width: 980px; margin: 0 auto; }
.quote img { width: 200px; height: 200px; object-fit: cover; object-position: center 25%; }
.quote blockquote { margin: 0; font-family: var(--serif); font-size: clamp(22px, 2.5vw, 32px); line-height: 1.32; text-wrap: balance; }
.quote cite, .quote figcaption { display: block; margin-top: 20px; font-style: normal; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); }

/* Banda de llamada a la acción */
.cta-band { position: relative; overflow: clip; background: var(--teal-dk); color: #f1ebe1; }
.cta-band::before { content: ""; position: absolute; top: 50%; right: -160px; width: 520px; height: 520px; transform: translateY(-50%); border: 1px solid rgba(217, 194, 154, .22); border-radius: 50%; box-shadow: 0 0 0 64px rgba(217, 194, 154, .035); pointer-events: none; }
.cta-band__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) auto; gap: 40px 64px; align-items: center; }
.cta-band .eyebrow { color: var(--gold-lt); }
.cta-band .h2 { margin: 16px 0 14px; }
.cta-band p { max-width: 54ch; margin: 0; color: rgba(241, 235, 225, .8); }
.cta-band__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 14px; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--outline-light::after { background: var(--paper); }
.btn--outline-light:hover { color: var(--ink); border-color: var(--paper); }

/* Pasos (certificado pre-owned) */
.steps { list-style: none; margin: 34px 0 0; padding: 0; border-top: 1px solid var(--line); counter-reset: step; }
.steps li { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.steps b { font-size: 10.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); padding-top: 4px; }
.steps span { font-family: var(--serif); font-size: 20px; line-height: 1.35; }

/* Tarjetas de texto */
.text-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.text-card { display: flex; flex-direction: column; gap: 16px; padding: clamp(28px, 4vw, 48px); background: var(--paper); border: 1px solid var(--line); transition: border-color .4s var(--ease); }
.text-card:hover { border-color: var(--gold); }
.text-card .h2 { font-size: clamp(28px, 2.8vw, 38px); }
.text-card p { margin: 0; color: var(--mute); }
.text-card .link-line { align-self: flex-start; margin-top: 10px; }

/* Formulario de cita */
.cita { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.form-card { padding: clamp(24px, 4vw, 48px); background: var(--paper); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid .span-2 { grid-column: 1 / -1; }
.form-legend { grid-column: 1 / -1; margin: 18px 0 0; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); }
.form-legend:first-child { margin-top: 0; }
.field textarea { width: 100%; min-height: 140px; padding: 26px 18px 12px; border: 1px solid var(--line-strong); border-radius: 0; background: var(--paper); outline: none; resize: vertical; font: inherit; transition: border-color .3s; }
.field textarea:focus { border-color: var(--teal); box-shadow: inset 0 0 0 1px var(--teal); }
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field input[type="date"] + label { top: 8px; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; }
.field.is-invalid select, .field.is-invalid textarea { border-color: #a4452f; }
.form-card .chips { grid-column: 1 / -1; }
.form-card .consent { grid-column: 1 / -1; margin-top: 6px; }
.form-card .consent__error { grid-column: 1 / -1; }
.form-card .btn--full { grid-column: 1 / -1; }
.is-sent .cita-form { display: none; }
.contact-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.contact-list li { border-bottom: 1px solid var(--line); }
.contact-list a, .contact-list .contact-list__item { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 16px; align-items: center; padding: 22px 0; transition: padding .4s var(--ease); }
.contact-list a:hover { padding-left: 8px; }
.contact-list svg { width: 26px; height: 26px; fill: none; stroke: var(--gold); stroke-width: 1.2; }
.contact-list b { display: block; font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.3; }
.contact-list span { font-size: 13px; color: var(--mute); }

/* ---------- Responsive páginas interiores ---------- */
@media (max-width: 1100px) {
  .brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .models { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .page-hero { padding-top: 24px; }
  .page-hero::before { top: 0; bottom: auto; width: 100%; height: 38vw; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero__media { order: -1; max-width: none; aspect-ratio: 4 / 3; }
  .page-hero__media--wide { aspect-ratio: 1148 / 700; }
  .page-hero--plain::before { display: none; }
  .split { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 4 / 3; }
  .split__media--square { aspect-ratio: 1 / 1; }
  .trio { grid-template-columns: 1fr; }
  .trio .feature { aspect-ratio: 4 / 3.4; }
  .store-cards, .text-cards { grid-template-columns: 1fr; }
  .cta-band__grid { grid-template-columns: 1fr; }
  .cta-band__actions { justify-content: flex-start; }
  .cita { grid-template-columns: minmax(0, 1fr); }
  .timeline::before { left: 5px; }
  .milestone { grid-template-columns: 1fr; gap: 22px; padding-left: 34px; }
  .milestone::before { top: 36px; left: 5px; }
  .milestone:nth-child(even) .milestone__media { order: 0; }
  .milestone:nth-child(even) .milestone__text { text-align: left; justify-self: start; }
  .milestone:nth-child(even) p { margin-left: 0; }
  .quote { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .quote img { width: 150px; height: 150px; }
  .benefits--3 { grid-template-columns: 1fr; }
  .benefits--3 .benefit { border-right: 0; margin-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
}

@media (max-width: 560px) {
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand { min-height: 120px; padding: 22px 16px 18px; }
  .link-grid, .link-grid--3 { grid-template-columns: 1fr; }
  .mini-products { gap: 8px; }
  .mini-product span { font-size: 11.5px; }
  .form-grid { grid-template-columns: 1fr; }
  .store-info { grid-template-columns: 1fr; gap: 2px; }
  .store-info dd { margin-bottom: 10px; }
  .steps li { grid-template-columns: 1fr; gap: 4px; }
}

/* Ajustes de componentes compartidos */
.cats--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hero__actions .brand-nav { margin-top: 0; }
.split__quote { margin: 26px 0 0; padding-left: 20px; border-left: 1px solid var(--gold); font-family: var(--serif); font-size: 20px; line-height: 1.4; color: var(--ink); }
.split__quote cite { display: block; margin-top: 10px; font-family: var(--sans); font-style: normal; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); }
@media (max-width: 1100px) {
  .cats--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefits--3 .benefit:nth-child(2) { border-right: 1px solid var(--line); margin-right: 28px; }
}
.split__body .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
.split__body .link-grid a { min-height: 64px; padding: 16px 18px; font-size: 16px; }

/* ==========================================================================
   Catálogo, ficha de producto, páginas informativas y blog
   ========================================================================== */
.section--tight { padding-top: clamp(28px, 4vw, 48px); }

/* Cabecera del listado */
.cat-hero { padding: clamp(28px, 4vw, 52px) 0 clamp(24px, 3vw, 36px); border-bottom: 1px solid var(--line); }
.cat-hero .crumbs { margin-bottom: 18px; }
.cat-hero__title { font-size: clamp(34px, 4vw, 54px); line-height: 1.08; margin: 0 0 12px; }
.cat-hero .lead { margin: 0; }
.cat-sections { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.cat-sections a { padding: 10px 18px; border: 1px solid var(--line); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; transition: background .3s, color .3s, border-color .3s; }
.cat-sections a:hover { border-color: var(--ink); }
.cat-sections a[aria-current] { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* Estructura */
.catalog { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.catalog__bar { display: grid; grid-template-columns: auto minmax(0, 1fr) minmax(180px, 260px) minmax(180px, 240px); gap: 12px; align-items: center; margin-bottom: 16px; }
.catalog__count { margin: 0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.catalog__bar .field input, .catalog__bar .field select { height: 50px; }
.filters-toggle { display: none; }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.active-filters:empty { display: none; }
.chip-x { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border: 1px solid var(--line); background: var(--paper); font-size: 12px; cursor: pointer; transition: border-color .3s; }
.chip-x:hover { border-color: var(--ink); }
.chip-x span { font-size: 15px; line-height: 1; color: var(--mute); }
.chip-x--clear { border-color: transparent; background: none; text-decoration: underline; text-underline-offset: 3px; }
.catalog__more { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 40px; }
.catalog__more p { margin: 0; font-size: 12px; color: var(--mute); }
.catalog__loading { grid-column: 1 / -1; padding: 60px 0; text-align: center; color: var(--mute); }
.catalog__empty { grid-column: 1 / -1; padding: 40px 0; }
.catalog__empty .h3 { margin-bottom: 10px; }
.catalog__empty p { max-width: 52ch; color: var(--mute); }

/* Filtros */
.filters { position: sticky; top: 100px; max-height: calc(100vh - 120px); overflow: auto; padding-right: 6px; scrollbar-width: thin; }
.filters__head { display: none; }
.filter { border-bottom: 1px solid var(--line); }
.filter summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 16px 0; cursor: pointer; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.filter summary::-webkit-details-marker { display: none; }
.filter summary::after { content: "+"; font-size: 18px; font-weight: 300; color: var(--gold); transition: transform .3s var(--ease); }
.filter[open] summary::after { transform: rotate(45deg); }
.filter summary b { font-weight: 600; color: var(--teal); }
.filter__list { list-style: none; margin: 0; padding: 0 0 16px; display: grid; gap: 2px; }
.filter__list--scroll { max-height: 280px; overflow: auto; }
.filter__search { width: 100%; height: 38px; margin: 0 0 10px; padding: 0 12px; border: 1px solid var(--line-strong); background: var(--paper); font-size: 13px; outline: none; }
.filter__search:focus { border-color: var(--teal); }
.filter__empty { color: var(--mute); font-size: 13px; }
.check { display: grid; grid-template-columns: 18px minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 6px 0; cursor: pointer; font-size: 13.5px; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check__box { width: 16px; height: 16px; border: 1px solid rgba(29,29,27,.35); position: relative; background: var(--paper); }
.check input:checked + .check__box { background: var(--ink); border-color: var(--ink); }
.check input:checked + .check__box::after { content: ""; position: absolute; left: 4px; top: 1px; width: 5px; height: 9px; border-right: 1.5px solid #fff; border-bottom: 1.5px solid #fff; transform: rotate(45deg); }
.check input:focus-visible + .check__box { outline: 2px solid var(--teal-2); outline-offset: 2px; }
.check__label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.check__count { font-size: 11px; color: var(--mute); }

/* Tarjeta de producto */
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 24px) clamp(12px, 1.4vw, 20px); }
.product-grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pcard { display: flex; flex-direction: column; }
.pcard__img { position: relative; aspect-ratio: 1; overflow: clip; background: #fff; border: 1px solid rgba(29,29,27,.08); }
.pcard__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity .5s var(--ease), transform .9s var(--ease); }
.pcard__alt { opacity: 0; }
.pcard:hover .pcard__alt { opacity: 1; }
.pcard:hover .pcard__img img:first-child { transform: scale(1.04); }
.pcard:hover .pcard__img img:first-child:not(:only-of-type) { opacity: 0; }
.pcard__badge { position: absolute; left: 10px; top: 10px; padding: 5px 9px; background: var(--ink); color: #fff; font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; }
.pcard__noimg { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-size: 28px; color: var(--line); }
.pcard__body { display: flex; flex-direction: column; gap: 4px; padding-top: 12px; }
.pcard__brand { font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); }
.pcard__name { margin: 0; font-family: var(--serif); font-size: 16px; font-weight: 400; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .3s; }
.pcard:hover .pcard__name { color: var(--teal); }
.pcard__price { font-size: 13.5px; color: var(--ink-2); }
.pcard__price s { color: var(--mute); margin-right: 4px; }

/* Ficha de producto */
.pdp-wrap { padding: clamp(24px, 3vw, 40px) 0 clamp(64px, 8vw, 110px); }
.pdp { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.pdp__gallery { position: sticky; top: 100px; display: grid; gap: 12px; }
.pdp__main { margin: 0; aspect-ratio: 1; background: #fff; border: 1px solid rgba(29,29,27,.08); overflow: clip; position: relative; }
.pdp__main img { width: 100%; height: 100%; object-fit: contain; }
.pdp__thumbs { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; }
.pdp__thumb { padding: 0; aspect-ratio: 1; background: #fff; border: 1px solid var(--line); cursor: pointer; overflow: hidden; transition: border-color .3s; }
.pdp__thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp__thumb[aria-pressed="true"], .pdp__thumb:hover { border-color: var(--ink); }
.pdp__info { max-width: 520px; overflow-wrap: break-word; }
.pdp__brand { display: inline-block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-text); border-bottom: 1px solid transparent; }
.pdp__brand:hover { border-color: var(--gold-text); }
.pdp__name { margin: 12px 0 8px; font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3vw, 40px); line-height: 1.15; text-wrap: balance; }
.pdp__ref { margin: 0; font-size: 12px; letter-spacing: .08em; color: var(--mute); }
.pdp__price { margin: 22px 0 6px; font-family: var(--serif); font-size: 28px; }
.pdp__price s { font-size: 20px; color: var(--mute); }
.pdp__price small { font-family: var(--sans); font-size: 11px; color: var(--mute); }
.pdp__stock { margin: 0 0 22px; font-size: 12.5px; color: var(--mute); display: flex; align-items: center; gap: 8px; }
.pdp__stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.pdp__stock.is-in::before { background: #3d8a5a; }
.pdp__short { color: var(--ink-2); margin: 0 0 24px; }
.pdp__variants { margin-bottom: 22px; }
.pdp__actions { display: grid; gap: 10px; margin: 8px 0 26px; }
.pdp__perks { list-style: none; margin: 0 0 30px; padding: 20px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; font-size: 13px; color: var(--ink-2); }
.pdp__perks li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; }
.pdp__perks li::before { content: "✓"; color: var(--gold); }
.pdp__perks a { border-bottom: 1px solid var(--line); }
.pdp__acc { border-top: 1px solid var(--line); }
.pdp__acc details { border-bottom: 1px solid var(--line); }
.pdp__acc summary { list-style: none; display: flex; justify-content: space-between; padding: 18px 0; cursor: pointer; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.pdp__acc summary::-webkit-details-marker { display: none; }
.pdp__acc summary::after { content: "+"; font-size: 18px; font-weight: 300; color: var(--gold); transition: transform .3s var(--ease); }
.pdp__acc details[open] summary::after { transform: rotate(45deg); }
.pdp__acc details > div, .pdp__acc details > dl, .pdp__acc details > p { margin-bottom: 20px; }
.pdp__specs { grid-template-columns: 120px minmax(0, 1fr); }

/* Producto en el formulario de cita */
.cita-product { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; padding: 12px; margin-bottom: 6px; background: var(--ivory); border: 1px solid var(--line); }
.cita-product img { width: 72px; height: 72px; object-fit: contain; background: #fff; }
.cita-product div { display: grid; gap: 2px; }
.cita-product small { font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); }
.cita-product b { font-family: var(--serif); font-weight: 400; font-size: 18px; line-height: 1.25; }
.cita-product span { font-size: 12px; color: var(--mute); }

/* Texto largo: páginas informativas y blog */
.prose { max-width: 760px; color: var(--ink-2); font-size: 15.5px; line-height: 1.8; overflow-wrap: break-word; }
.prose h2, .prose h3, .prose h4 { font-family: var(--serif); font-weight: 400; color: var(--ink); line-height: 1.25; margin: 1.8em 0 .6em; text-wrap: balance; }
.prose h2 { font-size: clamp(24px, 2.4vw, 30px); }
.prose h3 { font-size: 22px; }
.prose h4 { font-size: 18px; }
.prose p { margin: 0 0 1.1em; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose strong, .prose b { color: var(--ink); font-weight: 600; }
.prose img { height: auto; margin: 1.6em 0; }
.prose figure { margin: 1.6em 0; }
.prose figcaption { font-size: 12px; color: var(--mute); margin-top: 8px; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 14px; display: block; overflow-x: auto; }
.prose th, .prose td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { background: var(--paper); font-weight: 600; }
.prose blockquote { margin: 1.6em 0; padding-left: 20px; border-left: 1px solid var(--gold); font-family: var(--serif); font-size: 20px; color: var(--ink); }
.prose > *:first-child { margin-top: 0; }
.info-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.info-nav { position: sticky; top: 110px; display: grid; gap: 2px; border-top: 1px solid var(--line); }
.info-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; transition: color .3s, padding .3s var(--ease); }
.info-nav a:hover { color: var(--teal); padding-left: 6px; }
.info-nav a[aria-current] { color: var(--teal); font-weight: 600; }

/* Blog */
.blog-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.blog-cats button { padding: 9px 16px; border: 1px solid var(--line); background: none; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: background .3s, color .3s, border-color .3s; }
.blog-cats button[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 3vw, 44px) clamp(20px, 2.5vw, 36px); }
.blog-grid .post p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post__date { font-size: 11px; color: var(--mute); margin-top: 6px; }
.article { max-width: 820px; margin: 0 auto; }
.article__head { text-align: center; margin-bottom: clamp(28px, 4vw, 48px); }
.article__head .h2 { font-size: clamp(32px, 4vw, 52px); margin: 16px 0 14px; text-wrap: balance; }
.article__meta { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.article__cover { margin: 0 0 clamp(32px, 4vw, 52px); aspect-ratio: 3 / 2; overflow: clip; background: var(--sand); }
.article__cover img { width: 100%; height: 100%; object-fit: cover; }
.article .prose { margin: 0 auto; }

/* Botón de búsqueda en la cabecera */
.nav .nav__search { display: inline-flex; align-items: center; gap: 8px; }
.nav .nav__search svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* Página de marca oficial */
.official-note { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; margin-top: 28px; background: var(--paper); border: 1px solid var(--line); font-size: 13px; color: var(--mute); }
.official-note b { color: var(--ink); font-weight: 600; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog__bar { grid-template-columns: auto minmax(0, 1fr); }
  .catalog__bar .field { grid-column: span 1; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .catalog { grid-template-columns: minmax(0, 1fr); }
  .filters { position: fixed; inset: 0; z-index: 60; top: 0; max-height: none; padding: 0 var(--gutter) 100px; background: var(--ivory); transform: translateX(-100%); transition: transform .45s var(--ease); overflow: auto; }
  .filters.is-open { transform: none; }
  .filters__head { display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 2; padding: 18px 0; background: var(--ivory); border-bottom: 1px solid var(--line); }
  .filters__head b { font-family: var(--serif); font-weight: 400; font-size: 24px; }
  .filters__close { width: 44px; height: 44px; border: 0; background: none; font-size: 28px; cursor: pointer; }
  .filters__apply { position: fixed; left: var(--gutter); right: var(--gutter); bottom: 18px; }
  .filters-toggle { display: inline-flex; }
  .catalog__bar { grid-template-columns: auto minmax(0, 1fr); }
  .catalog__bar .field { grid-column: 1 / -1; }
  .catalog__count { text-align: right; }
  .product-grid, .product-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pdp { grid-template-columns: minmax(0, 1fr); }
  .pdp__gallery { position: static; }
  .pdp__thumbs { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .info-layout { grid-template-columns: minmax(0, 1fr); }
  .info-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
  .blog-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (min-width: 901px) { .filters__apply { display: none; } }
@media (max-width: 560px) {
  .pcard__name { font-size: 14.5px; }
  .pdp__specs { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   Accesibilidad, formularios y utilidades
   ========================================================================== */
.skip-link { position: absolute; left: 16px; top: -100px; z-index: 100; padding: 12px 18px; background: var(--ink); color: var(--paper); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.skip-link:focus { top: 16px; }
main:focus { outline: none; }
.topbar :focus-visible, .nl-band :focus-visible, .cta-band :focus-visible, .final :focus-visible, .footer :focus-visible, .lp-footer :focus-visible { outline-color: var(--gold-lt); }

.header__search { display: none; }
.header__search svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { grid-column: 1 / -1; margin: 4px 0 0; padding: 12px 16px; border-left: 2px solid #a4452f; background: rgba(164, 69, 47, .07); font-size: 13px; line-height: 1.55; color: #7e3322; }
.form-status a { text-decoration: underline; text-underline-offset: 3px; }
.nl-form--dark .form-status { background: rgba(240, 179, 159, .1); border-color: #f0b39f; color: #f7d9cf; }
.btn:disabled { cursor: progress; opacity: .7; }

.block-gap { margin-top: clamp(72px, 9vw, 130px); }
.block-gap--sm { margin-top: clamp(56px, 7vw, 96px); }
.trio .feature--bottom img { object-position: center bottom; }
.contact-grid--flush { margin-top: 0; }
.cita__title { margin: 18px 0 26px; }
.crumbs--center { justify-content: center; }
.article__back { margin: 48px 0 0; text-align: center; }
.section__head--center { justify-content: center; text-align: center; }
.prose iframe { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; margin: 1.6em 0; border: 0; }
.lp-footer p { margin: 0; }
.page-hero--error { display: flex; align-items: center; min-height: 60vh; }
.page-hero--error .brand-nav { margin-top: 40px; }

@media (max-width: 900px) {
  .header__search { display: inline-flex; align-items: center; justify-content: center; justify-self: end; width: 44px; height: 44px; }
  /* El panel de filtros cerrado no debe recibir el foco */
  .filters { visibility: hidden; transition: transform .45s var(--ease), visibility 0s linear .45s; }
  .filters.is-open { visibility: visible; transition: transform .45s var(--ease), visibility 0s; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
.catalog__empty--page { padding: 80px 0; }
.pdp__guide { margin: 14px 0 0; }

/* Tamaño mínimo de los objetivos táctiles (24 px) */
.link-line { min-height: 24px; }
.footer__links a, .lp-footer nav a { display: inline-block; padding: 3px 0; }
.pdp__brand { padding: 3px 0; }
