@font-face {
  font-family: "Drafting Mono";
  src: url("/fonts/drafting/DraftingMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Drafting Mono";
  src: url("/fonts/drafting/DraftingMono-Bold.woff2") format("woff2");
  font-weight: 700 950;
  font-style: normal;
  font-display: swap;
}


:root {
  --orange: #f97316;
  --orange-dark: #c2410c;
  --orange-soft: #ffedd5;
  --cream: #fff7ed;
  --white: #ffffff;
  --ink: #1f1308;
  --muted: #6b5b4c;
  --line: rgba(31, 19, 8, 0.1);
  --shadow: 0 20px 70px rgba(31, 19, 8, 0.14);
  --shadow-soft: 0 12px 35px rgba(249, 115, 22, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --header-height: 126px;


  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-copy: Georgia, Cambria, "Times New Roman", Times, serif; 
  --font-display: "Drafting Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  z-index: 999;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

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

.narrow {
  width: min(100% - 40px, 880px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  color: var(--white);
  transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.08));
  opacity: 1;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.site-header.is-scrolled,
.site-header.is-solid,
.site-header:hover,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 35px rgba(31, 19, 8, 0.1);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::before,
.site-header.is-solid::before,
.site-header:hover::before,
.site-header.is-open::before {
  opacity: 0;
}

.quick-bar {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.84rem;
}

.site-header.is-scrolled .quick-bar,
.site-header.is-solid .quick-bar,
.site-header:hover .quick-bar,
.site-header.is-open .quick-bar {
  border-color: var(--line);
}

.quick-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  flex-wrap: wrap;
  opacity: 0.95;
}

.quick-bar i {
  color: var(--orange);
  margin-right: 0.35rem;
}

.navbar {
  position: relative;
  z-index: 2;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  width: auto;
}
.navbar__logo-wrap {
  display: grid;
  align-items: center;
  width: auto;
  height: 82px;
  flex: 0 0 auto;
}

.navbar__logo {
  grid-area: 1 / 1;
  position: static;
  width: auto;
  height: 100%;
  max-width: min(42vw, 190px);
  object-fit: contain;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.navbar__logo--white {
  opacity: 1;
}

.navbar__logo--dark {
  opacity: 0;
}

.site-header.is-scrolled .navbar__logo--white,
.site-header.is-solid .navbar__logo--white,
.site-header:hover .navbar__logo--white,
.site-header.is-open .navbar__logo--white {
  opacity: 0;
}

.site-header.is-scrolled .navbar__logo--dark,
.site-header.is-solid .navbar__logo--dark,
.site-header:hover .navbar__logo--dark,
.site-header.is-open .navbar__logo--dark {
  opacity: 1;
}

.navbar__brand:hover .navbar__logo {
  transform: scale(1.04);
}

.navbar__menu {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.navbar__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.navbar__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.2rem 0.95rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.94rem;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.navbar__link:hover,
.navbar__link.is-active {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled .icon-link,
.site-header.is-solid .icon-link,
.site-header:hover .icon-link,
.site-header.is-open .icon-link {
  background: var(--cream);
  border-color: var(--line);
}

.icon-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px) rotate(-7deg);
}

.navbar__toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem;
}

.navbar__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar__toggle span + span {
  margin-top: 6px;
}

.site-header.is-open .navbar__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .navbar__toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .navbar__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn--small {
  min-height: 42px;
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

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

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.btn--white {
  background: var(--white);
  color: var(--orange-dark);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__video,
.hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
}

.hero__fallback {
  background-size: cover;
  background-position: center;
  z-index: -5;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 65%, rgba(249, 115, 22, 0.26), transparent 36%),
    linear-gradient(90deg, rgba(22, 12, 4, 0.58) 0%, rgba(22, 12, 4, 0.52) 44%, rgba(22, 12, 4, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
}

.hero__content {
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 70px;
  max-width: var(--container);
}

.hero h1,
.page-hero h1,
.error-page h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-transform: uppercase;
}
.hero p {
  max-width: 880px;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
}

.hero__actions,
.hero__badges {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero__badges i,
.eyebrow i {
  color: var(--orange);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--orange-dark);
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.section {
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
}

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

.section--light {
  background:
    radial-gradient(circle at 20% 10%, rgba(249, 115, 22, 0.1), transparent 32%),
    var(--cream);
}

.section--orange-gradient {
  background:
    linear-gradient(110deg, rgba(124, 45, 18, 0.9), rgba(249, 115, 22, 0.76)),
    var(--bg) center/cover;
  color: var(--white);
  overflow: hidden;
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.section__center {
  text-align: center;
  max-width: 820px;
}

.section__heading {
  margin-bottom: 2.4rem;
}

.section__heading h2,
.split h2,
.section__center h2,
.contact-form h2,
.legal-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 5vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.section__heading p,
.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.text-on-dark p,
.text-on-dark .lead {
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--orange-dark);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 950;
}

.eyebrow--light {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.split--center {
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange-dark);
  font-weight: 950;
  margin-top: 1rem;
}

.text-link i {
  transition: transform 0.25s ease;
}

.text-link:hover i {
  transform: translateX(5px);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
}

.image-stack img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--cream);
  transition: transform 0.35s ease;
}

.image-stack img:first-child {
  transform: translateY(30px) rotate(-2deg);
}

.image-stack:hover img:first-child {
  transform: translateY(12px) rotate(-4deg) scale(1.03);
}

.image-stack:hover img:last-child {
  transform: rotate(2deg) scale(1.03);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 210px;
  overflow: hidden;
}

.gallery-strip__item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.gallery-strip__item span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--white);
  font-weight: 950;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.gallery-strip__item:hover img {
  transform: scale(1.12);
  opacity: 1;
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

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

.menu-card,
.menu-list-card,
.info-box,
.contact-form,
.faq-item,
.map-card,
.legal-section .narrow {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.menu-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.menu-card__image {
  min-height: 290px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card__image {
  transform: scale(1.04);
}

.menu-card__body {
  padding: 1.4rem;
}

.menu-card h3,
.feature-card h3,
.map-card h3,
.info-box h3,
.contact-card strong,
.menu-list-card h3 {
  margin: 0.5rem 0;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.menu-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.menu-card__bottom strong,
.menu-list-card strong,
.price-row strong {
  color: var(--orange-dark);
  font-size: 1.12rem;
}

.menu-card__bottom a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.76)), var(--bg) center/cover;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 1.4rem 1.4rem auto;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.35s ease, background 0.35s ease;
}

.feature-card span {
  position: relative;
  z-index: 1;
  font-weight: 950;
  color: var(--orange-soft);
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  max-width: 92%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.feature-card:hover::after {
  transform: scale(12);
  background: rgba(249, 115, 22, 0.2);
}

.map-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 10%, rgba(249, 115, 22, 0.18), transparent 30%),
    var(--white);
}

.map-card__pin {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.25);
  margin-bottom: 1rem;
}

