/* ============================================================
   La Rodada — food truck de hamburguesas de autor
   Estilo street-poster sobrio · Barrio Yungay, Santiago
   ============================================================ */

:root {
  --bg: #FBF7F0;
  --surface: #FFFFFF;
  --fg: #231B16;
  --muted: #6E5C50;
  --accent: #C2391C;
  --accent-ink: #9A2C14;   /* accent oscurecido para texto chico sobre claro */
  --line: #E4D8C8;

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --demobar-h: 34px;

  --shadow: 0 18px 50px -28px rgba(35, 27, 22, .35);
  --shadow-soft: 0 10px 30px -22px rgba(35, 27, 22, .4);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

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

::selection { background: var(--accent); color: #fff; }

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

/* ---------- Reveals (FOUC-safe: solo activos con js-on) ---------- */
.js-on [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: opacity, transform;
}
.js-on [data-reveal].in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js-on [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   DEMO BAR
   ============================================================ */
.demobar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--demobar-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: var(--fg);
  color: var(--bg);
  font-size: 13px;
  letter-spacing: .01em;
  padding: 0 1rem;
  text-align: center;
}
.demobar b { font-weight: 700; color: #fff; }
.demobar u { text-decoration-color: var(--accent); text-underline-offset: 3px; }
.demobar:hover u { color: #fff; }
.demobar__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(194, 57, 28, .6);
  animation: pulse 2.4s infinite;
}
.demobar__arrow { color: var(--accent); font-weight: 700; transition: transform .3s var(--ease); }
.demobar:hover .demobar__arrow { transform: translateX(4px); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(194, 57, 28, .55); }
  70% { box-shadow: 0 0 0 9px rgba(194, 57, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 57, 28, 0); }
}
@media (prefers-reduced-motion: reduce) { .demobar__dot { animation: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: var(--demobar-h) 0 auto 0;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .75rem var(--pad);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1.5px solid transparent;
  transition: border-color .35s var(--ease), background .35s var(--ease), padding .35s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  padding-top: .55rem;
  padding-bottom: .55rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -.02em;
  margin-right: auto;
}
.nav__mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  flex: none;
  transition: transform .5s var(--ease);
}
.nav__brand:hover .nav__mark { transform: rotate(90deg); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 1rem;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  color: var(--muted);
  transition: color .25s var(--ease);
  padding: .25rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: .6rem 1.25rem;
  border-radius: 100px;
  background: var(--fg);
  color: var(--bg);
  font-weight: 600;
  font-size: .98rem;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.nav__cta:hover { background: var(--accent); transform: translateY(-2px); }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2.5px;
  margin: 0 auto;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.7rem;
  border-radius: 100px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -16px rgba(194, 57, 28, .75);
}
.btn--accent:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -16px rgba(194, 57, 28, .8); }
.btn--line {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn--line:hover { background: var(--fg); color: var(--bg); transform: translateY(-3px); }
.btn--full { width: 100%; }
.btn--wa {
  background: #25D366;
  color: #06301a;
  box-shadow: 0 14px 30px -16px rgba(37, 211, 102, .8);
}
.btn--wa:hover { transform: translateY(-3px); background: #1ebd5a; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--demobar-h) + 7rem) var(--pad) 3rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(194, 57, 28, .07), transparent 55%),
    radial-gradient(80% 60% at 0% 100%, rgba(194, 57, 28, .05), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  padding: .45rem .9rem;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: var(--surface);
}
.hero__title {
  font-size: clamp(3rem, 8.5vw, 6.2rem);
  margin: 1.4rem 0 0;
  letter-spacing: -.035em;
}
.hero__title-accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero__title-accent::after {
  content: "";
  position: absolute;
  left: -.05em; right: -.05em;
  bottom: .06em; height: .12em;
  background: var(--accent);
  opacity: .22;
  border-radius: 2px;
}
.hero__sub {
  margin: 1.6rem 0 0;
  max-width: 30ch;
  font-size: 1.18rem;
  color: var(--muted);
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.1rem;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
}
.hero__tags li {
  position: relative;
  padding-left: 1.1rem;
}
.hero__tags li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
}
.hero__media {
  position: relative;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.hero__sticker {
  position: absolute;
  left: -1.2rem;
  bottom: 1.6rem;
  display: grid;
  place-items: center;
  width: 116px; height: 116px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  text-align: center;
  transform: rotate(-9deg);
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--bg);
}
.hero__sticker-top {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .92;
}
.hero__sticker-big {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1;
  margin-top: 2px;
}
.hero__scroll {
  position: relative;
  margin: 3rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  transition: color .3s var(--ease);
}
.hero__scroll:hover { color: var(--accent); }
.hero__scroll span {
  width: 26px; height: 40px;
  border: 2px solid currentColor;
  border-radius: 14px;
  position: relative;
  flex: none;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translate(-50%, 14px); }
}
@media (prefers-reduced-motion: reduce) { .hero__scroll span::after { animation: none; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  background: var(--accent);
  color: #fff;
  padding: .85rem 0;
  border-top: 2px solid var(--fg);
  border-bottom: 2px solid var(--fg);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  white-space: nowrap;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.marquee__dot { color: rgba(255, 255, 255, .55); font-size: .7rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; justify-content: center; width: 100%; } }

/* ============================================================
   SECTION HEAD COMÚN
   ============================================================ */
.kicker {
  display: inline-block;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 26px; height: 2px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: .6rem;
}
.section-head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-head--left { margin-left: 0; margin-right: auto; text-align: left; }
.section-head h2 {
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
}
.section-head p {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.12rem;
}

/* ============================================================
   STORY
   ============================================================ */
.story {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.story__media { position: relative; }
.story__media img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.story__badge {
  position: absolute;
  right: -1rem; top: -1rem;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: .85rem 1.1rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  line-height: 1.1;
}
.story__badge b {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 1.7rem;
  color: var(--accent);
  letter-spacing: -.02em;
}
.story__badge span {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: 2px;
}
.story__title {
  font-size: clamp(2rem, 4.8vw, 3.3rem);
  margin: 1rem 0 1.5rem;
}
.story__copy p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.08rem; }
.story__list {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.story__list li {
  position: relative;
  padding-left: 2.1rem;
  font-size: 1.04rem;
}
.story__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .15em;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9.55 17.55 4 12l1.4-1.4 4.15 4.15 9.05-9.05L20 7.1z'/></svg>") center / 70% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9.55 17.55 4 12l1.4-1.4 4.15 4.15 9.05-9.05L20 7.1z'/></svg>") center / 70% no-repeat;
}
.story__list li b { font-weight: 600; color: var(--fg); }

/* ============================================================
   MENU / CARTA
   ============================================================ */
.menu {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.mcard {
  position: relative;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.mcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.mcard__img { overflow: hidden; aspect-ratio: 16 / 11; }
.mcard__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.mcard:hover .mcard__img img { transform: scale(1.06); }
.mcard__body { padding: 1.3rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; }
.mcard__tag {
  align-self: flex-start;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: .3rem .7rem;
  border-radius: 100px;
}
.mcard__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.mcard__top h3 {
  font-size: 1.42rem;
  font-weight: 700;
}
.mcard__price {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-ink);
  white-space: nowrap;
}
.mcard__body p { color: var(--muted); font-size: 1rem; line-height: 1.55; }
.mcard--feature {
  grid-column: span 1;
  border-color: var(--accent);
  box-shadow: 0 22px 50px -34px rgba(194, 57, 28, .6);
}

/* Tablero combo */
.menu__board {
  margin-top: 1.6rem;
  background: var(--fg);
  color: var(--bg);
  border-radius: var(--r-md);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: grid;
  gap: .9rem;
  position: relative;
  overflow: hidden;
}
.menu__board::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 57, 28, .35), transparent 70%);
  pointer-events: none;
}
.board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}
.board__head h3 { font-size: clamp(1.7rem, 4vw, 2.4rem); color: #fff; }
.board__price {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: #fff;
  background: var(--accent);
  padding: .25rem 1rem;
  border-radius: 100px;
}
.board__sub { color: color-mix(in srgb, var(--bg) 78%, transparent); max-width: 48ch; }
.board__list {
  list-style: none;
  margin: .4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.4rem;
  position: relative;
}
.board__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1.02rem;
  color: color-mix(in srgb, var(--bg) 90%, transparent);
}
.board__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================================================
   GALERÍA
   ============================================================ */
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1.2rem;
}
.gitem {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1.5px solid var(--line);
}
.gitem img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gitem:hover img { transform: scale(1.07); }
.gitem figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1rem .9rem;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: .98rem;
  color: #fff;
  background: linear-gradient(to top, rgba(35, 27, 22, .82), transparent);
}
.gitem--tall { grid-row: span 2; }
.gitem--wide { grid-column: span 2; }

