/* =====================================================
   Mezcla Garage — Landing
   Tostadora de café de especialidad
   Identidad: editorial · taller · cobre y ámbar
   ===================================================== */

:root {
  /* Café · base oscura */
  --ink:        #0A0706;
  --espresso:   #100A07;
  --coffee-900: #1A100A;
  --coffee-800: #241712;
  --coffee-700: #321F15;
  --coffee-600: #4A2D1F;
  --coffee-500: #5C3A24;

  /* Crema / papel · base clara */
  --paper:    #F6F0E2;
  --paper-2:  #ECE3D0;
  --cream:    #FAF4E6;
  --beige:    #D9C9A8;

  /* Cobre / ámbar · acento principal (NUEVO — reemplaza olivo) */
  --copper-900: #5A3416;
  --copper-700: #8E5828;
  --copper-600: #A8693A;
  --copper-500: #B8753A;
  --copper-400: #CC8B53;
  --copper-300: #D89461;
  --copper-200: #E6B589;

  /* Brasa · acento de calor, uso muy puntual */
  --ember:    #C44A24;

  /* Dorado · toque premium */
  --gold:       #C9A961;
  --gold-soft:  #DCBE82;
  --gold-light: #E8D096;

  /* Sistema · esquinas tensas, sombras suaves */
  --radius-xs: 2px;
  --radius:    4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.08);
  --shadow:    0 12px 32px rgba(0,0,0,.16);
  --shadow-lg: 0 28px 70px rgba(0,0,0,.30);

  /* Tipografías */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
  --font-bebas:   'Bebas Neue', Impact, sans-serif;

  --container: 1240px;
  --transition: cubic-bezier(.2,.7,.2,1);
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--coffee-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all .25s var(--transition); }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
em { font-style: italic; }

/* ===== Layout ===== */
.container { width: min(var(--container), 92%); margin: 0 auto; }
.section { padding: clamp(64px, 10vw, 130px) 0; position: relative; }
.section-dark { background: var(--coffee-900); color: var(--cream); }

.section-head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 70px); text-align: center; }
.section-cta { text-align: center; margin-top: clamp(40px, 6vw, 64px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--copper-700);
  padding: 7px 14px 7px 12px;
  border: 1px solid rgba(184,117,58,.32);
  border-radius: 2px;
  margin-bottom: 18px;
  background: transparent;
}
.eyebrow.eyebrow-light {
  color: var(--copper-300);
  border-color: rgba(216,148,97,.32);
}
.sec-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0;
  color: var(--copper-500);
  padding-right: 10px;
  border-right: 1px solid currentColor;
  opacity: .85;
}
.eyebrow-light .sec-num { color: var(--copper-300); }

/* Lot chip · marca técnica de taller */
.lot-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--copper-300);
  padding: 6px 12px;
  border: 1px solid rgba(216,148,97,.30);
  border-radius: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.lot-chip .lot-divider { opacity: .35; }
.lot-chip .lot-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 3px rgba(196,74,36,.20);
  animation: lotPulse 2.4s ease-in-out infinite;
}
@keyframes lotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(196,74,36,.20); }
  50%      { box-shadow: 0 0 0 6px rgba(196,74,36,.05); }
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  color: var(--coffee-900);
}
.section-title.light { color: var(--cream); }
.section-title em {
  font-style: italic;
  color: var(--coffee-700);
}
.section-title.light em { color: var(--gold-light); }

.section-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(26,17,9,.72);
  max-width: 640px;
  margin: 0 auto;
}
.section-dark .section-sub { color: rgba(242,234,220,.78); }

.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.75;
  color: rgba(26,17,9,.85);
  margin: 0 0 24px;
}
.lead.light { color: rgba(242,234,220,.88); }

