:root {
  --lt-primary: #ff7a17;
  --lt-primary-dark: #d9570c;
  --lt-secondary: #ffb21a;
  --lt-secondary-dark: #e58b00;
  --lt-dark: #282421;
  --lt-light: #fffdf8;
  --lt-background: #f8f5ef;
  --lt-border: #e9e3d9;
  --lt-muted: #676774;
  --lt-green: #167b4c;
  --white: #fff;
  --shadow-sm: 0 12px 30px rgba(28, 20, 17, 0.08);
  --shadow-lg: 0 30px 80px rgba(28, 20, 17, 0.16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shell: min(1240px, calc(100vw - 40px));
  --header-height: 72px;
  color-scheme: light;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--lt-light);
  color: var(--lt-dark);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.75; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 84px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-150%); padding: 12px 18px; border-radius: 10px; background: var(--lt-dark); color: white; }
.skip-link:focus { transform: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lt-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span { width: 26px; height: 2px; background: currentColor; }
.eyebrow--light { color: #fff2bd; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.88rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg { width: 18px; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--lt-primary); color: white; box-shadow: 0 14px 28px rgba(255, 122, 23, 0.22); }
.button--primary:hover { background: var(--lt-primary-dark); }
.button--light { background: rgba(255,255,255,0.88); color: var(--lt-dark); border: 1px solid rgba(23,23,27,0.1); backdrop-filter: blur(12px); }
.button--whatsapp { background: #147c4d; color: white; box-shadow: 0 14px 28px rgba(20,124,77,0.2); }
.button--whatsapp .whatsapp-logo { width: 18px; height: 18px; flex: 0 0 auto; }
.button--yellow { background: var(--lt-secondary); color: var(--lt-dark); }
.button--glass { color: white; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.28); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.88);
  border-color: rgba(40,30,25,0.07);
  box-shadow: 0 10px 35px rgba(23,23,27,0.06);
  backdrop-filter: blur(18px);
}

.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px 15px 15px 5px; background: linear-gradient(135deg, var(--lt-primary), var(--lt-primary-dark)); }
.brand-mark img { width: 36px; height: auto; }
.brand-name { display: flex; flex-direction: column; font-size: 0.72rem; font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; text-transform: uppercase; }
.brand-name strong { font: 400 1.35rem/1 "Archivo Black", sans-serif; }

.desktop-nav { margin: auto; display: flex; align-items: center; gap: clamp(14px, 1.6vw, 28px); }
.desktop-nav a { position: relative; color: #3e3b3c; font-size: 0.82rem; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--lt-primary); transition: right 180ms ease; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.coupon-link { min-height: 40px; display: inline-flex; align-items: center; gap: 7px; padding: 0 13px; border-radius: 12px; background: #fff3dd; color: #b84406; font-size: 0.72rem; font-weight: 800; white-space: nowrap; }
.coupon-link svg { width: 16px; }
.header-actions .button { min-height: 44px; padding-inline: 16px; }
.menu-toggle { display: none; width: 44px; height: 44px; place-items: center; border: 1px solid var(--lt-border); border-radius: 13px; background: white; }

.mobile-menu {
  position: fixed;
  z-index: 1300;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--lt-dark);
  color: white;
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 300ms cubic-bezier(.2,.8,.2,1), visibility 300ms;
}

