:root {
  --yellow: #ffc400;
  --yellow-strong: #ffb800;
  --yellow-soft: #fff1b7;
  --orange: #ff6a2a;
  --red: #d9361f;
  --red-deep: #b92517;
  --ink: #17120b;
  --charcoal: #2c241a;
  --muted: #6f665c;
  --line: #eadcc7;
  --paper: #fff8e8;
  --cream: #fffdf7;
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(36, 25, 12, 0.16);
  --shadow-strong: 0 28px 80px rgba(31, 19, 8, 0.24);
  --radius: 8px;
  --container: min(1140px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.section-shell {
  width: var(--container);
  margin-inline: auto;
  min-width: 0;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 24px));
  min-height: 76px;
  margin: 12px auto 0;
  padding: 10px 12px 10px 14px;
  background: var(--yellow);
  border: 2px solid rgba(23, 18, 11, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 16px 0 rgba(23, 18, 11, 0.12), 0 22px 55px rgba(23, 18, 11, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0 18%, transparent 18% 100%),
    repeating-linear-gradient(90deg, rgba(23, 18, 11, 0.06) 0 1px, transparent 1px 18px);
}

.site-header.is-scrolled {
  background: var(--yellow-strong);
  box-shadow: 0 8px 0 rgba(23, 18, 11, 0.14), 0 18px 46px rgba(23, 18, 11, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  background: var(--yellow);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 rgba(217, 54, 31, 0.8);
}

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

.brand-mark svg {
  width: 30px;
  height: 30px;
  color: var(--ink);
  stroke-width: 2.6;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.04rem;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-copy small {
  color: rgba(23, 18, 11, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(23, 18, 11, 0.14);
  border-radius: var(--radius);
}

.desktop-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: var(--ink);
  color: var(--yellow);
  outline: none;
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  stroke-width: 2.5;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 0 rgba(23, 18, 11, 0.14), 0 22px 42px rgba(255, 184, 0, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--yellow-strong);
  box-shadow: 0 9px 0 rgba(23, 18, 11, 0.16), 0 24px 46px rgba(255, 184, 0, 0.28);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 0 rgba(217, 54, 31, 0.34), 0 22px 40px rgba(23, 18, 11, 0.25);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #050403;
}

.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: var(--white);
  box-shadow: 0 12px 0 rgba(23, 18, 11, 0.14), 0 22px 42px rgba(217, 54, 31, 0.28);
}

.btn-red:hover,
.btn-red:focus-visible {
  background: linear-gradient(135deg, var(--red-deep) 0%, #f0521d 100%);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(23, 18, 11, 0.12);
  box-shadow: 0 12px 0 rgba(23, 18, 11, 0.1), 0 20px 38px rgba(23, 18, 11, 0.12);
}

.btn-outline {
  background: var(--white);
  border-color: rgba(217, 54, 31, 0.36);
  color: var(--red);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-small {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 0.86rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 rgba(217, 54, 31, 0.8);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--yellow);
  border-radius: 10px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 96px 12px auto;
  z-index: 35;
  display: none;
  padding: 12px;
  background: var(--yellow);
  border: 2px solid rgba(23, 18, 11, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  transform: translateY(-14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
}

.mobile-menu a:not(.btn) {
  padding: 13px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  min-height: 89svh;
  padding: 138px 0 82px;
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(1.12) contrast(1.02);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(255, 196, 0, 0.98) 0%, rgba(255, 196, 0, 0.96) 45%, rgba(255, 196, 0, 0.52) 64%, rgba(23, 18, 11, 0.18) 100%),
    linear-gradient(0deg, rgba(23, 18, 11, 0.12), rgba(23, 18, 11, 0.02));
}

.hero-shape {
  position: absolute;
  right: -12%;
  bottom: -17%;
  z-index: -1;
  width: 52vw;
  height: 34vw;
  min-width: 520px;
  min-height: 320px;
  background: var(--ink);
  border-top: 12px solid var(--red);
  transform: rotate(-7deg);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(250px, 0.36fr);
  align-items: end;
  gap: 34px;
}

.hero-copy {
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.7rem, 8.8vw, 6.25rem);
  font-weight: 900;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 18px;
  color: rgba(23, 18, 11, 0.82);
  font-size: clamp(1.04rem, 2.3vw, 1.33rem);
  font-weight: 800;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 0 0 26px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 18, 11, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 5px 5px 0 rgba(23, 18, 11, 0.08);
}

.hero-badges svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  stroke-width: 2.5;
}

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

.hero-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: rgba(23, 18, 11, 0.94);
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 10px 10px 0 rgba(217, 54, 31, 0.78), var(--shadow-strong);
}

.hero-card::before {
  width: 58px;
  height: 5px;
  content: "";
  background: var(--yellow);
  border-radius: 999px;
}

.hero-card-kicker {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.28rem;
  line-height: 1.12;
}

.hero-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.quick-highlights {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.highlight-card,
.menu-card,
.also-card,
.contact-card {
  border: 1px solid rgba(23, 18, 11, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(36, 25, 12, 0.1);
}

.highlight-card {
  position: relative;
  min-height: 194px;
  padding: 22px;
  overflow: hidden;
  border-top: 7px solid var(--yellow);
}

.highlight-card::after {
  position: absolute;
  right: -24px;
  bottom: -34px;
  width: 90px;
  height: 90px;
  content: "";
  background: rgba(255, 196, 0, 0.22);
  border-radius: 8px;
  transform: rotate(17deg);
}

.icon-badge {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 18px;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--yellow);
  box-shadow: 5px 5px 0 rgba(217, 54, 31, 0.85);
}

.icon-badge svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.4;
}

.highlight-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.highlight-card p,
.menu-card p,
.also-card p,
.contact-card p,
.section-heading p,
.section-copy p,
.location-copy p,
.about-copy p {
  color: var(--muted);
}

.highlight-card p,
.menu-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 0.94rem;
}