/* Highlight tipográfico (subrayado dorado) */
.title-mark {
  background-image: linear-gradient(to bottom, transparent 62%, rgba(201,169,97,.42) 62%);
  padding: 0 6px;
  white-space: nowrap;
}
.title-mark.gold { color: var(--gold-light); background-image: linear-gradient(to bottom, transparent 62%, rgba(201,169,97,.55) 62%); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.two-col.reverse .col:first-child { order: 2; }

/* ===== Buttons · cuadrados, editoriales ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 2px;
  transition: all .3s var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  position: relative;
}
.btn-lg { padding: 17px 30px; font-size: 14.5px; }
.btn::after {
  content: '→';
  font-family: var(--font-mono);
  font-size: 14px;
  margin-left: 2px;
  transition: transform .3s var(--transition);
}
.btn:hover::after { transform: translateX(3px); }
.btn svg + ::after, .btn svg ~ ::after { content: none; } /* WhatsApp btn keeps its icon */
.btn:has(svg)::after { content: none; }

.btn-primary {
  background: var(--coffee-700);
  color: var(--cream);
}
.btn-primary:hover { background: var(--ink); }
.btn-gold {
  background: var(--copper-500);
  color: var(--cream);
  border-color: var(--copper-500);
}
.btn-gold:hover { background: var(--copper-700); border-color: var(--copper-700); }
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--coffee-700); }
.btn-ghost {
  background: transparent;
  color: var(--coffee-900);
  border: 1px solid rgba(26,17,9,.30);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242,234,220,.32);
}
.btn-ghost-light:hover { background: var(--cream); color: var(--coffee-900); border-color: var(--cream); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(15,10,6,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .3s var(--transition);
  color: var(--cream);
}
.site-header.scrolled { background: rgba(15,10,6,.92); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--cream); }
.brand-logo, .footer-logo {
  width: 52px; height: 52px;
  flex: 0 0 auto;
  display: block;
  transition: transform .4s var(--transition);
}
.brand:hover .brand-logo { transform: rotate(8deg); }
.brand-logo .lg-ring,
.footer-logo .lg-ring { fill: none; stroke: var(--copper-300); stroke-width: 1.5; }
.brand-logo .lg-ring-dashed,
.footer-logo .lg-ring-dashed { fill: none; stroke: var(--copper-500); stroke-width: 0.7; stroke-dasharray: 1.3 2.5; opacity: .65; }
.brand-logo .lg-bean,
.footer-logo .lg-bean { fill: var(--copper-500); }
.brand-logo .lg-cleft,
.footer-logo .lg-cleft { fill: none; stroke: var(--cream); stroke-width: 1.7; stroke-linecap: round; opacity: .95; }

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.brand-name i {
  font-style: italic;
  font-weight: 400;
  color: var(--copper-300);
}
.brand-city {
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 10px;
  color: rgba(232,208,150,.7);
  margin-top: 6px;
}

.nav { display: flex; gap: 22px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  opacity: .85;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s var(--transition);
}
.nav a:hover, .nav a.active { opacity: 1; }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-cta { display: flex; gap: 10px; }
.header-cta .btn-ghost {
  color: var(--cream);
  border-color: rgba(255,255,255,.25);
}
.header-cta .btn-ghost:hover { background: var(--cream); color: var(--coffee-900); border-color: var(--cream); }
.header-cta .btn-primary { background: var(--gold); color: var(--coffee-900); box-shadow: 0 10px 24px rgba(201,169,97,.35); }
.header-cta .btn-primary:hover { background: var(--gold-light); }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--cream);
  transition: all .3s var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 170px 0 110px;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(70% 60% at 20% 20%, rgba(201,169,97,.08), transparent 60%),
    radial-gradient(60% 50% at 90% 80%, rgba(111,138,60,.10), transparent 60%),
    linear-gradient(180deg, var(--espresso) 0%, var(--coffee-800) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(139,111,71,.20), transparent 55%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .08;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 18px 0 14px;
}
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-title .title-mark {
  background-image: linear-gradient(to bottom, transparent 62%, rgba(201,169,97,.5) 62%);
  color: var(--cream);
}
.hero-slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  letter-spacing: .005em;
  color: var(--gold-light);
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-slogan::before {
  content: '';
  display: block;
  width: 44px; height: 1px;
  background: var(--gold);
  flex: 0 0 auto;
}
.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(242,234,220,.78);
  max-width: 580px;
  margin: 0 0 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.10);
  flex-wrap: wrap;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  min-width: 110px;
  flex: 1 1 110px;
  padding-right: 28px;
  position: relative;
}
.hero-stats li + li::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.08);
}
.hero-stats li + li { padding-left: 28px; }
.hero-stats strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--copper-200);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-stats span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(242,234,220,.55);
  margin-top: 10px;
}

