/* Seo Lucca — prévia comercial */
:root {
  --ink: #100d0b;
  --ink-2: #181310;
  --surface: #1f1814;
  --surface-2: #2a211b;
  --surface-3: #342920;
  --brass: #c4a052;
  --brass-soft: #dfc07a;
  --brass-deep: #8f6f2e;
  --foam: #f4ece2;
  --foam-dim: rgba(244, 236, 226, 0.72);
  --foam-mute: rgba(244, 236, 226, 0.5);
  --line: rgba(196, 160, 82, 0.24);
  --line-soft: rgba(244, 236, 226, 0.1);
  --danger: #c45c4a;
  --ok: #6f9e6a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 78px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--foam);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(196, 160, 82, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(90, 40, 30, 0.25), transparent 50%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 40%, #14100e 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  min-width: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe,
video,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

input,
textarea,
select {
  font-size: 16px; /* evita zoom automático no iOS */
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  max-width: 100%;
  min-width: 0;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass-soft);
  font-size: 1.15rem;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.02em;
}

.section-head h2 em {
  font-style: italic;
  color: var(--brass-soft);
}

.section-head p {
  margin: 14px 0 0;
  color: var(--foam-dim);
  font-size: 1.02rem;
}

.provisional {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border: 1px dashed var(--line);
  color: var(--brass-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Preview watermark */
.preview-mark {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9990;
  overflow: hidden;
  contain: strict;
}

.preview-mark span {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -28deg,
    transparent 0 110px,
    rgba(244, 236, 226, 0.03) 110px 160px
  );
}

.preview-mark b {
  position: fixed;
  right: 14px;
  bottom: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--brass-soft);
  letter-spacing: 0.1em;
  border: 1px solid var(--line);
  padding: 7px 12px;
  background: rgba(16, 13, 11, 0.78);
  backdrop-filter: blur(8px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brass-soft), var(--brass));
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(196, 160, 82, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ead29a, var(--brass-soft));
}

.btn-ghost {
  border: 1px solid rgba(244, 236, 226, 0.28);
  color: var(--foam);
  background: rgba(244, 236, 226, 0.04);
}

.btn-ghost:hover {
  border-color: var(--brass-soft);
  color: var(--brass-soft);
}

.btn-sm {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.82rem;
}

.btn:disabled,
.btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(16, 13, 11, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 28px));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(223, 192, 122, 0.35), transparent 55%),
    var(--surface-2);
  flex-shrink: 0;
}

.brand-mark span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--brass-soft);
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text small {
  color: var(--foam-mute);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand img {
  height: 46px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-desktop a {
  font-size: 0.86rem;
  color: var(--foam-dim);
  transition: color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--brass-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-btn,
.menu-toggle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  background: rgba(244, 236, 226, 0.04);
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.cart-btn:hover,
.menu-toggle:hover {
  border-color: var(--line);
  background: rgba(196, 160, 82, 0.1);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--brass);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.cart-count[hidden] {
  display: none !important;
}

.menu-toggle {
  display: none;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--foam);
  position: relative;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(16, 13, 11, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 16px calc(20px + env(safe-area-inset-bottom, 0px));
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
}

.nav-mobile.is-open {
  display: flex;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.nav-mobile a {
  padding: 14px 14px;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  color: var(--foam-dim);
  font-size: 1.05rem;
}

.nav-mobile a:hover,
.nav-mobile a:active {
  background: rgba(196, 160, 82, 0.08);
  color: var(--brass-soft);
}

.nav-mobile .btn {
  margin-top: 8px;
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(196, 160, 82, 0.22), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(90, 40, 30, 0.45), transparent 50%),
    linear-gradient(160deg, #2a1f18 0%, #120e0c 45%, #1a1210 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-media img[hidden] {
  display: none !important;
}

.hero--no-photo .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -28deg,
      transparent 0 120px,
      rgba(244, 236, 226, 0.02) 120px 170px
    );
  opacity: 0.8;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 13, 11, 0.35) 0%, rgba(16, 13, 11, 0.55) 42%, rgba(16, 13, 11, 0.94) 100%),
    linear-gradient(90deg, rgba(16, 13, 11, 0.7) 0%, rgba(16, 13, 11, 0.15) 55%, transparent 100%);
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  max-width: 100%;
  margin: 0 auto;
  padding: calc(var(--header-h) + 40px) 0 calc(72px + env(safe-area-inset-bottom, 0px));
  min-width: 0;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.75rem, 10vw, 7rem);
  line-height: 0.92;
  margin: 0;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.hero-brand span {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--brass-soft);
  font-size: 0.42em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 38ch;
  margin: 18px 0 0;
  color: var(--foam-dim);
  font-size: 1.05rem;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-scroll {
  position: absolute;
  right: 24px;
  bottom: 28px;
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--foam-mute);
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  margin: 10px auto 0;
  background: linear-gradient(var(--brass), transparent);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Destaques / categorias */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  transition: transform 0.35s var(--ease), border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(196, 160, 82, 0.18), transparent 45%),
    linear-gradient(0deg, rgba(16, 13, 11, 0.92) 0%, rgba(16, 13, 11, 0.25) 55%);
  z-index: 1;
}

