/* ============================================================
   MILUCA&CO — Premium CSS
   Paleta: Negro profundo · Blanco puro · Gris editorial
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:          #080808;
  --bg-2:        #0F0F0F;
  --bg-3:        #161616;
  --surface:     #1A1A1A;
  --border:      rgba(255,255,255,0.14);
  --border-soft: rgba(255,255,255,0.07);

  --cream:       #F0F0F0;
  --cream-dim:   #999999;
  --gold:        #FFFFFF;
  --gold-light:  #DDDDDD;
  --burgundy:    #222222;
  --leather:     #555555;
  --leather-lt:  #888888;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --max-w:       1280px;
  --gap:         clamp(1.5rem, 4vw, 3rem);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; }

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

ul { list-style: none; }

/* ── TYPOGRAPHY SCALE ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(3.5rem, 8vw, 7rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1rem; font-family: var(--font-sans); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }

em { font-style: italic; color: var(--gold); }

p { font-size: clamp(0.9rem, 1.2vw, 1rem); color: var(--cream-dim); max-width: 60ch; }

/* ── HELPERS ─────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 4rem); }

.section { padding-block: clamp(5rem, 10vw, 9rem); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  max-width: none;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header .section-title { margin-bottom: 1.25rem; }
.section-header .section-desc { margin-inline: auto; font-size: 1.05rem; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.3);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(245,240,232,0.05); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--bg); transform: translateY(-2px); }

.btn-lg { padding: 1.1rem 3rem; font-size: 0.8rem; }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.45s, border-color 0.45s, backdrop-filter 0.45s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}
.site-header.hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  background: rgba(10,9,7,0.9);
  backdrop-filter: blur(20px);
  border-color: var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1.5rem clamp(1.25rem, 5vw, 4rem);
}

.nav-logo {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  transition: transform 0.35s var(--ease-out), background-size 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  background-image:
    linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
    linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
    linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
    linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
    linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
    linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
    linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
    linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65));
  background-position: top left, top left, top right, top right, bottom left, bottom left, bottom right, bottom right;
  background-repeat: no-repeat;
  background-size: 1px 11px, 11px 1px, 1px 11px, 11px 1px, 1px 11px, 11px 1px, 1px 11px, 11px 1px;
}
.nav-logo:hover { transform: translateY(-1px); opacity: 0.8; }

/* Al hacer scroll: las esquinas se expanden hasta formar el borde completo */
.site-header.scrolled .nav-logo {
  background-size: 1px 51%, 51% 1px, 1px 51%, 51% 1px, 1px 51%, 51% 1px, 1px 51%, 51% 1px;
}
/* Logo oscuro sobre fondo blanco → invert hace blanco sobre negro → screen elimina el negro */
.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  transition: opacity 0.4s, filter 0.4s;
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--bg) !important;
  padding: 0.6rem 1.5rem;
  font-weight: 600 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/nfl.jpeg');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.48) 55%,
    rgba(0,0,0,0.72) 100%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 50%,
    rgba(0,0,0,0.5) 80%,
    var(--bg) 100%);
  z-index: 2;
}

.hero-overlay { position: absolute; inset: 0; z-index: 3; }

.hero-content {
  position: relative;
  z-index: 10;
  padding: clamp(1.25rem, 5vw, 4rem);
  padding-top: 8rem;
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  max-width: none;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeUp 0.9s var(--ease-out) 0.3s forwards;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(1.5rem);
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--cream-dim);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 50ch;
  opacity: 0;
  transform: translateY(1.5rem);
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(1.5rem);
  animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ── MARQUEE STRIP ────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding-block: 1rem;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.marquee-track .dot { color: var(--gold); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── PRODUCTS ─────────────────────────────────────────────── */
.products-section { background: var(--bg); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}

.product-card {
  background: var(--bg-2);
  overflow: hidden;
  transition: background 0.3s;
}
.product-card:hover { background: var(--bg-3); }

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}

/* Real product images — homepage featured */
.product-img--1 { background-image: url('../images/avirex-marron.jpeg'); background-size: cover; background-position: center top; }
.product-img--2 { background-image: url('../images/nfl.jpeg'); background-size: cover; background-position: center top; }
.product-img--3 { background-image: url('../images/bomber-marron.jpeg'); background-size: cover; background-position: center top; }
.product-img--4 { background-image: url('../images/motero-valentino.jpeg'); background-size: cover; background-position: center top; }
.product-img--5 { background-image: url('../images/biker-crop-negra.jpeg'); background-size: cover; background-position: center top; }