/* Hero visual: bolsa de café · estilo etiqueta editorial */
.hero-visual { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; }
.hero-bag {
  position: relative;
  width: 78%; max-width: 360px;
  aspect-ratio: 4 / 5.4;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.40)),
    linear-gradient(160deg, var(--coffee-700), var(--coffee-900) 70%, var(--espresso));
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.06);
  padding: 36px 28px 24px;
  display: flex;
  flex-direction: column;
  transform: rotate(-1.5deg);
  border: 1px solid rgba(216,148,97,.18);
}
.hero-bag::after { display: none; }
.hero-bag::before {
  content: '';
  position: absolute;
  top: -1px; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper-500), transparent);
  opacity: .55;
  border-radius: 0;
  box-shadow: none;
}
.hero-bag::before {
  content: '';
  position: absolute;
  top: -10px; left: 18%; right: 18%;
  height: 18px;
  background: linear-gradient(180deg, var(--coffee-900), var(--espresso));
  border-radius: 4px 4px 0 0;
  box-shadow: 0 6px 14px rgba(0,0,0,.4);
}
.hero-bag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 18%, rgba(255,255,255,.10), transparent 55%);
  border-radius: inherit;
  pointer-events: none;
}
.bag-label {
  position: relative;
  z-index: 1;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 6px;
}
.bag-eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .28em;
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--copper-300);
}
.bag-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.bag-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(242,234,220,.62);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 8px;
}
.bag-divider {
  width: 38px; height: 1px;
  background: var(--copper-500);
  margin: 14px auto;
}
.bag-notes {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--copper-200);
  letter-spacing: .005em;
}
.bag-roast {
  font-family: var(--font-mono);
  letter-spacing: .22em;
  font-size: 10.5px;
  text-transform: uppercase;
  color: rgba(242,234,220,.55);
  margin-top: 10px;
}
.bag-base {
  position: relative;
  z-index: 1;
  margin-top: auto;
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: .22em;
  font-size: 10.5px;
  text-transform: uppercase;
  color: rgba(242,234,220,.55);
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.10);
}
.hero-tag {
  position: absolute;
  background: var(--cream);
  border-radius: 2px;
  padding: 9px 14px 9px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coffee-900);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  border: 1px solid rgba(0,0,0,.06);
}
.hero-tag::before {
  content: '·';
  color: var(--copper-500);
  margin-right: 6px;
  font-weight: 700;
}
.tag-1 { top: 6%; left: -2%; transform: rotate(-2deg); }
.tag-2 { bottom: 8%; right: -2%; transform: rotate(2deg); background: var(--copper-500); color: var(--cream); border-color: var(--copper-700); }
.tag-2::before { color: var(--cream); }

/* ===== Ticker ===== */
.ticker {
  background: var(--coffee-900);
  color: var(--cream);
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
}
.ticker-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
  font-family: var(--font-bebas);
  letter-spacing: .28em;
  font-size: 16px;
  color: var(--gold-light);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Intro / Filosofía ===== */
.section-intro { background: var(--paper); }
.check-list { display: grid; gap: 12px; margin-top: 12px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  color: rgba(26,17,9,.85);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--paper), 0 0 0 1px rgba(0,0,0,.05);
}

