:root {
  --ink: #1a1413;
  --paper: #fbf7f0;
  --paper-2: #f3ebdd;
  --red: #9e2b25;
  --red-deep: #7a1f1c;
  --gold: #c79a4b;
  --gold-soft: #e0c489;
  --muted: #6b5f54;
  --line: rgba(26, 20, 19, .12);
  --shadow: 0 18px 50px -24px rgba(26, 20, 19, .45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Noto Serif SC', serif;
  line-height: 1.1
}

a {
  color: inherit;
  text-decoration: none
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px
}

.eyebrow {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  display: inline-block;
}

/* NAV */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif SC', serif;
  font-weight: 900;
  font-size: 1.15rem
}

.brand .cn {
  color: var(--red)
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: .9rem;
  font-weight: 600
}

.nav-links a {
  color: var(--muted);
  transition: color .2s
}

.nav-links a:hover {
  color: var(--red)
}

.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  transition: background .2s;
}

.nav-cta:hover {
  background: var(--red-deep)
}

@media(max-width:760px) {
  .nav-links {
    display: none
  }
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #2a1411 0%, #5a1916 55%, #7a1f1c 100%);
  color: var(--paper);
  padding: 96px 0 110px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px
}

.hero .eyebrow {
  color: var(--gold-soft)
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  margin: 14px 0 6px;
  letter-spacing: -.01em
}

.hero h1 .sub {
  display: block;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  color: var(--gold-soft);
  letter-spacing: .3em;
  margin-top: 6px
}

.hero p.lead {
  font-size: 1.12rem;
  color: rgba(251, 247, 240, .82);
  max-width: 520px;
  margin: 18px 0 30px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .15s ease, background .2s, box-shadow .2s;
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-gold {
  background: var(--gold);
  color: #2a1411;
  box-shadow: 0 12px 30px -12px rgba(199, 154, 75, .7)
}

.btn-gold:hover {
  background: var(--gold-soft)
}

.btn-ghost {
  border: 1.5px solid rgba(224, 196, 137, .55);
  color: var(--gold-soft)
}

.btn-ghost:hover {
  background: rgba(224, 196, 137, .12)
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  font-size: .9rem;
  color: rgba(251, 247, 240, .75)
}

.hero-meta b {
  color: var(--gold-soft);
  font-weight: 700
}

/* SECTIONS */
section {
  padding: 84px 0
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px
}

.sec-head h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  font-weight: 900;
  margin: 12px 0 10px
}

.sec-head p {
  color: var(--muted)
}

.divider {
  width: 54px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 2px
}

/* MENU */
.menu {
  background: var(--paper-2)
}

.menu-note {
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  align-items: center;
}

.chip {
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem
}

.chip b {
  color: var(--red)
}

/* TABS */
.menu-tabs {
  display: flex;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  max-width: 380px;
  margin: 0 auto 30px;
}

.menu-tab {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: .9rem;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.menu-tab.active {
  background: var(--red);
  color: #fff;
}

.menu-panel {
  display: none
}

.menu-panel.active {
  display: block
}

.menu-grid {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Pratos do dia em 2 colunas no desktop */
.menu-grid.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.menu-grid.cols-2 .menu-row:nth-child(even) {
  background: #fff
}

.menu-grid.cols-2 .menu-row:nth-last-child(2):nth-child(odd) {
  border-bottom: none
}

@media(max-width:680px) {
  .menu-grid.cols-2 {
    grid-template-columns: 1fr
  }
}

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
}

.menu-row:last-child {
  border-bottom: none
}

.menu-grid:not(.cols-2) .menu-row:nth-child(even) {
  background: #fdfaf4
}

/* ACORDEÃO (carta completa) */
.carta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cat > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-family: 'Noto Serif SC', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--red);
}

.cat > summary::-webkit-details-marker {
  display: none
}

.cat > summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform .2s;
}

.cat[open] > summary::after {
  content: "−"
}

.cat[open] > summary {
  border-bottom: 1px solid var(--line)
}

.cat-count {
  margin-left: auto;
  margin-right: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
}

.m-num {
  font-family: 'Noto Serif SC', serif;
  font-weight: 600;
  color: var(--gold);
  font-size: .85rem;
  min-width: 42px
}

.m-name {
  flex: 1;
  font-weight: 500
}

.m-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
  min-width: 20px
}

.m-price {
  font-weight: 700;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  white-space: nowrap
}

.menu-foot {
  text-align: center;
  margin-top: 24px;
  color: var(--muted);
  font-size: .85rem
}

.soon {
  margin-top: 22px;
  background: #fff;
  border: 1px dashed var(--gold);
  border-radius: 18px;
  padding: 26px;
  text-align: center;
}

.soon h3 {
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 6px
}

.soon p {
  color: var(--muted);
  font-size: .92rem
}

/* GALLERY */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.gal-grid .tile {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--paper-2);
  margin: 0;
}

.gal-grid .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gal-grid .tile img {
  cursor: zoom-in
}

.gal-grid .tile:hover img {
  transform: scale(1.05)
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26, 20, 19, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 26px;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
  transition: opacity .2s;
}

.lightbox-close:hover {
  opacity: 1
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(251, 247, 240, .12);
  border: none;
  color: var(--paper);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
}

.lightbox-nav:hover {
  background: rgba(251, 247, 240, .25)
}

.lightbox-prev {
  left: 18px
}

.lightbox-next {
  right: 18px
}

@media(max-width:680px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.6rem
  }
}

.gal-grid .tile.big {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto
}

@media(max-width:680px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gal-grid .tile.big {
    grid-column: span 2
  }
}

/* VISIT */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center
}

.visit-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 18px;
  margin-top: 18px
}

.visit-info dt {
  font-weight: 700;
  color: var(--red);
  font-size: .9rem
}

.visit-info dd {
  color: var(--ink)
}

.visit-info dd a:hover {
  color: var(--red)
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--line);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 5px 0;
}

.hours-table td:first-child {
  font-weight: 600;
  padding-right: 16px;
  white-space: nowrap;
}

.hours-table .closed {
  color: var(--muted);
  font-style: italic;
}

.hours-table .today td:first-child {
  color: var(--red);
}

.map-embed {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 320px
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block
}

@media(max-width:780px) {
  .visit-grid {
    grid-template-columns: 1fr
  }
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(251, 247, 240, .75);
  padding: 48px 0 30px
}

.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center
}

.foot-brand {
  font-family: 'Noto Serif SC', serif;
  font-weight: 900;
  color: #fff;
  font-size: 1.3rem
}

.foot-brand .cn {
  color: var(--gold)
}

.foot-soc a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(224, 196, 137, .3);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-soft);
  transition: background .2s;
}

.foot-soc a:hover {
  background: rgba(224, 196, 137, .12)
}

.foot-legal {
  width: 100%;
  border-top: 1px solid rgba(251, 247, 240, .12);
  margin-top: 26px;
  padding-top: 18px;
  font-size: .78rem;
  color: rgba(251, 247, 240, .45);
  text-align: center
}