.product-card:hover .product-img { transform: scale(1.06); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,7,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover .product-overlay { opacity: 1; }

.product-btn {
  background: var(--gold);
  color: var(--bg);
  padding: 0.75rem 1.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-out), background 0.3s;
}

.product-card:hover .product-btn { transform: translateY(0); }
.product-btn:hover { background: var(--gold-light); }

.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--burgundy);
  color: var(--cream);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}

.product-info {
  padding: 1.5rem;
  border-top: 1px solid var(--border-soft);
}

.product-info h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.product-type {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  max-width: none;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  max-width: none;
}

/* CTA card */
.product-card--cta {
  background: var(--surface) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-cta-inner {
  padding: 2rem;
  text-align: center;
}

.product-card-cta-inner p {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  max-width: none;
}

.product-card-cta-inner h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* ── STORY ────────────────────────────────────────────────── */
.story-section { background: var(--bg-2); overflow: hidden; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.story-visual {
  position: relative;
  overflow: hidden;
}

.story-img-main {
  width: 100%; height: 100%;
  min-height: 600px;
  background-image: url('../images/motero-aguila.jpeg');
  background-size: cover;
  background-position: center top;
}

.story-img-secondary {
  position: absolute;
  bottom: 3rem; right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  background-image: url('../images/avirex-marron-2.jpeg');
  background-size: cover;
  background-position: center;
  border: 3px solid var(--bg-2);
}

.story-stat {
  position: absolute;
  top: 3rem; right: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  line-height: 1.5;
}

.story-text {
  padding: clamp(3rem, 6vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.story-text .section-title { margin-bottom: 0; }
.story-text p { max-width: 48ch; }
.story-text .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ── PROCESS ──────────────────────────────────────────────── */
.process-section { background: var(--bg); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 3rem 2.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  position: relative;
}

.process-connector {
  width: 3rem;
  height: 1px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.process-step h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.process-step p { font-size: 0.92rem; max-width: none; }

/* ── PHILOSOPHY BANNER ────────────────────────────────────── */
.philosophy-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(5rem, 10vw, 9rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 70%);
}

.philosophy-inner { position: relative; z-index: 1; }

.philosophy-banner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--cream);
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.philosophy-sub {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  max-width: none;
  text-align: center;
}

/* ── CARE SECTION ─────────────────────────────────────────── */
.care-section { background: var(--bg-2); }

.care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.care-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.care-text .section-title { margin-bottom: 0; }
.care-text .btn { align-self: flex-start; }

.care-tips {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.care-tips li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--cream-dim);
}

.care-icon {
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.care-visual { position: relative; }

.care-img {
  aspect-ratio: 4/5;
  background-image: url('../images/perfecto-marron.jpeg');
  background-size: cover;
  background-position: center top;
  border: 1px solid var(--border-soft);
}

/* ── SOCIAL SECTION ───────────────────────────────────────── */
.social-section { background: var(--bg); }

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  margin-bottom: 3rem;
}

.social-placeholder {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.social-placeholder--1 { background-image: url('../images/bomber-negra.jpeg'); background-size: cover; background-position: center; }
.social-placeholder--2 { background-image: url('../images/shearling-marron.jpeg'); background-size: cover; background-position: center top; }
.social-placeholder--3 { background-image: url('../images/camel-marron.jpeg'); background-size: cover; background-position: center top; }
.social-placeholder--4 { background-image: url('../images/ante-zorro.jpeg'); background-size: cover; background-position: center top; }

.social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,7,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.social-placeholder:hover .social-overlay { opacity: 1; }

.social-overlay span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s;
}

.social-link svg { width: 1.1rem; height: 1.1rem; }
.social-link:hover { color: var(--gold); }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: clamp(5rem, 10vw, 9rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.03), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.04), transparent 60%);
}

