/* ═══════════════════════════════════════════════════════════════════
   SOYO Sushi Bar — design system v2
   Bar de sushi noturno · vermelho lacquer + creme + preto-mármore.
   Inspiração: luz de lanterna, manchas de tinta, samurai/gueixa, kanji.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* ── Palette ─────────────────────────────────── */
  --c-bg:        #0A0606;
  --c-bg-soft:   #110909;
  --c-paper:     #1A1010;
  --c-ink:       #F3E7D3;
  --c-ink-2:     #B8A78D;
  --c-line:      rgba(243,231,211,.10);

  --c-deep:      #050202;
  --c-deep-2:    #0D0606;

  --c-red:       #C3261D;
  --c-red-2:     #E03A2B;
  --c-red-3:     #7A0F0A;
  --c-rose:      #F37A6C;   /* highlight quente */
  --c-gold:      #C9A45C;
  --c-jade:      #2F6F4F;

  /* Type */
  --f-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --f-jp:      'Noto Serif JP', 'Cormorant Garamond', serif;
  --f-text:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --f-mono:    'Space Mono', ui-monospace, Menlo, monospace;

  /* Sizing */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --r-sm: 3px;
  --r-md: 8px;
  --r-lg: 16px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: .25s;
  --t-med:  .55s;
  --t-slow: 1.1s;
}

/* ───── Reset ───── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-text);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: 'ss01','ss02','cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* grão fílmico fino + vinheta */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 100;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .07;
  mix-blend-mode: screen;
}
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 99;
  background: radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(0,0,0,.6) 100%);
}
@media (prefers-reduced-motion: reduce) { body::before { display: none; } }

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--c-red); color: #fff; }
[hidden] { display: none !important; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--c-red); color: #fff; padding: 12px 16px; z-index: 1000; }
.skip-link:focus { left: 16px; top: 16px; }

/* ───── Utilities ───── */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 11px;
  font-family: var(--f-mono);
  font-weight: 400;
  color: var(--c-red-2);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow--light { color: var(--c-gold); }