/* ===== Producto insignia ===== */
.section-product { background: linear-gradient(180deg, var(--coffee-900) 0%, var(--coffee-800) 100%); }
.section-product .section-title.light .title-mark.gold { background-image: linear-gradient(to bottom, transparent 62%, rgba(201,169,97,.55) 62%); color: var(--gold-light); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-spec {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--transition);
}
.product-spec:hover { border-color: rgba(201,169,97,.5); transform: translateY(-3px); }
.product-spec h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 18px;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.spec-list { display: grid; gap: 10px; }
.spec-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,.10);
  font-size: 14.5px;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list strong {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--copper-300);
}
.spec-list span { color: rgba(242,234,220,.85); text-align: right; }
.spec-foot {
  margin: 16px 0 0;
  font-size: 13.5px;
  color: rgba(242,234,220,.65);
  line-height: 1.6;
}

.blend-bar {
  display: flex;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.10);
}
.blend-bar span { display: flex; align-items: center; justify-content: center; font-family: var(--font-bebas); letter-spacing: .15em; font-size: 10px; color: var(--coffee-900); }
.blend-washed { background: var(--gold-light); }
.blend-natural { background: var(--copper-700); color: var(--cream) !important; }
.blend-bar i { font-style: normal; }

.product-buy { background: linear-gradient(160deg, rgba(201,169,97,.12), rgba(255,255,255,.04)); border-color: rgba(201,169,97,.35); }
.price-list { display: grid; gap: 10px; margin-bottom: 16px; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
}
.price-list li.featured { border-color: var(--gold); background: rgba(201,169,97,.1); }
.price-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--cream);
}
.price-list span {
  display: block;
  font-size: 12px;
  color: rgba(242,234,220,.55);
  letter-spacing: .04em;
}
.price-list .price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--copper-200);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.price-list .price small { font-size: 11px; color: rgba(242,234,220,.55); margin-left: 4px; font-weight: 400; }
.product-buy .btn { align-self: stretch; justify-content: center; margin-top: auto; }

/* ===== Grano de temporada ===== */
.section-seasonal {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
}
.seasonal-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 90% 10%, rgba(201,169,97,.20), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(139,111,71,.10), transparent 60%);
  pointer-events: none;
}
.section-seasonal .container { position: relative; z-index: 1; }

.seasonal-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  background: var(--coffee-900);
  color: var(--gold-light);
  border-color: var(--coffee-900);
}
.seasonal-eyebrow .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,97,.30);
  animation: seasonalPulse 2.2s ease-in-out infinite;
}
@keyframes seasonalPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201,169,97,.30); }
  50%      { box-shadow: 0 0 0 9px rgba(201,169,97,.06); }
}

.seasonal-feats {
  display: grid;
  gap: 0;
  margin: 26px 0 30px;
}
.seasonal-feats li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px dashed rgba(26,17,9,.18);
  font-size: 14.5px;
  color: rgba(26,17,9,.78);
  align-items: baseline;
}
.seasonal-feats li:last-child { border-bottom: 1px dashed rgba(26,17,9,.18); }
.seasonal-feats strong {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--copper-700);
}
.seasonal-feats span { line-height: 1.55; }

.seasonal-card {
  position: relative;
  background:
    radial-gradient(circle at 80% 0%, rgba(201,169,97,.18), transparent 55%),
    var(--coffee-900);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 44px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.seasonal-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--copper-700));
}

.seasonal-stamp {
  position: absolute;
  top: 22px; right: 22px;
  width: 96px; height: 96px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 9.5px;
  color: var(--copper-300);
  line-height: 1.3;
  transform: rotate(-8deg);
  background: rgba(184,117,58,.06);
}

.seasonal-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--copper-300);
  margin-bottom: 18px;
  padding: 5px 12px;
  border: 1px solid rgba(201,169,97,.4);
  border-radius: 2px;
}
.seasonal-status i {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: seasonalPulse 2.2s ease-in-out infinite;
}

