: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;
}

* {
  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: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 210px;
}

.navbar__logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 150px;
  height: 82px;
}

.navbar__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  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 {
  max-width: 820px;
  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.82rem;
  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: 0.8fr 1fr;
  gap: 1rem;
  align-items: end;
}

.image-stack img {
  width: 100%;
  min-height: 380px;
  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,
.review-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: 420px;
  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);
}

.reviews-carousel {
  position: relative;
  min-height: 360px;
}

.review-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  opacity: 0;
  transform: translateX(30px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

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

.review-card p {
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.stars {
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.review-controls {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.round-btn {
  width: 50px;
  height: 50px;
  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);
}

.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 img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

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

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

.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: 1.2fr 0.7fr 0.9fr 1fr;
  gap: 2rem;
  padding: 70px 0;
}

.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;
  border-radius: 20px;
  background: var(--white);
  padding: 0.45rem;
  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 {
  width: 132px;
  height: 74px;
}
  .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,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .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 {
  width: 112px;
  height: 64px;
}

  .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;
  }

  .reviews-carousel {
    min-height: 410px;
  }

  .review-card {
    position: relative;
    display: none;
  }

  .review-card.is-active {
    display: flex;
  }

  .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,
  .hours-list li {
    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;
  }
}
