/* ═══════════════════════════════════════════════════════════
   MRB · Versión A · brand-B LIGHT
   Identidad corporativa aplicada — paleta clara
   Tipografía: Ubuntu · Verde #A9C836 · Rojo #E5294B · Gris #706F6F
   ═══════════════════════════════════════════════════════════ */
:root {
  --green:    #A9C836;
  --green-dk: #88A220;
  --green-lt: #C2DD58;
  --green-bg: #F4F8DD;
  --red:      #E5294B;
  --red-dk:   #B11D3A;
  --red-lt:   #F25671;
  --red-bg:   #FCE6EB;
  --grey:     #706F6F;
  --grey-lt:  #B5B3B3;
  --grey-dk:  #494848;
  --ink:      #1A1A1A;
  --ink-soft: #2A2A2A;
  --paper:    #FFFFFF;
  --paper2:   #FAFAFA;
  --paper3:   #F2F2F0;
  --line:     #E5E2DC;
  --line-dk:  #CFCBC2;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Ubuntu', system-ui, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
  letter-spacing: -.005em;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--red); color: var(--paper); }

/* ════════════════ TOPBAR ════════════════ */
.topbar {
  background: var(--paper3);
  border-bottom: 1px solid var(--line);
  font-size: .78rem; color: var(--grey);
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px clamp(20px, 5vw, 64px);
  gap: 16px; flex-wrap: wrap;
  font-weight: 400;
}
.topbar a { transition: color .25s; }
.topbar a:hover { color: var(--red); }
.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.topbar-info span::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%; margin-right: 10px; vertical-align: middle;
}
.topbar-social { display: flex; gap: 16px; align-items: center; font-weight: 500; }
.topbar-social a { letter-spacing: .04em; color: var(--ink); }

/* ════════════════ LOGO SVG ════════════════ */
.logo-svg { display: inline-block; }
.logo-mark { width: 56px; height: 62px; flex: 0 0 56px; }
.logo-mark.lg { width: 88px; height: 96px; flex: 0 0 88px; }
.logo-mark.xl { width: 220px; height: 240px; flex: 0 0 220px; }

/* ════════════════ HEADER ════════════════ */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 64px); gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .nm {
  font-family: 'Ubuntu', sans-serif; font-weight: 700;
  font-size: 1.18rem; color: var(--ink);
  letter-spacing: -.025em;
}
.brand-text .nm em {
  color: var(--red); font-style: normal;
  font-weight: 700; padding-left: 2px;
}
.brand-text .tg {
  font-family: 'Ubuntu', sans-serif; font-weight: 400;
  font-size: .68rem; letter-spacing: .04em;
  color: var(--grey); margin-top: 2px;
}

nav.main-nav ul { display: flex; gap: 36px; list-style: none; align-items: center; }
nav.main-nav a {
  font-family: 'Ubuntu', sans-serif;
  font-size: .82rem; font-weight: 500;
  letter-spacing: .02em; color: var(--ink);
  position: relative; padding: 6px 0;
  transition: color .25s;
}
nav.main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width .3s ease;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--red); }
nav.main-nav a:hover::after, nav.main-nav a.active::after { width: 100%; }

.cta-nav {
  background: var(--red); color: var(--paper) !important;
  padding: 11px 22px; border-radius: 999px;
  font-size: .78rem !important; font-weight: 500;
  letter-spacing: .01em;
  transition: all .25s;
}
.cta-nav:hover { background: var(--red-dk); transform: translateY(-2px); }
.cta-nav::after { display: none !important; }

.menu-toggle {
  display: none; background: none; border: none;
  color: var(--red); font-size: 1.6rem;
}