.h-display {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 100px);
  line-height: 1.04;
  letter-spacing: -0.005em;          /* mais aberto p/ Title Case serifado */
  white-space: pre-line;
  color: var(--c-ink);
  text-wrap: balance;
}
.h-display em { font-style: italic; color: var(--c-red-2); text-shadow: 0 0 32px rgba(224,58,43,.45); }
.h-display br + em { display: inline; }
.h-display--inv { color: #fff; }

.prose p + p { margin-top: 1.1em; }
.prose p { font-size: clamp(16px, 1.2vw, 18px); color: var(--c-ink-2); max-width: 56ch; }
.prose b { color: var(--c-ink); font-weight: 600; }
.prose em { color: var(--c-rose); font-style: italic; }

/* ═══════════ PILLS (botões grandes com personalidade) ═══════════ */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  position: relative;
  will-change: transform;
  border: 1px solid transparent;
  white-space: nowrap;
}
.pill:focus-visible { outline: 2px solid var(--c-red); outline-offset: 4px; }
.pill--neon {
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 14px 40px -16px rgba(195,38,29,.8), 0 0 0 1px rgba(255,255,255,.06) inset, 0 0 24px rgba(224,58,43,.25);
}
.pill--neon:hover { background: var(--c-red-2); transform: translateY(-1px) scale(1.02); box-shadow: 0 18px 48px -14px rgba(224,58,43,.85), 0 0 32px rgba(224,58,43,.45); }
.pill--filled {
  background: var(--c-ink);
  color: var(--c-deep);
}
.pill--filled:hover { background: var(--c-red-2); color: #fff; }
.pill--ghost {
  background: rgba(243,231,211,.04);
  color: var(--c-ink);
  border: 1px solid rgba(243,231,211,.30);
  backdrop-filter: blur(4px);
}
.pill--ghost:hover { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.pill--big { padding: 16px 28px; font-size: 13px; }
.pill__flame { color: #FFD37A; }

.btn--link {
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn--link:hover { color: var(--c-red-2); }

/* ═══════════ TAPES (tickers) ═══════════ */
.tape {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-deep);
  position: relative;
  z-index: 60;
}
.tape--top {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(243,231,211,.78);
  padding: 8px 0;
}
.tape--neon {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(36px, 6vw, 90px);
  font-weight: 500;
  background: var(--c-red);
  color: var(--c-deep);
  border: 0;
  padding: 14px 0;
  letter-spacing: -0.01em;
  position: relative;
}
.tape--neon::before, .tape--neon::after {
  content: ''; position: absolute; left: 0; right: 0; height: 4px; background:
    repeating-linear-gradient(90deg, var(--c-deep) 0 6px, transparent 6px 14px);
}
.tape--neon::before { top: 0; }
.tape--neon::after  { bottom: 0; }

.tape__track {
  display: inline-flex; gap: 36px;
  white-space: nowrap;
  align-items: center;
  animation: tape 38s linear infinite;
  padding-inline: 18px;
}
.tape--neon .tape__track { gap: 64px; animation-duration: 30s; }
.tape__track > span { display: inline-flex; align-items: center; gap: 18px; }
.tape__track > span::after {
  content: '◆';
  font-style: normal;
  font-size: .55em;
  color: rgba(243,231,211,.45);
}
.tape--neon .tape__track > span::after { color: var(--c-deep); font-size: .45em; }
.tape__track .tape__gap { width: 24px; }
.tape__track .tape__gap::after { content: none; }

@keyframes tape {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; inset: 32px 0 auto 0;
  z-index: 50;
  padding: 14px var(--gutter);
  transition: background var(--t-med) var(--ease), inset var(--t-med), backdrop-filter var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
  color: var(--c-ink);
}
.nav.is-scrolled {
  inset: 0 0 auto 0;
  background: rgba(10, 6, 6, .85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--c-line);
  padding: 10px var(--gutter);
}
.nav__inner {
  /* Encostado aos extremos: sem max-width nem padding interno —
     o padding da .nav (gutter) é o único respiro lateral, e vamos
     anulá-lo abaixo para empurrar mesmo logo→esq e links→dir. */
  max-width: none; margin: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
/* Logo do header: 2x o tamanho anterior, encostado à esquerda do viewport */
.nav__brand {
  display: inline-flex; align-items: center;
  margin-right: auto;          /* empurra os links para a direita */
  padding-left: clamp(8px, 1.4vw, 18px);
}
.nav__brand img {
  height: clamp(120px, 14vw, 200px);   /* ~2x do anterior (era 78–116) */
  width: auto; object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(195,38,29,.45));
}

/* Links ficam o mais à direita possível */
.nav__inner .nav__links {
  margin-left: auto;
  padding-right: clamp(8px, 1.4vw, 18px);
}

/* Anular o gutter padrão da .nav nos LADOS — só fica padding vertical */
.nav { padding-inline: 0 !important; }
.nav.is-scrolled { padding-inline: 0 !important; }

/* Oval pills — same shape family as the "Mesa para dois?" chip */
.nav__links {
  display: flex; gap: 10px; align-items: center; justify-content: flex-end;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 700;
}
.nav__links a {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(243,231,211,.32);
  color: rgba(243,231,211,.82);
  background: rgba(10,6,6,.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.nav__links a:hover {
  color: var(--c-ink);
  border-color: var(--c-red-2);
  background: rgba(195,38,29,.22);
  transform: translateY(-2px);
}
.nav__links-cta {
  color: var(--c-ink) !important;
  border-color: var(--c-red-2) !important;
  background: var(--c-red) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset, 0 10px 28px -10px rgba(195,38,29,.6);
}
.nav__links-cta:hover { background: var(--c-red-3) !important; }

.nav__burger {
  display: none;
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(243,231,211,.3);
  align-items: center; justify-content: center; gap: 4px; flex-direction: column;
  justify-self: end;
}
.nav__burger span { display: block; width: 16px; height: 1.5px; background: currentColor; transition: transform var(--t-fast), opacity var(--t-fast); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(2.75px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-2.75px) rotate(-45deg); }

.nav__mobile {
  position: fixed; inset: 64px 0 0 0; background: var(--c-deep); color: var(--c-ink);
  display: flex; flex-direction: column; gap: 18px; padding: 32px var(--gutter);
  font-family: var(--f-display); font-style: italic; font-size: 36px;
  z-index: 49;
}
.nav__mobile a { padding: 10px 0; border-bottom: 1px solid rgba(243,231,211,.10); }
.nav__mobile .pill { font-family: var(--f-mono); font-style: normal; font-size: 12px; align-self: flex-start; margin-top: 18px; }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__inner { grid-template-columns: 1fr auto; }
}

/* ═══════════ PROMO ═══════════ */
.promo { background: var(--c-red); color: #fff; text-align: center; font-size: 12.5px; padding: 10px 16px; letter-spacing: .14em; text-transform: uppercase; font-family: var(--f-mono); }
.promo a { text-decoration: underline; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 140px var(--gutter) 0;
  color: var(--c-ink);
  isolation: isolate;
  overflow: hidden;
  /* base escura tipo papel washi tingido — sem gradientes pesados */
  background-color: #0E0706;
  background-image:
    /* vinheta subtil em cima/baixo para dar profundidade sem custo de animação */
    radial-gradient(120% 80% at 50% 0%, rgba(122,15,10,.35), transparent 60%),
    radial-gradient(100% 70% at 50% 100%, rgba(0,0,0,.55), transparent 70%);
}

/* fundo do hero: foto do mural da gueixa a ~10% de opacidade.
   Posicionada à direita, com gradient para o lado esquerdo respirar. */
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
  opacity: .14;             /* ~10–14% — visível mas não rouba foco */
  filter: saturate(1.05) contrast(1.05);
}
/* gradient escuro por cima para reforçar a leitura do título */
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 30% 50%, rgba(0,0,0,.55), transparent 75%),
    linear-gradient(180deg, rgba(10,6,6,.45) 0%, rgba(10,6,6,.15) 35%, rgba(10,6,6,.75) 100%);
}

/* (Logo central do hero removido por pedido — o título massivo
   centrado é agora o foco principal.) */

/* kanji gigante a sangrar do canto */
.hero__kanji {
  position: absolute;
  font-family: var(--f-jp);
  font-weight: 700;
  font-size: clamp(280px, 44vw, 640px);
  line-height: 1;
  color: rgba(195,38,29,.12);
  bottom: -8vw; right: -6vw;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.05em;
  text-shadow: 0 0 80px rgba(195,38,29,.2);
  writing-mode: vertical-rl;
}
@media (max-width: 720px) { .hero__kanji { font-size: 260px; right: -10vw; opacity: .7; } }

/* título massivo centrado — foco principal do hero.
   Title Case + serifada italic: tamanho ligeiramente menor que com CAPS,
   line-height mais aberto, spacing mais leve. */
.hero__title {
  position: relative; z-index: 3;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(54px, 9vw, 150px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--c-ink);
  margin: clamp(140px, 24vh, 280px) auto 0;
  max-width: 1180px;
  text-wrap: balance;
  text-align: center;
}
.hero__title .line { display: block; text-align: center; }
.hero__title em {
  font-style: italic;
  color: var(--c-red-2);
  text-shadow: 0 0 38px rgba(224,58,43,.6), 0 0 2px rgba(255,180,160,.4);
}
@media (max-width: 720px) {
  .hero__title { margin-top: clamp(130px, 22vh, 200px); font-size: clamp(40px, 11vw, 80px); }
}

/* floating cutouts — NOVOS motivos (torii, onda seigaiha, kanji 鮨) */
.cut { position: absolute; z-index: 2; pointer-events: none; filter: drop-shadow(0 24px 36px rgba(0,0,0,.6)); }
.cut[data-float] { animation: float 8s ease-in-out infinite; }

.cut--torii {
  top: 24vh; right: 5vw;
  width: clamp(120px, 14vw, 220px);
  transform: rotate(-6deg);
}
.cut--wave {
  bottom: 22vh; left: 4vw;
  width: clamp(180px, 22vw, 340px);
  transform: rotate(-4deg);
  animation-delay: -2s;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.5));
}
.cut--kanji {
  top: 30vh; left: 6vw;
  width: clamp(96px, 11vw, 160px);
  height: clamp(96px, 11vw, 160px);
  display: grid; place-items: center;
  font-family: var(--f-jp);
  font-weight: 700;
  font-size: clamp(82px, 9vw, 140px);
  color: var(--c-red-2);
  text-shadow: 0 0 24px rgba(224,58,43,.55);
  transform: rotate(8deg);
  animation-delay: -4s;
}
.cut--kanji span { display: block; line-height: 1; }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -14px; }
}
@media (max-width: 720px) {
  .cut--torii { top: auto; bottom: 36vh; right: 4vw; }
  .cut--wave  { display: none; }
  .cut--kanji { top: auto; bottom: 38vh; left: 4vw; }
}