.mobile-menu.is-open { transform: none; visibility: visible; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; color: #bbb; text-transform: uppercase; font-size: .7rem; letter-spacing: .15em; }
.menu-close { width: 46px; height: 46px; border: 1px solid #3f3f43; border-radius: 50%; background: transparent; color: white; }
.mobile-menu nav { display: grid; gap: 8px; margin: auto 0; }
.mobile-menu nav a { padding: 4px 0; font: 400 clamp(2rem, 10vw, 3.2rem)/1.08 "Archivo Black", sans-serif; letter-spacing: -0.05em; }
.mobile-menu .mobile-order { width: 100%; }
.mobile-coupon { margin-top: 18px; text-align: center; font-size: .82rem; text-decoration: underline; text-underline-offset: 5px; }

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 760px;
  overflow: hidden;
  background: #f4eee2;
}

.hero-background { position: absolute; inset: 0; }
.hero-background img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,251,243,.98) 0%, rgba(255,251,243,.88) 30%, rgba(255,251,243,.08) 58%, rgba(255,251,243,0) 100%); }
.hero-inner { position: relative; z-index: 2; min-height: inherit; }
.hero-copy { position: absolute; left: 0; top: 50%; width: min(47%, 590px); transform: translateY(-46%); }
.hero-copy h1 { margin: 20px 0 20px; font: 400 clamp(3.2rem, 5.7vw, 6rem)/0.94 "Archivo Black", sans-serif; letter-spacing: -0.065em; }
.hero-copy h1 em, .section-heading h2 em, .about-copy h2 em { color: var(--lt-primary); font-style: normal; }
.hero-copy > p { max-width: 510px; margin: 0; color: #585254; font-size: clamp(1rem, 1.35vw, 1.15rem); }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; }
.hero-trust { display: flex; gap: 22px; margin-top: 25px; color: #5c5658; font-size: .75rem; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 17px; color: var(--lt-primary); }

.live-tablet {
  position: absolute;
  z-index: 4;
  top: 29%;
  right: 3.8%;
  width: 36%;
  height: 52%;
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) rotateZ(1.5deg);
  transform-style: preserve-3d;
  transition: transform 160ms ease-out;
}

.tablet-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: clamp(12px, 1.6vw, 24px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 5% 4% 5% 4%;
  background: linear-gradient(145deg, #fffdf8 0%, #f7efe4 100%);
  box-shadow: inset 0 0 30px rgba(255,255,255,.7), 0 20px 40px rgba(20,14,12,.16);
  transform: translateZ(10px);
}

.tablet-screen::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, rgba(255,255,255,.22), transparent 35%); }
.tablet-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; color: var(--lt-primary); font-size: clamp(.42rem, .55vw, .62rem); font-weight: 800; letter-spacing: .12em; }
.tablet-logo { display: grid; place-items: center; width: 34px; height: 27px; border-radius: 8px 8px 8px 3px; background: var(--lt-primary); }
.tablet-logo img { width: 21px; }
.tablet-screen > p { position: relative; z-index: 2; margin: clamp(10px, 1.2vw, 18px) 0 2px; color: var(--lt-muted); font-size: clamp(.45rem, .62vw, .72rem); line-height: 1.2; }
.tablet-screen h2 { position: relative; z-index: 2; margin: 0 0 3px; font: 400 clamp(.95rem, 1.75vw, 1.7rem)/1 "Archivo Black", sans-serif; letter-spacing: -.05em; }
.tablet-screen > small { position: relative; z-index: 2; display: block; color: var(--lt-muted); font-size: clamp(.4rem, .53vw, .62rem); }
.tablet-products { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(5px, .7vw, 9px); margin-top: clamp(10px, 1.2vw, 17px); }
.tablet-product { min-width: 0; }
.tablet-product img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 9px; box-shadow: 0 7px 18px rgba(30,20,14,.1); }
.tablet-product strong { display: block; margin-top: 5px; overflow: hidden; font-size: clamp(.34rem, .46vw, .53rem); line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.tablet-cta { position: relative; z-index: 2; width: 100%; min-height: clamp(26px, 2.5vw, 34px); margin-top: clamp(8px, 1vw, 13px); display: flex; align-items: center; justify-content: center; gap: 7px; border-radius: 9px; background: var(--lt-primary); color: white; font-size: clamp(.4rem, .5vw, .58rem); font-weight: 800; }
.tablet-cta svg { width: 13px; }
.tablet-glare { position: absolute; z-index: 5; inset: -30% 70% -30% -40%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent); transform: skewX(-16deg); animation: tabletGlare 7s ease-in-out infinite; pointer-events: none; }
@keyframes tabletGlare { 0%, 50% { transform: translateX(-130%) skewX(-16deg); } 75%, 100% { transform: translateX(320%) skewX(-16deg); } }

.hero-scroll { position: absolute; z-index: 3; left: 50%; bottom: 25px; display: flex; align-items: center; gap: 8px; color: #5f5757; font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.hero-scroll span { width: 28px; height: 40px; border: 1px solid rgba(23,23,27,.28); border-radius: 15px; }
.hero-scroll span::after { content: ""; display: block; width: 4px; height: 4px; margin: 8px auto; border-radius: 50%; background: var(--lt-primary); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 50% { transform: translateY(13px); opacity: .35; } }

.quick-actions { position: relative; z-index: 5; padding: 0; background: var(--lt-light); }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); transform: translateY(-38px); border: 1px solid var(--lt-border); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.quick-card { min-height: 116px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 22px; border-right: 1px solid var(--lt-border); transition: background 180ms ease; }
.quick-card:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.quick-card:last-child { border-right: 0; border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.quick-card:hover { background: #fff8e4; }
.quick-card > svg { width: 17px; color: var(--lt-primary); }
.quick-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: #fff0d0; color: var(--lt-primary); }
.quick-icon svg { width: 20px; }
.quick-card strong, .quick-card small { display: block; }
.quick-card strong { margin-bottom: 3px; font-size: .9rem; }
.quick-card small { color: var(--lt-muted); font-size: .68rem; line-height: 1.35; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 46px; }
.section-heading h2, .about-copy h2, .feedback h2, .contact h2 { margin: 13px 0 0; font: 400 clamp(2.15rem, 3.7vw, 3.65rem)/1 "Archivo Black", sans-serif; letter-spacing: -.055em; }
.section-heading > p { width: min(100%, 430px); margin: 0; color: var(--lt-muted); font-size: .9rem; }

.offers { background: white; }
.offers-stage { position: relative; }
.offers-track { display: grid; grid-auto-columns: min(31vw, 380px); grid-auto-flow: column; gap: 22px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; }
.offers-track::-webkit-scrollbar { display: none; }
.offer-card { overflow: hidden; border: 1px solid var(--lt-border); border-radius: var(--radius-md); background: #fff; scroll-snap-align: start; }
.offer-image { display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: #f4f2ef; cursor: zoom-in; }
.offer-image img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; transition: transform 350ms ease; }
.offer-card:hover .offer-image img { transform: scale(1.025); }
.offer-card > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 17px 18px; }
.offer-card span { color: var(--lt-primary); font-size: .65rem; font-weight: 800; letter-spacing: .12em; }
.offer-card a { display: inline-flex; align-items: center; gap: 7px; font-size: .69rem; font-weight: 800; }
.offer-card a svg { width: 15px; }
.slider-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; }
.slider-controls > span { color: var(--lt-muted); font-size: .78rem; }
.slider-controls > span strong { color: var(--lt-dark); font-size: 1.15rem; }
.slider-controls > div { display: flex; gap: 8px; }
.slider-controls button { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--lt-border); border-radius: 50%; background: white; cursor: pointer; transition: background 180ms ease, color 180ms ease; }
.slider-controls button:hover { background: var(--lt-primary); color: white; }
.slider-controls svg { width: 18px; }