.seasonal-card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0 0 6px;
  color: var(--cream);
  letter-spacing: -0.005em;
  padding-right: 110px;
}
.seasonal-card-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
  margin: 0 0 22px;
  padding-right: 110px;
}

.seasonal-meta {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
}
.seasonal-meta li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255,255,255,.10);
}
.seasonal-meta li:last-child { border-bottom: 0; }
.seasonal-meta span {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--copper-300);
}
.seasonal-meta strong {
  font-weight: 500;
  color: rgba(242,234,220,.88);
  font-size: 14.5px;
  text-align: right;
}

.seasonal-foot {
  margin: 0;
  font-size: 13.5px;
  color: rgba(242,234,220,.65);
  line-height: 1.6;
  font-style: italic;
}

/* ===== Proceso · números enormes tipo manual ===== */
.section-process { background: var(--paper); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26,17,9,.10);
}
.process-step {
  position: relative;
  background: transparent;
  padding: 36px 28px 36px;
  transition: background .3s var(--transition);
  overflow: hidden;
  border-bottom: 1px solid rgba(26,17,9,.10);
  border-right: 1px solid rgba(26,17,9,.10);
}
.process-step:nth-child(3n) { border-right: 0; }
.process-step:nth-last-child(-n+3) { border-bottom: 0; }
.process-step::before {
  content: '';
  position: absolute;
  left: 28px; right: 28px;
  bottom: -1px;
  height: 2px;
  background: var(--copper-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--transition);
}
.process-step:hover { background: rgba(184,117,58,.04); }
.process-step:hover::before { transform: scaleX(1); }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 64px;
  line-height: .85;
  color: var(--copper-500);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--coffee-900);
  letter-spacing: -0.01em;
}
.process-step p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(26,17,9,.7);
  line-height: 1.65;
  max-width: 28ch;
}

/* ===== Servicios · estilo editorial / fichas ===== */
.section-services { background: var(--coffee-900); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.10);
}
.service-card {
  background: transparent;
  border-right: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  border-radius: 0;
  padding: 38px 32px 36px;
  transition: background .3s var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:nth-child(3n) { border-right: 0; }
.service-card:nth-last-child(-n+3) { border-bottom: 0; }
.service-card::before { content: none; }
.service-card::after {
  content: '';
  position: absolute;
  left: 32px; right: 32px;
  bottom: -1px;
  height: 2px;
  background: var(--copper-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--transition);
  opacity: 0;
}
.service-card:hover { background: rgba(184,117,58,.05); }
.service-card:hover::after { transform: scaleX(1); opacity: 1; }
.service-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper-300);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: block;
}
.service-num::before {
  content: 'SVC · ';
  opacity: .55;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.service-card p {
  font-size: 14.5px;
  color: rgba(242,234,220,.72);
  margin: 0;
  line-height: 1.65;
}
.service-card-gold { background: rgba(184,117,58,.06); }
.service-card-gold:hover { background: rgba(184,117,58,.12); }
.service-card-gold .service-num { color: var(--copper-200); }
.service-card-gold .service-num::before { content: 'B2B · '; }

/* ===== Maquila ===== */
.section-maquila { background: var(--paper); }
.maquila-card {
  background: var(--coffee-900);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.maquila-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--copper-700));
}
.maquila-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--copper-300);
  padding: 6px 12px;
  border: 1px solid var(--copper-500);
  border-radius: 2px;
  margin-bottom: 18px;
}
.maquila-card h4 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 22px;
  color: var(--cream);
}
.maquila-steps { display: grid; gap: 14px; }
.maquila-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.maquila-steps li > span {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--copper-500);
  color: var(--cream);
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0;
  font-size: 13px;
}
.maquila-steps li div {
  font-size: 14.5px;
  color: rgba(242,234,220,.78);
  line-height: 1.55;
}
.maquila-steps strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 2px;
}

