@font-face {
  font-family: "Alfa Slab One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/alfa-slab-one.ttf") format("truetype");
}

@font-face {
  font-family: "Alegreya SC";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/alegreya-sc-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Alegreya SC";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/alegreya-sc-bold.ttf") format("truetype");
}

:root {
  --orange: #f24a1d;
  --orange-dark: #d8340f;
  --yellow: #f2a900;
  --mustard: #d99203;
  --black: #1a1a1a;
  --black-deep: #0c0c0c;
  --white: #ffffff;
  --cream: #fff8ea;
  --muted: #bdb7ad;
  --header-height: 116px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Alegreya SC", Georgia, serif;
  font-size: 18px;
}

body,
button,
a,
input,
textarea {
  font-family: "Alegreya SC", Georgia, serif;
}

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

button {
  color: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 12px 40px rgb(0 0 0 / 22%);
}

.topbar {
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar a {
  transition: opacity 180ms ease;
}

.topbar a:hover {
  opacity: 0.78;
}

.branding {
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  background: rgb(12 12 12 / 94%);
  backdrop-filter: blur(14px);
}

.branding-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  width: 194px;
  height: 74px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 34px);
}

.nav-menu a {
  position: relative;
  padding: 30px 0 27px;
  color: rgb(255 255 255 / 84%);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--white);
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

.hero {
  position: relative;
  height: max(700px, 100svh);
  min-height: 700px;
  margin-top: var(--header-height);
  overflow: hidden;
  background: var(--black-deep);
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 190px;
  content: "";
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 58%));
  pointer-events: none;
}

.hero-texture {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 46%) 0%, rgb(0 0 0 / 18%) 55%, rgb(0 0 0 / 36%) 100%),
    url("../images/wood-bg.webp") center / cover;
}

.hero-texture::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 76% 46%, rgb(242 169 0 / 18%), transparent 28%),
    repeating-linear-gradient(
      -16deg,
      transparent 0 90px,
      rgb(255 255 255 / 1.5%) 91px 92px
    );
}