.check-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 1.2rem 0 0;
}

.check-list li {
  margin: 0.6rem 0;
  font-weight: 750;
}

.check-list li::marker {
  color: var(--orange);
}

.check-list i {
  display: none;
}
.page-hero {
  min-height: 58svh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: var(--white);
  padding: calc(var(--header-height) + 100px) 0 80px;
  background: linear-gradient(90deg, rgba(22, 12, 4, 0.88), rgba(22, 12, 4, 0.26)), var(--bg) center/cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 18% 70%, rgba(249, 115, 22, 0.48), transparent 34%);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.15rem;
}

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

.menu-list-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-list-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.menu-list-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 20px;
  background: var(--cream);
}

.menu-list-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price-list {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.price-list--orange {
  background: var(--cream);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row i {
  color: var(--orange);
  margin-right: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  position: relative;
  min-height: 300px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.gallery-card:hover img {
  transform: scale(1.08);
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.lightbox figure {
  margin: 0;
  width: min(100%, 980px);
  text-align: center;
  color: var(--white);
}

.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.lightbox figcaption {
  margin-top: 1rem;
  font-weight: 950;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--orange-dark);
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  font-weight: 950;
  font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  color: var(--orange);
  transition: transform 0.25s ease;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.4rem 1.4rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateX(8px);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--orange);
  color: var(--white);
  flex: 0 0 auto;
}

.contact-card span {
  color: var(--muted);
  display: block;
  word-break: break-word;
}

.contact-form {
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 4vw, 2rem);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 850;
  margin-bottom: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  background: var(--cream);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.contact-form small {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
}

.form-note {
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-weight: 900;
  margin-bottom: 1rem;
}

.info-box {
  border-radius: var(--radius-xl);
  padding: clamp(1.4rem, 4vw, 2rem);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.55rem 0;
}

.hours-list--dark li {
  border-color: var(--line);
}

.hours-list strong {
  color: var(--orange);
}

.map-embed iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  filter: saturate(1.1) contrast(1.02);
}

.legal-section .narrow {
  border-radius: var(--radius-xl);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.legal-section h3 {
  margin-top: 2rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.legal-section a {
  color: var(--orange-dark);
  font-weight: 850;
}

.error-page {
  min-height: 70svh;
  display: grid;
  place-items: center;
  padding-top: calc(var(--header-height) + 80px);
}

.footer {
  position: relative;
  background: #160c04;
  color: var(--white);
  overflow: hidden;
}

.footer__flame {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.24), transparent 68%);
  top: -240px;
  right: -130px;
}

.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 70px 0;
  justify-content: space-between;
}