.bocaditos { position: relative; overflow: hidden; background: var(--lt-background); }
.bocaditos::before { content: ""; position: absolute; width: 560px; height: 560px; right: -260px; top: -230px; border-radius: 50%; background: radial-gradient(circle, rgba(255,212,42,.24), transparent 68%); }
.food-orbit { position: absolute; z-index: 0; display: block; border-radius: 50%; background: var(--lt-secondary); opacity: .34; filter: blur(.2px); }
.food-orbit--one { width: 34px; height: 34px; left: 4%; top: 18%; }
.food-orbit--two { width: 17px; height: 17px; right: 9%; bottom: 19%; background: var(--lt-primary); }
.bocaditos .shell { position: relative; z-index: 2; }
.bocaditos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bocadito-card { overflow: hidden; border: 1px solid var(--lt-border); border-radius: var(--radius-md); background: white; box-shadow: 0 12px 35px rgba(40,30,22,.05); transition: transform 220ms ease, box-shadow 220ms ease; }
.bocadito-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bocadito-card__media { position: relative; overflow: hidden; }
.bocadito-card__media img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 350ms ease; }
.bocadito-card:hover img { transform: scale(1.05); }
.bocadito-card__media span { position: absolute; top: 14px; left: 14px; padding: 8px 10px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--lt-primary); box-shadow: 0 8px 18px rgba(30,20,17,.12); font-size: .56rem; font-weight: 800; letter-spacing: .12em; }
.bocadito-card__body { padding: 22px; }
.bocadito-card h3 { margin: 0; font-size: 1.16rem; letter-spacing: -.035em; }
.bocadito-card p { min-height: 62px; margin: 8px 0 15px; color: var(--lt-muted); font-size: .76rem; }
.bocadito-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 15px; border-top: 1px solid var(--lt-border); }
.bocadito-card__meta span { font-size: .67rem; font-weight: 800; }
.bocadito-card__meta button { display: inline-flex; align-items: center; gap: 6px; padding: 0; border: 0; background: transparent; color: var(--lt-primary); cursor: pointer; font-size: .68rem; font-weight: 800; }
.bocadito-card__meta svg { width: 15px; }
.availability-note { width: fit-content; max-width: 760px; margin: 28px auto 0; display: flex; align-items: center; gap: 10px; color: var(--lt-muted); font-size: .69rem; text-align: center; }
.availability-note svg { flex: 0 0 auto; width: 16px; color: var(--lt-primary); }

.about { background: white; }
.about-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
.about-media { position: relative; }
.about-media > img { width: 100%; aspect-ratio: 4/4.3; object-fit: cover; border-radius: 16px 70px 16px 70px; box-shadow: var(--shadow-lg); }
.about-stamp { position: absolute; right: -28px; bottom: 35px; width: 160px; height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 9px solid white; border-radius: 50%; background: var(--lt-secondary); box-shadow: var(--shadow-sm); transform: rotate(-7deg); }
.about-stamp strong, .about-stamp small { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; }
.about-stamp span { font: 400 2.25rem/1 "Archivo Black", sans-serif; }
.about-copy h2 { margin: 14px 0 26px; }
.about-copy > p { color: var(--lt-muted); font-size: .92rem; }
.about-stat { margin-top: 34px; display: flex; align-items: center; gap: 20px; padding-top: 24px; border-top: 1px solid var(--lt-border); }
.about-stat strong { color: var(--lt-primary); font: 400 2.1rem/1 "Archivo Black", sans-serif; }
.about-stat span { max-width: 170px; color: var(--lt-muted); font-size: .75rem; }
.values { margin-top: 110px; border-top: 1px solid var(--lt-border); }
.value-row { min-height: 176px; display: grid; grid-template-columns: .5fr .75fr 1.8fr; align-items: center; gap: 20px; border-bottom: 1px solid var(--lt-border); }
.value-number { color: rgba(255,122,23,.16); font: 400 4rem/1 "Archivo Black", sans-serif; }
.value-row h3 { margin: 0; font: 400 1.65rem/1 "Archivo Black", sans-serif; text-transform: uppercase; }
.value-row p { max-width: 650px; color: var(--lt-muted); font-size: .86rem; }