/* sticker / manifesto */
.sticker {
  position: absolute;
  z-index: 4;
  color: var(--c-deep);
  font-family: var(--f-mono);
  transform: rotate(var(--rot, -6deg));
  filter: drop-shadow(0 28px 48px rgba(0,0,0,.55));
}
.sticker--manifesto {
  top: clamp(120px, 18vh, 220px);
  right: clamp(40px, 6vw, 120px);
  width: clamp(240px, 22vw, 320px);
}
.sticker__body {
  background: var(--c-ink);
  padding: 22px 22px 18px;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,.15);
  position: relative;
  overflow: hidden;
}
.sticker__body::before {
  /* edge of an old paper sticker */
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,.4), transparent 60%);
  pointer-events: none;
}
.sticker__head {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--c-red);
  text-align: center;
  letter-spacing: -.01em;
  border-bottom: 2px solid var(--c-deep);
  padding-bottom: 10px;
}
.sticker__head sup { font-size: .5em; vertical-align: super; }
.sticker__list {
  counter-reset: rule;
  display: grid;
  gap: 6px;
  font-size: 11.5px;
  letter-spacing: .02em;
  line-height: 1.35;
  font-family: var(--f-mono);
  font-weight: 400;
  color: var(--c-deep);
}
.sticker__list li {
  counter-increment: rule;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 6px;
  padding-bottom: 5px;
  border-bottom: 1px dotted rgba(0,0,0,.25);
}
.sticker__list li::before {
  content: counter(rule, decimal-leading-zero) ".";
  font-weight: 700;
  color: var(--c-red);
}
.sticker__list li:last-child { border-bottom: 0; }
.sticker__foot {
  margin-top: 12px;
  text-align: right;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-red-3);
}
.sticker__kanji {
  position: absolute;
  right: -4px; bottom: -10px;
  font-family: var(--f-jp);
  font-weight: 700;
  font-size: 70px;
  color: rgba(195,38,29,.10);
  line-height: 1;
  pointer-events: none;
}
.sticker__tape {
  position: absolute;
  width: 60px; height: 18px;
  background: rgba(195, 38, 29, .65);
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 6px 12px rgba(0,0,0,.3);
}
.sticker__tape--tl { top: -8px; left: -12px; transform: rotate(-22deg); }
.sticker__tape--br { bottom: -8px; right: -12px; transform: rotate(-18deg); }

/* hero chips */
.hero__chips {
  position: absolute;
  left: clamp(20px, 5vw, 60px);
  bottom: clamp(130px, 18vh, 200px);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  z-index: 4;
  max-width: 60vw;
}
.hero__chips .pill { transform: rotate(var(--rot, 0deg)); }
.hero__chips .pill:hover { transform: rotate(var(--rot, 0deg)) translateY(-2px); }

/* footer do hero */
.hero__foot {
  position: relative;
  z-index: 3;
  margin-top: clamp(60px, 12vh, 140px);
  padding: 36px 0 28px;
  border-top: 1px solid rgba(243,231,211,.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(243,231,211,.7);
  line-height: 1.6;
  white-space: pre-line;
}
.kicker--right { text-align: right; }
@media (max-width: 640px) {
  .hero__foot { grid-template-columns: 1fr; }
  .kicker--right { text-align: left; }
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 32px;
  transform: translateX(-50%);
  width: 26px; height: 42px; border-radius: 999px; border: 1px solid rgba(243,231,211,.45);
  display: flex; align-items: flex-start; justify-content: center; padding-top: 8px;
  z-index: 3;
}
.hero__scroll span { width: 2px; height: 8px; background: var(--c-ink); border-radius: 1px; animation: scrollDot 1.6s var(--ease) infinite; }
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  61%  { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ═══════════ KANJI floaters (decor) ═══════════ */
.floater-kanji {
  position: absolute;
  font-family: var(--f-jp); font-weight: 700;
  font-size: clamp(180px, 28vw, 420px);
  line-height: 1;
  color: rgba(195,38,29,.05);
  top: 6%; left: -3vw;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.05em;
  user-select: none;
}
.floater-kanji--right { left: auto; right: -3vw; top: 8%; }

/* ═══════════ SECTIONS — base ═══════════ */
.section {
  padding: clamp(90px, 14vh, 160px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.section__head {
  display: grid; gap: 14px;
  max-width: 900px;
  margin-bottom: clamp(48px, 8vh, 88px);
  position: relative;
  z-index: 2;
}
.section__note { color: var(--c-ink-2); font-size: 14px; max-width: 60ch; font-family: var(--f-mono); }

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 80px);
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .reservas .grid { grid-template-columns: 5fr 6fr; }
  .contacto .grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════ CONCEITO ═══════════ */
.conceito { background: var(--c-bg); }
.conceito__head { display: grid; gap: 14px; max-width: 1000px; margin-bottom: clamp(48px, 8vh, 88px); position: relative; z-index: 2; }

.conceito__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  position: relative;
  z-index: 2;
}
@media (min-width: 980px) {
  .conceito__grid { grid-template-columns: 6fr 5fr; grid-template-areas: 'story stats' 'neon neon'; }
  .conceito__story { grid-area: story; }
  .conceito__stats { grid-area: stats; }
  .conceito__neon  { grid-area: neon; }
}
.conceito__story {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--r-md);
  transform: rotate(var(--rot, -1deg));
  position: relative;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.8);
}
.conceito__story::before {
  /* cantos com fita vermelha */
  content: ''; position: absolute; top: -10px; left: 30px;
  width: 72px; height: 18px;
  background: rgba(195, 38, 29, .8);
  box-shadow: 0 6px 12px rgba(0,0,0,.5);
  transform: rotate(-3deg);
}
.conceito__signoff { margin-top: 22px; font-family: var(--f-display); font-style: italic; font-size: 22px; color: var(--c-ink); }
.conceito__signoff b { font-weight: 600; }
.conceito__signoff em { color: var(--c-red-2); }