/* ════════════════ HERO ════════════════ */
.hero {
  min-height: calc(100vh - 110px);
  position: relative; overflow: hidden;
  display: grid; grid-template-rows: 1fr auto;
  padding: clamp(60px, 9vw, 120px) clamp(24px, 6vw, 96px) 0;
  background: var(--paper);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.45) 55%, rgba(255,255,255,0.92) 100%),
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(229,41,75,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(169,200,54,0.16) 0%, transparent 50%);
}
.hero-corner {
  position: absolute; top: 32px; right: 32px; z-index: 6;
  display: flex; align-items: center; gap: 10px;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-dk);
  background: var(--paper);
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.hero-corner::before {
  content: ''; width: 10px; height: 10px;
  border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 4px rgba(229,41,75,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(229,41,75,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(229,41,75,0.06); }
}

.hero-body {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1400px; width: 100%; margin: 0 auto;
  padding: 60px 0 40px;
}
.eyebrow {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--green-dk); margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeUp .8s .2s ease forwards;
}
.eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--green); }

h1.hero-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(2.6rem, 7.8vw, 6.2rem);
  font-weight: 700; line-height: 1.02;
  letter-spacing: -.04em; color: var(--ink);
  margin-bottom: 22px;
  opacity: 0; animation: fadeUp .9s .35s ease forwards;
}
h1.hero-title em {
  font-style: italic; color: var(--red);
  display: block; font-weight: 700;
}
h1.hero-title sup {
  font-family: 'Ubuntu', sans-serif;
  font-size: .22em; font-weight: 700;
  vertical-align: super; color: var(--green-dk);
  letter-spacing: .04em;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--grey-dk); max-width: 640px;
  line-height: 1.65; margin-top: 24px;
  font-weight: 300;
  opacity: 0; animation: fadeUp .9s .5s ease forwards;
}
.hero-sub strong { color: var(--red); font-weight: 700; }
.hero-cta {
  margin-top: 44px;
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  opacity: 0; animation: fadeUp .9s .65s ease forwards;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border: none;
  font-family: 'Ubuntu', sans-serif;
  font-size: .85rem; font-weight: 500;
  letter-spacing: .02em;
  border-radius: 999px;
  cursor: pointer; transition: all .3s ease;
}
.btn-primary { background: var(--red); color: var(--paper); }
.btn-primary:hover { background: var(--red-dk); transform: translateY(-3px); }
.btn-green { background: var(--green); color: var(--ink); }
.btn-green:hover { background: var(--green-dk); transform: translateY(-3px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--grey-dk); transform: translateY(-3px); }

.hero-meta {
  position: relative; z-index: 5;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; font-weight: 400;
  color: var(--grey);
  flex-wrap: wrap; gap: 12px;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.hero-meta span b { color: var(--red); font-weight: 700; padding-right: 6px; }
.hero-dots { display: flex; gap: 10px; }
.hero-dots button {
  width: 28px; height: 3px; background: var(--line-dk);
  border: 0; padding: 0; transition: background .3s; border-radius: 2px;
}
.hero-dots button.active { background: var(--red); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════ SECTION ════════════════ */
section { position: relative; }
.container {
  max-width: 1400px; margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 64px);
}
.kicker {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 22px;
  display: flex; align-items: center; gap: 16px;
}
.kicker::before { content: ''; width: 40px; height: 2px; background: var(--red); }
.kicker.green { color: var(--green-dk); }
.kicker.green::before { background: var(--green); }

h2.section-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -.035em; color: var(--ink);
  margin-bottom: 22px;
}
h2.section-title em {
  color: var(--red); font-style: italic; font-weight: 700;
}
h2.section-title .green { color: var(--green-dk); }

.lede {
  font-size: 1.05rem; color: var(--grey-dk);
  max-width: 720px; line-height: 1.7;
  font-weight: 300;
}

