/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

:root {
  --bg:        #100D0A;
  --bg-2:      #17120D;
  --bg-3:      #211A12;
  --bg-4:      #2A2117;
  --cream:     #F3ECDD;
  --cream-2:   #DBCDB4;
  --cream-3:   #8F8171;
  --accent:    #B23B3B;
  --accent-2:  #7A2424;
  --accent-soft: rgba(178,59,59,.16);
  --line:      rgba(243,236,221,.12);
  --line-soft: rgba(243,236,221,.06);

  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  "JetBrains Mono", "IBM Plex Mono", monospace;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --container: 1320px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  opacity: 0;
  transition: opacity .5s var(--ease-out);
}
html.is-ready body { opacity: 1; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; color: var(--cream); }
::selection { background: var(--accent); color: var(--bg); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  border-radius: 8px; font-weight: 600; font-size: .85rem;
}
.skip-link:focus { top: 1rem; }

@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: .6s; animation-timing-function: var(--ease-out);
}
::view-transition-old(root) { animation-name: fadeOutUp; }
::view-transition-new(root) { animation-name: fadeInUp; }
@keyframes fadeOutUp { to { opacity: 0; transform: translateY(-12px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px) { .container { padding-inline: 2.5rem; } }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.eyebrow {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--accent); }

[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Typography
   ============================================================= */
.section-title {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-style: italic;
}
.section-sub { color: var(--cream-3); max-width: 46ch; margin-top: .9rem; font-size: 1.05rem; }

.split-word, .split-char { display: inline-block; will-change: transform, opacity; }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-size: .92rem; font-weight: 600; letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s, color .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(0,0,0,.35), 0 10px 22px var(--accent-soft); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-primary { background: var(--accent); color: #17120D; }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid var(--line); }
.btn-whatsapp {
  background: var(--accent); color: var(--cream); width: 100%; justify-content: center;
  padding: .8rem 1.2rem; font-size: .85rem;
}
.btn-whatsapp:hover { background: var(--accent-2); }
.btn-block { width: 100%; justify-content: center; }

.chip {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .04em;
  padding: .4rem .85rem; border-radius: 999px; border: 1px solid var(--line);
  color: var(--cream-3); transition: background .3s, color .3s, border-color .3s;
}
.chip:hover, .chip.is-active { background: var(--accent); color: #17120D; border-color: var(--accent); }

.card { position: relative; }
.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }

.has-halo { position: relative; isolation: isolate; }
.has-halo::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), var(--accent-soft), transparent 65%);
  opacity: 0; transition: opacity .4s;
}
.has-halo:hover::before { opacity: 1; }