.conceito__stats { display: grid; gap: 14px; }
.stat {
  display: grid; gap: 6px;
  padding: 22px 24px;
  border: 1px solid var(--c-line);
  background: linear-gradient(180deg, rgba(195,38,29,.05), transparent 70%), var(--c-bg-soft);
  border-radius: var(--r-md);
  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.stat:hover { transform: translateY(-3px); border-color: var(--c-red-3); }
.stat__n { font-family: var(--f-display); font-style: italic; font-weight: 700; font-size: clamp(40px, 5vw, 64px); color: var(--c-red-2); line-height: 1; letter-spacing: -.02em; text-shadow: 0 0 24px rgba(224,58,43,.35); }
.stat__l { font-family: var(--f-mono); font-size: 11.5px; line-height: 1.5; letter-spacing: .12em; text-transform: uppercase; color: var(--c-ink-2); white-space: pre-line; }
.stat__l em { color: var(--c-rose); font-style: italic; text-transform: none; letter-spacing: 0; font-size: 13px; }

.conceito__neon {
  display: flex; gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(60% 60% at 30% 0%, rgba(195,38,29,.25), transparent 70%),
    var(--c-deep);
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  font-family: var(--f-display); font-style: italic; font-weight: 600;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.1;
}
.conceito__neon span { color: var(--c-ink); text-shadow: 0 0 18px rgba(224,58,43,.4); }
.conceito__neon span:nth-child(2) { color: var(--c-red-2); text-shadow: 0 0 22px rgba(224,58,43,.7); }
.conceito__neon span:nth-child(3) { color: var(--c-gold); text-shadow: 0 0 22px rgba(201,164,92,.55); }

/* ═══════════ MENU ═══════════ */
.menu { background: var(--c-bg); }
.menu__stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
}
@media (min-width: 980px) {
  .menu__stage { grid-template-columns: 7fr 5fr; align-items: start; }
}
.menu__lists { display: grid; gap: clamp(40px, 5vw, 60px); position: relative; z-index: 2; }
.menu__group-title {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
  font-family: var(--f-display);
  font-weight: 500;
}
.menu__group-title span:first-child {
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--c-ink);
  letter-spacing: -.005em;
}
.menu__group-title em {
  font-style: italic;
  font-family: var(--f-mono);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  color: var(--c-red-2);
}
.menu__group-title::after { content: ''; height: 1px; background: var(--c-line); }

.menu__list { display: grid; gap: 0; }
.row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  grid-template-areas:
    'no name price'
    'no tag  price'
    'no hover hover';
  align-items: baseline;
  column-gap: 16px;
  padding: 18px 8px 18px 0;
  border-bottom: 1px solid var(--c-line);
  cursor: pointer;
  transition: background var(--t-fast), padding var(--t-fast);
  position: relative;
}
.row:hover, .row:focus-visible {
  background: linear-gradient(90deg, rgba(195,38,29,.12), transparent 70%);
  padding-left: 14px;
  outline: none;
}
.row__no { grid-area: no; font-family: var(--f-mono); font-weight: 700; font-size: 12px; color: var(--c-red-2); letter-spacing: .1em; padding-top: 4px; }
.row__name { grid-area: name; font-family: var(--f-display); font-style: italic; font-weight: 500; font-size: clamp(20px, 1.8vw, 26px); color: var(--c-ink); }
.row:hover .row__name { color: var(--c-red-2); }
.row__tag { grid-area: tag; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--c-ink-2); margin-top: 4px; }
.row__price { grid-area: price; font-family: var(--f-display); font-style: italic; font-weight: 600; font-size: clamp(22px, 2vw, 28px); color: var(--c-rose); white-space: nowrap; }
.row__price::after { content: '€'; font-size: .6em; margin-left: 2px; opacity: .7; }
.row__hover { grid-area: hover; font-family: var(--f-display); font-style: italic; font-size: 16px; color: var(--c-gold); max-height: 0; overflow: hidden; opacity: 0; transition: max-height var(--t-med) var(--ease), opacity var(--t-fast), margin-top var(--t-fast); }
.row:hover .row__hover, .row:focus-visible .row__hover { max-height: 4em; opacity: 1; margin-top: 8px; }

.menu__preview {
  position: sticky;
  top: 120px;
  margin: 0;
  display: grid;
  gap: 12px;
}
.menu__preview-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
}
.menu__preview-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  filter: saturate(1.08) contrast(1.05);
}
.menu__preview-frame img[data-active] { opacity: 1; }
.menu__preview-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55));
  pointer-events: none;
}
.menu__preview-cap {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-ink-2);
  min-height: 16px;
}
.menu__preview-cap span { color: var(--c-red-2); }
@media (max-width: 980px) { .menu__preview { display: none; } }

.menu__foot { margin-top: clamp(40px, 6vh, 64px); position: relative; z-index: 2; }

