:root {
  --bg: #0d0b09;
  --panel: #17120e;
  --panel-2: #211912;
  --line: rgba(255, 244, 224, .14);
  --line-strong: rgba(255, 244, 224, .26);
  --text: #fff7ed;
  --muted: #c4b7a4;
  --dim: #8f8170;
  --orange: #f59e0b;
  --orange-2: #d86d12;
  --ember: #8f250e;
  --steel: #9ca3af;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  --radius: 8px;
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--orange);
  color: #160e08;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  color: inherit;
  font: inherit;
}

.shell {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(18px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(255, 244, 224, .10);
  background: rgba(13, 11, 9, .78);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-link img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 158, 11, .35);
}

.brand-link span {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: .93rem;
}

.nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .07);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 120px 0 58px;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.atmosphere-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-media {
  background-image: url("assets/mesa-completa.jpeg");
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 11, 9, .94) 0%, rgba(13, 11, 9, .70) 43%, rgba(13, 11, 9, .20) 74%),
    linear-gradient(0deg, rgba(13, 11, 9, .86) 0%, rgba(13, 11, 9, .04) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 32px));
  margin-inline: max(16px, calc((100vw - 1160px) / 2));
}

.hero-logo {
  width: 132px;
  height: 88px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 158, 11, .35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: .76rem;
  line-height: 1.1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-type {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(245, 158, 11, .42);
  border-radius: var(--radius);
  background: rgba(245, 158, 11, .13);
  color: #ffd08a;
  font-size: 1.08rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 680px;
  font-family: var(--display);
  font-size: 3.85rem;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 850;
}

h2 {
  margin-bottom: 12px;
  font-size: 2.35rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
}

.age-note {
  margin: 16px 0 0;
  color: rgba(255, 247, 237, .58);
  font-size: .82rem;
  line-height: 1.35;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  font-weight: 800;
}

.btn.primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #160e08;
}

.btn.secondary {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
}

.btn:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1160px, calc(100% - 32px));
  margin: -36px auto 0;
  position: relative;
  z-index: 4;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(33, 25, 18, .98), rgba(23, 18, 14, .96));
  box-shadow: var(--shadow);
}

.intro-text h2 {
  margin-bottom: 0;
  max-width: 760px;
  font-size: 1.55rem;
  line-height: 1.18;
}

.intro-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.intro-points span {
  padding: 8px 10px;
  border: 1px solid rgba(245, 158, 11, .28);
  border-radius: var(--radius);
  background: rgba(245, 158, 11, .10);
  color: #ffd796;
  font-weight: 750;
}

.section {
  padding: 82px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.text-link {
  color: var(--orange);
  font-weight: 800;
  white-space: nowrap;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-auto-rows: minmax(250px, auto);
  gap: 16px;
}

.feature {
  position: relative;
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

.feature.main-feature {
  grid-row: span 2;
}

.feature img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 11, 9, .86), rgba(13, 11, 9, .03) 58%);
}

.feature div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 20px;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(143, 37, 14, .18), rgba(13, 11, 9, 0)),
    var(--panel);
  border-block: 1px solid var(--line);
}

.menu-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 210px 210px;
  gap: 16px;
  align-items: stretch;
}

.menu-panel,
.menu-art {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 11, 9, .52);
  overflow: hidden;
}

.menu-panel {
  padding: 22px;
}

.menu-panel h3 {
  font-size: 1.35rem;
}

.strong-panel {
  border-color: rgba(245, 158, 11, .30);
}

.menu-list {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.menu-list li {
  display: grid;
  gap: 4px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 244, 224, .11);
}

.menu-list span {
  font-weight: 850;
}

.menu-list small {
  color: var(--dim);
  font-size: .88rem;
}

.menu-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel-2);
  cursor: zoom-in;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.atmosphere {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 0;
  border-block: 1px solid var(--line);
}

.atmosphere-image {
  background-image: url("assets/pizza-collage.jpeg");
  background-position: center 42%;
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 11, 9, .92), rgba(13, 11, 9, .28) 65%),
    linear-gradient(0deg, rgba(13, 11, 9, .90), transparent 48%);
}

.atmosphere-copy {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.atmosphere-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
  font-size: 1.04rem;
}

.visit-section {
  padding-bottom: 94px;
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(245, 158, 11, .26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, .11), rgba(255, 255, 255, .03)),
    var(--panel);
}

.visit-card p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.55;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.contact-list div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 11, 9, .42);
}

.contact-list dt {
  color: var(--dim);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.footer {
  border-top: 1px solid var(--line);
  background: #090806;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  color: var(--dim);
  font-size: .92rem;
}

.footer a {
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, .88);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: min(82vh, 900px);
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(23, 18, 14, .92);
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    padding-inline: 16px;
  }

  .nav {
    overflow-x: auto;
    max-width: 62vw;
    scrollbar-width: none;
  }

  .hero {
    min-height: 82svh;
    padding-top: 72px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 11, 9, .90), rgba(13, 11, 9, .50)),
      linear-gradient(0deg, rgba(13, 11, 9, .88), rgba(13, 11, 9, .12) 60%);
  }

  h1 {
    font-size: 3rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2rem;
  }

  .intro-band,
  .section-head.split,
  .visit-card {
    grid-template-columns: 1fr;
  }

  .intro-points {
    justify-content: flex-start;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature.main-feature {
    grid-row: auto;
  }

  .menu-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-art {
    min-height: 420px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
  }

  .nav {
    width: 100%;
    max-width: none;
  }

  .nav a {
    padding: 9px 10px;
  }

  .hero {
    min-height: 78svh;
    padding-bottom: 42px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-logo {
    width: 104px;
    height: 70px;
    margin-bottom: 18px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .intro-band {
    margin-top: -22px;
    padding: 18px;
  }

  .menu-layout,
  .gallery {
    grid-template-columns: 1fr;
  }

  .menu-art {
    min-height: 520px;
  }

  .gallery {
    grid-auto-rows: 300px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .atmosphere {
    min-height: 520px;
  }

  .atmosphere-copy {
    padding: 58px 0;
  }

  .visit-card {
    padding: 20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }
}