/* ════════════════ ABOUT ════════════════ */
.about {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper2) 100%);
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.about-img { position: relative; }
.about-img img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 4px;
}
.about-img::before {
  content: ''; position: absolute; top: -22px; left: -22px; right: 22px; bottom: 22px;
  border: 2px solid var(--green); z-index: -1; pointer-events: none;
  border-radius: 4px;
}
.about-img .badge-circle {
  position: absolute; right: -28px; bottom: -28px;
  width: 130px; height: 130px;
  background: var(--red); color: var(--paper);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 700; line-height: 1.05; padding: 18px;
  text-align: center; font-size: .82rem;
  box-shadow: 0 14px 40px rgba(229,41,75,0.3);
  transform: rotate(-8deg);
}
.about-img .badge-circle b {
  font-size: 1.85rem; display: block;
  margin-bottom: 4px; font-weight: 700;
}
.about-stats {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  border-top: 2px solid var(--line);
  padding-top: 28px;
}
.about-stats .stat .num {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.6rem; color: var(--red); font-weight: 700;
  line-height: 1; letter-spacing: -.04em;
}
.about-stats .stat:nth-child(2) .num { color: var(--green-dk); }
.about-stats .stat .lbl {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--grey); margin-top: 8px;
}

/* ════════════════ FEATURES ════════════════ */
.features { background: var(--paper2); border-top: 1px solid var(--line); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 60px;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.feature {
  background: var(--paper);
  padding: 44px 36px;
  transition: background .4s ease;
  position: relative;
}
.feature:hover { background: var(--green-bg); }
.feature::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 56px; height: 4px;
  background: var(--red); transition: width .4s ease;
}
.feature:hover::before { width: 100%; background: var(--green); }
.feature .num {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 22px;
}
.feature h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.4rem; color: var(--ink);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 14px; letter-spacing: -.02em;
}
.feature p {
  color: var(--grey-dk); font-size: .95rem;
  line-height: 1.65; font-weight: 300;
}

/* ════════════════ STORES ════════════════ */
.stores { background: var(--paper); }
.stores-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 24px; margin-bottom: 60px;
}
.stores-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.store-card {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 26px;
  transition: all .35s ease;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.store-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.store-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 20px 40px rgba(229,41,75,0.12);
}
.store-card:hover::before { transform: scaleX(1); }

.store-num {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.store-num .badge {
  font-size: .62rem; font-weight: 500; padding: 4px 10px;
  background: var(--green); color: var(--ink);
  letter-spacing: .12em; border-radius: 4px;
}
.store-num b { color: var(--red); font-weight: 700; }
.store-logo {
  width: 110px; height: 110px;
  background: var(--paper2);
  border: 2px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  overflow: hidden;
  transition: border-color .3s;
}
.store-card:hover .store-logo { border-color: var(--green); }
.store-logo img { width: 100%; height: 100%; object-fit: cover; }
.store-name {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.22rem; color: var(--ink);
  font-weight: 700; text-align: center;
  margin-bottom: 10px; letter-spacing: -.02em;
  line-height: 1.2;
}
.store-desc {
  color: var(--grey); font-size: .9rem;
  text-align: center; line-height: 1.55;
  margin-bottom: 22px; flex: 1; font-weight: 400;
}
.store-social {
  display: flex; justify-content: center; gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 16px; margin-top: auto;
}
.store-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 50%; color: var(--ink);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .04em;
  transition: all .25s;
}
.store-social a:hover { background: var(--red); color: var(--paper); border-color: var(--red); }

.store-card.empty { background: var(--green); color: var(--ink); border-color: var(--green); }
.store-card.empty .store-num { color: var(--ink); }
.store-card.empty .store-num .badge { background: var(--ink); color: var(--green); }
.store-card.empty .store-logo { background: var(--paper); border-color: var(--ink); }
.store-card.empty .store-name { color: var(--ink); }
.store-card.empty .store-desc { color: var(--grey-dk); }
.store-card.empty:hover { background: var(--green-dk); }
.store-card.empty .store-social a { border-color: var(--ink); color: var(--ink); }
.store-card.empty .store-social a:hover { background: var(--ink); color: var(--green); }

