:root {
  --ink: #241016;
  --ink-soft: #4a3038;
  --rose: #b01050;
  --rose-deep: #8a0f40;
  --blush: #f7e0ea;
  --paper: #fff6f8;
  --foam: #ffffff;
  --cocoa: #3a1f28;
  --sugar: #ffe8f0;
  --line: rgba(36, 16, 22, 0.12);
  --display: "Fraunces", Georgia, serif;
  --sans: "Sora", system-ui, sans-serif;
  --script: "Fraunces", Georgia, serif;
  --pad: clamp(1.1rem, 4.2vw, 3.75rem);
  --max: 72rem;
  --header-h: 4.1rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 50px rgba(36, 16, 22, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 55% at 0% -10%, rgba(255, 186, 210, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 8%, rgba(255, 220, 190, 0.35), transparent 50%),
    var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
h2 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
p { margin: 0; }
em { font-style: italic; font-weight: 400; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.script {
  font-family: var(--script);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--rose-deep);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: .85rem var(--pad);
  color: #fff;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease), color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255, 246, 248, 0.94);
  backdrop-filter: blur(16px) saturate(1.15);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.brand img { width: 2.45rem; height: 2.45rem; border-radius: 50%; background: #fff; }
.brand em { color: #ffb6d2; padding: 0 .15rem; }
.site-header.is-scrolled .brand em { color: var(--rose); }
.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 1.7rem);
  font-size: .92rem;
  font-weight: 600;
}
.nav a { color: inherit; opacity: 0.9; transition: color .2s ease, opacity .2s ease; }
.nav a:hover, .nav a.is-active { color: #ffd0e2; opacity: 1; }
.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav a.is-active { color: var(--rose); }
.nav-cta {
  padding: .7rem 1.05rem;
  background: #fff;
  color: var(--ink) !important;
  opacity: 1 !important;
  border-radius: .2rem;
}
.site-header.is-scrolled .nav-cta {
  background: var(--ink);
  color: #fff !important;
}
.nav-cta:hover { filter: none; background: var(--rose); color: #fff !important; }
.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: .4rem 0;
  background: var(--ink);
  transition: .25s ease;
}

/* Hero — brand first, full-bleed */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.hero-media { position: absolute; inset: 0; }
.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.hero-media img {
  transform: none;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 8, 14, 0.72) 0%, rgba(28, 8, 14, 0.35) 48%, rgba(28, 8, 14, 0.2) 100%),
    linear-gradient(180deg, rgba(28, 8, 14, 0.15) 0%, rgba(28, 8, 14, 0.78) 100%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(194, 24, 91, 0.35), transparent 60%);
}
.hero-frame {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 7.5rem var(--pad) clamp(3.5rem, 8vw, 5.5rem);
}
.hero-logo {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  margin-bottom: 1.35rem;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.hero h1,
.hero-title {
  font-size: clamp(4rem, 13vw, 8.5rem);
  color: #fff;
  max-width: 8ch;
}
.js .hero-anim {
  opacity: 1;
  transform: translateY(1.2rem);
  filter: none;
  transition:
    opacity .7s var(--ease),
    transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 0.1s + 0.05s);
}
body.is-ready .hero-anim {
  opacity: 1;
  transform: none;
}
body.is-ready .hero-logo.hero-anim {
  animation: ken-float 7s ease-in-out 1s infinite;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: .45rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-cue i {
  display: block;
  width: 1px;
  height: 2.2rem;
  background: linear-gradient(180deg, rgba(255,255,255,.9), transparent);
  animation: ken-cue 1.6s ease-in-out infinite;
}
.h-line { display: block; }
.h-kenia { color: #ffd0e2; }
.h-kenia em {
  display: inline-block;
  font-size: 0.42em;
  vertical-align: middle;
  margin-right: .2rem;
  color: #fff;
  opacity: 0.85;
}
.hero-lead {
  margin-top: 1.15rem;
  max-width: 22ch;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.85rem;
}
.hero .scroll-cue {
  bottom: 1.1rem;
}

/* Faixa grudada no hero — sem vão */
.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin: 0;
  border: 0;
  background: #1a0d11;
  padding: .7rem 0;
}
.marquee-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  color: #ffb6d2;
  white-space: nowrap;
  animation: ken-marquee 28s linear infinite;
}
.marquee-track span:nth-child(even) {
  color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.scallop {
  display: block;
  width: 100%;
  height: 2rem;
  color: var(--paper);
  background: #1a0d11;
  margin: 0;
  position: relative;
  z-index: 2;
  line-height: 0;
}

.menu-hero-band {
  padding-bottom: 1.2rem;
  background:
    radial-gradient(ellipse 70% 80% at 90% 0%, #f3c5d8, transparent 50%),
    linear-gradient(180deg, #f7dce8, transparent);
}
.menu-hero-band h2 {
  font-size: clamp(2.6rem, 8vw, 4.4rem);
}
.menu-hero-band p {
  margin-top: .9rem;
  color: var(--ink-soft);
  max-width: 36ch;
}
.pedido-band {
  background: #fff;
}
.pedido-lead {
  margin: .8rem 0 1.2rem;
  color: var(--ink-soft);
  max-width: 32ch;
}
.menu-stage.is-swap {
  animation: ken-swap .55s var(--ease) both;
}

/* FAQ */
.faq-band {
  background:
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(255, 200, 220, 0.35), transparent 55%),
    var(--paper);
}
.faq-shell {
  width: min(100%, 48rem);
  margin: 0 auto;
}
.faq-intro {
  margin-bottom: 1.6rem;
}
.faq-intro h2 { margin-bottom: .6rem; }
.faq-intro p { color: var(--ink-soft); max-width: 34ch; }
.faq-list { display: grid; gap: .7rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] {
  border-color: color-mix(in srgb, var(--rose) 35%, var(--line));
  box-shadow: 0 16px 40px rgba(194, 24, 91, 0.08);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { flex: 1; }
.faq-item summary i {
  flex: 0 0 auto;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--blush);
  position: relative;
}
.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: .7rem;
  height: 2px;
  background: var(--rose);
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease), opacity .2s ease;
}
.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item[open] summary i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-answer {
  padding: 0 1.15rem 1.15rem;
  color: var(--ink-soft);
  animation: ken-rise .45s var(--ease) both;
}
.faq-answer p { max-width: 46ch; }

/* Mapa */
.map-band {
  background:
    linear-gradient(180deg, #fff, #fff7fa 40%, #f8e4ec);
}
.map-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}
.map-copy h2 {
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  max-width: 12ch;
}
.map-address {
  margin-top: .9rem;
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 28ch;
}
.map-hint {
  margin-top: .55rem;
  color: var(--ink-soft);
  font-size: .92rem;
}
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.35rem;
}
.map-frame {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #f0d4e0;
  min-height: 18rem;
}
.map-canvas {
  width: 100%;
  height: min(58vw, 26rem);
  min-height: 18rem;
}
.map-canvas .leaflet-tile-pane {
  filter: none;
}
.map-canvas .leaflet-control-attribution {
  font-size: .65rem;
  background: rgba(255, 248, 251, 0.85) !important;
}
.map-pin-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 500;
  display: grid;
  gap: .2rem;
  padding: .85rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 248, 251, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(194, 24, 91, 0.18);
  box-shadow: 0 12px 30px rgba(36, 16, 22, 0.12);
  pointer-events: none;
}
.map-pin-card strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
}
.map-pin-card span {
  color: var(--ink-soft);
  font-size: .88rem;
  font-weight: 600;
}
.kenia-marker {
  background: transparent;
  border: 0;
}
.kenia-marker-core {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(145deg, #e91e63, #9a1248);
  border: 3px solid #fff;
  box-shadow: 0 10px 24px rgba(194, 24, 91, 0.45);
  position: relative;
}
.kenia-marker-core::after {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: #fff;
  transform: rotate(45deg);
}

@media (min-width: 880px) {
  .map-shell {
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 2rem;
  }
  .map-canvas {
    height: 28rem;
  }
  .map-pin-card {
    left: 1.2rem;
    right: auto;
    max-width: 16rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: .85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: .2rem;
  font: 700 .95rem var(--sans);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 12px 28px rgba(194, 24, 91, 0.28);
}
.btn-primary:hover { background: var(--rose-deep); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.btn-lg { min-height: 3.5rem; padding-inline: 1.7rem; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-map {
  background: #241016;
  color: #fff;
  box-shadow: 0 12px 28px rgba(36, 16, 22, 0.18);
}
.btn-map:hover { background: var(--rose-deep); color: #fff; }
.btn-ghost-ink {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost-ink:hover {
  background: #fff;
  border-color: color-mix(in srgb, var(--rose) 40%, var(--line));
  color: var(--rose);
}

/* Bands */
.band { padding: clamp(4.2rem, 10vw, 7.5rem) var(--pad); content-visibility: auto; contain-intrinsic-size: 1px 800px; }
.hero, .menu-app, .intro-band { content-visibility: visible; }
.eyebrow {
  margin-bottom: .8rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.text-link {
  font-weight: 700;
  color: var(--rose);
  border-bottom: 1px solid color-mix(in srgb, var(--rose) 40%, transparent);
}
.text-link:hover { border-bottom-color: var(--rose); }

.intro-band {
  background: var(--paper);
  padding-top: clamp(1.6rem, 4vw, 2.8rem);
}
.intro-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
@media (min-width: 880px) {
  .intro-grid {
    grid-template-columns: .85fr 1.15fr;
    align-items: end;
    gap: 4rem;
  }
}
.intro-script {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  max-width: 10ch;
  transform: rotate(-3deg);
  transform-origin: left bottom;
}
.intro-copy h2 { margin-bottom: 1rem; }
.intro-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 36ch;
}

.lines-band { background: #fff; }
.band-top {
  width: min(100%, var(--max));
  margin: 0 auto 2.5rem;
}
.menu-wall {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.menu-wall a {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
  transition: color .25s ease, padding-left .25s var(--ease);
}
.menu-wall a:hover {
  color: var(--rose);
  padding-left: .4rem;
}
.mw-num {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--rose);
}
.mw-name {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
}
.mw-blurb {
  display: block;
  margin-top: .25rem;
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 500;
}
.mw-go {
  font-size: 1.5rem;
  opacity: 0.35;
  transform: translateX(-6px);
  transition: .25s var(--ease);
}
.menu-wall a:hover .mw-go {
  opacity: 1;
  transform: none;
}

.ig-band {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, #f4d0e0, transparent 55%),
    var(--blush);
}
.ig-head {
  width: min(100%, var(--max));
  margin: 0 auto 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.ig-rail {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(11rem, 1fr);
  gap: .75rem;
  overflow-x: auto;
  padding-bottom: .4rem;
  scroll-snap-type: x mandatory;
}
.ig-shot {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  scroll-snap-align: start;
  background: #e2b7c8;
  border-radius: 1rem;
}
.ig-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.ig-shot:hover img { transform: scale(1.06); }
.ig-empty {
  width: min(100%, 26rem);
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
  color: var(--ink-soft);
}

.finale {
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.finale-inner {
  width: min(100%, 34rem);
  margin: 0 auto;
}
.finale .script {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #ffb6d2;
  margin-bottom: .8rem;
}
.finale h2 { color: #fff; }
.finale p {
  margin: 1rem auto 1.6rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 32ch;
}

/* Page heroes (inner pages) */
.page-hero {
  padding: 7.2rem var(--pad) 2.2rem;
  background:
    radial-gradient(ellipse 70% 80% at 90% 0%, #f3c5d8, transparent 50%),
    linear-gradient(180deg, #f7dce8, transparent);
}
.page-hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  max-width: 36rem;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 9vw, 5rem);
}
.page-hero p {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Cardápio system — mobile-first */
.menu-hero {
  padding-bottom: 1.5rem;
}
.menu-app {
  padding-top: 0;
  padding-bottom: 7.5rem;
}
.menu-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 0;
}

/* Nav: chips horizontais no mobile / lateral no desktop */
.menu-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  display: flex;
  gap: .45rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-inline: calc(var(--pad) * -1);
  padding: .75rem var(--pad);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav-btn {
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: .62rem 1.05rem;
  cursor: pointer;
  font: inherit;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.menu-nav-btn:active { transform: scale(0.97); }
.menu-nav-btn.is-active {
  background: var(--cocoa);
  border-color: var(--cocoa);
  color: #fff;
  box-shadow: 0 10px 24px rgba(36, 16, 22, 0.18);
}
.menu-nav-name {
  display: block;
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: 0;
  color: inherit;
  line-height: 1.2;
}
.menu-nav-sub { display: none; }

.menu-stage {
  background: transparent;
  border: 0;
  padding: 1.35rem 0 0;
  animation: ken-rise .7s var(--ease) both;
}
.menu-stage-head { margin-bottom: 1.35rem; }
.menu-cover {
  margin-bottom: 1.1rem;
  border-radius: 1.1rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(145deg, #ffe0ec, #f2b9cb);
  box-shadow: var(--shadow-soft);
}
.menu-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-stage-head h2 {
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  max-width: 12ch;
}
.menu-desc {
  margin-top: .75rem;
  color: var(--ink-soft);
  max-width: 40ch;
  font-size: .98rem;
}
.menu-block { margin-top: 1.45rem; }
.menu-block h3 {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .7rem;
}
.choice-row { display: flex; flex-wrap: wrap; gap: .45rem; }
.choice {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: .68rem 1rem;
  font: 600 .88rem var(--sans);
  color: var(--ink);
  cursor: pointer;
  transition: .22s var(--ease);
}
.choice:hover { border-color: color-mix(in srgb, var(--rose) 45%, var(--line)); }
.choice.is-active {
  background: var(--cocoa);
  border-color: var(--cocoa);
  color: #fff;
}
.flavor-picks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}
.flavor-btn {
  width: 100%;
  display: grid;
  gap: .5rem;
  text-align: left;
  border: 1px solid transparent;
  background: #fff;
  border-radius: 1rem;
  padding: .5rem;
  font: 600 .86rem var(--sans);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(36, 16, 22, 0.04), var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.flavor-btn:hover { transform: translateY(-3px); }
.flavor-btn.is-active {
  border-color: var(--rose);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--rose) 35%, transparent), var(--shadow-soft);
}
.flavor-media {
  display: block;
  aspect-ratio: 1;
  border-radius: .75rem;
  overflow: hidden;
  background: #f0d4e0;
}
.flavor-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.flavor-btn:hover .flavor-media img { transform: scale(1.06); }
.flavor-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 5.5rem;
  font-family: var(--display);
  font-size: 2.1rem;
  color: var(--rose);
  background:
    radial-gradient(circle at 30% 25%, #fff, transparent 45%),
    linear-gradient(145deg, #ffe8f1, #efb8cb);
}
.flavor-label {
  display: block;
  line-height: 1.25;
  padding: 0 .2rem .35rem;
}
.size-grid {
  display: grid;
  gap: .65rem;
  grid-template-columns: 1fr;
}
.size-card {
  display: grid;
  gap: .2rem;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.05rem;
  cursor: pointer;
  font: inherit;
  transition: .22s var(--ease);
}
.size-card:hover { border-color: color-mix(in srgb, var(--rose) 40%, var(--line)); }
.size-card.is-active {
  border-color: var(--rose);
  background: linear-gradient(180deg, #fff7fa, #ffeaf2);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--rose) 22%, transparent);
}
.size-label { font-weight: 700; }
.size-yield { font-size: .78rem; color: var(--ink-soft); }
.size-amount {
  margin-top: .35rem;
  font-family: var(--display);
  font-size: 1.65rem;
  color: var(--rose);
}
.extra-list { list-style: none; margin: 0; padding: 0; }
.extra-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
}
.quote-panel, .doce-price {
  padding: 1.15rem 1.2rem;
  background: linear-gradient(135deg, #ffe6f0, #f8d5e4);
  color: var(--ink-soft);
  border-radius: 1rem;
}
.doce-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  color: var(--ink);
}
.doce-price strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--rose);
}
.sweets-grid {
  display: grid;
  gap: .7rem;
  grid-template-columns: 1fr;
}
.sweet-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.sweet-item h3 {
  font-family: var(--display);
  font-size: 1.4rem;
}
.sweet-item p {
  margin-top: .3rem;
  color: var(--ink-soft);
  font-size: .9rem;
}
.section-note {
  margin-top: 1.2rem;
  color: var(--ink-soft);
  font-size: .92rem;
}

/* Barra de pedido: fixa no rodapé do mobile */
.menu-summary {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  margin: 0;
  padding: .95rem var(--pad) calc(.95rem + env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .45rem .85rem;
  align-items: center;
  background: color-mix(in srgb, #fff8fb 94%, transparent);
  backdrop-filter: blur(18px) saturate(1.25);
  border-top: 1px solid var(--line);
  box-shadow: 0 -14px 40px rgba(36, 16, 22, 0.1);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.menu-summary.is-docked {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.menu-summary .btn {
  grid-column: 1 / -1;
  min-height: 3rem;
  border-radius: 999px;
}
.summary-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.summary-text {
  margin-top: .2rem;
  font-weight: 600;
  font-size: .86rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.summary-price {
  font-family: var(--display);
  font-size: clamp(1.7rem, 6vw, 2.2rem);
  color: var(--rose);
  line-height: 1;
  text-align: right;
}

@media (min-width: 560px) {
  .flavor-picks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .size-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sweets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .menu-app { padding-top: 1rem; padding-bottom: clamp(3rem, 7vw, 5rem); }
  .menu-shell {
    grid-template-columns: 15rem minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
  }
  .menu-nav {
    position: sticky;
    top: 5.4rem;
    display: grid;
    gap: .2rem;
    overflow: visible;
    scroll-snap-type: none;
    margin-inline: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
  }
  .menu-nav-btn {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
    padding: .95rem .15rem;
    white-space: normal;
  }
  .menu-nav-btn:hover { color: var(--rose); }
  .menu-nav-btn.is-active {
    background: transparent;
    border-color: var(--line);
    color: var(--rose);
    box-shadow: none;
  }
  .menu-nav-name {
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  .menu-nav-name[data-full] {
    font-size: 0;
  }
  .menu-nav-name[data-full]::before {
    content: attr(data-full);
    font-size: 1.45rem;
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  .menu-nav-sub {
    display: block;
    margin-top: .15rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink-soft);
  }
  .menu-nav-btn.is-active .menu-nav-sub { color: color-mix(in srgb, var(--rose) 70%, var(--ink-soft)); }
  .menu-stage {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    box-shadow: var(--shadow-soft);
  }
  .menu-cover { aspect-ratio: 21 / 9; }
  .flavor-picks {
    grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  }
  .size-grid {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  }
  .menu-summary {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 2rem 0 0;
    padding: 1.35rem 0 0;
    background: transparent;
    backdrop-filter: none;
    border-top: 1px solid var(--line);
    box-shadow: none;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    transform: none !important;
    pointer-events: auto !important;
    opacity: 1 !important;
  }
  .menu-summary .btn {
    grid-column: auto;
    border-radius: .2rem;
  }
  .summary-text {
    display: block;
    -webkit-line-clamp: unset;
    font-size: .95rem;
  }
  .summary-price { font-size: 2.4rem; }
}

/* Pedido */
.pedido-shell {
  width: min(100%, 58rem);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) {
  .pedido-shell { grid-template-columns: .9fr 1.1fr; }
}
.pedido-aside h2 { margin-bottom: 1rem; font-size: 2.4rem; }
.steps-mini {
  margin: 0 0 1.3rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}
.steps-mini li { margin-bottom: .55rem; }
.pedido-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
}
.pedido-form label { display: grid; gap: .35rem; }
.pedido-form span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.pedido-form input,
.pedido-form select,
.pedido-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  border-radius: .15rem;
  background: var(--paper);
  font: inherit;
  color: var(--ink);
}
.pedido-form textarea { min-height: 7.5rem; resize: vertical; }
.pedido-form input:focus,
.pedido-form select:focus,
.pedido-form textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--rose) 55%, #999);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--rose) 14%, transparent);
}
.form-row { display: grid; gap: 1rem; }
@media (min-width: 520px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-error { color: #9d1d4a; font-weight: 600; }

/* Footer */
.site-footer {
  position: relative;
  padding: 3rem var(--pad) 3.2rem;
  background: #1a0d11;
  color: rgba(255, 255, 255, 0.72);
}
.footer-ornament {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c2185b, transparent);
}
.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer-brand img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #fff;
}
.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
}
.footer-brand em { color: #ffb6d2; }
.footer-brand .script {
  margin-top: .35rem;
  font-size: 1.5rem;
  color: #ffb6d2;
}
.footer-links {
  display: grid;
  gap: .45rem;
  font-weight: 600;
  align-content: center;
}
.footer-links a:hover { color: #fff; }

/* Motion — só esconde se o JS estiver ativo (evita página “quebrada”) */
.js .reveal {
  opacity: 0.2;
  transform: translateY(1.25rem);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.ig-shot.reveal {
  transform: translateY(2.5rem) scale(0.9);
}
.ig-shot.reveal.is-visible {
  transform: none;
}
.menu-wall .reveal.is-visible a {
  animation: ken-slide-in .7s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 0.06s);
}

@keyframes ken-rise {
  from { opacity: 0; transform: translateY(1.8rem); }
  to { opacity: 1; transform: none; }
}
@keyframes ken-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes ken-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(0, -1.5%, 0); }
}
@keyframes ken-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes ken-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ken-cue {
  0%, 100% { transform: scaleY(0.55); opacity: .35; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}
@keyframes ken-swap {
  from { opacity: 0.45; transform: translateY(0.6rem); }
  to { opacity: 1; transform: none; }
}
@keyframes ken-slide-in {
  from { opacity: 0; transform: translateX(-1rem); }
  to { opacity: 1; transform: none; }
}

.mw-name {
  transition: color .25s ease;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img, .hero-logo, .hero-frame, .reveal, .noise, .menu-stage, .menu-summary, .marquee-track, .scroll-cue i, .hero-anim {
    animation: none !important;
    transition: none !important;
    filter: none !important;
  }
  .js .reveal,
  .js .hero-anim {
    opacity: 1;
    transform: none;
  }
  .menu-summary { transform: none; opacity: 1; pointer-events: auto; }
  .marquee-track { animation: none; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 246, 248, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: .4rem 0 .8rem;
    box-shadow: 0 18px 40px rgba(36, 16, 22, 0.08);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .9rem var(--pad); }
  .nav-cta {
    margin: .35rem var(--pad);
    text-align: center;
    border-radius: 999px;
  }
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }
  .hero-frame {
    padding-top: 6.5rem;
    padding-bottom: 4.2rem;
  }
  .hero h1, .hero-title { font-size: clamp(3.2rem, 15vw, 4.6rem); }
  .scroll-cue { display: none; }
  .hero-lead { max-width: 28ch; }
  .menu-wall a { grid-template-columns: 2.5rem 1fr; }
  .mw-go { display: none; }
  .band { padding-block: clamp(3.2rem, 10vw, 5rem); }
  .finale .btn { border-radius: 999px; width: min(100%, 20rem); }
}