/* ===== Mayoreo ===== */
.section-wholesale { background: var(--coffee-800); }
.section-wholesale .col:last-child { display: flex; justify-content: flex-start; }
.wholesale-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 520px;
}
.wholesale-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--cream);
  transition: all .3s var(--transition);
}
.wholesale-list li:hover { border-color: var(--copper-500); background: rgba(184,117,58,.08); }
.wholesale-list li span {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--copper-300);
  letter-spacing: .12em;
  font-size: 12px;
}

/* ===== Tienda ===== */
.section-shop { background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%); }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.shop-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(26,17,9,.06);
  transition: all .35s var(--transition);
  display: flex;
  flex-direction: column;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.shop-card.featured { border-color: var(--gold); box-shadow: 0 18px 40px rgba(201,169,97,.18); }
.shop-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--copper-500);
  color: var(--cream);
  padding: 5px 10px;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 10.5px;
}
.shop-bag {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.25)),
    linear-gradient(160deg, var(--coffee-700), var(--coffee-900) 75%, var(--espresso));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.shop-bag::before {
  content: '';
  position: absolute;
  top: -8px; left: 18%; right: 18%;
  height: 12px;
  background: var(--coffee-900);
  border-radius: 3px 3px 0 0;
}
.shop-bag span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 38px;
  color: var(--gold-light);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.shop-bag::after {
  content: 'MEZCLA · GARAGE';
  position: absolute;
  bottom: 22px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .26em;
  font-size: 10px;
  color: rgba(242,234,220,.55);
  text-transform: uppercase;
}
.shop-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--coffee-900);
}
.shop-card > p {
  font-size: 14.5px;
  color: rgba(26,17,9,.7);
  margin: 0 0 18px;
  line-height: 1.6;
}
.shop-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 12px;
}
.shop-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--coffee-900);
}
.shop-price small { font-size: 12px; color: rgba(26,17,9,.55); margin-left: 4px; font-weight: 400; }

/* ===== Asesoría ===== */
.section-advisory { background: var(--cream); }
.advisory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.adv-item {
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  transition: all .3s var(--transition);
}
.adv-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-left-color: var(--coffee-700); }
.adv-item h4 { font-family: var(--font-display); font-size: 19px; margin: 0 0 6px; color: var(--coffee-900); }
.adv-item p { font-size: 14px; color: rgba(26,17,9,.7); margin: 0; line-height: 1.55; }

/* ===== Ecosistema ===== */
.section-ecosystem { background: var(--paper); }
.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.eco-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid rgba(26,17,9,.06);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all .35s var(--transition);
}
.eco-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--copper-500);
}
.eco-card-alt::before { background: var(--gold); }
.eco-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--copper-500); }
.eco-card-alt:hover { border-color: var(--gold); }
.eco-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--copper-700);
  margin-bottom: 14px;
  padding: 5px 11px;
  border: 1px solid var(--copper-500);
  border-radius: 2px;
}
.eco-card-alt .eco-badge { color: #8a6f3a; border-color: var(--gold); }
.eco-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--coffee-900);
  letter-spacing: -0.01em;
}
.eco-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--copper-700);
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 18px;
}
.eco-card-alt .eco-tag { color: #8a6f3a; }
.eco-desc {
  font-size: 15.5px;
  color: rgba(26,17,9,.78);
  line-height: 1.7;
  margin: 0 0 24px;
}
.eco-card .btn { align-self: flex-start; margin-top: auto; }

/* ===== FAQ ===== */
.section-faq { background: var(--cream); }
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(26,17,9,.06);
  overflow: hidden;
  transition: all .25s var(--transition);
}
.faq details[open] { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--coffee-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 24px;
  color: var(--gold);
  transition: transform .3s var(--transition);
  font-weight: 300;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(26,17,9,.75);
  font-size: 15px;
  line-height: 1.7;
}
.faq a { color: var(--coffee-700); border-bottom: 1px solid currentColor; }

