:root {
  --black: #0a0a0a;
  --paper: #f2ebe0;
  --paper-ink: #1a1410;
  --orange: #ff6a00;
  --orange-dim: #cc5500;
  --line: rgba(255, 255, 255, 0.14);
  --font-display: "Bowlby One SC", system-ui, sans-serif;
  --font-script: "Kaushan Script", cursive;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --shell: min(1180px, 92vw);
  --pad-x: clamp(1.15rem, 4vw, 2rem);
  --top: 60px;
  --dock-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--top) + 12px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: #f0ebe3;
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px) + 1.25rem);
}

body.drawer-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
  display: block;
  border: 0;
}

a {
  color: var(--orange);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 200;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* —— Topbar —— */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--top);
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
  min-width: 0;
  flex-shrink: 1;
}

.brand-mark {
  width: 34px;
  height: auto;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.8vw, 1.05rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-name em {
  font-family: var(--font-script);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.05em;
  color: var(--orange);
}

.topnav {
  display: none;
  gap: clamp(0.65rem, 1.5vw, 1.35rem);
  flex-shrink: 1;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topnav a {
  color: #b8b0a6;
  text-decoration: none;
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 500;
  white-space: nowrap;
}

.topnav a:hover {
  color: #fff;
}

.topbar-cta {
  display: none;
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  min-height: 44px;
  align-items: center;
  background: var(--orange);
  color: #000;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.topbar-cta:hover {
  background: #ff8533;
  color: #000;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  padding: 10px;
  margin: 0 -6px 0 0;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-btn[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: calc(var(--top) + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  max-height: calc(100dvh - var(--top));
  overflow-y: auto;
  background: #111;
  border-bottom: 2px solid var(--orange);
  padding: 1rem var(--pad-x) 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 99;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.drawer[hidden] {
  display: none;
}

.drawer a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.85rem 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.drawer a:last-child {
  border-bottom: none;
}

/* —— Splash —— */
.splash {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: calc(var(--top) + env(safe-area-inset-top, 0px));
  overflow: hidden;
  isolation: isolate;
  background: #120c08;
  border-bottom: 4px solid var(--orange);
}

.splash-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.splash-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  opacity: 0.42;
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.06);
}

.splash-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(8, 6, 5, 0.97) 0%, rgba(10, 8, 6, 0.88) 38%, rgba(12, 9, 7, 0.55) 62%, rgba(8, 6, 5, 0.72) 100%),
    radial-gradient(ellipse 55% 45% at 78% 42%, rgba(255, 106, 0, 0.28) 0%, transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 35%, rgba(0, 0, 0, 0.45) 100%);
}

.splash-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - var(--top));
  min-height: calc(100dvh - var(--top));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 2.25rem);
  padding: clamp(1.25rem, 4vw, 2.5rem) 0 clamp(2rem, 5vw, 3rem);
}

.splash-grid {
  display: block;
}

.splash-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 40rem;
}

.tag {
  margin: 0 0 0.85rem;
  font-size: clamp(0.65rem, 2.5vw, 0.75rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8278;
  line-height: 1.4;
}

.splash h1 {
  margin: 0 0 1rem;
  line-height: 0.92;
}

.splash-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(3rem, 13vw, 5.5rem);
  color: #fff;
  font-weight: 400;
}

.splash-block {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 11vw, 5.25rem);
  letter-spacing: 0.02em;
  color: var(--orange);
  text-transform: uppercase;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
  white-space: nowrap;
}

.splash-lead {
  margin: 0 0 0.75rem;
  max-width: 36rem;
  color: #c4bcb0;
  font-size: clamp(1rem, 2.5vw, 1.0625rem);
}

.splash-status {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.splash-status:empty {
  display: none;
}

.splash-status.is-open {
  color: #7dcea0;
}

.splash-status.is-closed {
  color: #e88;
}

.splash-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  max-width: 26rem;
}

.act {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 72px;
  padding: 0.75rem 0.85rem;
  text-decoration: none;
  border: 2px solid;
  transition: transform 0.12s ease, background 0.15s ease;
}

.act:active {
  transform: scale(0.98);
}