.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { color: var(--cream); margin-bottom: 1.25rem; }
.cta-inner p { margin-inline: auto; margin-bottom: 2.5rem; font-size: 1.05rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-soft);
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 6px 10px;
  background:
    linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)) top left    / 1px 10px no-repeat,
    linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)) top left    / 10px 1px no-repeat,
    linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)) top right   / 1px 10px no-repeat,
    linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)) top right   / 10px 1px no-repeat,
    linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)) bottom left / 1px 10px no-repeat,
    linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)) bottom left / 10px 1px no-repeat,
    linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)) bottom right/ 1px 10px no-repeat,
    linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)) bottom right/ 10px 1px no-repeat;
  transition: background 0.4s;
}
.footer-logo img {
  height: 40px;
  width: auto;
  transition: filter 0.4s;
}
.footer-logo:hover img {
  filter: drop-shadow(0 1px 8px rgba(255,255,255,0.2));
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 28ch;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.25rem; height: 2.25rem;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: border-color 0.3s, color 0.3s;
}

.footer-social a svg { width: 1rem; height: 1rem; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-nav h4, .footer-contact h4, .footer-legal h4 {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-nav ul, .footer-contact ul, .footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav li, .footer-contact li, .footer-legal li {
  font-size: 0.88rem;
  color: var(--cream-dim);
}

.footer-nav a, .footer-contact a, .footer-legal a {
  color: var(--cream-dim);
  transition: color 0.3s;
}
.footer-nav a:hover, .footer-contact a:hover, .footer-legal a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1.5rem clamp(1.25rem, 5vw, 4rem);
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--cream-dim);
  max-width: none;
}

.footer-credit {
  font-size: 0.72rem !important;
  color: rgba(184,176,160,0.6) !important;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
  font-weight: 500;
}

.footer-credit a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* ── PAGE HEADERS (subpages) ─────────────────────────────── */
.page-header {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.04), transparent 60%);
}

.page-header .container { position: relative; z-index: 1; }

.page-header .section-eyebrow { margin-bottom: 0.75rem; }

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--cream);
  max-width: 15ch;
  margin-bottom: 1.25rem;
}

.page-header p {
  font-size: 1.05rem;
  max-width: 55ch;
}

/* ── SHOP PAGE ────────────────────────────────────────────── */
.shop-controls {
  padding-block: 2.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
}

.shop-controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.shop-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 1px solid var(--border-soft);
  color: var(--cream-dim);
  padding: 0.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shop-sort label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.shop-sort select {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  color: var(--cream);
  padding: 0.5rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  cursor: pointer;
  outline: none;
}

.shop-grid {
  padding-block: 4rem;
  background: var(--bg);
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}

/* ── HISTORIA PAGE ────────────────────────────────────────── */
.historia-content { background: var(--bg); }

.historia-intro {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--bg-2);
}

.historia-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream);
  max-width: 28ch;
  margin-bottom: 2.5rem;
}

.historia-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.historia-body p { margin-bottom: 1.5rem; font-size: 1rem; }

.historia-img {
  aspect-ratio: 3/4;
  background-image: url('../images/bomber-marron-2.jpeg');
  background-size: cover;
  background-position: center top;
  border: 1px solid var(--border-soft);
}

.values-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  margin-top: 3rem;
}

.value-card {
  background: var(--bg-2);
  padding: 3rem 2.5rem;
}

.value-icon {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.value-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.92rem; max-width: none; }

/* ── CARE PAGE ────────────────────────────────────────────── */
.care-content { background: var(--bg); }

.care-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  margin-top: 3rem;
}

.care-step-card {
  background: var(--bg-2);
  padding: 3rem 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.care-step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
}

.care-step-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.care-step-card p { font-size: 0.92rem; max-width: none; }

.care-manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(4rem, 8vw, 7rem);
  text-align: center;
}

.care-manifesto blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  max-width: 22ch;
  margin-inline: auto;
  line-height: 1.4;
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-content {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }

.contact-item h4 {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-item a, .contact-item p {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: none;
  display: block;
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--gold); }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  padding: clamp(2rem, 4vw, 3.5rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

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

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 0;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { min-height: 130px; resize: vertical; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }

.form-check label {
  font-size: 0.8rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .shop-products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { min-height: 450px; }
  .story-img-main { min-height: 450px; }
  .story-img-secondary { display: none; }
  .process-steps { flex-direction: column; }
  .process-connector { width: 1px; height: 2rem; align-self: center; }
  .care-grid { grid-template-columns: 1fr; }
  .historia-body { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .care-steps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 100%);
    height: 100vh;
    background: var(--bg-2);
    border-left: 1px solid var(--border-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 2.5rem;
    gap: 1.5rem;
    transition: right 0.45s var(--ease-out);
    z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.85rem; }
  .nav-toggle { display: flex; z-index: 100; }

  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .shop-products-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── PRODUCT MODAL ─────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5,4,3,0.88);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  max-height: 90vh;
  overflow: hidden;
  transform: translateY(2rem) scale(0.97);
  transition: transform 0.45s var(--ease-out);
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.25rem; height: 2.25rem;
  background: rgba(10,9,7,0.7);
  border: 1px solid var(--border-soft);
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: border-color 0.3s, color 0.3s;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }

