:root {
  --yellow: #f6b900;
  --gold: #f2a900;
  --dark: #151515;
  --brown: #5a2b12;
  --white: #ffffff;
  --light: #f8f8f8;
  --charcoal: #202020;
  --ink: #26170f;
  --muted: #6f655f;
  --line: rgba(21, 21, 21, 0.12);
  --shadow: 0 18px 42px rgba(21, 21, 21, 0.14);
  --marker: "Permanent Marker", cursive;
  --body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

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

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

.section-gold {
  background:
    linear-gradient(135deg, rgba(246, 185, 0, 0.92), rgba(242, 169, 0, 0.96)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 34%);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2,
.split h2,
.location-copy h2,
.cta-panel h2 {
  margin: 0;
  font-family: var(--marker);
  font-size: clamp(2.25rem, 7vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.about-copy p,
.location-copy p,
.cta-panel p {
  color: var(--muted);
  margin: 14px 0 0;
}

.section-dark .section-heading p,
.section-dark .location-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 4px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--brown);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

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

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.78rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 21, 21, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
}

.brand img {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  object-fit: cover;
}

.brand .nav-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.brand span {
  max-width: 140px;
  font-size: 1rem;
  line-height: 1.05;
}

.nav-toggle {
  position: relative;
  z-index: 60;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--yellow);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: var(--dark);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

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

.nav-menu {
  position: fixed;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 96px 28px 36px;
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.98), rgba(90, 43, 18, 0.96)),
    var(--dark);
  color: var(--white);
  text-align: center;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.nav-menu.is-open {
  transform: translateX(0);
}

.nav-menu a:not(.btn) {
  font-size: 1.35rem;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100svh - 80px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 64px 0 48px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(246, 185, 0, 0.18) 0 16%, transparent 16% 28%, rgba(246, 185, 0, 0.1) 28% 36%, transparent 36%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 82px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  color: var(--yellow);
  font-family: var(--marker);
  font-size: clamp(4.15rem, 17vw, 9.6rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 7px 7px 0 var(--brown);
}

.hero-copy h2 {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(2rem, 8vw, 5rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-trust strong {
  margin-right: 4px;
  color: var(--yellow);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-image-wrap {
  position: relative;
  min-height: 420px;
}

.hero-image-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background: #111111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-decor-logo {
  position: relative;
  z-index: 50;
  display: block;
  width: 280px;
  max-width: 28vw;
  margin: 24px auto 0;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.45));
}

.truck-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.truck-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.truck-card-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--dark);
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stripe {
  position: absolute;
  height: 70px;
  border-radius: 6px;
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--brown);
}

.stripe-one {
  inset: 8% -18px auto 24%;
  transform: rotate(8deg);
}

.stripe-two {
  right: 12%;
  bottom: 5%;
  left: -20px;
  transform: rotate(-5deg);
}

.hero-delivery-apps {
  position: relative;
  z-index: 25;
  width: 100%;
  max-width: 520px;
  margin: 26px auto 0;
  text-align: center;
}

.hero-delivery-title {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.delivery-apps-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.delivery-app-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  overflow: visible;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.delivery-app-logo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.delivery-app-logo:hover,
.delivery-app-logo:focus-visible {
  transform: translateY(-4px) scale(1.04);
  filter: brightness(1.08);
}

.split {
  display: grid;
  gap: 22px;
  align-items: start;
}

.about-copy {
  max-width: 660px;
}

.feature-grid,
.featured-grid,
.review-cards {
  display: grid;
  gap: 18px;
}

.featured-grid {
  align-items: stretch;
}

.feature-card,
.menu-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.08);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--brown);
  font-family: var(--marker);
  font-size: 1.75rem;
  line-height: 1;
}

.feature-card h3,
.menu-body h3,
.review-card h3 {
  margin: 0;
  color: var(--dark);
  font-size: 1.15rem;
  line-height: 1.2;
}

.feature-card p,
.menu-body p,
.review-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.menu-card {
  overflow: hidden;
}

.featured .menu-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.menu-image {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.menu-image img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.badge {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--dark);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-body {
  padding: 20px;
}

.featured .menu-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.menu-tabs-wrap {
  display: grid;
  gap: 20px;
}

.menu-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.menu-tab {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.menu-tab:hover,
.menu-tab:focus-visible {
  transform: translateY(-1px);
}

.menu-tab.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
}

.menu-panel {
  display: grid;
  gap: 14px;
}

.menu-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--dark);
}

.menu-category-heading h3 {
  margin: 0;
  font-family: var(--marker);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
}

.menu-category-heading span {
  color: var(--muted);
  font-weight: 800;
}

.menu-item {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-item h4 {
  margin: 0;
  color: var(--dark);
  font-size: 1rem;
}

.menu-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.full-menu-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(21, 21, 21, 0.06);
}

.full-menu-thumb {
  width: 86px;
  height: 72px;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
}

.full-menu-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-menu-info {
  min-width: 0;
}