.locations { background: #f8f7f3; }
.location-tools { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 26px; }
.location-search { min-width: min(100%, 380px); height: 54px; display: flex; align-items: center; gap: 12px; padding: 0 17px; border: 1px solid var(--lt-border); border-radius: 15px; background: white; }
.location-search svg { width: 18px; color: var(--lt-muted); }
.location-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--lt-dark); font-size: .78rem; }
.location-filters { display: flex; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.location-filters button { min-height: 39px; padding: 0 13px; border: 1px solid var(--lt-border); border-radius: 999px; background: white; cursor: pointer; font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.location-filters button.is-active { border-color: var(--lt-primary); background: var(--lt-primary); color: white; }
.location-layout { display: grid; grid-template-columns: minmax(330px, 40%) 1fr; gap: 22px; }
.location-list { max-height: 660px; display: grid; gap: 10px; overflow-y: auto; padding-right: 6px; scrollbar-color: #d3cbc0 transparent; scrollbar-width: thin; }
.location-card { display: grid; grid-template-columns: 112px 1fr; gap: 15px; padding: 12px; border: 1px solid var(--lt-border); border-radius: 18px; background: white; cursor: pointer; transition: border-color 180ms ease, box-shadow 180ms ease; }
.location-card:hover, .location-card.is-active { border-color: rgba(255,122,23,.5); box-shadow: 0 10px 25px rgba(40,30,20,.08); }
.location-card.is-active { box-shadow: inset 4px 0 var(--lt-primary), 0 10px 25px rgba(40,30,20,.08); }
.location-card img { width: 112px; height: 102px; object-fit: cover; border-radius: 12px; }
.location-card__body { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.location-card__city { color: var(--lt-primary); font-size: .54rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.location-card h3 { margin: 5px 0 2px; overflow: hidden; font-size: .84rem; text-overflow: ellipsis; white-space: nowrap; }
.location-card address { color: var(--lt-muted); font-size: .64rem; font-style: normal; }
.location-card__actions { display: flex; gap: 12px; margin-top: 9px; }
.location-card__actions button, .location-card__actions a { padding: 0; border: 0; background: transparent; color: var(--lt-primary); cursor: pointer; font-size: .58rem; font-weight: 800; }
.empty-state { padding: 50px 20px; border: 1px dashed var(--lt-border); border-radius: 18px; color: var(--lt-muted); text-align: center; }
.map-panel { position: sticky; top: calc(var(--header-height) + 18px); height: 660px; overflow: hidden; border: 1px solid var(--lt-border); border-radius: 28px; background: white; box-shadow: var(--shadow-sm); }
.map-heading { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 22px; }
.map-heading span, .map-heading strong { display: block; }
.map-heading span { margin-bottom: 4px; color: var(--lt-primary); font-size: .52rem; font-weight: 800; letter-spacing: .12em; }
.map-heading strong { font-size: .9rem; }
.map-heading a { display: inline-flex; align-items: center; gap: 7px; color: var(--lt-primary); font-size: .65rem; font-weight: 800; }
.map-heading svg { width: 15px; }
.map-panel iframe { width: 100%; height: calc(100% - 88px); border: 0; }

.feedback { padding: 80px 0; background: linear-gradient(120deg, var(--lt-primary-dark), var(--lt-primary) 72%); color: white; }
.feedback-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.feedback-icon { width: 80px; height: 80px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 22px; background: rgba(255,255,255,.08); }
.feedback-icon svg { width: 34px; }
.feedback h2 { margin-top: 8px; font-size: clamp(2.1rem, 3.8vw, 3.9rem); }
.feedback p { margin: 8px 0 0; color: rgba(255,255,255,.75); font-size: .82rem; }
.feedback-actions { display: flex; gap: 10px; }

.contact { background: white; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.contact-copy h2 { margin: 12px 0 20px; }
.contact-copy p { max-width: 500px; margin: 0 0 27px; color: var(--lt-muted); }
.contact-details { border-top: 1px solid var(--lt-border); }
.contact-details > a { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px; min-height: 110px; padding: 19px 0; border-bottom: 1px solid var(--lt-border); }
.contact-details > a > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: #fff2d7; color: var(--lt-primary); }
.contact-details svg { width: 20px; }
.contact-details small, .contact-details strong { display: block; }
.contact-details small { margin-bottom: 5px; color: var(--lt-muted); font-size: .64rem; }
.contact-details strong { font-size: .82rem; }

.site-footer { padding: 72px 0 22px; background: var(--lt-dark); color: white; }
.footer-main { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 55px; padding-bottom: 58px; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 11px; }
.footer-main > div > strong { margin-bottom: 7px; color: white; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-main a, .footer-main span { color: #aaa7a7; font-size: .72rem; }
.footer-main a:hover { color: var(--lt-secondary); }
.footer-brand .brand-mark { width: 80px; height: 80px; border-radius: 22px 22px 22px 7px; }
.footer-brand .brand-mark img { width: 54px; }
.footer-brand p { max-width: 300px; color: #aaa7a7; font-size: .74rem; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid #343438; color: #777; font-size: .66rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 800; display: flex; align-items: center; gap: 10px; padding: 8px 13px 8px 8px; border: 1px solid rgba(255,255,255,.55); border-radius: 18px; background: #147c4d; color: white; box-shadow: 0 15px 35px rgba(10,80,50,.25); }
.whatsapp-float__icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.14); }
.whatsapp-float__icon .whatsapp-logo { width: 23px; height: 23px; }
.whatsapp-float__copy strong, .whatsapp-float__copy small { display: block; }
.whatsapp-float__copy strong { font-size: .72rem; }
.whatsapp-float__copy small { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.78); font-size: .56rem; }
.whatsapp-float__copy svg { width: 11px; }
.mobile-bocaditos-cta { display: none; }

.order-modal, .lightbox { max-width: none; border: 0; padding: 0; background: transparent; }
.order-modal::backdrop, .lightbox::backdrop { background: rgba(16,15,16,.72); backdrop-filter: blur(8px); }
.order-form { position: relative; width: min(520px, calc(100vw - 28px)); max-height: min(90vh, 760px); overflow-y: auto; padding: 34px; border-radius: 26px; background: white; box-shadow: 0 40px 120px rgba(0,0,0,.3); }
.modal-close { position: absolute; right: 20px; top: 20px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--lt-border); border-radius: 50%; background: white; cursor: pointer; }
.modal-close svg { width: 18px; }
.order-form h2 { margin: 10px 0 23px; font: 400 2rem/1 "Archivo Black", sans-serif; letter-spacing: -.05em; }
.modal-product { display: grid; grid-template-columns: 86px 1fr; align-items: center; gap: 16px; margin-bottom: 22px; padding: 11px; border-radius: 16px; background: var(--lt-background); }
.modal-product img { width: 86px; height: 86px; object-fit: cover; border-radius: 12px; }
.modal-product small, .modal-product strong, .modal-product span { display: block; }
.modal-product small { color: var(--lt-primary); font-size: .52rem; font-weight: 800; letter-spacing: .1em; }
.modal-product strong { margin: 4px 0; font-size: .92rem; }
.modal-product span { color: var(--lt-muted); font-size: .65rem; }
.order-form > label { display: block; margin-top: 16px; color: #393537; font-size: .69rem; font-weight: 800; }
.order-form label > span { color: var(--lt-muted); font-weight: 500; }
.order-form input, .order-form textarea { width: 100%; margin-top: 7px; padding: 14px; border: 1px solid var(--lt-border); border-radius: 12px; outline: none; background: #fff; font-size: .76rem; resize: vertical; }
.order-form input:focus, .order-form textarea:focus { border-color: var(--lt-primary); box-shadow: 0 0 0 3px rgba(255,122,23,.08); }
.quantity-control { width: 145px; height: 46px; margin-top: 7px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; overflow: hidden; border: 1px solid var(--lt-border); border-radius: 12px; }
.quantity-control button { height: 100%; border: 0; background: var(--lt-background); cursor: pointer; font-size: 1.15rem; }
.quantity-control output { text-align: center; font-size: .86rem; }
.modal-submit { width: 100%; margin-top: 24px; }
.modal-privacy { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 12px; color: var(--lt-muted); font-size: .58rem; text-align: center; }
.modal-privacy svg { width: 14px; }
.lightbox { position: fixed; max-width: min(90vw, 680px); max-height: 92vh; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 18px; }
.lightbox > button { position: absolute; z-index: 2; top: 12px; right: 12px; width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.92); cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible, .reveal--visible { opacity: 1; transform: none; }

/* Promociones principales */
.promo-hero {
  overflow: hidden;
  padding-top: var(--header-height);
  background: #fff8ec;
}

.promo-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1800 / 690;
  overflow: hidden;
  background: #f7941d;
}

.promo-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 650ms ease, transform 4.8s linear, visibility 650ms;
}

.promo-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.promo-slide picture,
.promo-slide img { width: 100%; height: 100%; }
.promo-slide img { object-fit: cover; }

.promo-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  background: rgba(34,31,28,.38);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.promo-arrow--prev { left: 22px; }
.promo-arrow--next { right: 22px; }
.promo-arrow svg { width: 20px; }
.promo-dots { position: absolute; z-index: 5; left: 50%; bottom: 18px; display: flex; gap: 7px; transform: translateX(-50%); }
.promo-dots button { width: 8px; height: 8px; padding: 0; border: 1px solid white; border-radius: 999px; background: rgba(255,255,255,.45); cursor: pointer; transition: width 180ms ease, background 180ms ease; }
.promo-dots button.is-active { width: 28px; background: white; }
.promo-progress { position: absolute; z-index: 5; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.18); }
.promo-progress span { display: block; width: 0; height: 100%; background: white; }
.promo-progress span.is-running { animation: promoProgress 5s linear forwards; }
@keyframes promoProgress { to { width: 100%; } }

.hero-summary {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1.25fr .85fr auto;
  align-items: center;
  gap: 34px;
  padding-block: 28px;
}

.hero-summary h1 { margin: 9px 0 0; font: 400 clamp(2rem, 3.5vw, 3.5rem)/.98 "Archivo Black", sans-serif; letter-spacing: -.055em; }
.hero-summary h1 em { color: var(--lt-primary); font-style: normal; }
.hero-summary > p { margin: 0; color: var(--lt-muted); font-size: .82rem; }
.hero-summary .button { min-width: 210px; }

/* Cupones como acción principal */
.coupon-feature { padding: 62px 0 30px; background: white; }
.coupon-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1.35fr 1fr auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(120deg, #e85c09 0%, #ff7a17 56%, #ff9a17 100%);
  color: white;
  box-shadow: 0 22px 55px rgba(214,83,9,.2);
}

.coupon-panel::after { content: "%"; position: absolute; right: 12%; top: -48px; color: rgba(255,255,255,.08); font: 400 11rem/1 "Archivo Black", sans-serif; transform: rotate(-10deg); }
.coupon-badge { position: relative; z-index: 2; width: 82px; height: 82px; display: grid; place-items: center; align-content: center; gap: 4px; border: 1px solid rgba(255,255,255,.36); border-radius: 22px; background: rgba(255,255,255,.13); }
.coupon-badge svg { width: 27px; }
.coupon-badge span { font-size: .48rem; font-weight: 800; letter-spacing: .1em; }
.coupon-copy { position: relative; z-index: 2; }
.coupon-copy h2 { margin: 8px 0 7px; font: 400 clamp(1.75rem, 2.7vw, 2.7rem)/1 "Archivo Black", sans-serif; letter-spacing: -.05em; }
.coupon-copy p { max-width: 500px; margin: 0; color: rgba(255,255,255,.82); font-size: .73rem; line-height: 1.55; }
.coupon-steps { position: relative; z-index: 2; display: grid; gap: 8px; }
.coupon-steps span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.88); font-size: .67rem; }
.coupon-steps strong { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: rgba(255,255,255,.16); font-size: .55rem; }
.coupon-cta { position: relative; z-index: 2; white-space: nowrap; }

.quick-actions { padding: 28px 0 70px; }
.quick-grid { transform: none; border-radius: 20px; box-shadow: 0 12px 35px rgba(28,20,17,.06); }
.quick-card { min-height: 98px; padding: 17px 18px; }
.quick-card:first-child { border-radius: 20px 0 0 20px; }
.quick-card:last-child { border-radius: 0 20px 20px 0; }
.quick-icon { width: 38px; height: 38px; border-radius: 12px; }
.quick-icon--tava { background: #dff1e8; color: #036342; }

.offers { padding-top: 72px; }
.section-heading { margin-bottom: 34px; }
.offers-track { grid-auto-columns: min(25vw, 310px); gap: 18px; }
.offer-card { border-radius: 20px; }
.offer-card > div { padding: 14px 15px; }

/* Identidad Tava Tembi'u */
.tava-section {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  background-color: #036342;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.08) 0 3px, transparent 4px),
    radial-gradient(circle at 92% 75%, rgba(255,255,255,.07) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(255,255,255,.025) 25%, transparent 25% 75%, rgba(255,255,255,.025) 75%);
  background-size: 120px 120px, 150px 150px, 48px 48px;
}

.tava-section::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 7px; background: #f47a20; }
.tava-section .shell { position: relative; z-index: 2; }
.tava-intro { display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 32px; margin-bottom: 22px; }
.tava-wordmark { min-height: 130px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 18px; border-radius: 30px 30px 11px 30px; background: #fff9ec; color: #036342; box-shadow: inset 0 -7px #f47a20, 0 18px 35px rgba(0,0,0,.16); transform: rotate(-2deg); }
.tava-wordmark span, .tava-wordmark strong { font: 400 1.72rem/.84 "Bree Serif", Georgia, serif; }
.tava-wordmark small { margin-top: 14px; color: #f47a20; font-size: .52rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.tava-copy h2 { margin: 9px 0 10px; color: white; font: 400 clamp(2rem, 3.5vw, 3.5rem)/.98 "Bree Serif", Georgia, serif; letter-spacing: -.035em; }
.tava-copy h2 em { color: #ffb474; font-style: normal; }
.tava-copy p { max-width: 690px; margin: 0; color: rgba(255,255,255,.76); font-size: .78rem; }
.tava-instagram { display: inline-flex; align-items: center; gap: 8px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.32); border-radius: 13px; color: white; font-size: .68rem; font-weight: 800; white-space: nowrap; }
.tava-instagram svg { width: 17px; }
.tava-products { padding: 20px; border-radius: 24px; background: #f7f2e5; box-shadow: 0 22px 60px rgba(0,0,0,.14); }
.tava-products__heading { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 14px; color: #036342; }
.tava-products__heading span { font-size: .67rem; font-weight: 800; letter-spacing: .13em; }
.tava-products__heading small { color: #6d746f; font-size: .61rem; }
.tava-section .bocaditos-grid { gap: 13px; }
.tava-section .bocadito-card { border: 0; border-radius: 17px; box-shadow: 0 7px 20px rgba(0,60,40,.08); }
.tava-section .bocadito-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,60,40,.14); }
.tava-section .bocadito-card__media img { height: 150px; aspect-ratio: auto; object-fit: cover; }
.tava-section .bocadito-card__media span { top: 10px; left: 10px; padding: 6px 8px; color: #036342; font-size: .48rem; }
.tava-section .bocadito-card__body { padding: 12px; }
.tava-section .bocadito-card h3 { font: 400 1rem/1.1 "Bree Serif", Georgia, serif; color: #034f36; }
.tava-section .bocadito-card p { min-height: 42px; margin: 6px 0 9px; font-size: .63rem; line-height: 1.45; }
.tava-section .bocadito-card__meta { padding-top: 10px; }
.tava-section .bocadito-card__meta span { font-size: .57rem; }
.tava-section .bocadito-card__meta button { color: #e65f13; font-size: .59rem; }
.tava-section .availability-note { margin-top: 17px; color: rgba(255,255,255,.68); }
.tava-section .availability-note svg { color: #ffae68; }

.about, .locations, .contact { padding-block: 78px; }
.about-grid { gap: clamp(45px, 6vw, 80px); }
.about-media > img { max-height: 520px; }
.values { margin-top: 76px; }
.value-row { min-height: 145px; }
.value-number { color: rgba(255,122,23,.17); font-size: 3.25rem; }
.location-card:hover, .location-card.is-active { border-color: rgba(255,122,23,.55); }
.order-form input:focus, .order-form textarea:focus { box-shadow: 0 0 0 3px rgba(255,122,23,.1); }

@media (max-width: 1080px) {
  .coupon-panel { grid-template-columns: auto 1.25fr 1fr; }
  .coupon-cta { grid-column: 2 / -1; width: fit-content; }
  .tava-intro { grid-template-columns: 155px 1fr; }
  .tava-instagram { grid-column: 2; width: fit-content; }
}

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: grid; }
  .hero-copy { width: 47%; }
  .live-tablet { right: 4%; width: 37%; top: 31%; height: 49%; }
  .bocaditos-grid { grid-template-columns: repeat(2, 1fr); }
  .location-layout { grid-template-columns: 42% 1fr; }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; --shell: min(100% - 28px, 720px); }
  .section { padding: 78px 0; }
  .promo-slider { aspect-ratio: 1140 / 437; }
  .promo-slide img { object-fit: contain; background: #f7931d; }
  .promo-arrow { width: 40px; height: 40px; }
  .promo-arrow--prev { left: 12px; }
  .promo-arrow--next { right: 12px; }
  .hero-summary { min-height: 0; grid-template-columns: 1fr auto; gap: 18px; padding-block: 24px; }
  .hero-summary > p { grid-column: 1; }
  .hero-summary .button { grid-column: 2; grid-row: 1 / 3; min-width: 190px; }
  .coupon-feature { padding: 42px 0 22px; }
  .coupon-panel { grid-template-columns: auto 1fr; gap: 20px; padding: 26px; }
  .coupon-steps { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .coupon-cta { grid-column: 1 / -1; width: 100%; }
  .tava-intro { grid-template-columns: 135px 1fr; gap: 25px; }
  .tava-wordmark { min-height: 130px; padding: 16px; }
  .tava-wordmark span, .tava-wordmark strong { font-size: 1.7rem; }
  .tava-instagram { grid-column: 2; }
  .tava-section .bocaditos-grid { display: grid; grid-template-columns: none; grid-auto-columns: min(42vw, 285px); grid-auto-flow: column; gap: 12px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .tava-section .bocaditos-grid::-webkit-scrollbar { display: none; }
  .tava-section .bocadito-card { scroll-snap-align: start; }
  .coupon-link, .header-actions .button { display: none; }
  .brand-name { display: none; }
  .brand-mark { width: 44px; height: 44px; border-radius: 13px 13px 13px 4px; }
  .hero { min-height: 980px; }
  .hero-background img { height: 54%; object-position: 18% top; }
  .hero-background::after { content: ""; position: absolute; inset: 49% 0 0; background: var(--lt-background); }
  .hero-shade { background: linear-gradient(180deg, rgba(255,251,244,.87), rgba(255,251,244,.96) 42%, transparent 57%); }
  .hero-inner { display: flex; flex-direction: column; justify-content: space-between; padding: 126px 0 72px; }
  .hero-copy { position: relative; top: auto; left: auto; width: 100%; transform: none; }
  .hero-copy h1 { font-size: clamp(3rem, 13vw, 4.4rem); }
  .hero-copy > p { max-width: 520px; font-size: .92rem; }
  .hero-trust { display: none; }
  .live-tablet { position: relative; top: auto; right: auto; width: min(100%, 560px); height: auto; aspect-ratio: 1.5; margin: 230px auto 0; padding: 13px; border: 7px solid #1b1b1c; border-radius: 28px; background: #101011; box-shadow: 0 30px 55px rgba(20,16,13,.24); transform: perspective(900px) rotateX(2deg) !important; }
  .tablet-screen { inset: 6px; padding: 20px; border-radius: 16px; }
  .tablet-products { gap: 8px; }
  .tablet-product strong { font-size: .52rem; }
  .tablet-screen h2 { font-size: 1.4rem; }
  .tablet-screen > p { font-size: .62rem; }
  .tablet-screen > small { font-size: .54rem; }
  .tablet-cta { min-height: 36px; font-size: .58rem; }
  .hero-scroll { display: none; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); transform: none; }
  .quick-card { min-height: 105px; border-bottom: 1px solid var(--lt-border); }
  .quick-card:nth-child(2) { border-right: 0; }
  .quick-card:nth-child(n+3) { border-bottom: 0; }
  .quick-card:first-child { border-radius: var(--radius-md) 0 0 0; }
  .quick-card:nth-child(2) { border-radius: 0 var(--radius-md) 0 0; }
  .quick-card:nth-child(3) { border-radius: 0 0 0 var(--radius-md); }
  .quick-card:last-child { border-radius: 0 0 var(--radius-md) 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; margin-bottom: 34px; }
  .section-heading > p { font-size: .82rem; }
  .offers-track { grid-auto-columns: min(70vw, 300px); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media { width: min(88%, 530px); }
  .about-stamp { right: -12%; }
  .values { margin-top: 75px; }
  .value-row { grid-template-columns: .45fr 1fr; padding: 30px 0; }
  .value-row p { grid-column: 2; margin: 0; }
  .location-tools { align-items: stretch; flex-direction: column; }
  .location-filters { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; }
  .location-filters::-webkit-scrollbar { display: none; }
  .location-layout { grid-template-columns: 1fr; }
  .location-list { max-height: none; grid-template-columns: repeat(2, 1fr); overflow: visible; padding: 0; }
  .location-card { grid-template-columns: 1fr; }
  .location-card img { width: 100%; height: 150px; }
  .map-panel { position: relative; top: auto; height: 520px; }
  .feedback-inner { grid-template-columns: auto 1fr; }
  .feedback-actions { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .footer-main { grid-template-columns: 1.5fr 1fr; }
  .whatsapp-float { bottom: 76px; }
  .mobile-bocaditos-cta { position: fixed; z-index: 790; left: 14px; right: 14px; bottom: 12px; min-height: 51px; display: flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid rgba(255,255,255,.35); border-radius: 15px; background: var(--lt-primary); color: white; box-shadow: 0 14px 35px rgba(255,122,23,.24); font-weight: 800; }
  .mobile-bocaditos-cta svg { width: 18px; }
}

@media (max-width: 580px) {
  .section { padding: 66px 0; }
  .promo-slider { aspect-ratio: 1140 / 437; }
  .promo-arrow { display: none; }
  .promo-dots { bottom: 8px; }
  .promo-dots button { width: 6px; height: 6px; }
  .promo-dots button.is-active { width: 22px; }
  .hero-summary { grid-template-columns: 1fr; gap: 13px; padding-block: 20px; }
  .hero-summary h1 { font-size: clamp(2rem, 10vw, 2.65rem); }
  .hero-summary > p { grid-column: auto; margin-top: 2px; line-height: 1.55; }
  .hero-summary .button { grid-column: auto; grid-row: auto; width: 100%; min-width: 0; }
  .coupon-feature { padding-top: 34px; }
  .coupon-panel { grid-template-columns: 1fr; gap: 17px; padding: 23px 20px; border-radius: 21px; }
  .coupon-badge { width: 62px; height: 62px; border-radius: 18px; }
  .coupon-copy h2 { font-size: 1.75rem; }
  .coupon-steps { grid-column: auto; grid-template-columns: 1fr; gap: 7px; }
  .coupon-cta { grid-column: auto; }
  .quick-actions { padding: 18px 0 52px; }
  .tava-section { padding: 44px 0; }
  .tava-intro { grid-template-columns: 106px 1fr; gap: 14px; text-align: left; }
  .tava-wordmark { width: 106px; min-height: 106px; margin: 0; padding: 12px; border-radius: 24px 24px 9px 24px; }
  .tava-wordmark span, .tava-wordmark strong { font-size: 1.38rem; }
  .tava-wordmark small { margin-top: 10px; font-size: .42rem; }
  .tava-copy h2 { margin-top: 6px; font-size: 1.8rem; }
  .tava-copy p { margin: 0; font-size: .65rem; line-height: 1.45; }
  .tava-copy .eyebrow { font-size: .55rem; letter-spacing: .1em; }
  .tava-instagram { grid-column: 2; margin: 0; width: fit-content; padding: 10px 12px; }
  .tava-products { margin-inline: -5px; padding: 16px 12px; border-radius: 20px; }
  .tava-products__heading { align-items: start; flex-direction: column; gap: 4px; padding-inline: 4px; }
  .tava-section .bocaditos-grid { display: grid; grid-template-columns: none; grid-auto-columns: min(76vw, 260px); grid-auto-flow: column; gap: 11px; overflow-x: auto; padding: 2px 4px 10px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .tava-section .bocaditos-grid::-webkit-scrollbar { display: none; }
  .tava-section .bocadito-card { scroll-snap-align: start; }
  .tava-section .bocadito-card__media img { height: 155px; }
  .hero { min-height: 900px; }
  .hero-inner { padding-top: 108px; }
  .hero-background img { height: 50%; object-position: 18% top; }
  .hero-copy h1 { margin-top: 15px; font-size: clamp(2.75rem, 13.5vw, 4rem); }
  .hero-copy > p { line-height: 1.6; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 23px; }
  .hero-actions .button { width: 100%; }
  .live-tablet { margin-top: 170px; aspect-ratio: 1.26; border-radius: 24px; }
  .tablet-screen { padding: 15px; }
  .tablet-products { grid-template-columns: repeat(2, 1fr); overflow: hidden; }
  .tablet-product:nth-child(n+3) { display: none; }
  .tablet-product img { aspect-ratio: 1.45; }
  .tablet-screen h2 { font-size: 1.15rem; }
  .tablet-cta { margin-top: 9px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { min-height: 94px; border-right: 0; border-bottom: 1px solid var(--lt-border) !important; border-radius: 0 !important; }
  .quick-card:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0 !important; }
  .quick-card:last-child { border-bottom: 0 !important; border-radius: 0 0 var(--radius-md) var(--radius-md) !important; }
  .quick-card small { font-size: .66rem; }
  .section-heading h2, .about-copy h2, .feedback h2, .contact h2 { font-size: clamp(2.1rem, 12vw, 3.2rem); }
  .offers-track { grid-auto-columns: 86vw; }
  .offer-card > div { align-items: start; flex-direction: column; }
  .bocaditos-grid { grid-template-columns: 1fr; }
  .bocadito-card p { min-height: 0; }
  .about-media { width: 92%; }
  .about-stamp { width: 125px; height: 125px; border-width: 7px; }
  .about-stamp span { font-size: 1.8rem; }
  .about-stat { align-items: start; flex-direction: column; }
  .value-row { grid-template-columns: 1fr; gap: 10px; }
  .value-row p { grid-column: auto; }
  .value-number { font-size: 3rem; }
  .location-list { grid-template-columns: 1fr; }
  .location-card { grid-template-columns: 96px 1fr; }
  .location-card img { width: 96px; height: 104px; }
  .map-panel { height: 480px; }
  .map-heading { height: 104px; align-items: start; flex-direction: column; gap: 7px; }
  .map-panel iframe { height: calc(100% - 104px); }
  .feedback { padding: 64px 0; }
  .feedback-inner { grid-template-columns: 1fr; }
  .feedback-icon { width: 58px; height: 58px; }
  .feedback-actions { grid-column: auto; align-items: stretch; flex-direction: column; }
  .contact-details > a { align-items: start; }
  .contact-details strong { overflow-wrap: anywhere; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; flex-direction: column; gap: 7px; }
  .whatsapp-float { display: none; }
  .whatsapp-float__copy { display: none; }
  .whatsapp-float__icon { width: 39px; height: 39px; }
  .order-form { padding: 28px 20px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