.lunch-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.16) 0 44%, transparent 44% 100%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}

.lunch-layout,
.location-layout,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 52px;
}

.lunch-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.64fr);
  align-items: stretch;
  gap: 34px;
}

.lunch-copy-card {
  position: relative;
  align-self: center;
  max-width: 620px;
  padding: 34px;
  background: var(--white);
  border: 2px solid rgba(23, 18, 11, 0.12);
  border-left: 12px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 rgba(255, 196, 0, 0.55), var(--shadow);
}

.lunch-copy-card::after {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 58px;
  height: 58px;
  content: "";
  background: rgba(217, 54, 31, 0.1);
  border-radius: var(--radius);
  transform: rotate(12deg);
}

.section-copy h2,
.section-heading h2,
.location-copy h2,
.about-copy h2,
.final-cta h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
}

.section-copy p,
.section-heading p,
.location-copy p,
.about-copy p,
.final-cta p {
  max-width: 700px;
  font-size: 1.08rem;
  font-weight: 600;
}

.lunch-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 4px;
}

.lunch-points span {
  display: grid;
  gap: 8px;
  min-height: 92px;
  align-content: start;
  padding: 14px;
  background: var(--paper);
  border: 1px solid rgba(23, 18, 11, 0.1);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.lunch-points svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  stroke-width: 2.5;
}

.time-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--yellow);
  border: 2px solid rgba(23, 18, 11, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 7px 7px 0 rgba(23, 18, 11, 0.14);
}

.time-pill svg {
  color: var(--red);
}

.lunch-photo-wrap {
  position: relative;
}

.lunch-photo-wrap::before {
  position: absolute;
  inset: 24px -20px -20px 24px;
  z-index: 0;
  content: "";
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
}

.lunch-photo-wrap::after {
  position: absolute;
  right: -18px;
  top: 44px;
  z-index: 2;
  padding: 9px 12px;
  content: "8h às 18h";
  background: var(--red);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 5px 5px 0 rgba(23, 18, 11, 0.22);
}