.full-menu-info h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.full-menu-info p {
  margin: 0;
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.location-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-list a,
.contact-list p {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-weight: 800;
}

.contact-list span {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-note {
  display: inline-flex;
  margin-top: 20px !important;
  padding: 12px 14px;
  border-left: 4px solid var(--yellow);
  background: rgba(246, 185, 0, 0.1);
  color: var(--white) !important;
  font-size: 0.92rem;
  font-weight: 700;
}

.map-card {
  overflow: hidden;
  min-height: 360px;
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--charcoal);
}

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

.gallery-marquee-section {
  padding: 90px 0;
  background: var(--white);
  overflow: hidden;
}

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

.gallery-marquee-heading {
  margin-bottom: 42px;
}

.gallery-marquee-heading .section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-marquee-heading h2 {
  margin: 0 0 14px;
  color: var(--dark);
  font-family: var(--marker);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.gallery-marquee-heading p {
  max-width: 680px;
  margin: 0;
  color: #666666;
  font-size: 1rem;
  line-height: 1.7;
}

.gallery-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-marquee-wrapper::before,
.gallery-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 3;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.gallery-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0));
}

.gallery-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), rgba(255, 255, 255, 0));
}

.gallery-marquee-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 26px;
}

.gallery-marquee-row:last-child {
  margin-bottom: 0;
}

.gallery-marquee-track {
  --gallery-gap: 24px;
  display: flex;
  width: max-content;
  will-change: transform;
}

.gallery-marquee-set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--gallery-gap);
  padding-right: var(--gallery-gap);
}

.gallery-marquee-item {
  flex: 0 0 420px;
  position: relative;
  width: 420px;
  height: 240px;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: #f3f3f3;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.gallery-marquee-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 450ms ease,
    filter 450ms ease;
}

.gallery-marquee-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 350ms ease;
}

.gallery-marquee-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.gallery-marquee-item:hover::after {
  background: rgba(0, 0, 0, 0.18);
}

.marquee-left {
  width: calc(100% + 184px);
  margin-left: -92px;
}

.marquee-left .gallery-marquee-track {
  animation: marqueeLeft 58.5s linear infinite;
}

.marquee-right .gallery-marquee-track {
  animation: marqueeRight 58.5s linear infinite;
}

.gallery-marquee-row:hover .gallery-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 992px) {
  .gallery-marquee-section {
    padding: 75px 0;
  }

  .hero-delivery-apps {
    max-width: 100%;
    margin-top: 24px;
  }

  .delivery-apps-row {
    gap: 16px;
  }

  .delivery-app-logo {
    width: 90px;
    height: 90px;
  }

  .gallery-marquee-item {
    flex: 0 0 340px;
    width: 340px;
    height: 210px;
  }
}

@media (max-width: 768px) {
  .full-menu-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .full-menu-thumb {
    width: 76px;
    height: 66px;
  }

}

@media (max-width: 576px) {
  .hero-visual,
  .hero-image-wrap,
  .hero-image-slider {
    min-height: 320px;
  }

  .delivery-apps-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .delivery-app-logo {
    width: 82px;
    height: 82px;
  }

  .hero-decor-logo {
    width: 150px;
    max-width: 50vw;
    margin-top: 18px;
  }

  .gallery-marquee-section {
    padding: 65px 0;
  }

  .gallery-marquee-wrapper::before,
  .gallery-marquee-wrapper::after {
    width: 50px;
  }

  .gallery-marquee-track {
    --gallery-gap: 16px;
  }

  .gallery-marquee-item {
    flex: 0 0 280px;
    width: 280px;
    height: 180px;
    border-radius: 18px;
  }

  .marquee-left {
    width: calc(100% + 96px);
    margin-left: -48px;
  }
}

.reviews-grid {
  display: grid;
  gap: 28px;
}

.rating {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-top: 16px;
}

.rating strong {
  font-size: 3rem;
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.review-card {
  padding: 22px;
}

.cta {
  padding-top: 0;
}

.cta-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 185, 0, 0.96), rgba(242, 169, 0, 0.92)),
    var(--yellow);
  box-shadow: var(--shadow);
}

.cta-panel p {
  color: rgba(38, 23, 15, 0.78);
}

.site-footer {
  padding: 48px 0 24px;
  background: var(--dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .footer-logo {
  width: 64px;
  height: 64px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: grid;
  gap: 6px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

@media (min-width: 640px) {
  .shell {
    width: min(1120px, calc(100% - 48px));
  }

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

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

  .menu-item {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

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

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

@media (max-width: 480px) {
  .full-menu-item {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .full-menu-thumb {
    width: 68px;
    height: 60px;
  }

  .full-menu-info h3 {
    font-size: 0.95rem;
  }

  .full-menu-info p {
    font-size: 0.88rem;
  }
}

@media (min-width: 900px) {
  .section {
    padding: 96px 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    background: transparent;
    text-align: left;
    transform: none;
  }

  .nav-menu a:not(.btn) {
    position: relative;
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
  }

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

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

  .hero {
    padding: 82px 0;
  }

  .hero-grid,
  .split,
  .location-grid,
  .reviews-grid,
  .cta-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location .map-card {
    margin-top: 190px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    column-gap: 48px;
  }

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

  .hero-visual {
    margin-left: 20px;
    min-height: 520px;
  }

  .hero-image-wrap {
    min-height: 520px;
  }

  .hero-image-slider {
    min-height: 520px;
  }

  .hero-decor-logo {
    position: absolute;
    top: 45px;
    left: 52%;
    width: 240px;
    max-width: 22vw;
    margin: 0;
    transform: translateX(-50%);
  }

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

  .cta-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 992px) {
  .location .map-card {
    margin-top: 32px;
  }

  .hero-decor-logo {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: 160px;
    max-width: 38vw;
    margin: 24px auto 0;
    transform: none;
    z-index: 50;
  }
}

@media (max-width: 576px) {
  .hero-decor-logo {
    width: 120px;
    max-width: 42vw;
    margin-top: 18px;
  }
}

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