.act-label {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.act-sub {
  font-size: clamp(0.65rem, 2.2vw, 0.75rem);
  opacity: 0.9;
  margin-top: 0.2rem;
  line-height: 1.25;
}

.act--hot {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

.act--hot:hover {
  background: #ff8533;
  color: #000;
}

.act--cool {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.act--cool:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.act--outline {
  background: transparent;
  border-color: var(--paper-ink);
  color: var(--paper-ink);
  max-width: 16rem;
  min-height: 64px;
}

.act--outline:hover {
  background: var(--paper-ink);
  color: var(--paper);
}

.glass-stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  width: 100%;
  max-width: 36rem;
}

.glass-stats li {
  font-size: 0.7rem;
  color: #e8e0d4;
  line-height: 1.3;
  padding: 0.75rem 0.65rem;
  text-align: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.glass-stats strong {
  display: block;
  color: #fff;
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  margin-bottom: 0.1rem;
}

.glass-stats span {
  display: block;
  opacity: 0.85;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.block-title--compact {
  font-size: clamp(1.65rem, 5.5vw, 2.35rem);
  margin-bottom: 0;
}

/* —— Cardápio: storytelling no scroll —— */
.menu-story {
  background: #0a0a0a;
  border-bottom: 1px solid var(--line);
}

.menu-story__mobile {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2rem);
  padding: clamp(1.25rem, 3vw, 1.75rem) 0 clamp(1.5rem, 4vw, 2rem);
}

.menu-story__desktop {
  display: none;
}

.menu-story__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.05;
  margin: 0.35rem 0 0.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.menu-story__desc {
  margin: 0;
  max-width: 28rem;
  color: #c4bcb0;
  line-height: 1.5;
  font-size: clamp(0.9rem, 2.1vw, 0.98rem);
}

.menu-story__progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(0.75rem, 2vw, 1.1rem);
}

.menu-story__counter {
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #8a8278;
}

.menu-story__markers {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-story__marker {
  width: 3px;
  height: 1.25rem;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.menu-story__marker.is-active {
  background: var(--accent, #ff6a00);
  transform: scaleY(1.15);
}

.menu-story__marker:focus-visible {
  outline: 2px solid var(--accent, #ff6a00);
  outline-offset: 3px;
}

.menu-story__layout {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: center;
}

.menu-story__col-text {
  position: relative;
  min-height: 8.5rem;
}

.menu-story__panel {
  margin: 0;
}

.menu-story__panel[hidden] {
  display: none;
}

.menu-story__col-visual {
  position: relative;
  min-height: clamp(220px, 38vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 2vw, 1.25rem);
}

.menu-story__col-visual .menu-story__shot {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.menu-story__col-visual .menu-story__shot.is-active {
  pointer-events: auto;
}

.menu-story__col-visual .menu-story__shot img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 480px);
  max-height: clamp(280px, 42vh, 480px);
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.38));
}

.menu-story__mobile-card {
  padding: 0 0 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-story__mobile-card:last-child {
  border-bottom: 0;
}

.menu-story__mobile-card .menu-story__shot {
  margin: 0.85rem 0 0;
  display: flex;
  justify-content: center;
  opacity: 0;
}

.menu-story__mobile-card.is-landed .menu-story__shot {
  opacity: 1;
}

.menu-story__mobile-card .menu-story__shot img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 300px);
  max-height: clamp(240px, 55vw, 300px);
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.menu-story__pin {
  min-height: min(72vh, 520px);
  display: flex;
  align-items: center;
  padding: clamp(1rem, 2.5vw, 1.5rem) 0;
}

.menu-story__frame {
  width: 100%;
}

.menu-story__scroll {
  height: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .menu-story__mobile {
    display: none;
  }

  .menu-story__desktop {
    display: block;
  }

  .menu-story__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
  }

  .menu-story__progress {
    margin-bottom: clamp(0.65rem, 1.5vw, 0.9rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-story__col-visual .menu-story__shot:not(.is-active) {
    opacity: 0 !important;
    transform: none !important;
  }

  .menu-story__col-visual .menu-story__shot.is-active {
    opacity: 1 !important;
    transform: none !important;
  }

  .menu-story__mobile-card .menu-story__shot {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .menu-story__marker {
    transition: none;
  }
}

/* —— Highlights rail (hero → conteúdo) —— */
.highlights-rail {
  position: relative;
  padding: clamp(1rem, 3vw, 1.35rem) 0;
  background: #0c0c0c;
  border-bottom: 2px solid rgba(255, 106, 0, 0.45);
}

.highlights-rail__lead {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: clamp(0.68rem, 2.2vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9288;
}

.highlights-static {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0 var(--pad-x) 0.25rem;
}

.highlights-static li {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 2.8vw, 0.95rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f0e6da;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

/* —— Blocks —— */
.block {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}

.block--cream {
  background: var(--paper);
  color: var(--paper-ink);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.block-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  line-height: 1;
}

.block-title--dark {
  color: var(--paper-ink);
}

.block-intro {
  margin: 0 0 1.75rem;
  color: #8a8278;
  max-width: 32rem;
}

.block--cream .block-intro {
  color: #5c5348;
}

.order-panels {
  display: grid;
  gap: 1rem;
}

.panel {
  padding: 1.35rem 1.25rem;
  border: 2px solid var(--line);
  background: #111;
  display: flex;
  flex-direction: column;
}

.panel h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.panel p {
  margin: 0 0 1rem;
  color: #b0a89c;
  font-size: 0.95rem;
  flex: 1;
}

.panel a {
  font-weight: 600;
  text-decoration: none;
  color: var(--orange);
  padding: 0.35rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.panel--wa {
  border-left: 6px solid #25d366;
}

.panel--ifood {
  border-left: 6px solid #ea1d2c;
}

.bento {
  display: grid;
  gap: 1.25rem;
}

.bento-text p {
  margin: 0 0 1rem;
  color: #3d352c;
}

.bento-note {
  font-size: 0.9rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 0.25rem;
  font-weight: 700;
  color: var(--orange-dim);
  text-decoration: none;
}

.link-arrow:hover {
  color: var(--orange);
}

.bento-board {
  background: var(--paper-ink);
  color: #f5efe6;
  padding: 1.25rem 1.2rem;
  transform: rotate(-0.4deg);
  box-shadow: 5px 5px 0 var(--orange);
  max-width: 100%;
}

.menu-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-lines li {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  gap: 0.35rem;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.menu-lines li span:first-child {
  min-width: 0;
}

.menu-lines li:last-child {
  border-bottom: none;
}

.dots {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
  min-width: 0.5rem;
  align-self: end;
  margin-bottom: 0.2rem;
}

.bento-shot {
  min-height: 220px;
  background: url("assets/hamburguer.jpg") center / cover no-repeat;
  border: 3px solid var(--paper-ink);
}

.week {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.day {
  text-align: center;
  padding: 0.75rem 0.25rem;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid var(--line);
  background: #111;
}

.day span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4vw, 1.25rem);
  letter-spacing: 0.05em;
}

.day small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a8278;
  line-height: 1.2;
}

.day--hit {
  border-color: var(--orange);
  background: rgba(255, 106, 0, 0.12);
}

.day--hit small {
  color: var(--orange);
}

.agenda-foot {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
}

.agenda-foot a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.block--map {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 2.75rem);
  background: linear-gradient(180deg, var(--black) 0%, #0f0f0f 100%);
}

.onde-wrap {
  display: grid;
  gap: 1.5rem;
}

.onde-info .block-title {
  margin-bottom: 0.75rem;
}

.onde-address {
  font-style: normal;
  margin: 0 0 1.25rem;
  line-height: 1.65;
  color: #c4bcb0;
  font-size: clamp(1rem, 2.5vw, 1.0625rem);
}

.onde-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.onde-phone {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.onde-phone:hover {
  color: var(--orange);
}

.onde-maps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  background: var(--orange);
  color: #111;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--orange);
  transition: background 0.15s ease, color 0.15s ease;
}

.onde-maps-btn:hover {
  background: #ff8533;
  color: #111;
}

.onde-map {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  min-height: clamp(260px, 50vw, 380px);
  background: #1a1612;
}

.onde-map__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 0.9rem;
  color: #a8a095;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 106, 0, 0.12) 0%, transparent 55%),
    linear-gradient(165deg, #1a1612 0%, #0d0c0b 100%);
}

.onde-map--loaded .onde-map__loading {
  display: none;
}

.onde-map__frame {
  width: 100%;
  height: clamp(260px, 50vw, 380px);
  border: 0;
  display: block;
  filter: grayscale(0.08) contrast(1.04);
}

.foot {
  padding: 1.5rem 0 calc(1.25rem + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 0.85rem;
  color: #6a635a;
  border-top: 1px solid var(--line);
  background: #0a0a0a;
}

.foot-inner p {
  margin: 0.2rem 0;
}

.foot-handle {
  color: #8a8278;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.35rem var(--pad-x) calc(0.45rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.75) 35%, rgba(10, 10, 10, 0.95) 100%);
}

.dock-bar {
  pointer-events: auto;
  display: flex;
  align-items: stretch;
  gap: 0.45rem;
  max-width: 20.5rem;
  margin: 0 auto;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(22, 20, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
}

.dock-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.dock-bar__btn:active {
  transform: scale(0.97);
}

.dock-bar__btn--wa {
  background: var(--orange);
  color: #14100c;
}

.dock-bar__btn--wa:hover {
  filter: brightness(1.06);
  color: #14100c;
}

.dock-bar__btn--ifood {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.dock-bar__btn--ifood:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.dock-bar__ifood {
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
}

.dock-bar__icon {
  flex-shrink: 0;
  opacity: 0.9;
}

/* —— Mobile tweaks —— */
@media (max-width: 359px) {
  .splash-actions {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .brand-name {
    display: none;
  }
}

@media (max-width: 400px) {
  .glass-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .glass-stats li {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    text-align: left;
  }

  .glass-stats strong {
    display: inline;
    margin-bottom: 0;
    margin-right: 0.35rem;
  }

  .glass-stats span {
    display: inline;
  }
}

@media (max-width: 380px) {
  .splash-block {
    font-size: clamp(2.35rem, 13vw, 2.85rem);
    white-space: normal;
  }
}

@media (min-width: 480px) {
  .week {
    grid-template-columns: repeat(6, 1fr);
  }

  :root {
    --top: 64px;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .topnav,
  .topbar-cta {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .splash-inner {
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .splash-bg img {
    object-position: center 40%;
    opacity: 0.48;
  }

  .splash-vignette {
    background:
      linear-gradient(90deg, rgba(8, 6, 5, 0.96) 0%, rgba(10, 8, 6, 0.82) 42%, rgba(12, 9, 7, 0.45) 68%, rgba(8, 6, 5, 0.65) 100%),
      radial-gradient(ellipse 50% 55% at 72% 45%, rgba(255, 106, 0, 0.32) 0%, transparent 65%);
  }

  .splash-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
  }

  .splash-copy {
    max-width: 34rem;
  }

  .splash-block {
    font-size: clamp(3.25rem, 5.5vw, 5.5rem);
  }

  .glass-stats {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .splash-actions {
    max-width: 22rem;
  }

  .order-panels {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .bento {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "text board"
      "shot shot";
    gap: 1.5rem 2rem;
    align-items: start;
  }

  .bento-text {
    grid-area: text;
  }

  .bento-board {
    grid-area: board;
    transform: rotate(-0.6deg);
  }

  .bento-shot {
    grid-area: shot;
    min-height: 280px;
  }

  .onde-wrap {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: start;
  }

  .onde-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
  }

  .foot {
    padding-bottom: 2rem;
  }

  .dock {
    display: none;
  }
}

@media (min-width: 1024px) {
  .splash-lead {
    font-size: 1.125rem;
    max-width: 32rem;
  }

  .splash-actions {
    max-width: 24rem;
  }

  .glass-stats {
    max-width: 42rem;
  }

  .block {
    padding: 4.5rem 0;
  }
}

@media (hover: hover) {
  .act:hover {
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .act:active,
  .act:hover {
    transform: none;
  }

  .menu-btn span {
    transition: none;
  }
}