/* ═══════════ GALERIA ═══════════ */
.galeria { background: var(--c-bg); overflow: visible; }
.galeria__head { display: grid; gap: 14px; max-width: 900px; margin-bottom: clamp(48px, 8vh, 88px); position: relative; z-index: 2; }
.galeria__hint { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; color: var(--c-ink-2); text-transform: uppercase; }
.galeria__hint b { color: var(--c-red-2); }

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.galeria__cell {
  overflow: hidden; border-radius: var(--r-sm); position: relative;
  background:
    radial-gradient(80% 80% at 30% 40%, rgba(195,38,29,.28), transparent 65%),
    linear-gradient(135deg, #1A0807 0%, #0A0606 100%);
}
.galeria__cell img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter var(--t-med);
  filter: saturate(.95) contrast(1.05);
}
.galeria__cell:hover img { transform: scale(1.05); filter: saturate(1.1) contrast(1.08); }
.galeria__cell::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55)); opacity: .65; transition: opacity var(--t-fast); pointer-events: none; z-index: 2; }
.galeria__cell:hover::after { opacity: 1; }

.galeria__cell:nth-of-type(1) { grid-column: span 5; grid-row: span 5; }
.galeria__cell:nth-of-type(2) { grid-column: span 4; grid-row: span 3; }
.galeria__cell:nth-of-type(3) { grid-column: span 3; grid-row: span 4; }
.galeria__cell:nth-of-type(4) { grid-column: span 3; grid-row: span 3; }
.galeria__cell:nth-of-type(5) { grid-column: span 4; grid-row: span 4; }
.galeria__cell:nth-of-type(6) { grid-column: span 5; grid-row: span 3; }
.galeria__cell:nth-of-type(7) { grid-column: span 4; grid-row: span 4; }
.galeria__cell:nth-of-type(8) { grid-column: span 3; grid-row: span 3; }
.galeria__cell:nth-of-type(9) { grid-column: span 5; grid-row: span 3; }
.galeria__cell:nth-of-type(10){ grid-column: span 4; grid-row: span 3; }
/* Foto extra (11): fecha o canto, ocupa a faixa que faltava p/ alinhar */
.galeria__cell:nth-of-type(11){ grid-column: span 8; grid-row: span 3; }

.galeria__quote {
  grid-column: span 4; grid-row: span 3;
  padding: 22px;
  background: var(--c-ink);
  color: var(--c-deep);
  border-radius: var(--r-sm);
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.2;
  transform: rotate(-1.8deg);
  display: grid; align-content: space-between;
  position: relative;
}
.galeria__quote em { color: var(--c-red); font-style: italic; }
.galeria__quote small { font-family: var(--f-mono); font-style: normal; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--c-red-3); }

@media (max-width: 880px) {
  .galeria__grid { grid-auto-rows: 60px; gap: 10px; }
  .galeria__cell:nth-of-type(n) { grid-column: span 6; grid-row: span 4; }
  .galeria__cell:nth-of-type(odd) { grid-row: span 5; }
  .galeria__quote { grid-column: span 12; grid-row: span 3; }
}

/* draggable cutouts em cima da galeria */
.galeria__cut {
  position: absolute;
  z-index: 5;
  cursor: grab;
  user-select: none;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.6));
  transform: rotate(var(--rot, 0deg));
  transition: transform var(--t-fast) var(--ease);
}
.galeria__cut:active { cursor: grabbing; }
.galeria__cut--polaroid {
  width: 180px;
  background: var(--c-ink);
  padding: 10px 10px 28px;
  border-radius: 2px;
}
.galeria__cut--polaroid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; pointer-events: none; }
.galeria__cut--polaroid span {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-deep);
  text-align: center;
  margin-top: 8px;
}
.galeria__cut--kanji {
  font-family: var(--f-jp);
  font-weight: 700;
  font-size: 140px;
  line-height: 1;
  color: var(--c-red);
  text-shadow: 0 0 36px rgba(224,58,43,.55);
  pointer-events: auto;
}
@media (max-width: 880px) { .galeria__cut { display: none; } }

/* ═══════════ RESERVAS ═══════════ */
.reservas {
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(122,15,10,.45), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(195,38,29,.28), transparent 60%),
    var(--c-deep);
  color: #fff;
  max-width: none;
  margin: 0;
  border-radius: 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.reservas__kanji {
  position: absolute; top: 8%; right: -2vw;
  font-family: var(--f-jp); font-weight: 700;
  font-size: clamp(200px, 30vw, 420px); line-height: 1;
  color: rgba(243,231,211,.05);
  pointer-events: none;
  letter-spacing: -.05em;
  z-index: 0;
}
.reservas .grid { max-width: var(--container); margin: 0 auto; position: relative; z-index: 2; }
.reservas__head .h-display { color: #fff; }
.reservas__body { color: rgba(255,255,255,.78); margin-top: 16px; max-width: 50ch; }
.reservas__meta { margin-top: 32px; display: grid; gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); }
.reservas__meta li { display: flex; gap: 14px; font-size: 14px; color: rgba(255,255,255,.8); align-items: baseline; }
.reservas__meta li b { color: var(--c-red-2); min-width: 140px; font-family: var(--f-mono); font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: .22em; }

.reservas__panel {
  background: var(--c-paper);
  color: var(--c-ink);
  border-radius: var(--r-md);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.85), 0 0 0 1px var(--c-line);
  position: relative;
}

/* Form */
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field label {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--c-ink-2);
  font-weight: 700;
}
.field input, .field select, .field textarea {
  background: transparent; border: 0;
  border-bottom: 1px solid var(--c-line);
  padding: 10px 0; font-size: 16px; outline: none;
  border-radius: 0; transition: border-color var(--t-fast);
  -webkit-appearance: none; appearance: none;
  font-family: var(--f-text);
  color: var(--c-ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--c-red-2); }