.hero-slide {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition:
    opacity 760ms ease,
    transform 920ms ease,
    visibility 760ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-grid {
  height: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 20px;
  padding-top: 36px;
  padding-bottom: 70px;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 9px 15px 8px;
  border-left: 4px solid var(--yellow);
  background: rgb(242 74 29 / 13%);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: clamp(3.6rem, 6.1vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 7px 0 rgb(0 0 0 / 20%);
}

.hero h1::first-line {
  color: var(--white);
}

.hero-content > p {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 76%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 2px solid transparent;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: var(--orange);
  box-shadow: 7px 7px 0 var(--yellow);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-ghost {
  border-color: rgb(255 255 255 / 45%);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.button-ghost .icon {
  width: 20px;
  height: 20px;
}

.hero-visual {
  position: relative;
  height: min(660px, 76vh);
  min-height: 530px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::after {
  position: absolute;
  z-index: 0;
  width: min(560px, 36vw);
  aspect-ratio: 1;
  border: 2px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 26px rgb(242 74 29 / 8%),
    0 0 0 54px rgb(242 169 0 / 5%);
}

.sunburst {
  position: absolute;
  z-index: 0;
  right: 2%;
  bottom: 3%;
  width: min(470px, 32vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from -8deg,
    var(--yellow) 0 8deg,
    transparent 8deg 17deg
  );
  opacity: 0.72;
  -webkit-mask-image: radial-gradient(circle, transparent 0 22%, #000 23% 70%, transparent 71%);
  mask-image: radial-gradient(circle, transparent 0 22%, #000 23% 70%, transparent 71%);
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(760px, 52vw);
  max-height: 610px;
  object-fit: contain;
  filter: drop-shadow(0 34px 30px rgb(0 0 0 / 56%));
  transform: rotate(-2deg);
}

.fresh-note {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 12%;
  padding: 13px 18px 11px;
  background: var(--yellow);
  color: var(--black);
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.carousel-control {
  position: absolute;
  z-index: 6;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 50%;
  background: rgb(0 0 0 / 32%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
}

.carousel-prev {
  left: 22px;
}

.carousel-next {
  right: 22px;
}

.carousel-dots {
  position: absolute;
  z-index: 6;
  bottom: 35px;
  left: 50%;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgb(255 255 255 / 28%);
  cursor: pointer;
  transition:
    width 180ms ease,
    background-color 180ms ease;
}

.carousel-dots button.is-active {
  width: 62px;
  background: var(--yellow);
}

/*--------------------------------------------------------------
# Business Information Bar
--------------------------------------------------------------*/

.business-bar {
  position: relative;
  z-index: 8;
  margin-top: -1px;
  background: var(--orange);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.business-item {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 24px 34px;
  border-right: 1px solid rgb(255 255 255 / 26%);
  transition: background-color 180ms ease;
}

.business-item:first-child {
  border-left: 1px solid rgb(255 255 255 / 26%);
}

a.business-item:hover {
  background: rgb(0 0 0 / 12%);
}

.business-item .icon {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  color: var(--yellow);
}

.business-item span {
  display: block;
  margin-bottom: 4px;
  color: rgb(255 255 255 / 72%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.business-item strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.035em;
}

/*--------------------------------------------------------------
# Shared Sections
--------------------------------------------------------------*/

.section {
  position: relative;
  padding: 120px 0;
  scroll-margin-top: var(--header-height);
}

.section-heading {
  max-width: 720px;
}

.section-heading-centered {
  margin: 0 auto 58px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 34px;
  height: 3px;
  content: "";
  background: var(--yellow);
}

.section-heading-centered .section-kicker::after {
  width: 34px;
  height: 3px;
  content: "";
  background: var(--yellow);
}

.section-heading h2,
.delivery-content h2 {
  margin: 0;
  color: var(--black);
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: clamp(2.55rem, 4.2vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 660px;
  margin: 20px auto 0;
  color: #686158;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

.section-heading-light h2,
.section-heading-light > p {
  color: var(--white);
}

.section-heading-light > p {
  color: rgb(255 255 255 / 62%);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-section {
  overflow: hidden;
  background: var(--cream);
  color: var(--black);
}

.about-section::before {
  position: absolute;
  top: -210px;
  left: -210px;
  width: 420px;
  height: 420px;
  border: 64px solid rgb(242 169 0 / 14%);
  border-radius: 50%;
  content: "";
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(60px, 8vw, 110px);
}

.about-visual {
  position: relative;
  min-height: 610px;
}

.about-main-image {
  position: absolute;
  top: 0;
  right: 34px;
  left: 0;
  height: 500px;
  overflow: hidden;
  border: 12px solid var(--white);
  box-shadow: 0 28px 70px rgb(56 34 18 / 17%);
}

.about-main-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgb(0 0 0 / 22%));
}

.about-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-small-image {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 51%;
  height: 250px;
  overflow: hidden;
  border: 9px solid var(--cream);
  background: var(--white);
  box-shadow: 0 26px 60px rgb(56 34 18 / 20%);
}

.about-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  z-index: 3;
  bottom: 65px;
  left: -18px;
  width: 154px;
  height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  border: 8px solid var(--cream);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 16px 42px rgb(0 0 0 / 18%);
  color: var(--white);
  text-align: center;
}

.about-badge strong {
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
}

.about-badge span {
  margin-top: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.about-content .section-heading {
  margin-bottom: 30px;
}

.about-content .lead,
.about-content > p {
  margin: 0 0 18px;
  color: #575047;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.82;
}

.about-content .lead {
  color: var(--black);
  font-size: 1.1rem;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid #ddd1bc;
}

.about-signature span {
  padding: 8px 11px 6px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-signature strong {
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: 1.25rem;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services-section {
  background: var(--white);
  color: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e8e1d7;
  background: var(--cream);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  box-shadow: 0 24px 56px rgb(42 25 12 / 13%);
  transform: translateY(-8px);
}

.service-card-featured {
  background: var(--black);
  color: var(--white);
  transform: translateY(-18px);
}

.service-card-featured:hover {
  transform: translateY(-26px);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgb(0 0 0 / 44%));
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.045);
}

.service-image span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 12px;
  color: var(--yellow);
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: 2.3rem;
}

.service-content {
  min-height: 240px;
  padding: 34px 30px;
}

.service-content h3 {
  margin: 0 0 14px;
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.18;
}

.service-content p {
  margin: 0;
  color: #665f56;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.72;
}

.service-card-featured .service-content p {
  color: rgb(255 255 255 / 66%);
}

/*--------------------------------------------------------------
# Menu
--------------------------------------------------------------*/

.menu-section {
  overflow: hidden;
  background:
    linear-gradient(rgb(6 6 6 / 93%), rgb(6 6 6 / 96%)),
    url("../images/wood-bg.webp") center / cover;
}

.menu-pattern {
  position: absolute;
  top: -60px;
  right: -250px;
  width: 760px;
  height: 520px;
  background: url("../images/icon-pattern.webp") center / cover no-repeat;
  opacity: 0.1;
  transform: rotate(-5deg);
  pointer-events: none;
}

.menu-section .container {
  position: relative;
  z-index: 2;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.menu-tabs button {
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid rgb(255 255 255 / 16%);
  background: transparent;
  color: rgb(255 255 255 / 72%);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.menu-tabs button:hover,
.menu-tabs button.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.menu-display {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 26px;
}

.menu-items {
  min-height: 655px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgb(255 255 255 / 13%);
  background: rgb(20 20 20 / 82%);
}

.menu-intro {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.menu-intro > span {
  color: var(--yellow);
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: 1.6rem;
}

.menu-intro p {
  margin: 10px 0 0;
  color: rgb(255 255 255 / 56%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px dashed rgb(255 255 255 / 16%);
}

.menu-item h3 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  letter-spacing: 0.035em;
}

.menu-item p {
  margin: 0;
  color: rgb(255 255 255 / 49%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
}

.menu-price {
  flex: 0 0 auto;
  color: var(--yellow);
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: 1.28rem;
}

.menu-note {
  margin: 26px 0 0;
  padding: 15px 17px;
  border-left: 3px solid var(--orange);
  background: rgb(242 74 29 / 9%);
  color: rgb(255 255 255 / 58%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  line-height: 1.6;
}

.guisos-panel {
  padding: 36px 32px;
  background: var(--orange);
  box-shadow: 14px 14px 0 var(--yellow);
}

.guisos-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(255 255 255 / 29%);
}

.guisos-heading span {
  color: rgb(255 255 255 / 70%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guisos-heading h3 {
  margin: 0;
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.guisos-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}

.guisos-list span {
  position: relative;
  padding-left: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.guisos-list span::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--yellow);
}

.daily-guisos {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 29%);
}

.daily-guisos h4 {
  margin: 0 0 14px;
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: 1rem;
  font-weight: 400;
}

.daily-guisos > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.7rem;
}

.daily-guisos strong {
  color: var(--yellow);
}

.graphic-menu {
  display: grid;
  align-items: center;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 40px;
  margin-top: 84px;
  padding-top: 70px;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.graphic-menu > div:first-child > span {
  color: var(--orange);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.graphic-menu h3 {
  margin: 12px 0;
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: 1.05;
}

.graphic-menu p {
  margin: 0;
  color: rgb(255 255 255 / 52%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.87rem;
  line-height: 1.6;
}

.graphic-menu-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.graphic-menu-images a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  background: #000;
}

.graphic-menu-images a::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  content: "Ampliar ↗";
  background: var(--yellow);
  color: var(--black);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.graphic-menu-images img {
  width: 100%;
  aspect-ratio: 1.29;
  object-fit: cover;
  transition: transform 400ms ease;
}

.graphic-menu-images a:hover img {
  transform: scale(1.025);
}

/*--------------------------------------------------------------
# Reviews
--------------------------------------------------------------*/

.reviews-section {
  overflow: hidden;
  background: var(--cream);
  color: var(--black);
}

.reviews-section::after {
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: 380px;
  height: 380px;
  border: 60px solid rgb(242 74 29 / 10%);
  border-radius: 50%;
  content: "";
}

.reviews-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reviews-grid blockquote {
  position: relative;
  min-height: 330px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  margin: 0;
  padding: 42px 32px 34px;
  border: 1px solid #e5d9c4;
  background: var(--white);
  box-shadow: 0 18px 42px rgb(67 38 17 / 8%);
}

.reviews-grid .review-featured {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-18px);
}

.quote-mark {
  position: absolute;
  top: 14px;
  left: 28px;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 6.5rem;
  line-height: 1;
}

.stars {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  color: var(--yellow);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

.reviews-grid blockquote p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: 1.27rem;
  line-height: 1.42;
}

.reviews-grid blockquote footer {
  margin-top: 24px;
  color: #817568;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews-grid .review-featured footer {
  color: rgb(255 255 255 / 68%);
}

/*--------------------------------------------------------------
# Delivery
--------------------------------------------------------------*/

.delivery-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 96%) 0 58%, rgb(0 0 0 / 72%) 100%),
    url("../images/wood-bg.webp") center / cover;
  scroll-margin-top: var(--header-height);
}

.delivery-section::before {
  position: absolute;
  top: -110px;
  right: 20%;
  width: 230px;
  height: 230px;
  border: 40px solid rgb(242 169 0 / 18%);
  border-radius: 50%;
  content: "";
}

.delivery-grid {
  min-height: 720px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr minmax(400px, 0.9fr);
  gap: clamp(40px, 8vw, 100px);
}

.delivery-content {
  position: relative;
  z-index: 3;
  padding: 100px 0;
}

.delivery-content h2 {
  max-width: 620px;
  color: var(--white);
}

.delivery-content > p {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 65%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
}

.delivery-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}

.delivery-platforms span {
  padding: 11px 15px 9px;
  border: 1px solid rgb(255 255 255 / 18%);
  background: rgb(255 255 255 / 7%);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.delivery-visual {
  position: relative;
  z-index: 2;
  height: 720px;
  overflow: hidden;
  background: var(--orange);
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.delivery-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-section {
  background: var(--white);
  color: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 26px;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 42px;
  background: var(--black);
  color: var(--white);
}

.contact-details {
  display: grid;
  gap: 26px;
}

.contact-details > div {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.contact-details .icon {
  color: var(--yellow);
}

.contact-details span {
  display: block;
  margin-bottom: 7px;
  color: rgb(255 255 255 / 48%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-details p,
.contact-details a {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

.button-dark {
  width: 100%;
  margin-top: 36px;
  border-color: rgb(255 255 255 / 24%);
  background: transparent;
  color: var(--white);
}

.button-dark:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.contact-form {
  display: grid;
  gap: 19px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid #e5dfd6;
  background: var(--cream);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  color: #5d554c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd3c5;
  outline: none;
  background: var(--white);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input {
  min-height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 140px;
  padding: 15px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgb(242 74 29 / 10%);
}

.contact-form .button {
  width: max-content;
  min-width: 190px;
  border: 0;
  cursor: pointer;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.map-frame {
  height: 430px;
  margin-top: 26px;
  overflow: hidden;
  border: 8px solid var(--cream);
  background: #ded7cc;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.03);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
  background: #0c0c0c;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
  padding-top: 74px;
  padding-bottom: 66px;
}

.footer-brand img {
  width: 230px;
  height: 120px;
  object-fit: contain;
}

.footer-brand p,
.footer-grid > div > p,
.footer-grid > div > a {
  display: block;
  margin: 7px 0;
  color: rgb(255 255 255 / 52%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer-grid > div > a {
  transition: color 180ms ease;
}

.footer-grid > div > a:hover {
  color: var(--yellow);
}

.footer-grid h3 {
  margin: 15px 0 20px;
  color: var(--yellow);
  font-family: "Alfa Slab One", Rockwell, serif;
  font-size: 0.98rem;
  font-weight: 400;
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 9%);
}

.footer-bottom .container {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgb(255 255 255 / 36%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.69rem;
}

.footer-bottom a {
  color: rgb(255 255 255 / 62%);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 1100px) {
  .nav-menu {
    gap: 20px;
  }

  .nav-menu a {
    font-size: 0.76rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6.1vw, 5.4rem);
  }

  .about-grid {
    gap: 60px;
  }

  .menu-display {
    grid-template-columns: minmax(0, 1fr) 350px;
  }

  .delivery-grid {
    grid-template-columns: 1fr 430px;
    gap: 45px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 104px;
  }

  .topbar-inner {
    min-height: 30px;
  }

  .branding-inner {
    min-height: 74px;
  }

  .brand {
    width: 166px;
    height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 104px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 10px 24px;
    border-top: 3px solid var(--yellow);
    background: #111;
    box-shadow: 0 18px 44px rgb(0 0 0 / 48%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px 0;
    border-bottom: 1px solid rgb(255 255 255 / 9%);
  }

  .nav-menu a::after {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 780px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 90px;
    text-align: center;
  }

  .hero-content {
    margin-inline: auto;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .hero-content > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    position: absolute;
    inset: auto 0 20px;
    min-height: 370px;
    opacity: 0.33;
  }

  .hero-visual::after {
    width: 440px;
  }

  .hero-visual img {
    width: min(650px, 80vw);
    max-height: 430px;
  }

  .fresh-note {
    display: none;
  }

  .business-item {
    padding: 22px 16px;
  }

  .section {
    padding: 92px 0;
  }

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

  .about-visual {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .about-content {
    max-width: 720px;
    margin-inline: auto;
  }

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

  .service-card,
  .service-card-featured {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    transform: none;
  }

  .service-card:hover,
  .service-card-featured:hover {
    transform: translateY(-5px);
  }

  .service-image,
  .service-content {
    min-height: 250px;
    height: 100%;
  }

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

  .menu-items {
    min-height: 0;
  }

  .guisos-panel {
    box-shadow: 10px 10px 0 var(--yellow);
  }

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

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

  .reviews-grid blockquote,
  .reviews-grid .review-featured {
    min-height: 250px;
    transform: none;
  }

  .delivery-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .delivery-content {
    padding: 90px 0 40px;
  }

  .delivery-visual {
    height: 600px;
    clip-path: none;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-inner span {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-grid {
    align-items: flex-start;
    padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.5rem);
  }

  .hero-content > p {
    max-width: 470px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: min(310px, 100%);
  }

  .carousel-control {
    top: auto;
    bottom: 24px;
  }

  .carousel-prev {
    left: 20px;
  }

  .carousel-next {
    right: 20px;
  }

  .carousel-dots {
    bottom: 46px;
  }

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

  .business-item,
  .business-item:first-child {
    min-height: 88px;
    padding: 18px 22px;
    border-right: 1px solid rgb(255 255 255 / 24%);
    border-bottom: 1px solid rgb(255 255 255 / 24%);
    border-left: 1px solid rgb(255 255 255 / 24%);
  }

  .section {
    padding: 78px 0;
  }

  .section-heading-centered {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .delivery-content h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .about-visual {
    min-height: 470px;
  }

  .about-main-image {
    right: 18px;
    height: 380px;
    border-width: 7px;
  }

  .about-small-image {
    width: 54%;
    height: 190px;
    border-width: 6px;
  }

  .about-badge {
    bottom: 44px;
    left: -4px;
    width: 120px;
    height: 120px;
    border-width: 6px;
  }

  .about-badge strong {
    font-size: 2rem;
  }

  .about-badge span {
    font-size: 0.57rem;
  }

  .about-signature {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .service-card,
  .service-card-featured {
    display: block;
  }

  .service-image {
    height: 230px;
    min-height: 0;
  }

  .service-content {
    min-height: 0;
  }

  .menu-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-tabs button:last-child {
    grid-column: 1 / -1;
  }

  .menu-items,
  .guisos-panel {
    padding: 26px 22px;
  }

  .menu-item {
    gap: 15px;
  }

  .menu-item h3 {
    font-size: 0.98rem;
  }

  .menu-price {
    font-size: 1.05rem;
  }

  .guisos-list {
    grid-template-columns: 1fr;
  }

  .graphic-menu {
    margin-top: 65px;
    padding-top: 55px;
  }

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

  .delivery-content {
    padding-top: 76px;
  }

  .delivery-visual {
    height: 520px;
  }

  .contact-card,
  .contact-form {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form .button {
    width: 100%;
  }

  .map-frame {
    height: 360px;
    border-width: 5px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 54px;
    padding-bottom: 50px;
  }

  .footer-bottom .container {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    min-height: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/*--------------------------------------------------------------
# Static menu panels
--------------------------------------------------------------*/

.menu-panel[hidden] {
  display: none;
}