.feature-card .feature-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transition: transform 0.7s var(--ease);
}

.feature-card:hover .feature-bg {
  transform: scale(1.06);
}

.feature-card .body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.feature-card .label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 8px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}

.feature-card p {
  margin: 8px 0 0;
  color: var(--foam-dim);
  font-size: 0.92rem;
}

/* Cardápio */
.menu-panel {
  border: 1px solid var(--line-soft);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(180deg, rgba(42, 33, 27, 0.9), rgba(31, 24, 20, 0.95));
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 100%;
}

.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(16, 13, 11, 0.35);
}

.search-box {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  min-width: 0;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(244, 236, 226, 0.04);
}

.search-box:focus-within {
  border-color: var(--line);
}

.search-box svg {
  flex-shrink: 0;
  opacity: 0.65;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--foam);
}

.search-box input::placeholder {
  color: var(--foam-mute);
}

.category-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
}

.category-filters::-webkit-scrollbar {
  height: 4px;
}

.category-filters::-webkit-scrollbar-thumb {
  background: rgba(196, 160, 82, 0.35);
  border-radius: 999px;
}

.chip {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  color: var(--foam-dim);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  scroll-snap-align: start;
}

.chip:hover {
  border-color: var(--line);
  color: var(--foam);
}

.chip.is-active {
  background: linear-gradient(135deg, var(--brass-soft), var(--brass));
  border-color: transparent;
  color: var(--ink);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
}

.dish-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  transition: transform 0.3s var(--ease), border-color 0.25s ease, box-shadow 0.3s ease;
  min-width: 0;
}

.dish-card:hover {
  transform: translateY(-3px);
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.dish-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-2);
}

.dish-card.has-photo .dish-media {
  aspect-ratio: 1 / 1;
}

.dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.dish-card:hover .dish-media img {
  transform: scale(1.05);
}

.dish-media .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  color: var(--foam-mute);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 30% 20%, rgba(196, 160, 82, 0.2), transparent 50%),
    linear-gradient(160deg, var(--surface-3), var(--surface));
}

.dish-media .ph::before {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 35% 30%, rgba(223, 192, 122, 0.35), transparent 60%),
    var(--surface-2);
  margin-bottom: 4px;
}

.dish-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  flex: 1;
}

.dish-cat {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

.dish-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.dish-body p {
  margin: 0;
  color: var(--foam-mute);
  font-size: 0.9rem;
  flex: 1;
}

.dish-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brass-soft);
  font-weight: 600;
}

.menu-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 56px 20px;
  color: var(--foam-dim);
}

.menu-empty strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--foam);
  font-weight: 500;
  margin-bottom: 8px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-width: 0;
}

.about-visual {
  position: relative;
  min-height: 420px;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(196, 160, 82, 0.35);
  pointer-events: none;
}

.about-visual--empty {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(196, 160, 82, 0.18), transparent 50%),
    linear-gradient(160deg, #2a211b, #14100e);
}

.about-visual--empty .visual-placeholder {
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-visual--empty .visual-placeholder span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--brass-soft);
}

.about-visual--empty .visual-placeholder small {
  display: block;
  margin-top: 8px;
  color: var(--foam-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.about-copy p {
  color: var(--foam-dim);
  margin: 0 0 14px;
}

/* Gallery */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  cursor: zoom-in;
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(16, 13, 11, 0.72);
  border: 1px solid var(--line);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

/* Location / Contact */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(31, 24, 20, 0.85);
  padding: 24px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 14px;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}

.info-list li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.info-list span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--foam-mute);
}

.info-list strong,
.info-list a {
  color: var(--foam);
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.map-box {
  min-height: 340px;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  background:
    radial-gradient(circle at 50% 40%, rgba(196, 160, 82, 0.12), transparent 55%),
    var(--surface);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0;
  color: var(--foam-dim);
  overflow: hidden;
  min-width: 0;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(0.35) contrast(0.95);
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.contact-actions .btn {
  width: 100%;
  text-align: center;
}

.loc-cta .btn {
  width: 100%;
  max-width: 280px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 48px 0 28px;
  background: rgba(10, 8, 7, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-grid h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 12px;
}

.footer-grid a,
.footer-grid p {
  color: var(--foam-mute);
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--foam-mute);
  font-size: 0.8rem;
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 5, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 120;
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: min(420px, 100%);
  max-width: 100vw;
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  background: linear-gradient(180deg, #1c1612, #120e0c);
  border-left: 1px solid var(--line-soft);
  z-index: 130;
  display: flex;
  flex-direction: column;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.35s var(--ease), visibility 0.35s;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  visibility: hidden;
  will-change: transform;
}

.cart-drawer.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--line-soft);
}

.cart-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
}

.cart-body {
  flex: 1;
  overflow: auto;
  padding: 16px;
}

.cart-empty {
  text-align: center;
  padding: 48px 12px;
  color: var(--foam-mute);
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.cart-item img,
.cart-item .ph {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--surface-2);
}