.field--error input, .field--error select, .field--error textarea { border-color: var(--c-red); }
.field__error { font-size: 12px; color: var(--c-red-2); min-height: 14px; }
.field textarea { resize: vertical; min-height: 90px; padding-top: 8px; }
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M1 1l4 4 4-4' fill='none' stroke='%23F3E7D3' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 4px center;
  padding-right: 22px;
}
.field select option { background: var(--c-paper); color: var(--c-ink); }
.form__check { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--c-ink-2); }
.form__check input { transform: translateY(1px); accent-color: var(--c-red); }
.form__submit { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; padding-top: 8px; }
.form__status { font-family: var(--f-mono); font-size: 12px; min-height: 16px; color: var(--c-ink-2); letter-spacing: .1em; }
.form__status[data-state="ok"] { color: var(--c-gold); }
.form__status[data-state="err"] { color: var(--c-red-2); }
.form .btn--solid, .form .pill--neon { /* let reservation.js btns inherit */ }

.res-ok { text-align: center; padding: 24px 8px; }
.res-ok h3 { font-family: var(--f-display); font-style: italic; font-size: 32px; margin-bottom: 8px; color: var(--c-red-2); }
.res-ok p { color: var(--c-ink-2); max-width: 36ch; margin: 0 auto 18px; }

.res-external { display: grid; gap: 22px; padding: 12px 0; text-align: center; }
.res-external p { color: var(--c-ink-2); }
.res-external .btn--solid { justify-self: center; padding: 18px 32px; font-size: 13px; }
.res-iframe { width: 100%; height: 720px; border: 0; border-radius: var(--r-sm); background: #fff; }

/* compat: reservations.js usa .btn .btn--solid */
.btn--solid {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 14px 40px -16px rgba(195,38,29,.7);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  border: 0;
  cursor: pointer;
}
.btn--solid:hover { background: var(--c-red-2); transform: translateY(-1px); }

/* ═══════════ CONTACTO ═══════════ */
.contacto { background: var(--c-bg); }
.contacto__address { font-style: normal; margin-top: 24px; display: grid; gap: 18px; max-width: 360px; }
.contacto__address > div { font-size: 16px; line-height: 1.5; color: var(--c-ink); }
.contacto__lines { display: grid; gap: 4px; }
.contacto__lines a { color: var(--c-ink); border-bottom: 1px solid var(--c-line); padding: 4px 0; transition: color var(--t-fast), border-color var(--t-fast); }
.contacto__lines a:hover { color: var(--c-red-2); border-color: var(--c-red-2); }

.hours { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--c-line); }
.hours__title { font-family: var(--f-display); font-style: italic; font-weight: 500; font-size: 24px; margin-bottom: 14px; letter-spacing: -.005em; color: var(--c-ink); }
.hours ul { display: grid; gap: 8px; }
.hours li { display: grid; grid-template-columns: 200px 1fr; gap: 16px; font-size: 14.5px; color: var(--c-ink-2); }
.hours li b { color: var(--c-ink); font-weight: 500; font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 540px) { .hours li { grid-template-columns: 1fr 1fr; } }

.contacto__map .map { aspect-ratio: 4/5; border-radius: var(--r-md); overflow: hidden; background: var(--c-bg-soft); border: 1px solid var(--c-line); position: relative; isolation: isolate; }
.map__bg { position: absolute; inset: 0; z-index: 0; }
.map__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.55) contrast(1.1) brightness(.5) sepia(.25) hue-rotate(-10deg); opacity: .9; }
.contacto__map iframe { width: 100%; height: 100%; border: 0; position: relative; z-index: 1; filter: grayscale(.55) contrast(1.05) brightness(.7) invert(.92) hue-rotate(180deg); background: transparent; mix-blend-mode: lighten; }
.map__cta { position: absolute; left: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; font-family: var(--f-mono); font-weight: 700; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; background: var(--c-red); color: #fff; border-radius: 999px; transition: background var(--t-fast), transform var(--t-fast); box-shadow: 0 10px 30px -10px rgba(195,38,29,.7); }
.map__cta:hover { background: var(--c-red-2); transform: translateY(-1px); }
.map__pin { width: 8px; height: 8px; border-radius: 999px; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25); }
@media (min-width: 900px) { .contacto__map .map { aspect-ratio: 1/1; position: sticky; top: 100px; } }

/* ═══════════ FOOTER ═══════════ */
.foot {
  background: var(--c-deep);
  color: rgba(243,231,211,.74);
  padding: clamp(60px, 8vh, 96px) var(--gutter) 28px;
  border-top: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
/* Logo SOYO no footer — centrado, médio-grande (cerca de metade do antigo SOYO™) */
.foot__logo {
  display: flex; justify-content: center; align-items: center;
  margin: 0 0 clamp(40px, 6vh, 60px);
  user-select: none; pointer-events: none;
}
.foot__logo img {
  width: clamp(180px, 22vw, 340px);
  height: auto;
  filter: drop-shadow(0 0 36px rgba(195,38,29,.35));
}

.foot__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  gap: clamp(36px, 6vw, 64px);
  grid-template-columns: 1fr;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(243,231,211,.10);
}
@media (min-width: 880px) { .foot__inner { grid-template-columns: 5fr 7fr; } }
.foot__brand img { width: 200px; max-width: 60vw; filter: drop-shadow(0 0 18px rgba(195,38,29,.3)); }
.foot__tag { margin-top: 18px; font-family: var(--f-display); font-style: italic; font-size: 22px; line-height: 1.2; color: var(--c-ink); max-width: 24ch; }
.foot__cols { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .foot__cols { grid-template-columns: repeat(4, 1fr); } }
.foot__cols h4 { font-family: var(--f-mono); font-weight: 700; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--c-red-2); margin-bottom: 14px; }
.foot__cols a, .foot__cols p { display: block; padding: 3px 0; font-size: 13.5px; }
.foot__cols a { transition: color var(--t-fast); }
.foot__cols a:hover { color: var(--c-red-2); }
.foot__social { display: flex; gap: 12px; }
.foot__social a { width: 36px; height: 36px; display: inline-grid; place-items: center; border: 1px solid rgba(243,231,211,.16); border-radius: 999px; transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast); }
.foot__social a:hover { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.foot__social svg { width: 16px; height: 16px; }

/* ═══════════ REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .tape__track { animation: none; }
  .cut[data-float] { animation: none; }
  .hero__scroll span { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   DELIVERY / TAKEAWAY — Uber Eats + Bolt Food
   ═══════════════════════════════════════════════════════════════════ */
.delivery {
  position: relative;
  isolation: isolate;
}
.delivery .floater-kanji {
  position: absolute;
  font-family: var(--f-jp); font-weight: 700;
  font-size: clamp(180px, 26vw, 380px); line-height: 1;
  color: rgba(195,38,29,.06);
  top: 4%; right: -2vw;
  pointer-events: none; z-index: 0;
  letter-spacing: -.05em;
}

.delivery__partners {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.4vw, 28px);
  position: relative; z-index: 2;
  margin-top: clamp(32px, 5vh, 56px);
}
@media (min-width: 720px) {
  .delivery__partners { grid-template-columns: repeat(2, 1fr); }
}