.footer h2,
.footer h3 {
  margin: 0 0 1rem;
  letter-spacing: -0.04em;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.76);
}

.footer a:hover {
  color: var(--orange-soft);
}

.footer__logo {
  width: auto;
  height: 82px;
  background: none;
  padding: 0;
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-inner {
  min-height: 56px;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 1060px) {
  .quick-bar {
    display: none;
  }

.navbar {
  min-height: 86px;
}
.navbar__logo-wrap {
      height: 74px;
}

  .navbar__logo {
    max-width: min(40vw, 170px);
  }
  .navbar__brand {
    min-width: 0;
  }

  .navbar__toggle {
    display: block;
  }

  .navbar__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-header.is-open .navbar__menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navbar__links {
    display: grid;
    justify-content: stretch;
  }

  .navbar__link {
    display: flex;
    justify-content: center;
  }

  .navbar__actions {
    justify-content: center;
  }

  .hero__content {
    padding-top: 120px;
  }

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

    .footer__grid {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
    .footer_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

      .footer__grid .socials{
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }
  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 86px;
  }

  .container,
  .narrow {
    width: min(100% - 28px, var(--container));
  }

  .navbar__brand-text {
    display: none;
  }

  
  .navbar__logo-wrap {
    height: 64px;
  }

    .navbar__logo {
    max-width: min(48vw, 145px);
  }

  .hero {
    min-height: 100svh;
  }

.hero h1,
.page-hero h1,
.error-page h1 {
  font-size: clamp(2rem, 10vw, 3.4rem);
  line-height: 1.02;
}

  .hero__actions .btn {
    width: 100%;
  }

  .split,
  .card-grid--3,
  .feature-cards,
  .gallery-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section__heading h2,
  .split h2,
  .section__center h2,
  .contact-form h2,
  .legal-section h2 {
    font-size: clamp(2.15rem, 12vw, 4.1rem);
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:first-child {
    min-height: 260px;
    transform: none;
  }

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

  .gallery-strip__item img {
    min-height: 170px;
  }

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

  .menu-list-card img {
    min-height: 240px;
  }

  .feature-card {
    min-height: 320px;
  }

  .lightbox__nav {
    top: auto;
    bottom: 1rem;
  }

  .lightbox__nav--prev {
    left: calc(50% - 66px);
  }

  .lightbox__nav--next {
    right: calc(50% - 66px);
  }

  .footer__bottom-inner {
    padding: 1rem 0;
  }
}

@media (max-width: 460px) {
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .hero__badges span {
    width: 100%;
    justify-content: center;
  }

  .price-row,
  .menu-list-card__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }
}

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

  .parallax {
    background-attachment: scroll;
  }
}
.reviews-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(249, 115, 22, 0.12), transparent 34%),
    linear-gradient(180deg, var(--white), var(--cream));
  overflow: hidden;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.reviews-intro {
  max-width: 880px;
  text-align: center;
  margin-inline: auto;
}