/* ===== CTA final ===== */
.section-cta-final {
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(201,169,97,.18), transparent 60%),
    radial-gradient(50% 60% at 20% 80%, rgba(139,111,71,.18), transparent 60%),
    var(--coffee-900);
  color: var(--cream);
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 0;
}
.cta-inner { max-width: 880px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin: 14px 0 22px;
  color: var(--cream);
}
.cta-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(242,234,220,.85);
  margin: 0 0 36px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.ccard {
  padding: 22px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  text-align: left;
  transition: all .3s var(--transition);
}
.ccard:hover { border-color: var(--copper-500); background: rgba(184,117,58,.08); }
.ccard-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--copper-300);
  margin-bottom: 6px;
}
.ccard a, .ccard span:not(.ccard-eyebrow) {
  color: var(--cream);
  font-size: 15.5px;
}
.ccard a:hover { color: var(--copper-300); }

/* ===== Footer ===== */
.site-footer { background: var(--espresso); color: var(--cream); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-logo { width: 64px; height: 64px; margin-bottom: 18px; }
.footer-tag { font-size: 14.5px; color: rgba(242,234,220,.7); line-height: 1.7; margin: 0 0 10px; }
.footer-slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--copper-300);
  margin: 6px 0 0;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--copper-300);
  margin: 0 0 18px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(242,234,220,.7); font-size: 14.5px; }
.footer-col a:hover { color: var(--cream); }
.footer-col li { font-size: 14.5px; color: rgba(242,234,220,.7); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(242,234,220,.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-partners a { color: var(--gold-light); border-bottom: 1px dotted rgba(217,189,128,.4); }
.footer-partners a:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(37,211,102,.45);
  z-index: 80;
  transition: all .3s var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: all .8s var(--transition); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(15,10,6,.98);
    padding: 22px 5%;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
  }
  .header-cta .btn-ghost { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 400px; order: -1; }
  .product-grid, .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .process-step {
    border-right: 1px solid rgba(255,255,255,.10) !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
  }
  .process-step { border-color: rgba(26,17,9,.10) !important; }
  .service-card:nth-child(2n), .process-step:nth-child(2n) { border-right: 0 !important; }
  .service-card:nth-last-child(-n+2), .process-step:nth-last-child(-n+2) { border-bottom: 0 !important; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse .col:first-child { order: 0; }
  .product-grid, .shop-grid, .services-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .service-card, .process-step {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
  }
  .process-step { border-bottom-color: rgba(26,17,9,.10) !important; }
  .service-card:last-child, .process-step:last-child { border-bottom: 0 !important; }
  .lot-chip { font-size: 10px; gap: 8px; }
  .hero-stats li + li::before { display: none; }
  .hero-stats li + li { padding-left: 0; }
  .hero-stats li { padding-right: 14px; }
  .wholesale-list { grid-template-columns: 1fr; }
  .advisory-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 130px 0 80px; }
  .hero-stats { gap: 18px 24px; }
  .hero-stats strong { font-size: 26px; }
  .hero-tag { font-size: 11.5px; padding: 9px 14px; }
  .tag-1 { left: -2%; }
  .tag-2 { right: -2%; }
  .hero-slogan { gap: 12px; }
  .hero-slogan::before { width: 28px; }
  .hero-title .title-mark { padding: 0 4px; }
  .header-cta .btn-primary { padding: 10px 16px; font-size: 13px; }
  .brand-city { display: none; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .seasonal-feats li { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .seasonal-stamp { width: 78px; height: 78px; font-size: 9.5px; top: 16px; right: 16px; }
  .seasonal-card-title, .seasonal-card-sub { padding-right: 88px; }
  .seasonal-card-sub { font-size: 15px; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 14px 22px; font-size: 14px; }
  .hero-bag { transform: rotate(-1.5deg); }
  .bag-title { font-size: 32px; }
  .price-list li { flex-wrap: wrap; }
}