.lunch-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 520px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 196, 0, 0.34), transparent 28%),
    radial-gradient(circle at 88% 30%, rgba(217, 54, 31, 0.12), transparent 24%),
    repeating-linear-gradient(135deg, rgba(23, 18, 11, 0.035) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, var(--cream) 0%, #fff0bc 100%);
}

.menu-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--yellow) 0 28px, var(--red) 28px 42px, var(--ink) 42px 50px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.menu-heading {
  position: relative;
  max-width: 100%;
  padding: 30px 34px;
  overflow: hidden;
  background: var(--ink);
  border: 2px solid rgba(255, 196, 0, 0.34);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 12px 12px 0 rgba(255, 196, 0, 0.72), var(--shadow);
}

.menu-heading::after {
  position: absolute;
  right: -34px;
  top: -42px;
  width: 230px;
  height: 230px;
  content: "";
  background:
    linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 999px;
  opacity: 0.92;
}

.menu-heading > * {
  position: relative;
  z-index: 1;
}

.menu-heading h2,
.menu-heading p {
  color: var(--white);
}

.menu-heading .eyebrow {
  color: var(--yellow);
}

.section-heading.narrow {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.menu-category {
  margin-top: 38px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(23, 18, 11, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(36, 25, 12, 0.06);
}

.category-title {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 20px 22px;
  overflow: hidden;
  background: var(--ink);
  border: 2px solid rgba(23, 18, 11, 0.14);
  border-radius: var(--radius);
  box-shadow: 7px 7px 0 rgba(217, 54, 31, 0.18);
}

.category-title::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(34%, 340px);
  content: "";
  background: var(--yellow);
}

.category-title > * {
  position: relative;
  z-index: 1;
}

.category-title .eyebrow {
  margin-bottom: 6px;
}

.category-title h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.category-title .eyebrow {
  color: var(--yellow);
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  background: rgba(255, 196, 0, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-category {
  flex: 0 0 auto;
  box-shadow: 0 10px 0 rgba(23, 18, 11, 0.13), 0 18px 34px rgba(217, 54, 31, 0.24);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 16px;
}

.menu-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
}

.menu-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 178px;
  padding: 22px 22px 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fff9ea 100%);
  border: 2px solid rgba(23, 18, 11, 0.11);
  border-top: 7px solid var(--yellow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.menu-card::before {
  position: absolute;
  top: -38px;
  right: -34px;
  width: 116px;
  height: 116px;
  content: "";
  background: rgba(255, 196, 0, 0.28);
  border-radius: 999px;
}

.menu-card::after {
  position: absolute;
  left: 20px;
  bottom: 16px;
  width: 48px;
  height: 4px;
  content: "";
  background: var(--yellow);
  border-radius: 999px;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 42, 0.36);
  box-shadow: 0 24px 58px rgba(36, 25, 12, 0.15);
}

.menu-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.menu-card h4 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.22;
}

.menu-card strong {
  flex: 0 0 auto;
  min-width: max-content;
  padding: 8px 11px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.05;
  white-space: nowrap;
  box-shadow: 4px 4px 0 rgba(23, 18, 11, 0.16);
}

.menu-card-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  background: rgba(255, 196, 0, 0.22);
  border: 1px solid rgba(217, 54, 31, 0.16);
  border-radius: 999px;
  color: var(--red-deep);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card p {
  position: relative;
  z-index: 1;
  padding-bottom: 14px;
}

.menu-note {
  display: flex;
  margin: 28px 0 0;
  padding: 16px 18px;
  background: var(--ink);
  border-left: 8px solid var(--yellow);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
}

.also-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.also-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(110deg, rgba(255, 196, 0, 0.16), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px);
}

.also-section .section-shell {
  position: relative;
  z-index: 1;
}

.also-section .eyebrow {
  color: var(--yellow);
}

.also-section .section-heading h2 {
  color: var(--white);
}