.reviews-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 5vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.reviews-intro .lead {
  max-width: 760px;
  margin-inline: auto;
}

.reviews-summary {
  width: fit-content;
  max-width: 100%;
  margin: 1.6rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.reviews-summary__stars,
.stars {
  color: var(--orange);
  display: inline-flex;
  gap: 0.18rem;
}

.reviews-summary strong {
  color: var(--orange-dark);
  font-weight: 950;
}

.reviews-summary span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.reviews-carousel {
  width: min(100%, 920px);
  margin-inline: auto;
  overflow: hidden;
}

.reviews-track {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.review-card {
  grid-area: 1 / 1;
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2.4rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 237, 213, 0.72), rgba(255, 255, 255, 0.96)),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(28px) scale(0.98);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: -0.45rem;
  right: 1.2rem;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1;
  font-weight: 950;
  color: rgba(249, 115, 22, 0.12);
  pointer-events: none;
}

.review-card.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.review-card__rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 34px;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 950;
  font-size: 0.9rem;
}

.review-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  line-height: 1.72;
  letter-spacing: -0.018em;
  overflow-wrap: anywhere;
}

.review-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.4rem;
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-weight: 950;
  border: 1px solid rgba(249, 115, 22, 0.18);
}

.review-card__footer strong {
  color: var(--ink);
  font-weight: 950;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.review-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.review-dot {
  width: 10px;
  height: 10px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(31, 19, 8, 0.18);
  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.review-dot.is-active {
  width: 30px;
  background: var(--orange);
}

.review-dot:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
}

.round-btn {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--orange-dark);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.round-btn:hover {
  transform: translateY(-3px);
  background: var(--orange);
  color: var(--white);
}

@media (max-width: 760px) {
  .reviews-intro {
    text-align: left;
  }

  .reviews-summary {
    width: 100%;
    justify-content: flex-start;
    border-radius: var(--radius-lg);
  }

  .reviews-carousel {
    width: 100%;
  }

  .review-card {
    border-radius: var(--radius-lg);
    transform: translateX(18px) scale(0.98);
  }

  .review-card.is-active {
    transform: translateX(0) scale(1);
  }

  .review-card p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .review-controls {
    gap: 0.7rem;
  }

  .round-btn {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 460px) {
  .reviews-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .review-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-controls {
    justify-content: space-between;
  }

  .review-dots {
    max-width: 170px;
  }
}



.grill-video-section {
  overflow: hidden;
}

.grill-video-card {
  position: relative;
  width: min(100%, 430px);
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  border-radius: calc(var(--radius-xl) + 10px);
  padding: 0.75rem;
  background:
    linear-gradient(145deg, rgba(249, 115, 22, 0.28), rgba(255, 255, 255, 0.9)),
    var(--white);
  border: 1px solid rgba(249, 115, 22, 0.18);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.grill-video-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 62%);
  pointer-events: none;
}

.grill-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-xl);
  background: var(--ink);
}

.grill-video-card__badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--orange-dark);
  font-weight: 950;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.grill-video-card__badge i {
  color: var(--orange);
}