.delivery__card {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 3.4vw, 44px) clamp(28px, 3.6vw, 48px);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  color: var(--c-ink);
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast), background var(--t-fast);
  overflow: hidden;
}
.delivery__card::after {
  /* arrow flutuante no canto top-right */
  content: '↗';
  position: absolute; top: 18px; right: 22px;
  font-family: var(--f-mono); font-size: 18px;
  color: var(--c-red-2);
  transition: transform var(--t-fast) var(--ease);
}
.delivery__card:hover { transform: translateY(-4px); border-color: var(--c-red-2); background: #1F1212; }
.delivery__card:hover::after { transform: translate(4px, -4px); }
.delivery__card-logo {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: clamp(72px, 9vw, 100px);
  height: clamp(72px, 9vw, 100px);
  border-radius: 14px;
  overflow: hidden;
  background: #0A0606;       /* fallback enquanto carrega */
}
.delivery__card-logo svg,
.delivery__card-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.delivery__card-meta {
  flex: 1 1 auto; text-align: right;
  display: grid; gap: 4px;
}
.delivery__card-meta b {
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--c-ink);
}
.delivery__card-meta span {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-red-2);
}

/* ═══════════════════════════════════════════════════════════════════
   RESERVAS + CONTACTO — duas colunas numa só section
   ═══════════════════════════════════════════════════════════════════ */
.reservas__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 72px);
  position: relative; z-index: 2;
}
@media (min-width: 980px) {
  .reservas__grid { grid-template-columns: 7fr 5fr; }
}
.reservas__col--book { display: grid; gap: clamp(28px, 4vh, 48px); align-content: start; }
.reservas__col--contact {
  display: grid; gap: clamp(20px, 3vh, 36px);
  align-content: start;
  padding: clamp(28px, 3.4vw, 44px);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
}
.reservas__col--contact .h-display { font-size: clamp(28px, 3vw, 44px) !important; }
.reservas__col--contact .contacto__address > div { color: rgba(255,255,255,.92); }
.reservas__col--contact .contacto__lines a { color: rgba(255,255,255,.92); border-color: rgba(255,255,255,.18); }
.reservas__col--contact .contacto__lines a:hover { color: var(--c-red-2); border-color: var(--c-red-2); }
.reservas__col--contact .btn--link { color: rgba(255,255,255,.86); }
.reservas__col--contact .btn--link:hover { color: var(--c-red-2); }
.reservas__col--contact .hours__title { color: #fff; }
.reservas__col--contact .hours li { color: rgba(255,255,255,.78); }
.reservas__col--contact .hours li b { color: #fff; }
.reservas__col--contact .map {
  aspect-ratio: 16/10;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--c-bg-soft);
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
  isolation: isolate;
}
.reservas__col--contact .map__bg { position: absolute; inset: 0; z-index: 0; }
.reservas__col--contact .map__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.55) contrast(1.1) brightness(.5) sepia(.25) hue-rotate(-10deg); opacity: .85; }
.reservas__col--contact .map iframe { width: 100%; height: 100%; border: 0; position: relative; z-index: 1; filter: grayscale(.55) contrast(1.05) brightness(.7) invert(.92) hue-rotate(180deg); background: transparent; mix-blend-mode: lighten; }
.reservas__col--contact .map__cta {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  font-family: var(--f-mono); font-weight: 700; font-size: 10.5px;
  letter-spacing: .22em; text-transform: uppercase;
  background: var(--c-red); color: #fff; border-radius: 999px;
  box-shadow: 0 10px 30px -10px rgba(195,38,29,.7);
  transition: background var(--t-fast), transform var(--t-fast);
}
.reservas__col--contact .map__cta:hover { background: var(--c-red-2); transform: translateY(-1px); }
.reservas__col--contact .map__pin {
  width: 8px; height: 8px; border-radius: 999px;
  background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25);
}

/* h-display--sm — pequena variante para o cabeçalho de contacto */
.h-display--sm { font-size: clamp(26px, 3vw, 42px); line-height: 1.06; }

/* ═══════════════════════════════════════════════════════════════════
   SCROLL-FLOATERS — decorações laterais que se movem com o scroll
   ═══════════════════════════════════════════════════════════════════
   Posicionadas em coordenadas fixas no fluxo (entre hero e conceito).
   Os elementos ficam ligeiramente fora do conteúdo principal, e
   recebem translate via JS conforme o scroll (bidireccional). */
.scroll-floaters {
  position: relative;
  height: 0;                        /* não ocupa espaço — só serve de âncora */
  pointer-events: none;
  z-index: 3;
}
.sfloat {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,.55));
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}
.sfloat.is-in { opacity: 1; }