.cart-item .ph {
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  color: var(--foam-mute);
}

.cart-item h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.cart-item .meta {
  color: var(--brass-soft);
  font-size: 0.85rem;
  margin-top: 4px;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty button {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
  touch-action: manipulation;
}

.qty button:hover {
  background: rgba(196, 160, 82, 0.15);
}

.cart-foot {
  padding: 18px 20px 24px;
  border-top: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.2);
}

.totals {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.totals div {
  display: flex;
  justify-content: space-between;
  color: var(--foam-dim);
  font-size: 0.92rem;
}

.totals .total {
  color: var(--foam);
  font-size: 1.1rem;
  font-weight: 700;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}

.cart-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--foam-mute);
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 6, 5, 0.9);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(960px, 100%);
  max-height: 85vh;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(16, 13, 11, 0.7);
}

body.is-locked {
  overflow: hidden;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-3);
  border: 1px solid var(--line);
  color: var(--foam);
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
  font-size: 0.88rem;
  max-width: min(92vw, 420px);
  text-align: center;
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-actions .btn {
    display: none;
  }

  .featured-grid,
  .dish-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .split-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 0;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }

  .contact-actions {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .wrap,
  .hero-content,
  .header-inner {
    width: min(1180px, calc(100% - 32px));
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2 {
    font-size: clamp(1.85rem, 6vw, 2.6rem);
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-content {
    padding: calc(var(--header-h) + 28px) 0 calc(56px + env(safe-area-inset-bottom, 0px));
  }

  .hero-text {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .hero-media img {
    animation: none;
    transform: scale(1.02);
  }

  .menu-panel {
    border-radius: var(--radius);
  }

  .menu-toolbar {
    padding: 14px;
  }

  .menu-toolbar .btn {
    width: 100%;
  }

  .search-box {
    flex: 1 1 100%;
  }

  .dish-grid {
    padding: 14px;
    gap: 12px;
  }

  .info-card {
    padding: 20px;
  }

  .map-box,
  .map-box iframe {
    min-height: 280px;
  }

  .cart-drawer {
    width: 100%;
    border-left: 0;
  }

  .preview-mark b {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    font-size: 0.72rem;
    padding: 6px 10px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .wrap,
  .hero-content,
  .header-inner {
    width: min(1180px, calc(100% - 24px));
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
    height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 1.2rem;
  }

  .brand-text small {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .section {
    padding: 56px 0;
  }

  .featured-grid,
  .dish-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 220px;
  }

  .feature-card h3 {
    font-size: 1.55rem;
  }

  .hero-brand {
    font-size: clamp(2.6rem, 13vw, 3.6rem);
  }

  .hero-brand span {
    letter-spacing: 0.12em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .dish-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .dish-foot .btn {
    width: 100%;
    min-height: 46px;
  }

  .dish-body {
    padding: 14px;
  }

  .dish-body h3 {
    font-size: 1.3rem;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .loc-cta .btn {
    max-width: none;
  }

  .about-visual {
    min-height: 0;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 11;
  }

  .about-grid {
    gap: 24px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .chip {
    min-height: 44px;
  }

  .category-filters {
    padding: 12px 14px;
    gap: 8px;
  }

  .cart-item {
    grid-template-columns: 64px 1fr;
    gap: 10px;
  }

  .cart-item img,
  .cart-item .ph {
    width: 64px;
    height: 64px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox img {
    max-height: 78vh;
  }
}

@media (max-width: 430px) {
  .wrap,
  .hero-content,
  .header-inner {
    width: min(1180px, calc(100% - 20px));
  }

  .section {
    padding: 52px 0;
  }

  .hero-content {
    padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
  }

  .hero-text {
    font-size: 0.94rem;
  }

  .menu-toolbar,
  .dish-grid {
    padding: 12px;
  }

  .info-card {
    padding: 16px;
  }

  .info-card h3 {
    font-size: 1.4rem;
  }

  .map-box,
  .map-box iframe {
    min-height: 240px;
  }

  .price {
    font-size: 1.25rem;
  }
}

@media (max-width: 375px) {
  .brand-text small {
    display: none;
  }

  .hero-brand {
    font-size: clamp(2.4rem, 12.5vw, 3.1rem);
  }

  .section-head h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem);
  }

  .btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.86rem;
  }
}

@media (max-width: 320px) {
  .wrap,
  .hero-content,
  .header-inner {
    width: min(1180px, calc(100% - 16px));
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 1.05rem;
  }

  .cart-btn,
  .menu-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }

  .header-actions {
    gap: 6px;
  }

  .hero-brand {
    font-size: 2.25rem;
  }

  .section {
    padding: 44px 0;
  }

  .dish-grid,
  .menu-toolbar,
  .category-filters {
    padding-left: 10px;
    padding-right: 10px;
  }

  .preview-mark b {
    display: none;
  }
}

/* Preferências de movimento */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .feature-card .feature-bg,
  .dish-media img,
  .gallery-item img,
  .reveal {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