@media (max-width: 760px) {
  .grill-video-section .split {
    gap: 2rem;
  }

  .grill-video-card {
    width: min(100%, 340px);
    border-radius: var(--radius-xl);
    padding: 0.55rem;
  }

  .grill-video {
    border-radius: var(--radius-lg);
  }

  .grill-video-card__badge {
    left: 1rem;
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .grill-video {
    animation: none;
  }
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}



.menu-photo-list {
  display: grid;
  gap: 1rem;
}

.menu-photo-list--orange .menu-photo-card {
  background:
    radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.12), transparent 34%),
    var(--cream);
}

.menu-photo-card {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 1rem;
  align-items: stretch;
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.menu-photo-card img {
  width: 100%;
  height: 100%;
  height: 125px;
  object-fit: cover;
  border-radius: 18px;
  background: var(--cream);
}

.menu-photo-card__body {
  display: flex;
  align-items: center;
}

.menu-photo-card__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-photo-card__top span {
  font-weight: 900;
  line-height: 1.25;
}

.menu-photo-card__top i {
  color: var(--orange);
  margin-right: 0.45rem;
}

.menu-photo-card__top strong {
  flex: 0 0 auto;
  color: var(--orange-dark);
  font-size: 1.12rem;
}

@media (max-width: 760px) {
  .menu-photo-card {
    grid-template-columns: 1fr;
  }

  .menu-photo-card img {
    height: 220px;
  }

  .menu-photo-card__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
}



.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-card:hover img,
.gallery-card:hover video {
  transform: scale(1.08);
  opacity: 1;
}

.gallery-card span {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  text-align: left;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.gallery-card small {
  color: var(--orange-soft);
  font-weight: 900;
}

.gallery-card em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.35;
}

.gallery-card__play {
  position: absolute;
  inset: 1rem 1rem auto auto;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--orange-dark);
  box-shadow: var(--shadow-soft);
}

.gallery-card__play i {
  transform: translateX(2px);
}

.lightbox img,
.lightbox__video {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: var(--ink);
}

.lightbox [hidden] {
  display: none;
}

.lightbox figcaption {
  margin-top: 1rem;
  display: grid;
  gap: 0.25rem;
  font-weight: 950;
}

.lightbox figcaption span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

@media (max-width: 760px) {
  .gallery-card img,
  .gallery-card video {
    min-height: 280px;
  }
}

@media (max-width: 460px) {
  .gallery-card img,
  .gallery-card video {
    min-height: 250px;
  }
}



.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 300;
  padding: 0 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 20%, rgba(249, 115, 22, 0.22), transparent 34%),
    #160c04;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1.05rem;
  font-weight: 950;
}

.cookie-banner__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  min-height: 44px;
  padding: 0.65rem 1rem;
  white-space: nowrap;
}

.cookie-banner .btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cookie-banner .btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
}

@media (max-width: 760px) {
  .cookie-banner {
    bottom: 0.75rem;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }

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

  .cookie-banner .btn {
    width: 100%;
  }
}




@media (max-width: 1060px) {
  .site-header.is-open {
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: 0 14px 40px rgba(31, 19, 8, 0.14);
    backdrop-filter: blur(18px);
  }

  .navbar {
    min-height: 86px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 1rem;
  }

  .navbar__brand {
    position: relative;
    z-index: 4;
  }

  .navbar__toggle {
    position: relative;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0.8rem;
    border-radius: 16px;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.28);
  }

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

  .navbar__toggle span {
    width: 22px;
  }

  .navbar__menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-height: calc(100dvh - 115px);
    overflow-y: auto;
    padding: 1rem;
    border-radius: 28px;
    background:
      radial-gradient(circle at 12% 0%, rgba(249, 115, 22, 0.16), transparent 34%),
      rgba(255, 255, 255, 0.98);
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .site-header.is-open .navbar__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .navbar__links {
    display: grid;
    gap: 0.45rem;
    width: 100%;
  }

  .navbar__links li {
    width: 100%;
  }

  .navbar__link {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: var(--cream);
    color: var(--ink);
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(31, 19, 8, 0.04);
  }

  .navbar__link::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--orange);
    font-size: 0.85rem;
    transition: transform 0.25s ease;
  }

  .navbar__link:hover,
  .navbar__link.is-active {
    background: var(--orange);
    color: var(--white);
    transform: none;
  }

  .navbar__link:hover::after,
  .navbar__link.is-active::after {
    color: var(--white);
    transform: translateX(4px);
  }

  .navbar__actions {
    width: 100%;
    justify-content: stretch;
    padding-top: 0.25rem;
  }

  .navbar__actions .btn {
    width: 100%;
    min-height: 54px;
    border-radius: 18px;
    font-size: 1rem;
  }

}



