/* Bobo's Momos — styles
   Palette sampled from the Red Gold Monkey logo. */
:root {
  --red: #962f26;        /* logo disc */
  --red-deep: #74211a;   /* shadowed red */
  --gold: #f8d88a;       /* logo lettering */
  --caramel: #c78b47;    /* logo ring */
  --fur: #8b5b37;        /* monkey fur */
  --ink: #3d2712;        /* logo outline */
  --paper: #f9eacb;      /* pale gold ground */
  --paper-2: #f3dcaa;
  --night: #24100b;      /* footer */

  --display: "Sansita Swashed", "Cooper Black", Georgia, serif;
  --body: "Josefin Sans", "Futura", "Century Gothic", "Trebuchet MS", sans-serif;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--red);
  color: var(--gold);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; text-wrap: balance; }
p { margin: 0; }
strong { font-weight: 700; }

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--gold); color: var(--ink); padding: 10px 16px; border-radius: 8px;
  font-weight: 700; text-decoration: none;
}
.skip:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.on-paper :focus-visible { outline-color: var(--red); }

/* ---------- Sticker type: gold fill, thick ink outline, like the logo ---------- */
.sticker {
  position: relative;
  isolation: isolate;
  font-family: var(--display);
  font-weight: 900;
  color: var(--gold);
  line-height: 0.98;
  letter-spacing: 0.005em;
}
.sticker::before {
  content: attr(data-text);
  content: attr(data-text) / "";
  position: absolute;
  inset: 0;
  z-index: -1;
  color: var(--ink);
  -webkit-text-stroke: 0.17em var(--ink);
  text-shadow: 0.04em 0.08em 0 var(--ink);
  pointer-events: none;
}

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--body); font-weight: 700; font-size: 1.125rem; line-height: 1;
  padding: 1em 1.5em 0.85em;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 4px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink); background: #fbe3a6; }
