:root {
  --cream: #F0E5C9;
  --cream-2: #E8DAB7;
  --cream-3: #F7EFD9;
  --ink: #1F1108;
  --ink-soft: #3A2418;
  --orange: #DD4926;
  --orange-dark: #B5371A;
  --brown: #5B3526;
  --matcha: #7A9B4E;
  --sneaker: #F4ECDD;

  --border: 3px solid var(--ink);
  --border-thin: 2px solid var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-md: 6px 6px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);

  --display: 'Bagel Fat One', system-ui, sans-serif;
  --sans: 'Sora', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --serif: 'Instrument Serif', Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle grain over everything */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; line-height: 0.9; }
.mono { font-family: var(--mono); }
.serif-it { font-family: var(--serif); font-style: italic; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 18px; }
}

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 28px; display: block; }
.nav-bean {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  border: var(--border-thin);
  display: grid; place-items: center;
  font-family: var(--display);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  padding-bottom: 2px;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}
.nav-links a:hover {
  background: var(--cream-2);
  border-color: var(--ink);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: var(--border-thin);
  transition: transform 0.15s;
}
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--orange); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: var(--border);
  background: var(--cream-3);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(1px,1px); box-shadow: 2px 2px 0 var(--ink); }
.btn-primary { background: var(--orange); color: var(--cream-3); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-matcha { background: var(--matcha); color: var(--cream-3); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 40px 0 56px;
  overflow: hidden;
  border-bottom: var(--border);
  background: var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.hero h1 .word-c {
  color: var(--orange);
  display: inline-block;
  transform: rotate(-3deg);
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.3vw, 18px);
  max-width: 440px;
  font-weight: 500;
  line-height: 1.4;
}
.hero-meta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-mascot-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}
.hero-mascot {
  width: 100%;
  max-width: 360px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(6px 6px 0 var(--ink));
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
.hero-blob {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--orange);
  border: var(--border);
  z-index: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-mascot-wrap { min-height: 340px; order: -1; }
  .hero-blob { width: 320px; height: 320px; }
}

.sparkle {
  position: absolute;
  pointer-events: none;
  color: var(--cream-3);
}
.sparkle path { fill: currentColor; stroke: var(--ink); stroke-width: 6; stroke-linejoin: round; }

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: var(--border-thin);
  border-radius: 999px;
  background: var(--cream-3);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tag-chip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  border: 1.5px solid var(--ink);
}

.sticker {
  position: absolute;
  display: grid;
  place-items: center;
  background: var(--matcha);
  border: var(--border);
  border-radius: 50%;
  font-family: var(--display);
  color: var(--cream-3);
  text-align: center;
  line-height: 0.95;
  box-shadow: var(--shadow-md);
}

/* ---------- Marquee ---------- */
.marquee-bar {
  background: var(--ink);
  color: var(--cream);
  border-bottom: var(--border);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0;
  align-items: center;
}
.marquee-track > span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track svg { color: var(--orange); flex-shrink: 0; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section base ---------- */
section.bean-sec {
  position: relative;
  padding: var(--sec-pad, 96px) 0;
  border-bottom: var(--border);
}
section.bean-sec.tight { padding: 72px 0; }

body.no-motion *, body.no-motion *::before, body.no-motion *::after {
  animation: none !important;
  transition: none !important;
}
section.bean-sec h2 {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.88;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.sec-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ---------- Especialidad ---------- */
.especialidad {
  background: var(--orange);
  color: var(--cream-3);
}
.especialidad h2 { color: var(--cream-3); }
.esp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) {
  .esp-grid { grid-template-columns: 1fr; gap: 40px; }
}
.esp-lead {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  font-weight: 500;
  max-width: 620px;
}
.esp-lead em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.pillars {
  display: grid;
  gap: 18px;
}
.pillar {
  background: var(--cream-3);
  color: var(--ink);
  border: var(--border);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}
.pillar-num {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--cream-3);
  border: var(--border-thin);
  display: grid; place-items: center;
  padding-bottom: 4px;
}
.pillar h3 { font-size: 18px; margin: 0 0 4px; font-weight: 700; letter-spacing: -0.01em; }
.pillar p { margin: 0; font-size: 14.5px; line-height: 1.45; color: var(--ink-soft); }