/* =============================================================
   6. Cursor
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  display: none; mix-blend-mode: difference; opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; }
.cursor-dot { width: 5px; height: 5px; margin: -2.5px; background: var(--cream); border-radius: 50%; }
.cursor-ring {
  width: 32px; height: 32px; margin: -16px; border: 1px solid var(--cream); border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 52px; height: 52px; margin: -26px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   7. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .9s, clip-path 1.1s;
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-mark {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.8rem, 5vw, 3rem); color: var(--cream);
  letter-spacing: .02em;
}
.splash-line {
  display: block; width: 64px; height: 1px; background: var(--accent); margin: 1.2rem auto 0;
  animation: splashLine 1.6s var(--ease-soft) infinite;
}
@keyframes splashLine { 0%,100% { transform: scaleX(.3); opacity: .5; } 50% { transform: scaleX(1); opacity: 1; } }

/* =============================================================
   8. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(16,13,10,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 40px; width: auto; display: block; border-radius: 6px; }
.nav-links { display: none; align-items: center; gap: 2.2rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; font-size: .9rem; padding: .25rem 0; color: var(--cream-2); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.is-active { color: var(--cream); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-actions .btn { padding: .65rem 1.3rem; font-size: .82rem; }
.nav-actions .btn-ghost { display: none; }
@media (min-width: 720px) { .nav-actions .btn-ghost { display: inline-flex; } }

.nav-burger {
  display: grid; place-items: center; width: 42px; height: 42px;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { position: relative; width: 20px; height: 1px; background: var(--cream); }
.nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 1px; background: var(--cream); transition: transform .3s;
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

.nav-mobile {
  position: fixed; inset: 0; z-index: 110; background: var(--bg-2); color: var(--cream);
  display: grid; place-items: center; clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile-links { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.nav-mobile-links a { font-family: var(--serif); font-style: italic; font-size: 2.2rem; }
.nav-mobile-close { position: absolute; top: 1.6rem; right: 1.6rem; font-family: var(--mono); font-size: .85rem; }

/* =============================================================
   9. Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; isolation: isolate; padding-top: var(--nav-h);
}
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: saturate(1.05) contrast(1.05) brightness(.42);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,13,10,.35) 0%, rgba(16,13,10,.55) 55%, var(--bg) 96%);
}
.hero-mesh {
  position: absolute; inset: -15%; z-index: -2;
  background:
    radial-gradient(55% 45% at var(--mesh-x) var(--mesh-y), rgba(178,59,59,.4), transparent 62%),
    conic-gradient(from var(--mesh-angle), rgba(122,36,36,.22), rgba(178,59,59,.08), rgba(122,36,36,.22));
  filter: blur(90px) saturate(120%);
  opacity: .85; mix-blend-mode: screen;
  animation: meshShift 24s linear infinite;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 24%; --mesh-y: 36%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 74%; --mesh-y: 58%; }
  100% { --mesh-angle: 360deg; --mesh-x: 24%; --mesh-y: 36%; }
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .16; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.hero-inner { max-width: 880px; }
.hero-title { font-size: clamp(2.6rem, 7.2vw, 6rem); font-style: italic; margin-top: 1.3rem; max-width: 16ch; }
.hero-title em { color: var(--accent); font-style: italic; }
.hero-sub { margin-top: 1.4rem; max-width: 46ch; font-size: 1.1rem; color: var(--cream-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-meta { display: flex; gap: 1.6rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-meta-item { font-family: var(--mono); font-size: .78rem; color: var(--cream-3); display: flex; align-items: center; gap: .5rem; }
.hero-meta-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.scroll-hint {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream-3);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.scroll-hint::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent); animation: scrollHint 2s ease-in-out infinite; }
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =============================================================
   10. Marquee
   ============================================================= */
.marquee-section { padding-block: 2.6rem; border-block: 1px solid var(--line); }
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track { display: inline-flex; gap: 3rem; white-space: nowrap; will-change: transform; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--cream-3); }
.marquee-track span.dot { color: var(--accent); font-family: var(--sans); }

/* =============================================================
   11. Sections general
   ============================================================= */
.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section-head { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 3rem; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }

/* =============================================================
   12. Showcase pinned horizontal (colecciones)
   ============================================================= */
.showcase { position: relative; }
.showcase-viewport { overflow: hidden; }
.showcase-track { display: flex; gap: 1.4rem; padding-block: 1rem; will-change: transform; }
.showcase-card {
  position: relative; flex: 0 0 auto; width: min(78vw, 380px); aspect-ratio: 3/4;
  border-radius: 18px; overflow: hidden; background: var(--bg-3);
  border: 1px solid var(--line);
}
.showcase-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft), filter .55s; }
.showcase-card:hover img { transform: scale(1.08); filter: saturate(1.15) brightness(1.03); }
.showcase-card-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(16,13,10,.92) 100%);
  display: flex; align-items: flex-end; padding: 1.6rem;
}
.showcase-card-title { font-size: 1.5rem; font-style: italic; color: var(--cream); }
.showcase-card-count { font-family: var(--mono); font-size: .72rem; color: var(--cream-3); margin-top: .3rem; display: block; }

/* =============================================================
   13. Product grid & card (signature: tilt + halo)
   ============================================================= */
