/* ============================================================
   QUIROLA STUDIO — Tokens
   Paleta extraída de las fotos reales de producto:
   negro cuero, camel, blanco. Sin dorado, sin espresso café.
   ============================================================ */
:root {
  --espresso: #262628;
  --espresso-soft: #2E2E30;
  --parchment: #F7F7F9;
  --parchment-card: #FFFFFF;
  --tan: #A79882;
  --tan-deep: #6B5D4C;
  --brass: #A79882;
  --thread: #E4E1DA;
  --ink: #262628;
  --ink-soft: #6B6862;

  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius-tag: 4px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img { max-width: 100%; display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--parchment);
  color: var(--ink);
  padding-bottom: 6rem;
}

.topnav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem 0;
  flex-wrap: nowrap;
}

.topnav__mark {
  display: inline-flex;
  align-items: center;
}

.topnav__mark img {
  height: 34px;
  width: auto;
  display: block;
}

.topnav__links {
  display: flex;
  gap: 1.15rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  flex-shrink: 1;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.topnav__links::-webkit-scrollbar { display: none; }

.topnav__mark { flex-shrink: 0; }
.topnav__whatsapp { flex-shrink: 0; }

.topnav__links a:hover { color: var(--ink); }

.topnav__whatsapp {
  border: 1px solid var(--thread);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.topnav__whatsapp:hover {
  background: rgba(167, 152, 130, 0.1);
  border-color: var(--brass);
}

.hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5.5rem 1.5rem 0;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--tan-deep);
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 1.75rem;
  max-width: 14ch;
  color: var(--ink);
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--tan-deep);
}

.hero__subtitle {
  max-width: 46ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 2.5rem;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--parchment);
  background: var(--espresso);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-tag);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero__cta:hover {
  background: var(--tan-deep);
  transform: translateY(-1px);
}

.hero__content--split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__content--split .hero__title { max-width: none; }
.hero__content--split .hero__subtitle { max-width: 42ch; }

.hero__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-tag);
  border: 1px solid var(--thread);
}

@media (max-width: 900px) {
  .hero__content--split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__content--split .hero__photo { order: -1; }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--tan-deep);
  color: var(--parchment);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
}

/* ============================================================
   CATALOG
   ============================================================ */
.catalog {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 2rem;
}

.category {
  margin-bottom: 4.5rem;
}

.category__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(36, 28, 22, 0.15);
  padding-bottom: 0.9rem;
  margin-bottom: 2.25rem;
}

.category__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.9rem;
  margin: 0;
  color: var(--ink);
}

.category__count {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.category__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.25rem;
}

.category__grid .tag-card {
  flex: 0 1 calc((100% - 6.75rem) / 4);
  min-width: 240px;
}

@media (min-width: 901px) {
  .category__grid--five .tag-card {
    flex-basis: calc((100% - 4.5rem) / 3);
  }
}

/* ---- Hang-tag card ---- */
.tag-card {
  background: var(--parchment-card);
  border-radius: var(--radius-tag);
  position: relative;
  padding-top: 1.25rem;
  box-shadow: 0 1px 2px rgba(36, 28, 22, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tag-card:hover {
  transform: rotate(-1.2deg) translateY(-3px);
  box-shadow: 0 14px 24px rgba(36, 28, 22, 0.14);
}

.tag-card__punch {
  position: absolute;
  top: -10px;
  left: 1.6rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--parchment);
  border: 3px solid var(--brass);
  box-shadow: 0 0 0 3px var(--parchment-card);
}

.tag-card__punch::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 8px;
  width: 1px;
  height: 26px;
  background: repeating-linear-gradient(
    to bottom,
    var(--thread) 0,
    var(--thread) 3px,
    transparent 3px,
    transparent 6px
  );
}

.tag-card__image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, #EAE7E1, #DAD5CB);
  border-radius: var(--radius-tag) var(--radius-tag) 0 0;
  overflow: hidden;
  position: relative;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-card__missing-label {
  display: none;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  padding: 0 1rem;
  line-height: 1.5;
}

.tag-card__image--missing .tag-card__missing-label {
  display: block;
}

.tag-card__count {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: var(--parchment);
  background: rgba(26, 21, 18, 0.6);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.tag-card__name-link {
  display: block;
}

.tag-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.tag-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
}

.tag-card__detail {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--tan-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
}

.tag-card__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}

.tag-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem 0.75rem;
  border-top: 1px dashed rgba(36, 28, 22, 0.18);
  padding-top: 1rem;
}

.tag-card__price {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}

.tag-card__cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--parchment);
  background: var(--espresso);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.tag-card__cta:hover {
  background: var(--tan-deep);
}

/* ============================================================
   DETRÁS DEL OFICIO
   ============================================================ */
.craft-proof {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 5rem;
}

.craft-proof__intro {
  max-width: 640px;
  margin-bottom: 2rem;
}