.sfloat--house {
  left: -40px;                       /* sai ligeiramente para fora pela esquerda */
  top: -180px;
  width: clamp(140px, 14vw, 200px);
}
.sfloat--chopsticks {
  right: -60px;                      /* sai pela direita */
  top: -40px;
  width: clamp(180px, 18vw, 280px);
}
.sfloat--roll {
  left: -50px;
  top: 240px;
  width: clamp(110px, 11vw, 160px);
}
.sfloat svg { width: 100%; height: auto; display: block; }

/* a roll roda gentilmente enquanto se faz scroll (extra leve) */
[data-sf-spin] svg { transition: transform .15s linear; }

@media (max-width: 720px) {
  .sfloat--house { left: -60px; top: -120px; width: 130px; }
  .sfloat--chopsticks { right: -80px; top: -20px; width: 170px; }
  .sfloat--roll { left: -40px; top: 160px; width: 100px; }
}
@media (prefers-reduced-motion: reduce) {
  .sfloat { transform: none !important; }
}

/* Footer mais compacto: a linha de separação fica mais curta (max-width) */
.foot__inner {
  max-width: 980px !important;       /* mais estreito do que o container (1320) */
}
.foot__logo img {
  width: clamp(140px, 16vw, 220px) !important;   /* logo footer mais pequeno */
}
.foot__logo { margin: 0 0 clamp(28px, 4vh, 40px) !important; }
.foot { padding-block: clamp(48px, 6vh, 72px) clamp(20px, 3vh, 28px); }

/* ═══════════════════════════════════════════════════════════════════
   BOOKING — section do widget DISH (acima do form de mensagem)
   ═══════════════════════════════════════════════════════════════════ */
.booking {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(122,15,10,.40), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(195,38,29,.22), transparent 60%),
    var(--c-deep);
  color: #fff;
  max-width: none;
  margin: 0;
  border-top: 1px solid var(--c-line);
  overflow: hidden;
}
.booking__kanji {
  position: absolute; top: 8%; right: -2vw;
  font-family: var(--f-jp); font-weight: 700;
  font-size: clamp(200px, 30vw, 420px); line-height: 1;
  color: rgba(243,231,211,.05);
  pointer-events: none;
  letter-spacing: -.05em;
  z-index: 0;
}
.booking__head {
  max-width: var(--container); margin: 0 auto;
  position: relative; z-index: 2;
  display: grid; gap: 14px;
  margin-bottom: clamp(36px, 5vh, 64px);
}
.booking__sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255,255,255,.74);
  max-width: 56ch;
}
.booking__widget {
  max-width: 920px;            /* DISH widget centrado, não esticado */
  margin: 0 auto;
  position: relative; z-index: 2;
  background: var(--c-paper);
  border-radius: var(--r-md);
  padding: clamp(20px, 3vw, 36px);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.85), 0 0 0 1px var(--c-line);
  min-height: 460px;
}
.booking__widget iframe { width: 100%; border: 0; min-height: 420px; display: block; }
.booking__widget > div { min-height: 420px; }

/* ═══════════════════════════════════════════════════════════════════
   HERO — luzes "discoteca" (blobs animados em tons quentes)
   ═══════════════════════════════════════════════════════════════════
   MUITO subtil — só uns reflexos quentes que respiram. NÃO domina
   nem rouba a leitura do título. */
.hero__lights {
  position: absolute;
  inset: -10% -10%;
  z-index: 0;                         /* atrás da gueixa, não em cima */
  pointer-events: none;
  mix-blend-mode: soft-light;         /* mais suave do que screen */
  filter: blur(120px);                /* muito mais blur, sem saturação extra */
  opacity: .35;                       /* baixou de .85 → .35 */
}
.hero__lights::before,
.hero__lights::after {
  content: '';
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 60% 60%, 50% 50%, 55% 55%, 45% 45%;
}
/* Layer 1 — alphas reduzidas drasticamente (~10% das anteriores) */
.hero__lights::before {
  background-image:
    radial-gradient(circle, rgba(224,58,43,.18) 0%, transparent 60%),
    radial-gradient(circle, rgba(255,165,60,.14) 0%, transparent 60%),
    radial-gradient(circle, rgba(255,210,90,.10) 0%, transparent 60%),
    radial-gradient(circle, rgba(195,38,29,.16) 0%, transparent 60%);
  background-position: 15% 25%, 80% 15%, 65% 78%, 20% 80%;
  animation: heroLights1 22s ease-in-out infinite;
}
.hero__lights::after {
  background-image:
    radial-gradient(circle, rgba(255,180,80,.12) 0%, transparent 60%),
    radial-gradient(circle, rgba(224,58,43,.10) 0%, transparent 60%),
    radial-gradient(circle, rgba(255,140,40,.12) 0%, transparent 60%),
    radial-gradient(circle, rgba(255,235,140,.08) 0%, transparent 60%);
  background-position: 75% 30%, 25% 60%, 90% 70%, 50% 18%;
  animation: heroLights2 28s ease-in-out infinite;
}
@keyframes heroLights1 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  25%      { transform: translate3d(-3%, 2%, 0) scale(1.06); }
  50%      { transform: translate3d(2%, -3%, 0) scale(.96); }
  75%      { transform: translate3d(-2%, 3%, 0) scale(1.03); }
}
@keyframes heroLights2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33%      { transform: translate3d(3%, -2%, 0) scale(1.04); }
  66%      { transform: translate3d(-3%, 3%, 0) scale(.97); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__lights::before, .hero__lights::after { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   GALERIA — foto de destaque (menu degustação) ao centro do mosaico
   ═══════════════════════════════════════════════════════════════════ */
/* A image marcada como feature=true recebe esta classe no JS */
.galeria__cell--feature {
  grid-column: span 6 !important;
  grid-row: span 6 !important;
  border-radius: var(--r-md);
}
.galeria__cell--feature img {
  filter: saturate(1.05) contrast(1.05);
}
.galeria__cell--feature::after {
  background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.5)) !important;
}
@media (max-width: 880px) {
  .galeria__cell--feature {
    grid-column: span 12 !important;
    grid-row: span 6 !important;
  }
}