.modal-img-col {
  position: relative;
  overflow: hidden;
}

.modal-img {
  width: 100%; height: 100%;
  min-height: 480px;
  background-size: cover;
  background-position: center top;
  transition: transform 0.6s var(--ease-out);
}
.modal-img:hover { transform: scale(1.03); }

.modal-info-col {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.modal-badge {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  max-width: none;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0;
}

.modal-type {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  max-width: none;
  margin-bottom: 0;
}

.modal-desc {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.75;
  border-top: 1px solid var(--border-soft);
  padding-top: 1rem;
  max-width: none;
}

.modal-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  max-width: none;
  line-height: 1;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.modal-actions .btn { justify-content: center; width: 100%; }

.modal-note {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(184,176,160,0.5);
  border-top: 1px solid var(--border-soft);
  padding-top: 1rem;
  max-width: none;
}

@media (max-width: 700px) {
  .modal-card { grid-template-columns: 1fr; }
  .modal-img { min-height: 260px; }
  .modal-info-col { padding: 1.5rem; }
}

/* ── CART ICON EN NAV ──────────────────────────────────── */
.nav-cart-btn {
  position: relative;
  background: none;
  border: 1px solid var(--border-soft);
  color: var(--cream);
  width: 2.2rem; height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}
.nav-cart-btn:hover { border-color: var(--gold); color: var(--gold); }
.nav-cart-btn svg { width: 1rem; height: 1rem; pointer-events: none; }

.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.55rem;
  font-weight: 700;
  font-family: var(--font-sans);
  width: 1.1rem; height: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.cart-badge.visible { opacity: 1; transform: scale(1); }

/* ── CART DRAWER ───────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: absolute;
  top: 0; right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
}
.cart-overlay.open .cart-drawer { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-soft);
}
.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
}
.cart-header-right { display: flex; align-items: center; gap: 1rem; }

.cart-count-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.cart-close {
  background: none;
  border: 1px solid var(--border-soft);
  color: var(--cream-dim);
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.cart-close:hover { border-color: var(--gold); color: var(--gold); }
.cart-close svg { width: 14px; height: 14px; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.75rem;
}
.cart-items::-webkit-scrollbar { width: 3px; }
.cart-items::-webkit-scrollbar-thumb { background: var(--border); }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  text-align: center;
}
.cart-empty svg { width: 3rem; height: 3rem; color: var(--border); }
.cart-empty p { font-size: 0.9rem; color: var(--cream-dim); max-width: none; }
.cart-empty a { font-size: 0.72rem; }

.cart-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
  animation: fadeUp 0.35s var(--ease-out) forwards;
}

.cart-item-img {
  width: 4.5rem; height: 4.5rem;
  background-size: cover;
  background-position: center top;
  border: 1px solid var(--border-soft);
  flex-shrink: 0;
}

.cart-item-info h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.cart-item-info p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  text-transform: uppercase;
  max-width: none;
  margin-bottom: 0.35rem;
}
.cart-item-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--cream-dim);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s;
  line-height: 1;
  font-size: 1.1rem;
  align-self: flex-start;
}
.cart-item-remove:hover { color: #ff4444; }

.cart-footer {
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cart-total-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.cart-total-amount {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--cream);
}

.cart-note {
  font-size: 0.68rem;
  color: rgba(153,153,153,0.6);
  text-align: center;
  max-width: none;
  line-height: 1.6;
}

.cart-footer .btn { justify-content: center; width: 100%; }

/* ── FIX: parallax no funciona en móvil (iOS Safari) ──── */
@media (max-width: 768px), (hover: none) {
  .hero-bg {
    background-attachment: scroll;
    background-position: center 15%;
  }
}