/* ---------- Menu ---------- */
.menu-section { background: var(--cream); }
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.menu-tab {
  padding: 10px 18px;
  border: var(--border-thin);
  border-radius: 999px;
  background: var(--cream-3);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: background 0.15s, transform 0.15s;
}
.menu-tab:hover { transform: translateY(-2px); }
.menu-tab.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 880px) {
  .menu-grid { grid-template-columns: 1fr; }
}
.menu-card {
  background: var(--cream-3);
  border: var(--border);
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.menu-card h3 {
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  line-height: 0.95;
  display: flex;
  align-items: end;
  gap: 12px;
}
.menu-card h3 .cat-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  background: var(--ink);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.menu-rows { display: grid; gap: 2px; }
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(31,17,8,0.2);
}
.menu-row:last-child { border-bottom: none; }
.menu-row .name { font-weight: 500; font-size: 15.5px; }
.menu-row .name small { display: block; font-size: 12.5px; color: var(--ink-soft); font-weight: 400; margin-top: 2px; }
.menu-row .price {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.menu-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1.5px solid var(--ink);
  font-size: 13px;
  color: var(--ink-soft);
}
.menu-note {
  margin-top: 32px;
  padding: 16px 22px;
  background: var(--cream-3);
  border: var(--border-thin);
  border-radius: 16px;
  font-size: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.menu-note svg { flex-shrink: 0; }

/* ---------- Experiencias ---------- */
.exp-section { background: var(--matcha); color: var(--cream-3); position: relative; }
.exp-section h2 { color: var(--cream-3); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}
@media (max-width: 880px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card {
  background: var(--cream-3);
  color: var(--ink);
  border: var(--border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.exp-card h3 {
  font-family: var(--display);
  font-size: 48px;
  line-height: 0.92;
  margin: 16px 0 14px;
  letter-spacing: -0.01em;
}
.exp-card p { font-size: 16px; line-height: 1.5; margin: 0 0 22px; max-width: 460px; }
.exp-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--display);
  font-size: 44px;
  background: var(--orange);
  color: var(--cream-3);
  padding: 10px 24px 14px;
  border: var(--border-thin);
  border-radius: 999px;
  line-height: 0.9;
}
.exp-price small { font-family: var(--mono); font-size: 13px; font-weight: 500; }
.exp-card .icon-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--orange);
  border: var(--border-thin);
  display: grid; place-items: center;
  color: var(--cream-3);
}

/* ---------- Reviews ---------- */
.reviews-section { background: var(--cream-3); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--cream);
  border: var(--border);
  border-radius: 24px;
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars { display: flex; gap: 2px; color: var(--orange); }
.review-text { font-size: 15.5px; line-height: 1.5; flex-grow: 1; }
.review-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1.5px solid var(--ink);
  padding-top: 14px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  border: var(--border-thin);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 18px;
  color: var(--cream-3);
  padding-bottom: 2px;
}
.review-author .who { font-weight: 700; font-size: 14px; }
.review-author .when { font-size: 12px; font-family: var(--mono); color: var(--ink-soft); }
.reviews-summary {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
}
.summary-score {
  font-family: var(--display);
  font-size: 96px;
  line-height: 0.85;
}
.summary-meta { display: grid; gap: 4px; }
.summary-meta .stars { display: flex; gap: 4px; color: var(--orange); }
.summary-meta .count { font-family: var(--mono); font-size: 13px; color: var(--ink-soft); }

/* ---------- Visit ---------- */
.visit-section { background: var(--cream); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 880px) { .visit-grid { grid-template-columns: 1fr; } }
.visit-card {
  background: var(--cream-3);
  border: var(--border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.visit-card h3 {
  font-family: var(--display);
  font-size: 48px;
  line-height: 0.92;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.hours-table {
  display: grid;
  gap: 4px;
  margin: 18px 0 24px;
}
.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(31,17,8,0.2);
  align-items: baseline;
}
.hours-row.today {
  background: var(--cream);
  margin: 0 -10px;
  padding: 10px;
  border-radius: 8px;
  border-bottom: none;
}
.hours-row .day { font-weight: 600; font-size: 15px; }
.hours-row .time { font-family: var(--mono); font-size: 13px; text-align: right; white-space: nowrap; }
@media (max-width: 1100px) {
  .hours-row .time { white-space: normal; }
}
.hours-row.today::after {
  content: 'HOY';
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  background: var(--orange);
  color: var(--cream-3);
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 6px;
  align-self: center;
}
.map-card {
  position: relative;
  border: var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: var(--matcha);
  aspect-ratio: 1/1;
}
.map-illustration {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}
.map-pin {
  position: absolute;
  top: 48%; left: 52%;
  transform: translate(-50%, -100%);
  display: grid; place-items: center;
  z-index: 2;
}
.map-pin-body {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--orange);
  border: var(--border);
  display: grid; place-items: center;
  color: var(--cream-3);
  box-shadow: var(--shadow-sm);
  animation: pinBounce 2.4s ease-in-out infinite;
}
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.address-block {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 16px;
  margin-bottom: 22px;
}
.address-block .street { font-weight: 700; font-size: 18px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand h3 {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 0.92;
  margin: 0 0 16px;
}
.footer-brand p { max-width: 360px; opacity: 0.8; font-size: 15px; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  color: var(--orange);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a { font-size: 14.5px; opacity: 0.85; }
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(240,229,201,0.2);
  padding-top: 24px;
  font-size: 12px;
  font-family: var(--mono);
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 1;
  text-decoration: none;
  transition: opacity 0.15s;
}
.footer-credit:hover { opacity: 1; }
.footer-credit:hover strong { text-decoration: underline; }
.footer-credit img { display: block; border-radius: 4px; }
.footer-credit strong { font-weight: 700; }
.footer-credit .credit-sub { opacity: 0.7; }
@media (max-width: 540px) {
  .footer-credit .credit-sub { display: none; }
}
.footer-giant {
  font-family: var(--display);
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.9;
  color: var(--orange);
  margin: 24px 0 0;
  padding-bottom: 8px;
  text-align: center;
  letter-spacing: -0.02em;
  user-select: none;
  -webkit-text-stroke: 2px var(--cream);
}

/* ---------- Tweaks panel — keep top right ---------- */
.tweaks { z-index: 100; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hero-mascot, .marquee-track, .map-pin-body { animation: none !important; }
}