.also-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.also-card {
  display: grid;
  min-height: 176px;
  align-content: center;
  justify-items: center;
  padding: 30px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.also-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 196, 0, 0.14);
  border-color: rgba(255, 196, 0, 0.45);
}

.also-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--yellow);
  stroke-width: 2.2;
}

.also-card h3 {
  margin-bottom: 0;
  font-size: 1.28rem;
}

.gallery-section {
  background:
    linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: var(--radius);
  background: #eee6dc;
  box-shadow: 0 18px 46px rgba(36, 25, 12, 0.12);
}

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

.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 420ms ease, filter 420ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(23, 18, 11, 0.72) 100%);
}

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

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  background: var(--yellow);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(23, 18, 11, 0.22);
}

.location-section {
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.2) 0 32%, transparent 32% 100%),
    var(--paper);
}

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

.location-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid rgba(23, 18, 11, 0.1);
  border-radius: var(--radius);
  color: var(--charcoal);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(36, 25, 12, 0.06);
}

.location-list svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--red);
  stroke-width: 2.4;
}

.map-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(255, 196, 0, 0.82), var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}

.about-section {
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.32), transparent 36%),
    var(--white);
}

.about-copy h2 {
  max-width: 760px;
}

.contact-card {
  padding: 28px;
  border-top: 7px solid var(--yellow);
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 1.58rem;
}

.contact-actions .btn {
  flex: 1 1 120px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(23, 18, 11, 0.06) 0 1px, transparent 1px 18px);
}

.final-cta::after {
  position: absolute;
  right: -9%;
  top: -20%;
  z-index: 0;
  width: min(430px, 40vw);
  height: 140%;
  content: "";
  background: rgba(23, 18, 11, 0.14);
  clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: left;
}

.final-cta h2 {
  max-width: 780px;
  color: var(--ink);
}

.final-cta p {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 10px 12px;
  background: var(--white);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 5px 5px 0 rgba(217, 54, 31, 0.72);
}

.site-footer {
  padding: 52px 0;
  background:
    linear-gradient(180deg, #fff6d6 0%, var(--paper) 100%);
  border-top: 10px solid var(--ink);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(2, minmax(150px, 0.5fr));
  gap: 32px;
  padding: 30px;
  background: var(--white);
  border: 2px solid rgba(23, 18, 11, 0.12);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 rgba(255, 196, 0, 0.58), var(--shadow);
}

.site-footer .brand-mark {
  box-shadow: 5px 5px 0 rgba(217, 54, 31, 0.75);
}

.site-footer .brand-copy small,
.footer-brand p,
.footer-links a {
  color: var(--charcoal);
}

.site-footer .brand-copy strong {
  color: var(--ink);
}

.footer-brand p {
  margin: 16px 0 0;
  font-weight: 700;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 6px;
  color: var(--red);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.94rem;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  font-weight: 900;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--red);
  outline: none;
}

[data-animate] {
  transform: translateY(18px);
  opacity: 0;
  transition: transform 520ms ease, opacity 520ms ease;
}

