:root {
  --bg: #b8b8b8;
  --ink: #111111;
  --muted: #5d5d5d;
  --card: #efefef;
  --accent: #c8502f;
  --space: 3rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: Manrope, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #000;
  border-bottom: 1px solid #2d2d2d;
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 46px;
  width: auto;
}

.brand-note {
  max-width: 440px;
  margin-left: 0.85rem;
  margin-right: auto;
}

.brand-note-title {
  margin: 0;
  color: #e4e4e4;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-note-text {
  margin: 0.2rem 0 0;
  color: #bbbbbb;
  font-size: 0.68rem;
  line-height: 1.35;
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 1.1rem;
}

.main-nav a,
.mobile-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #8f8f8f;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #c9c9c9;
  margin: 6px 0;
}

.mobile-nav {
  max-height: 0;
  overflow: hidden;
  display: grid;
  transition: max-height 0.32s ease;
  background: #0d0d0d;
}

.mobile-nav.open {
  max-height: 360px;
}

.mobile-nav a {
  padding: 0.9rem 1.4rem;
  border-top: 1px solid #202020;
}

.section-space {
  padding: var(--space) 0;
}

.hero.section-space {
  padding-top: 0;
  padding-bottom: 0.2rem;
}

.hero + .section-space {
  padding-top: 0.35rem;
}

.hero {
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgb(200 80 47 / 32%), transparent 45%), radial-gradient(circle at bottom left, rgb(89 98 77 / 28%), transparent 42%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
}

.hero .container.hero-grid {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

h1,
.section-title,
.menu-name {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  margin: 0.6rem 0 1.1rem;
}

.lead {
  max-width: 52ch;
  color: #202020;
  font-weight: 600;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.hero-media figcaption {
  margin-top: 0;
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  background: rgb(0 0 0 / 42%);
  color: #efefef;
  padding: 0.35rem 0.55rem;
  border-radius: 2px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
}

.hero-media {
  position: relative;
  margin: 0;
}

.btn-primary,
.btn-ghost {
  display: inline-block;
  text-decoration: none;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.btn-primary {
  background: #0f0f0f;
  color: #f2f2f2;
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-ghost {
  border: 1px solid #252525;
  color: var(--ink);
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  margin: 0 0 1.6rem;
}

.preview-grid,
.menu-grid,
.group-grid,
.gallery-grid {
  display: grid;
  gap: 1.3rem;
}

.preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.group-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid #c7c7c7;
}

#pizzas .card,
#burgers .card,
#kebabs .card {
  background: #d0a67f;
  border-color: #ba906b;
}

#pizzas .card {
  position: relative;
  overflow: hidden;
  background-image: url("../natural wood color to placed pizza.webp");
  background-size: cover;
  background-position: center;
  border-color: #9c7351;
}

#pizzas .card::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 50%;
  width: min(74%, 270px);
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 46%, #b97d48 0%, #9a6538 58%, #7e4f2c 74%, #6a4125 100%);
  box-shadow:
    inset 0 0 0 6px rgb(122 76 42 / 68%),
    inset 0 0 0 16px rgb(148 94 54 / 38%),
    0 10px 18px rgb(0 0 0 / 24%);
  z-index: 0;
}

#pizzas .card img {
  position: relative;
  z-index: 1;
  width: min(66%, 230px);
  margin: 1.9rem auto 0.8rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(49% at 50% 50%);
  box-shadow: 0 6px 16px rgb(0 0 0 / 25%);
  background: transparent;
}

#pizzas .card .card-body {
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, rgb(210 166 127 / 92%), rgb(210 166 127 / 56%));
}

#bebidas .card {
  background: #eadfce;
  border-color: #ccbda8;
}

#bebidas .card img {
  width: 100%;
  height: clamp(220px, 32vw, 330px);
  object-fit: contain;
  object-position: center;
  background: #f3eadb;
  image-rendering: auto;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
}

.menu-name {
  font-size: 1.6rem;
  margin: 0;
}

.menu-desc {
  color: #2a2a2a;
  font-size: 0.95rem;
  font-weight: 600;
}

.menu-price {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
}

.about-grid,
.feature-row,
.cta-wrap,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.about-grid,
.feature-row {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about img,
.feature-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-row {
  margin-bottom: 1.6rem;
}

.feature-row:nth-child(even) figure {
  order: 2;
}

.feature-row:nth-child(even) div {
  order: 1;
}

.cta {
  background: #d5d5d5;
  border-top: 1px solid #a8a8a8;
  border-bottom: 1px solid #a8a8a8;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer {
  padding: 2.2rem 0 1.4rem;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
}

.footer-grid a {
  display: block;
  color: #222;
  margin-bottom: 0.4rem;
  text-decoration: none;
  font-weight: 600;
}

.copy {
  text-align: center;
  margin: 1.2rem 0 0;
  color: #2f2f2f;
  font-weight: 600;
}

.reveal {
  animation: rise 0.8s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .preview-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .about-grid,
  .feature-row,
  .group-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero .container.hero-grid {
    width: min(1200px, 92vw);
    max-width: min(1200px, 92vw);
    margin-inline: auto;
    gap: 1rem;
  }

  .hero-media img {
    border-radius: 2px;
  }
}

@media (min-width: 1025px) {
  #pizzas .menu-grid,
  #menus-individuales .menu-grid,
  #burgers .menu-grid,
  #kebabs .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #bebidas .menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #pizzas .menu-grid,
  #menus-individuales .menu-grid,
  #burgers .menu-grid,
  #kebabs .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  :root {
    --space: 2.2rem;
  }

  .main-nav {
    display: none;
  }

  .brand-note {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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