/* ============================================================
   UBICACIÓN
   ============================================================ */
.locate {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.locate__copy h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 1rem 0 1.3rem; }
.locate__copy > p { color: var(--muted); font-size: 1.1rem; max-width: 44ch; }
.locate__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0 1.8rem;
}
.lcard {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.2rem 1.3rem;
  display: grid;
  gap: .2rem;
}
.lcard__label {
  font-family: "Archivo", sans-serif;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-ink);
}
.lcard__big {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.02em;
}
.lcard__small { font-size: .92rem; color: var(--muted); }
.locate__week {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1.5px solid var(--line);
}
.locate__week li {
  display: flex;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1.5px solid var(--line);
  font-size: 1.02rem;
}
.locate__week li span {
  flex: none;
  width: 110px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  color: var(--fg);
}
.locate__week li.is-rest { color: var(--muted); }

/* Mapa estilizado (decorativo, sin librerías) */
.locate__map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--line);
}
.map {
  position: relative;
  aspect-ratio: 1 / 1.04;
  background: #F3EBDD;
}
.map__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .6;
}
.map__road { position: absolute; background: var(--surface); box-shadow: 0 0 0 1px var(--line); }
.map__road--h { left: 0; right: 0; top: 56%; height: 30px; }
.map__road--v { top: 0; bottom: 0; left: 38%; width: 30px; }
.map__block { position: absolute; background: #EBE0CF; border-radius: 6px; }
.map__block--1 { left: 12%; top: 14%; width: 18%; height: 26%; }
.map__block--2 { right: 14%; top: 18%; width: 22%; height: 20%; }
.map__block--3 { left: 50%; bottom: 12%; width: 26%; height: 22%; }
.map__pin {
  position: absolute;
  left: 38%; top: 56%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.map__pin-label {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: .78rem;
  background: var(--fg);
  color: var(--bg);
  padding: .35rem .7rem;
  border-radius: 100px;
  white-space: nowrap;
  margin-bottom: 8px;
  box-shadow: var(--shadow-soft);
}
.map__pin-dot {
  width: 20px; height: 20px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  transform: rotate(-45deg);
  border: 3px solid var(--bg);
  box-shadow: 0 6px 14px -4px rgba(194, 57, 28, .8);
}
.map__pin-dot::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 6px; height: 6px;
  background: var(--bg);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.map__tag {
  position: absolute;
  left: 1rem; bottom: 1rem;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--surface);
  border: 1.5px solid var(--line);
  padding: .4rem .8rem;
  border-radius: 100px;
}

/* ============================================================
   PEDIDO / FORM
   ============================================================ */
.order {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.order__copy h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 1rem 0 1.3rem; }
.order__copy > p { color: var(--muted); font-size: 1.1rem; max-width: 42ch; }
.order__info {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.order__info li {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid var(--line);
  font-size: 1.05rem;
}
.order__info li span {
  font-family: "Archivo", sans-serif;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-ink);
}
.order__form {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.order__form label {
  display: grid;
  gap: .4rem;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.order__form input,
.order__form select,
.order__form textarea {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: .8rem .9rem;
  width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.order__form textarea { resize: vertical; min-height: 64px; }
.order__form input::placeholder,
.order__form textarea::placeholder { color: color-mix(in srgb, var(--muted) 90%, transparent); }
.order__form input:focus,
.order__form select:focus,
.order__form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(194, 57, 28, .16);
}
.order__form .btn { margin-top: .4rem; }
.order__ok {
  margin: .3rem 0 0;
  padding: .9rem 1rem;
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  border: 1.5px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  border-radius: var(--r-sm);
  font-size: .95rem;
  color: var(--accent-ink);
  text-transform: none;
  letter-spacing: 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 500;
}
.order__ok em { color: var(--muted); font-style: italic; }
.order__ok[hidden] { display: none; }

/* ============================================================
   CTA DIGITAL BEE
   ============================================================ */
.bee {
  background: var(--fg);
  color: var(--bg);
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.bee::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 120% at 50% 0%, rgba(194, 57, 28, .25), transparent 60%);
  pointer-events: none;
}
.bee__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.bee__kicker {
  display: inline-block;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}
.bee__title { font-size: clamp(2.2rem, 5.5vw, 3.6rem); color: #fff; }
.bee__text {
  margin: 1.3rem auto 2rem;
  max-width: 52ch;
  color: color-mix(in srgb, var(--bg) 80%, transparent);
  font-size: 1.12rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--bg);
  border-top: 1.5px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad) 1.8rem;
}
.foot__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid var(--line);
}
.foot__brand {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -.02em;
}
.foot__brand span {
  display: block;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  font-size: .95rem;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: .3rem;
  max-width: 40ch;
}
.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.6rem;
  font-weight: 500;
}
.foot__nav a { color: var(--muted); transition: color .25s var(--ease); }
.foot__nav a:hover { color: var(--accent); }
.foot__bottom {
  max-width: var(--maxw);
  margin: 1.8rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--muted);
}
.foot__by b { color: var(--accent-ink); font-weight: 700; }
.foot__by:hover { color: var(--accent); }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wafloat {
  position: fixed;
  right: 1.2rem; bottom: 1.2rem;
  z-index: 180;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .7);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wafloat:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 20px 38px -10px rgba(37, 211, 102, .8); }