.craft-proof__eyebrow {
  margin: 0 0 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tan-deep);
}

.craft-proof h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.craft-proof__intro > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.craft-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.craft-proof__card {
  display: block;
  background: var(--parchment-card);
  border: 1px solid var(--thread);
  border-radius: var(--radius-tag);
  overflow: hidden;
}

.craft-proof__card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(155deg, #EAE7E1, #DAD5CB);
}

.craft-proof__card--machine img { object-position: center; }
.craft-proof__card--pony img { object-position: center 38%; }
.craft-proof__card--threads img { object-position: center; }

.craft-proof__card span {
  display: block;
  padding: 0.9rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.craft-proof__instagram {
  display: inline-block;
  margin-top: 1.5rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--tan);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--tan-deep);
}

@media (max-width: 700px) {
  .craft-proof__grid { grid-template-columns: 1fr; }
  .craft-proof__card { display: grid; grid-template-columns: 42% 1fr; align-items: center; }
  .craft-proof__card img { height: 100%; aspect-ratio: 4 / 3; }
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

.instagram-section__intro {
  max-width: 640px;
  margin-bottom: 2rem;
}

.instagram-section__eyebrow {
  margin: 0 0 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tan-deep);
}

.instagram-section h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.instagram-section__intro > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.instagram-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.instagram-section__card {
  display: block;
  color: var(--ink);
  border: 1px solid var(--thread);
  border-radius: var(--radius-tag);
  overflow: hidden;
  background: var(--paper);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.instagram-section__card:hover {
  transform: translateY(-4px);
  border-color: var(--tan);
}

.instagram-section__card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-deep);
}

.instagram-section__card span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.instagram-section__card b {
  color: var(--tan-deep);
  font-weight: 400;
}

.instagram-section__cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--tan);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--tan-deep);
}

@media (max-width: 900px) {
  .instagram-section__grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--espresso);
  color: var(--parchment);
  text-align: center;
  padding: 5rem 1.5rem;
  margin-top: 2rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  margin: 0 0 0.75rem;
}

.cta-band p {
  color: rgba(247, 247, 249, 0.75);
  margin: 0 0 2rem;
}

.cta-band__button {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background: var(--brass);
  color: var(--espresso);
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-tag);
  transition: transform 0.2s ease;
}

.cta-band__button:hover { transform: translateY(-2px); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.faq-section__eyebrow {
  margin: 0 0 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tan-deep);
}

.faq-section h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.faq-section__intro > p:last-child,
.faq-section details p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.faq-section details {
  border-top: 1px solid var(--thread);
  padding: 1rem 0;
}

.faq-section details:last-child { border-bottom: 1px solid var(--thread); }

.faq-section summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--ink);
}

.faq-section details p { margin: 0.8rem 0 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--thread);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.footer__mark {
  display: flex;
  margin-bottom: 1rem;
}

.footer__mark img {
  height: 34px;
  width: auto;
}

.footer__brand p,
.footer__column p {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer__column h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tan-deep);
}

.footer__column a {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.footer__note {
  font-size: 0.78rem;
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--thread);
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .faq-section { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .topnav { flex-wrap: wrap; }
  .topnav__links {
    display: flex;
    order: 3;
    flex-basis: 100%;
    padding: 0.35rem 2rem 0.25rem 0;
    scroll-snap-type: x proximity;
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 30px), transparent 100%);
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 30px), transparent 100%);
  }
  .topnav__links a { scroll-snap-align: start; }
  .hero__content { padding-top: 3.5rem; }
  .category__grid { gap: 1.25rem; }
  .category__grid .tag-card { flex-basis: 100%; min-width: 0; max-width: 420px; }
  .tag-card__body { padding: 1rem 1.1rem 1.25rem; }
  .tag-card__price { font-size: 0.95rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* Visible keyboard focus */
a:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}


/* ============================================================
   HERO COMPACTO (página de producto — sin foto de fondo grande)
   ============================================================ */
.hero--compact {
  background-image: none;
  padding-bottom: 0;
}

.hero--compact .topnav {
  padding: 1.75rem 1.5rem;
}

/* ============================================================
   PÁGINA DE PRODUCTO
   ============================================================ */
.product-root {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
}

.product__back {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}

.product__back:hover { color: var(--tan-deep); }

.product__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* ---- Galería ---- */
.gallery__main {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, #EAE7E1, #DAD5CB);
  border-radius: var(--radius-tag);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__missing-label {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.gallery__main--missing .gallery__missing-label {
  display: block;
}

.gallery__thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.gallery__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-tag);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: var(--thread);
  flex-shrink: 0;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.65;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__thumb:hover { opacity: 0.9; }

.gallery__thumb--active {
  border-color: var(--brass);
  opacity: 1;
}

/* ---- Info del producto ---- */
.product__eyebrow { margin-bottom: 0.9rem; color: var(--tan-deep); }

.product__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 0 0 0.3rem;
  color: var(--ink);
}