.filters { display: flex; gap: .7rem; flex-wrap: wrap; }
.product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 720px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }
@media (min-width: 1280px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
}
.product-media { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-4); }
.product-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .15s linear, transform .8s var(--ease-soft); }
.product-card:hover .product-img { transform: scale(1.06); }
.product-card:hover .product-media { box-shadow: inset 0 0 0 1px var(--accent-soft); }
.product-body { padding: 1.1rem 1.1rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.product-cat { font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.product-name { font-size: 1.05rem; font-style: italic; }
.product-price { font-family: var(--mono); font-size: 1rem; color: var(--cream); margin-top: -.2rem; }
.product-colors { display: flex; flex-wrap: wrap; gap: .35rem; margin-block: .3rem .1rem; }
.color-chip {
  font-family: var(--mono); font-size: .62rem; padding: .3rem .65rem; border: 1px solid var(--line); border-radius: 999px;
  color: var(--cream-3); background: transparent; cursor: pointer; opacity: .65;
  transition: opacity .25s var(--ease-out), transform .2s var(--ease-out);
}
.color-chip:hover { opacity: 1; }
.color-chip.is-selected { opacity: 1; box-shadow: 0 0 0 2px var(--bg-3), 0 0 0 3px var(--cream-3); }
.product-sizes { display: flex; flex-wrap: wrap; gap: .35rem; margin-block: .3rem .5rem; }
.size-chip {
  font-family: var(--mono); font-size: .64rem; padding: .3rem .6rem; border: 1px solid var(--line); border-radius: 999px;
  color: var(--cream-3); background: transparent; cursor: pointer;
  transition: background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.size-chip:hover { border-color: var(--accent); color: var(--cream); }
.size-chip.is-selected { background: var(--accent); border-color: var(--accent); color: var(--cream); }
.product-sizes-hint { font-size: .7rem; color: var(--cream-3); opacity: 0; height: 0; overflow: hidden; transition: opacity .25s, height .25s; }
.product-sizes-hint.is-visible { opacity: 1; height: auto; margin-bottom: .2rem; }
.btn-add-cart { margin-top: .2rem; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.product-whatsapp-link { text-align: center; font-size: .78rem; color: var(--cream-3); margin-top: -.1rem; }
.product-whatsapp-link a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.product-empty, .product-error {
  grid-column: 1 / -1; text-align: center; padding: 4rem 1rem; color: var(--cream-3);
}
.product-skeleton { grid-column: 1/-1; text-align: center; padding: 4rem 1rem; color: var(--cream-3); font-family: var(--mono); font-size: .8rem; letter-spacing: .08em; }

/* =============================================================
   13b. Cart
   ============================================================= */
.cart-btn { position: relative; display: grid; place-items: center; width: 42px; height: 42px; }
.cart-btn svg { width: 21px; height: 21px; }
.cart-badge {
  position: absolute; top: 2px; right: 0; min-width: 17px; height: 17px; padding: 0 4px;
  display: grid; place-items: center; border-radius: 999px; background: var(--accent); color: var(--cream);
  font-family: var(--mono); font-size: .62rem; line-height: 1; opacity: 0; transform: scale(.6);
  transition: opacity .25s var(--ease-bounce), transform .25s var(--ease-bounce);
}
.cart-badge.is-visible { opacity: 1; transform: scale(1); }

.cart-overlay {
  position: fixed; inset: 0; z-index: 120; background: rgba(8,6,4,.6);
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease-out);
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 121; width: min(420px, 100vw);
  background: var(--bg-2); border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .5s var(--ease-soft);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.4rem 1.1rem; border-bottom: 1px solid var(--line); }
.cart-head h2 { font-size: 1.3rem; font-style: italic; }
.cart-close { width: 36px; height: 36px; display: grid; place-items: center; font-family: var(--mono); font-size: .8rem; color: var(--cream-3); }
.cart-close:hover { color: var(--cream); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-empty { color: var(--cream-3); text-align: center; padding: 3rem 1rem; font-size: .92rem; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: .9rem; align-items: center; }
.cart-item-img { width: 64px; height: 80px; border-radius: 10px; overflow: hidden; background: var(--bg-4); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: .92rem; font-style: italic; }
.cart-item-meta { font-family: var(--mono); font-size: .7rem; color: var(--cream-3); margin-top: .2rem; }
.cart-item-price { font-family: var(--mono); font-size: .82rem; color: var(--cream); margin-top: .3rem; }
.cart-item-qty { display: flex; align-items: center; gap: .4rem; margin-top: .4rem; }
.cart-qty-btn {
  width: 22px; height: 22px; border: 1px solid var(--line); border-radius: 6px; display: grid; place-items: center;
  font-family: var(--mono); font-size: .8rem; color: var(--cream-2);
}
.cart-qty-btn:hover { border-color: var(--accent); color: var(--cream); }
.cart-qty-value { font-family: var(--mono); font-size: .8rem; min-width: 1.2em; text-align: center; }
.cart-item-remove { justify-self: end; align-self: start; font-family: var(--mono); font-size: .68rem; color: var(--cream-3); text-decoration: underline; text-underline-offset: 2px; }
.cart-item-remove:hover { color: var(--accent); }
.cart-foot { border-top: 1px solid var(--line); padding: 1.2rem 1.4rem 1.6rem; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.cart-total-label { color: var(--cream-3); font-size: .85rem; }
.cart-total-value { font-family: var(--mono); font-size: 1.3rem; color: var(--cream); }

/* =============================================================
   14. Story / Nosotros blocks
   ============================================================= */
.story {
  display: grid; grid-template-columns: 1fr; gap: 2.6rem; align-items: center;
}
@media (min-width: 960px) { .story { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.story-figure { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
.story-figure img { width: 100%; height: 100%; object-fit: cover; }
.story-figure-stack { display: flex; flex-direction: column; gap: 1rem; aspect-ratio: auto; overflow: visible; }
.story-figure-stack img { border-radius: 20px; aspect-ratio: 4/5; height: auto; }
.story-text p + p { margin-top: 1.1rem; }
.story-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.story-list li { display: flex; gap: .9rem; align-items: baseline; }
.story-list .num { font-family: var(--mono); color: var(--accent); font-size: .82rem; }

/* =============================================================
   15. Contact / info blocks
   ============================================================= */
.info-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 720px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-card { background: var(--bg-3); border: 1px solid var(--line); border-radius: 16px; padding: 1.8rem; }
.info-card h3 { font-size: 1.1rem; font-style: italic; margin-bottom: .6rem; }
.info-card p { color: var(--cream-3); font-size: .92rem; }
.map-frame { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/8; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) invert(.92) contrast(.9); }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-block: 3.4rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.4rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-logo { display: block; }
.footer-logo img { height: 48px; width: auto; display: block; border-radius: 6px; }
.footer-brand p { color: var(--cream-3); margin-top: .8rem; max-width: 32ch; font-size: .9rem; }
.footer h4 { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-3); margin-bottom: 1rem; font-style: normal; }
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .78rem; color: var(--cream-3);
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   17. Page header (subpages)
   ============================================================= */
.page-header {
  position: relative; padding-top: calc(var(--nav-h) + 4.5rem); padding-bottom: 3.5rem; overflow: hidden;
}
.page-header-bg { position: absolute; inset: 0; z-index: -2; }
.page-header-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.05) brightness(.5); }
.page-header-bg::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(16,13,10,.55), var(--bg) 92%);
}
.page-title { font-size: clamp(2.2rem, 5.5vw, 4rem); font-style: italic; }

/* =============================================================
   18. Responsive breakpoints (global helpers)
   ============================================================= */
@media (min-width: 540px) { }
@media (min-width: 720px) { }
@media (min-width: 960px) { }
@media (min-width: 1280px) { }
@media (min-width: 1600px) { }

/* =============================================================
   19. Reduced-motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .scroll-hint::after { animation: none; }
  .splash-line { animation: none; }
}