@media (max-width: 760px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .menu-list-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
  }

  .menu-list-card img {
    width: 100%;
    height: 240px;
    min-height: 0;
    object-fit: cover;
    border-radius: 0;
    flex: 0 0 auto;
  }

  .menu-list-card > div {
    position: relative;
    z-index: 2;
    padding: 1rem;
    background: var(--white);
  }

  .menu-list-card__top {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .menu-list-card h3 {
    margin-top: 0.75rem;
  }

  .menu-list-card p {
    margin-bottom: 0;
    color: var(--muted);
  }
}

@media (max-width: 460px) {
  .menu-list-card img {
    height: 220px;
  }

  .menu-list-card__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
}



body,
button,
input,
textarea {
  font-family: var(--font-body);
}

h1,
h2,
h3,
.hero h1,
.page-hero h1,
.error-page h1,
.section__heading h2,
.split h2,
.section__center h2,
.contact-form h2,
.legal-section h2,
.reviews-intro h2,
.menu-card h3,
.feature-card h3,
.map-card h3,
.info-box h3,
.menu-list-card h3,
.legal-section h3,
.footer h2,
.footer h3 {
  font-family: var(--font-display);
}

p,
li,
.lead,
.hero p,
.page-hero p,
.section__heading p,
.text-on-dark p,
.text-on-dark .lead,
.faq-item p,
.review-card p,
.cookie-banner__text p,
.footer p,
.footer li,
.menu-list-card p,
.contact-card span,
.contact-form small,
.gallery-card em,
.lightbox figcaption span {
  font-family: var(--font-copy);
}

.navbar__link,
.btn,
.eyebrow,
.pill,
.hero__badges span,
.gallery-strip__item span,
.feature-card span,
.menu-card__bottom strong,
.menu-list-card strong,
.price-row strong,
.menu-photo-card__top strong,
.reviews-summary strong,
.reviews-summary span,
.review-card__rating,
.review-card__avatar,
.review-card__footer strong,
.faq-item summary,
.grill-video-card__badge,
.cookie-banner__text strong,
.quick-bar {
  font-family: var(--font-display);
}



.hero h1,
.page-hero h1,
.error-page h1 {
  font-size: clamp(2rem, 4.4vw, 4.5rem);
}

.section__heading h2,
.split h2,
.section__center h2,
.contact-form h2,
.legal-section h2,
.reviews-intro h2 {
  font-size: clamp(2rem, 4.4vw, 4.6rem);
}

.menu-card h3,
.feature-card h3,
.map-card h3,
.info-box h3,
.menu-list-card h3,
.legal-section h3,
.footer h3 {
  font-size: clamp(1.25rem, 2.2vw, 2.1rem);
}

@media (max-width: 760px) {
  .hero h1,
  .page-hero h1,
  .error-page h1 {
    font-size: clamp(1.8rem, 8.5vw, 3rem);
  }

  .section__heading h2,
  .split h2,
  .section__center h2,
  .contact-form h2,
  .legal-section h2,
  .reviews-intro h2 {
    font-size: clamp(1.75rem, 8.5vw, 3.2rem);
  }
}


p.lead,
.lead, span, strong, .contact-form label,  .contact-form input  {
  font-family: var(--font-copy);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  font-weight: 400;
}

.form-note {
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.form-note--success {
  background: #ecfdf3;
  color: #166534;
}

.form-note--error {
  background: #fef2f2;
  color: #991b1b;
}