[data-animate].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 1280px) {
  .hero-content {
    grid-template-columns: minmax(0, 0.9fr) minmax(270px, 0.34fr);
  }

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

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 2px;
  }

  .desktop-nav a {
    padding-inline: 9px;
    font-size: 0.84rem;
  }

  .header-cta {
    padding-inline: 11px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.34fr);
  }

  .category-title {
    align-items: start;
  }

  .btn-category {
    max-width: 280px;
  }
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

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

  .lunch-layout,
  .location-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .lunch-copy-card {
    max-width: none;
  }

  .location-layout {
    gap: 34px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }

  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .map-card {
    min-height: 380px;
  }

  .map-card iframe {
    min-height: 380px;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: none;
  }

  .section-copy h2,
  .section-heading h2,
  .location-copy h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .category-title {
    display: grid;
    align-items: start;
    background: var(--ink);
  }

  .category-title::after {
    width: 130px;
    opacity: 0.9;
  }

  .btn-category {
    width: 100%;
    max-width: none;
  }

  .contact-actions {
    display: grid;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1140px);
  }

  html {
    scroll-padding-top: 88px;
  }

  .section-pad {
    padding: 68px 0;
  }

  .site-header {
    min-height: 68px;
    margin-top: 8px;
    padding: 9px;
  }

  .brand-mark {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    box-shadow: 4px 4px 0 rgba(217, 54, 31, 0.8);
  }

  .brand-copy strong {
    font-size: 0.93rem;
  }

  .brand-copy small {
    max-width: 175px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-menu {
    inset: 84px 8px auto;
  }

  .hero {
    min-height: 88svh;
    padding: 118px 0 70px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 196, 0, 0.98) 0%, rgba(255, 196, 0, 0.95) 58%, rgba(255, 196, 0, 0.58) 100%),
      linear-gradient(0deg, rgba(23, 18, 11, 0.16), rgba(23, 18, 11, 0.02));
  }

  .hero-shape {
    right: -42%;
    bottom: -12%;
    min-width: 420px;
    min-height: 220px;
  }

  h1 {
    font-size: clamp(2.42rem, 12.5vw, 4.1rem);
  }

  .hero-badges {
    display: grid;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

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

  .hero-card {
    box-shadow: 7px 7px 0 rgba(217, 54, 31, 0.78), var(--shadow);
  }

  .quick-highlights {
    margin-top: -30px;
  }

  .highlight-grid,
  .also-grid,
  .menu-grid,
  .menu-grid.compact {
    grid-template-columns: 1fr;
  }

  .lunch-points {
    grid-template-columns: 1fr;
  }

  .lunch-points span {
    min-height: 0;
  }

  .highlight-card {
    min-height: auto;
  }

  .category-title {
    display: grid;
    align-items: start;
    padding: 18px;
    background: var(--ink);
  }

  .category-title::after {
    display: none;
  }

  .category-title .btn {
    width: 100%;
  }

  .menu-heading {
    padding: 22px;
    box-shadow: 7px 7px 0 rgba(255, 196, 0, 0.72);
  }

  .menu-card {
    min-height: auto;
  }

  .menu-card-top {
    display: grid;
    gap: 8px;
  }

  .menu-card strong {
    width: fit-content;
    white-space: normal;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .map-card {
    min-height: 330px;
    box-shadow: 7px 7px 0 rgba(255, 196, 0, 0.82), var(--shadow);
  }

  .map-card iframe {
    min-height: 330px;
  }

  .location-section {
    background: var(--paper);
  }

  .location-list span {
    align-items: flex-start;
  }

  .time-pill {
    width: 100%;
    align-items: flex-start;
  }

  .lunch-photo-wrap::after {
    right: 10px;
  }

  .final-cta::before {
    background: repeating-linear-gradient(90deg, rgba(23, 18, 11, 0.06) 0 1px, transparent 1px 18px);
  }

  .final-cta::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .section-pad {
    padding: 58px 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero {
    padding-bottom: 58px;
  }

  .hero-card,
  .lunch-copy-card,
  .menu-heading,
  .contact-card,
  .footer-grid {
    padding: 20px;
  }

  .lunch-copy-card {
    border-left-width: 8px;
    box-shadow: 6px 6px 0 rgba(255, 196, 0, 0.55), var(--shadow);
  }

  .lunch-photo-wrap img {
    min-height: 360px;
  }

  .menu-category {
    padding: 12px;
  }

  .menu-card {
    padding: 18px;
  }

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

  .map-card,
  .map-card iframe {
    min-height: 300px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.36rem;
  }

  .brand-copy small {
    display: none;
  }

  .btn {
    padding-inline: 14px;
  }

  .section-copy h2,
  .section-heading h2,
  .location-copy h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: 2rem;
  }

}

@media (max-width: 360px) {
  :root {
    --container: min(100% - 18px, 1140px);
  }

  .site-header {
    width: calc(100% - 16px);
  }

  .brand-mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 2.22rem;
  }

  .btn {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 0.92rem;
  }

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

  .menu-card strong {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