/* ════════════════ GALLERY ════════════════ */
.gallery {
  background: var(--paper2);
  border-top: 1px solid var(--line);
}
.gallery-head { text-align: center; margin-bottom: 60px; }
.gallery-head .kicker { justify-content: center; }
.gallery-head .kicker::after {
  content: ''; width: 40px; height: 2px; background: var(--red);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-grid figure {
  position: relative; overflow: hidden;
  background: var(--paper3);
  border-radius: 6px;
}
.gallery-grid figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid figure figcaption {
  position: absolute; left: 14px; bottom: 14px;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--paper);
  opacity: 0; transform: translateY(8px);
  transition: all .35s ease;
  padding: 7px 12px;
  background: var(--red);
  border-radius: 4px;
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery-grid figure.tall  { grid-row: span 2; }
.gallery-grid figure.wide  { grid-column: span 2; }

/* ════════════════ CTA STRIP ════════════════ */
.cta-strip {
  background: var(--red);
  color: var(--paper);
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 50%, rgba(169,200,54,0.3) 0%, transparent 55%),
    repeating-linear-gradient(135deg, transparent 0 30px, rgba(255,255,255,0.04) 30px 32px);
}
.cta-strip .container {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: center;
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: clamp(70px, 8vw, 110px);
  position: relative; z-index: 1;
}
.cta-strip h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  font-weight: 700; color: var(--paper); line-height: 1.05;
  letter-spacing: -.03em;
}
.cta-strip h2 em { color: var(--green); font-style: italic; }
.cta-strip p {
  color: var(--paper); margin-top: 20px;
  max-width: 560px; opacity: .94;
  font-weight: 300;
}
.cta-strip .actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cta-strip .btn-primary { background: var(--green); color: var(--ink); }
.cta-strip .btn-primary:hover { background: var(--green-dk); }
.cta-strip .btn-ghost { border-color: var(--paper); color: var(--paper); }
.cta-strip .btn-ghost:hover { background: var(--paper); color: var(--red); }

.cta-decoration {
  position: absolute; right: -80px; bottom: -80px;
  width: 320px; height: 320px;
  opacity: .15; pointer-events: none;
}

/* ════════════════ CONTACT ════════════════ */
.contact-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.contact-info .item {
  display: flex; gap: 18px; padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .item:last-child { border-bottom: 0; }
.contact-info .item .icon {
  width: 46px; height: 46px; flex: 0 0 46px;
  background: var(--green); color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 700;
}
.contact-info .item .text .lbl {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 6px;
}
.contact-info .item .text .val { color: var(--ink); font-size: 1.02rem; font-weight: 400; }
.contact-info .item .text .val a { transition: color .25s; }
.contact-info .item .text .val a:hover { color: var(--red); }

form.contact-form {
  background: var(--paper2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 38px clamp(24px, 4vw, 44px);
}
form.contact-form .field { margin-bottom: 22px; }
form.contact-form label {
  display: block;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--green-dk); margin-bottom: 10px;
}
form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  width: 100%; padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: 'Ubuntu', sans-serif;
  font-size: .95rem; font-weight: 400;
  border-radius: 4px;
  transition: border-color .25s;
}
form.contact-form input:focus,
form.contact-form textarea:focus,
form.contact-form select:focus { outline: none; border-color: var(--red); }
form.contact-form textarea { min-height: 130px; resize: vertical; }
form.contact-form .actions { margin-top: 8px; }

.map-wrap {
  margin-top: 60px;
  border: 2px solid var(--line);
  border-radius: 6px; overflow: hidden;
}
.map-wrap iframe { display: block; width: 100%; height: 440px; border: 0; }

/* ════════════════ FOOTER ════════════════ */
footer.site-footer {
  background: var(--paper3);
  border-top: 4px solid var(--red);
  padding: 80px clamp(20px, 5vw, 64px) 0;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col h4 {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--green-dk); margin-bottom: 20px;
}
.footer-col p, .footer-col a {
  color: var(--grey-dk); font-size: .92rem; line-height: 1.9;
  display: block; transition: color .25s; font-weight: 400;
}
.footer-col a:hover { color: var(--red); }