.wafloat::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: .6;
  animation: waring 2.6s var(--ease) infinite;
}
@keyframes waring {
  0% { transform: scale(1); opacity: .55; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wafloat::after { animation: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__media { max-width: 460px; }
  .hero__title { font-size: clamp(2.8rem, 13vw, 4.6rem); }
  .story { grid-template-columns: 1fr; }
  .story__media { max-width: 520px; }
  .locate, .order { grid-template-columns: 1fr; }
  .locate__map { max-width: 520px; order: -1; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gitem--wide { grid-column: span 2; }
  .gitem--tall { grid-row: span 1; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav__links {
    position: fixed;
    inset: calc(var(--demobar-h) + 62px) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1.5px solid var(--line);
    box-shadow: var(--shadow);
    padding: .5rem var(--pad) 1.2rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .3s var(--ease);
  }
  .nav.menu-open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a {
    padding: .95rem .25rem;
    border-bottom: 1.5px solid var(--line);
    font-size: 1.1rem;
    color: var(--fg);
  }
  .nav__links a::after { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 600px) {
  .menu__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .locate__cards { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gitem--wide { grid-column: span 1; }
  .hero__sticker { width: 96px; height: 96px; left: auto; right: 1rem; bottom: -1.2rem; }
  .locate__week li { flex-direction: column; gap: .1rem; }
  .locate__week li span { width: auto; }
  .foot__bottom { flex-direction: column; align-items: flex-start; }
}