.product__detail {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}

.product__price {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1.5rem;
}

.product__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.75rem;
  max-width: 46ch;
}

.product__specs {
  margin: 0 0 2rem;
  padding: 1.1rem 0 0;
  border-top: 1px dashed rgba(36, 28, 22, 0.18);
  font-size: 0.88rem;
}

.product__spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(36, 28, 22, 0.08);
}

.product__spec-row:last-child { border-bottom: none; }

.product__spec-row dt {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tan-deep);
  flex-shrink: 0;
}

.product__spec-row dd {
  margin: 0;
  text-align: right;
  color: var(--ink-soft);
}

.product__cta { display: inline-block; }

/* ---- No encontrado ---- */
.product-missing {
  padding: 4rem 0;
  text-align: center;
}

.product-missing__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--brass);
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.product-missing h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 1.75rem;
}

.product-missing .hero__cta {
  background: var(--espresso);
  color: var(--parchment);
}

/* ---- Piezas relacionadas ---- */
.related {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(36, 28, 22, 0.15);
}

.related__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 1.75rem;
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-card {
  display: block;
}

.related-card__image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, #EAE7E1, #DAD5CB);
  border-radius: var(--radius-tag);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card:hover .related-card__image img { transform: scale(1.04); }

.related-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  color: var(--ink);
}

.related-card__price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 800px) {
  .product__layout { grid-template-columns: 1fr; gap: 2rem; }
  .related__grid { grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
}

@media (max-width: 500px) {
  .related__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PÁGINA ABOUT
   ============================================================ */
.about {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

.about__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--brass);
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.about__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  line-height: 1.15;
  margin: 0 0 2.25rem;
  color: var(--ink);
}

.about__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--tan-deep);
}

.about p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}

.about__signoff {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 2.5rem;
}

.about__facts {
  list-style: none;
  margin: 3rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid rgba(36, 28, 22, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about__facts li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.about__facts strong {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  text-transform: none;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

@media (max-width: 640px) {
  .about__facts { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Ficha de opciones dentro de la página de personalización */
.custom__options {
  margin: 1.5rem 0 2rem;
}

.custom__options .product__spec-row dd {
  max-width: 60%;
}

.custom__cta { display: inline-block; }

.custom-guide {
  margin: 2rem 0 2.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(36, 28, 22, 0.14);
  border-radius: var(--radius-tag);
  background: rgba(255, 252, 245, 0.58);
}

.custom-guide__eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--tan-deep);
}

.custom-guide h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.2;
}

.custom-guide p:not(.custom-guide__eyebrow) {
  margin: 0.55rem 0 0;
}

/* Muestra de colores de cuero Epsom */
.leather-swatches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem;
  margin: 1.1rem 0 0.6rem;
}

.leather-swatches__item img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 0.35rem;
  background: linear-gradient(110deg, #e3ddd2 30%, #f2ede4 48%, #e3ddd2 66%);
  background-size: 220% 100%;
  animation: swatch-loading 1.4s ease-in-out infinite;
}

@keyframes swatch-loading {
  to { background-position-x: -220%; }
}

@media (prefers-reduced-motion: reduce) {
  .leather-swatches__item img { animation: none; }
}

.leather-swatches__item span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  line-height: 1.3;
}

.leather-swatches__credit {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0.5rem 0 0;
}

.leather-swatches__credit a {
  color: var(--tan-deep);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .leather-swatches { grid-template-columns: repeat(4, 1fr); }
}

.leather-swatches--small {
  grid-template-columns: repeat(10, 1fr);
  gap: 0.4rem;
}

.leather-swatches--small .leather-swatches__item span {
  font-size: 0.56rem;
}

@media (max-width: 640px) {
  .leather-swatches--small { grid-template-columns: repeat(5, 1fr); }
}

.thread-colors {
  margin: 1rem 0 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.thread-colors span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.leather-swatches--hardware {
  grid-template-columns: repeat(2, 140px);
  gap: 1rem;
}

.machine-photo {
  margin-top: 1rem;
  max-width: 260px;
}

.machine-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-tag);
  border: 1px solid var(--thread);
}

/* Pasos de personalización */
.custom-steps {
  list-style: none;
  margin: 2rem 0 2.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.custom-steps__item {
  display: flex;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(36, 28, 22, 0.12);
}

.custom-steps__item:last-child {
  border-bottom: 1px solid rgba(36, 28, 22, 0.12);
}

.custom-steps__num {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--brass);
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.custom-steps__item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
  color: var(--ink);
}

.custom-steps__item p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  max-width: 52ch;
}

@media (max-width: 560px) {
  .custom-steps__item { gap: 1rem; }
}