.btn:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--ink); }
.btn--ghost { background: transparent; color: var(--gold); border-color: var(--gold); box-shadow: none; }
.btn--ghost:hover { background: rgba(248, 216, 138, .12); box-shadow: none; }
.btn--red { background: var(--red); color: var(--gold); }
.btn--red:hover { background: var(--red-deep); }
.btn--small { font-size: 1rem; padding: 0.8em 1.2em 0.65em; box-shadow: 0 3px 0 var(--ink); }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--red) 94%, transparent);
  backdrop-filter: blur(6px);
  border-bottom: 1.5px solid rgba(248, 216, 138, .35);
}
.topbar__in { display: flex; align-items: center; gap: 24px; padding-block: 10px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand img { width: 52px; height: 52px; transition: transform .3s ease; }
.brand:hover img { transform: rotate(-8deg); }
.brand__text { display: grid; gap: 3px; }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 1.5rem; line-height: 1; }
.brand__city { font-weight: 700; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--caramel); line-height: 1; }
.nav { display: flex; gap: 28px; }
.nav a { text-decoration: none; font-weight: 600; font-size: 1rem; letter-spacing: .04em; padding-block: 6px; border-bottom: 2px solid transparent; }
.nav a:hover { border-bottom-color: var(--gold); }
.topbar__ig { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 600; font-size: 1rem; letter-spacing: .02em; padding-block: 6px; border-bottom: 2px solid transparent; }
.topbar__ig svg { flex: none; }
.topbar__ig:hover { border-bottom-color: var(--gold); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(40px, 7vw, 88px) clamp(48px, 6vw, 72px); overflow: hidden; }
.hero::after { /* thin gold frame, borrowed from the Instagram cards */
  content: ""; position: absolute; inset: 14px 14px 0; pointer-events: none;
  border: 1.5px solid rgba(248, 216, 138, .45); border-bottom: 0;
  border-radius: 22px 22px 0 0;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero__copy { display: grid; gap: 22px; justify-items: start; }
.hero h1 { font-size: clamp(3.25rem, 8vw, 6.25rem); margin-top: 4px; }
.hero h1 .sticker { display: block; }
.hero h1 .the { font-size: 0.5em; margin-bottom: 0.12em; }
.place {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 6px 10px;
  padding: 9px 16px 7px 12px; border-radius: 999px;
  background: rgba(36, 16, 11, .28); border: 1.5px solid rgba(248, 216, 138, .5);
  font-weight: 700; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; line-height: 1.2;
}
.place .pin { color: var(--gold); margin-top: -3px; flex: none; }
.place__sep { color: var(--caramel); }
.lede { font-size: clamp(1.125rem, 1.6vw, 1.3rem); max-width: 34em; color: #fbe7b8; }
.lede em { font-style: normal; color: var(--gold); font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }

.ticket {
  display: flex; flex-wrap: nowrap; align-items: stretch;
  background: var(--paper); color: var(--ink);
  border-radius: 10px; margin-top: 10px;
  font-size: 1rem; line-height: 1.3;
  box-shadow: 0 2px 0 rgba(0,0,0,.15);
}
.ticket__label {
  display: flex; align-items: center; flex: none;
  padding: 12px 16px 10px; background: var(--caramel); color: var(--night);
  border-radius: 10px 0 0 10px;
  font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
}
.ticket__body { flex: 1; padding: 12px 18px 10px; display: flex; flex-wrap: wrap; gap: 4px 10px; align-items: center; border-left: 2px dashed rgba(61, 39, 18, .35); }
.ticket__arrow { color: var(--red); font-weight: 700; }

.hero__art { position: relative; }
.hero__photo { width: 100%; filter: saturate(1.05); }
.hero__sticker {
  position: absolute; width: 34%; left: -6%; top: 4%;
  transform: rotate(-10deg);
  filter: drop-shadow(0 8px 14px rgba(36, 16, 11, .45));
  transition: transform .4s cubic-bezier(.3, 1.6, .5, 1);
}
.hero__art:hover .hero__sticker { transform: rotate(-4deg) scale(1.04); }

/* ---------- Waves ---------- */
.fill-paper { fill: var(--paper); }
.fill-red { fill: var(--red); }
.fill-night { fill: var(--night); }
.stroke-gold { fill: none; stroke: var(--gold); stroke-width: 2.5; }
.stroke-caramel { fill: none; stroke: var(--caramel); stroke-width: 2.5; }
.wave { display: block; line-height: 0; }
.wave svg { display: block; width: 100%; height: clamp(28px, 4vw, 56px); }
.wave--red { background: var(--red); }
.wave--paper { background: var(--paper); }

/* ---------- Paper sections ---------- */
.on-paper { background: var(--paper); color: var(--ink); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section__head { display: grid; gap: 12px; margin-bottom: clamp(32px, 4vw, 48px); max-width: 40em; }
.section__head--tight { margin-bottom: 14px; }
.section--faq { padding-top: 0; }
.section--faq > .wrap { background: linear-gradient(rgba(61, 39, 18, .2), rgba(61, 39, 18, .2)) content-box top / 100% 1.5px no-repeat; }
.section--menu { padding-bottom: clamp(48px, 6vw, 72px); }
.section--faq .section__head { padding-top: clamp(40px, 5vw, 64px); }
.section__head h2 { font-size: clamp(2.5rem, 5.5vw, 3.75rem); }
.section__head .eyebrow { color: var(--red); }
.section__head p:not(.eyebrow) { font-size: 1.2rem; }

/* ---------- Menu ---------- */
.menu__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.dish { display: grid; gap: 22px; }
.dish__name { font-size: clamp(2.5rem, 5vw, 3.5rem); }
.dish__meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-weight: 700; font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.dish__meta span:not(:last-child)::after { content: "•"; margin-left: 18px; color: var(--caramel); }
.dish__desc { font-size: 1.25rem; max-width: 32em; }
.dish__block { display: grid; gap: 10px; padding-top: 18px; border-top: 1.5px solid rgba(61, 39, 18, .18); }
.dish__block h3 { font-family: var(--body); font-size: .85rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--fur); }
.spices { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.spices li {
  font-weight: 600; font-size: 1rem; padding: 7px 14px 5px;
  border: 1.5px solid rgba(61, 39, 18, .35); border-radius: 999px; background: #fdf3dc;
}
.allergens { font-size: 1rem; }
.allergens strong { color: var(--red); }

.price-card {
  background: #fff7e4; border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--ink);
  padding: clamp(22px, 3vw, 32px);
  display: grid; gap: 18px;
}
.price-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price-card__head h3 { font-family: var(--display); font-weight: 800; font-size: 1.75rem; color: var(--red); }
.price-card__head p { font-weight: 600; font-size: 1rem; color: var(--fur); }
.packs { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.packs th { text-align: left; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fur); font-weight: 700; padding: 0 0 8px; }
.packs td { padding: 11px 0 9px; border-top: 1.5px dashed rgba(61, 39, 18, .25); font-size: 1.1rem; }
.packs th:last-child, .packs td:last-child { text-align: right; }
.packs td:last-child { font-weight: 700; color: var(--red); }
.packs tbody tr:first-child td { border-top-style: solid; }
.price-card__note { font-size: .95rem; }
.price-card .btn { width: 100%; }
.menu__soon { margin-top: clamp(32px, 4vw, 48px); font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--fur); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; max-width: 820px; }
.faq details { border-top: 1.5px solid rgba(61, 39, 18, .2); }
.faq details:last-child { border-bottom: 1.5px solid rgba(61, 39, 18, .2); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 4px 17px;
  font-weight: 700; font-size: 1.25rem; line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.4rem; line-height: 1; padding-top: 3px;
  background: var(--red); color: var(--gold);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 4px 22px; max-width: 38em; }

/* ---------- Footer ---------- */
.footer { background: var(--night); color: #e9cf8e; padding-block: 24px 40px; font-size: 1rem; }
.footer__in { display: flex; flex-wrap: wrap; gap: 16px 40px; align-items: center; justify-content: space-between; }
.footer__brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; font-size: 1.35rem; color: var(--gold); }
.footer__brand img { width: 44px; height: 44px; }
.footer nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer a { text-decoration-color: rgba(248, 216, 138, .4); text-underline-offset: 4px; }
.footer a:hover { color: var(--gold); }
.footer .ig { display: inline-flex; align-items: center; gap: 6px; }
.footer .ig svg { flex: none; }
.menu__soon a { color: var(--red); text-underline-offset: 4px; }
.footer small { font-size: .875rem; opacity: .75; }

/* ---------- 404 ---------- */
.lost { padding-block: clamp(48px, 9vw, 120px); }
.lost__in { display: grid; justify-items: center; text-align: center; gap: 20px; }
.lost__logo { width: 180px; height: 180px; transform: rotate(-8deg); }
.lost h1 { font-size: clamp(2.75rem, 7vw, 5rem); }
.lost .hero__actions { justify-content: center; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid, .menu__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 520px; justify-self: center; width: 100%; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .topbar__in { gap: 14px; }
  .topbar__ig span { display: none; }
  .topbar__ig svg { width: 26px; height: 26px; }
  .brand { gap: 10px; }
  .brand__name, .btn--small { white-space: nowrap; }
  .brand__name { font-size: 1.25rem; }
  .brand img { width: 44px; height: 44px; }
  .hero::after { inset: 8px 8px 0; border-radius: 16px 16px 0 0; }
  .hero__sticker { left: 0; width: 30%; }
}
@media (max-width: 520px) {
  .brand img { width: 40px; height: 40px; }
  .brand__name { font-size: 1.1rem; }
  .brand__city { font-size: .62rem; }
  .btn--small { font-size: .95rem; padding: .75em 1em .6em; }
  .hero__actions .btn { flex: 1 1 100%; }
  .ticket { flex-direction: column; }
  .place { border-radius: 14px; font-size: .8rem; }
  .place__sep { display: none; }
  .place__extra { flex-basis: 100%; padding-left: 28px; }
  .ticket__label { border-radius: 10px 10px 0 0; }
  .ticket__body { border-left: 0; border-top: 2px dashed rgba(61, 39, 18, .35); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