.footer-brand .logo-line {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.footer-brand .lg {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem; color: var(--ink); font-weight: 700;
  letter-spacing: -.02em;
}
.footer-brand .lg em { color: var(--red); font-style: normal; padding-left: 2px; }
.footer-brand p { max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1.5px solid var(--line-dk);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: .76rem; font-weight: 700;
  transition: all .25s;
}
.footer-social a:hover { background: var(--green); color: var(--ink); border-color: var(--green); transform: translateY(-3px); }
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex; justify-content: space-between;
  font-size: .72rem; font-weight: 400;
  color: var(--grey); letter-spacing: .04em;
  flex-wrap: wrap; gap: 12px;
}

/* ════════════════ INTERIOR HERO ════════════════ */
.page-hero {
  position: relative;
  padding: clamp(80px, 14vw, 180px) clamp(20px, 5vw, 64px) clamp(60px, 9vw, 120px);
  background:
    linear-gradient(150deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.45) 60%, rgba(255,255,255,0.92) 100%),
    var(--bg, url('../images/fachada2024nochefull.jpeg')) center/cover no-repeat;
  border-bottom: 4px solid var(--red);
  text-align: center;
}
.page-hero .kicker { justify-content: center; }
.page-hero .kicker::after { content: ''; width: 40px; height: 2px; background: var(--red); }
.page-hero h1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 700; line-height: 1.02; color: var(--ink);
  letter-spacing: -.04em;
}
.page-hero h1 em { color: var(--red); font-style: italic; }
.page-hero p {
  margin-top: 22px;
  max-width: 720px; margin-left: auto; margin-right: auto;
  color: var(--grey-dk); font-size: 1.05rem; font-weight: 300;
}
.crumbs {
  margin-top: 30px;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--grey);
}
.crumbs a:hover { color: var(--red); }
.crumbs span { margin: 0 12px; color: var(--green-dk); }

/* ════════════════ STORES FILTER ════════════════ */
.stores-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 50px; justify-content: center;
}
.stores-filter button {
  background: transparent;
  border: 1.5px solid var(--line-dk);
  color: var(--ink);
  padding: 10px 22px; border-radius: 999px;
  font-family: 'Ubuntu', sans-serif;
  font-size: .76rem; font-weight: 500;
  letter-spacing: .02em;
  transition: all .25s;
}
.stores-filter button:hover,
.stores-filter button.active {
  background: var(--green); color: var(--ink); border-color: var(--green);
}

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1024px) {
  nav.main-nav, .cta-nav { display: none; }
  .menu-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-strip .container { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .hero-corner { display: none; }
}
@media (max-width: 640px) {
  .topbar-info { gap: 14px; font-size: .72rem; }
  .topbar-social { display: none; }
  .logo-mark { width: 46px; height: 50px; flex: 0 0 46px; }
  .brand-text .nm { font-size: 1rem; }
  .stores-grid { grid-template-columns: 1fr 1fr; }
  .store-card { padding: 22px 16px; }
  .store-logo { width: 80px; height: 80px; }
  .store-name { font-size: 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-grid figure.wide, .gallery-grid figure.tall { grid-column: auto; grid-row: auto; }
  .about-stats { grid-template-columns: 1fr; }
  .about-img .badge-circle { right: -12px; bottom: -12px; width: 100px; height: 100px; font-size: .72rem; }
  .about-img .badge-circle b { font-size: 1.4rem; }
}

/* ════════════════ MOBILE NAV DRAWER ════════════════ */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.mobile-drawer.open { opacity: 1; pointer-events: all; }
.mobile-drawer a {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem; color: var(--ink); font-weight: 700;
  letter-spacing: -.02em; transition: color .25s;
}
.mobile-drawer a:hover { color: var(--red); }
.mobile-drawer .closex {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--red);
  font-size: 2rem;
}
