:root {
  --bg: #fff9f0;
  --bg-soft: #f7f0e4;
  --surface: rgba(10, 10, 10, 0.94);
  --surface-2: #171717;
  --card: #fffdf8;
  --text: #0a0a0a;
  --text-soft: #2e2d2c;
  --text-light: #fff9f0;
  --accent: #ee1c25;
  --gold-1: #dc9501;
  --gold-2: #feb835;
  --gold-3: #f6c663;
  --border: rgba(10, 10, 10, 0.1);
  --shadow: 0 10px 20px rgba(238, 28, 37, 0.1);
  --radius: 0;
  --container: 1180px;
  --gradient-brand: linear-gradient(90deg, var(--gold-1) 0%, var(--gold-2) 43%, var(--gold-3) 99%);
  --gradient-dark: linear-gradient(135deg, rgba(10, 10, 10, 0.96), rgba(46, 45, 44, 0.92));
  --gradient-page:
    radial-gradient(circle at top left, rgba(254, 184, 53, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(238, 28, 37, 0.08), transparent 22%),
    linear-gradient(180deg, #fffcf6 0%, var(--bg) 100%);

  /* Type scale */
  --step--1: clamp(0.875rem, 0.84rem + 0.12vw, 0.95rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.08rem + 0.5vw, 1.4rem);
  --step-2: clamp(1.44rem, 1.22rem + 0.9vw, 1.8rem);
  --step-3: clamp(1.728rem, 1.38rem + 1.45vw, 2.35rem);
  --step-4: clamp(2.074rem, 1.56rem + 2.14vw, 3.05rem);
  --step-5: clamp(2.488rem, 1.74rem + 3.1vw, 4rem);
  --step-6: clamp(2.986rem, 1.9rem + 4.5vw, 5.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--gradient-page);
  font-family: "Montserrat", sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.is-loading .site-logo img {
  opacity: 0;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 0.95;
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--text);
}

h1 {
  font-size: var(--step-6);
}

h2 {
  font-size: var(--step-5);
}

h3 {
  font-size: var(--step-3);
}

h4 {
  font-size: var(--step-2);
}

small,
.text-small {
  font-size: var(--step--1);
}

.text-body {
  font-size: var(--step-0);
}

.text-lead {
  font-size: var(--step-1);
}

.text-subheading {
  font-size: var(--step-1);
  color: var(--text-soft);
}

ul {
  margin: 0;
  padding-left: 1.25rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 820px);
}

.site-shell {
  min-height: 100vh;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.site-preloader__layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 249, 240, 0.18), transparent 24%),
    linear-gradient(135deg, #d88f08 0%, #edae23 48%, #f6c663 100%);
  opacity: 1;
  transform: translateY(0);
  transition: transform 1200ms ease, opacity 520ms ease, visibility 520ms ease;
}

.site-preloader.is-sliding {
}

.site-preloader.is-sliding .site-preloader__layer {
  transform: translateY(-100%);
}

.site-preloader__inner {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.site-preloader__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: clamp(120px, 12vw, 180px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transform-origin: center center;
  transition: transform 1100ms ease, height 1100ms ease, opacity 520ms ease;
}

.site-preloader.is-entrance .site-preloader__logo {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  border-bottom: 0;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header .container {
  width: min(100%, 94vw);
}

.site-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.6rem clamp(2rem, 4vw, 4rem) 0 clamp(1rem, 2vw, 1.5rem);
  transition: padding 180ms ease;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  margin-left: 0.75rem;
}

.site-logo img {
  width: auto;
  height: clamp(112px, 10vw, 146px);
  opacity: 1;
  transition: height 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 240, 0.9);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
}

.site-header.is-scrolled .site-header__inner {
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.site-header.is-scrolled .site-logo img {
  height: 64px;
}

.site-header.is-scrolled .site-nav {
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  flex: 1 1 auto;
}

.menu,
.footer-menu {
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu a,
.footer-menu a {
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu a {
  position: relative;
  color: var(--text);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.menu a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.35rem;
  border-radius: 0;
  border: 1px solid transparent;
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.header-cta,
.button--primary {
  color: var(--text-light);
  background: var(--gradient-brand);
}

.header-cta {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.button--accent {
  color: #fff;
  background: var(--accent);
}

.button--ghost {
  border-color: rgba(255, 249, 240, 0.22);
  color: var(--text-light);
  background: transparent;
}

.button--outline-dark {
  color: var(--text);
  background: transparent;
  border-color: rgba(10, 10, 10, 0.28);
}

.button__icon {
  transition: filter 220ms ease, opacity 220ms ease;
}

.header-cta:hover,
.button--accent:hover {
  background: #c9151d;
  border-color: #c9151d;
}

.button--outline-dark:hover {
  color: #fff;
  background: #0a0a0a;
  border-color: #0a0a0a;
}

.button--outline-dark:hover .button__icon {
  filter: brightness(0) invert(1);
}

.quick-action__link {
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.quick-action__link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 260ms ease, opacity 220ms ease, background-color 220ms ease;
}

.nav-toggle.is-active {
  position: relative;
  z-index: 80;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav__eyebrow,
.site-nav__contact {
  display: none;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  width: 100%;
}

.site-nav__footer {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(255, 249, 240, 0.28), transparent 24%),
    linear-gradient(135deg, #eda40f 0%, #f3b534 45%, #f6c663 100%);
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/noise-preload.png");
  background-repeat: repeat;
  opacity: 0.3;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: block;
  min-height: 100vh;
  width: min(100%, 94vw);
  margin: 0 auto;
}

.info-card,
.post-card,
.feature-card,
.entry-single,
.footer-widget {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 76vw);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 4vw, 4.5rem) clamp(2rem, 3.5vw, 4rem);
  padding-top: 6.5rem;
  padding-bottom: 4rem;
  padding-left: clamp(0.5rem, 1vw, 1rem);
  background: transparent;
  color: var(--text);
  box-shadow: none;
  border-radius: 0;
}

.eyebrow,
.section-label,
.footer-kicker,
.post-card__meta,
.feature-card__meta {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero h1 {
  max-width: 14.5ch;
  font-size: clamp(3.8rem, 4.8vw, 5.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero__text {
  max-width: 42ch;
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  color: var(--text);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero__actions .button {
  width: 220px;
  justify-content: center;
  gap: 0.7rem;
}

.button__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

.hero__visual {
  position: absolute;
  top: 50%;
  right: clamp(-18.5rem, -9.5vw, -10.5rem);
  z-index: 1;
  width: clamp(900px, 64vw, 1380px);
  min-height: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  pointer-events: none;
}

.hero__image {
  width: 100%;
  max-height: min(89vh, 55vw);
  object-fit: contain;
  object-position: right center;
}

.home-quick-actions {
  position: relative;
  z-index: 3;
  margin-top: -6.25rem;
}

.home-quick-actions .container {
  width: min(100%, 94vw);
}

.quick-actions-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.12);
  margin: 0 auto;
  width: min(100%, 56vw);
}

.quick-action {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  min-height: 150px;
  padding: 2rem 1.5rem 1.4rem;
}

.quick-action + .quick-action {
  border-left: 0;
}

.quick-action + .quick-action::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 1px;
  background: rgba(10, 10, 10, 0.08);
}

.quick-action__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.quick-action__text {
  max-width: 20ch;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--text-soft);
}

.quick-action__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 32px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(238, 28, 37, 0.45);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-slider {
  padding-top: 5rem;
}

.menu-slider .container {
  width: min(100%, 94vw);
}

.menu-slider__intro {
  margin: 4.5rem auto 2.25rem;
  text-align: center;
}

.menu-slider__intro h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(2.4rem, 3.4vw, 3.5rem);
}

.menu-slider__intro p {
  max-width: 58ch;
  margin: 0 auto;
}

.menu-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-carousel__viewport {
  width: 100%;
  padding: 1.25rem;
  margin: -1.25rem;
  overflow: hidden;
}

.menu-carousel__track {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: transform 360ms ease;
  will-change: transform;
}

.menu-card {
  flex: 0 0 calc((100% - 3.75rem) / 4);
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.25rem;
  transition: background-color 420ms ease;
}

.menu-card__hover-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 420ms ease, transform 520ms ease;
}

.menu-card__image {
  display: block;
  position: relative;
  z-index: 0;
  height: 290px;
  overflow: hidden;
  background: #f3f0eb;
  transition: transform 520ms ease, opacity 520ms ease;
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 420ms ease;
}

.menu-card__content {
  position: relative;
  z-index: 3;
  min-height: 0;
  padding: 0.85rem 0 0;
  transition: opacity 280ms ease;
}

.menu-card__content h3 {
  margin-bottom: 0.25rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
  transition: color 320ms ease, transform 420ms ease;
}

.menu-card__price {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.menu-card__hover-content {
  position: absolute;
  inset: 1.75rem 1.75rem 1.75rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  color: #fff;
  transform: translateY(10px);
  transition: opacity 320ms ease, transform 420ms ease;
}

.menu-card__hover-content h3 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
}

.menu-card__hover-content .menu-card__description {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.35;
}

.menu-card__hover-content .menu-card__price {
  margin: 0;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 700;
}

.menu-card__cta {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.85rem 1.25rem;
  background: #f8b61a;
  color: #0a0a0a;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease;
}

.menu-card__cta:hover {
  background: #df9f12;
}

.menu-card--empty {
  flex-basis: 100%;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(164, 27, 29, 0.84);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.menu-card:hover::before,
.menu-card:hover::after {
  opacity: 1;
}

.menu-card:hover {
  background: #a41b1d;
}

.menu-card:hover .menu-card__hover-bg {
  opacity: 1;
  transform: scale(1);
}

.menu-card:hover .menu-card__image {
  transform: translateY(calc(-100% - 1.25rem));
  opacity: 0;
}

.menu-card:hover .menu-card__image img {
  transform: scale(1.02);
  filter: saturate(0.9);
}

.menu-card:hover .menu-card__content {
  opacity: 0;
}

.menu-card:hover .menu-card__hover-content {
  opacity: 1;
  transform: translateY(0);
}

.menu-carousel__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(238, 28, 37, 0.4);
  background: #fff;
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, opacity 220ms ease;
}

.menu-carousel__nav img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
  transition: filter 220ms ease;
}

.menu-carousel__nav--prev img {
  transform: rotate(180deg);
}

.menu-carousel__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.menu-carousel__nav:hover img {
  filter: brightness(0) invert(1);
}

.menu-carousel__nav[disabled] {
  opacity: 0.35;
  cursor: default;
}

.partners-strip {
  padding-top: 2rem;
}

.partners-strip .container {
  width: min(100%, 94vw);
}

.partners-strip__inner {
  text-align: center;
}

.partners-strip__inner h2 {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.partners-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.35rem;
  align-items: start;
  justify-items: center;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.partner-item img {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.partner-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.promo-video {
  padding-top: 3rem;
}

.promo-video .container {
  width: 100%;
}

.promo-video__frame {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  width: 100%;
  padding: 1rem;
}

.promo-video__frame::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.75);
  pointer-events: none;
}

.promo-video__media,
.promo-video__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.promo-video__media {
  object-fit: cover;
}

.promo-video__overlay {
  z-index: 1;
  background: rgba(94, 11, 14, 0.68);
}

.promo-video__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.promo-video__eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  padding-bottom: 0.9rem;
}

.promo-video__eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #f8b61a;
}

.promo-video__content h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.promo-video__copy {
  max-width: 64ch;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.promo-video__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.promo-video__cta .button__icon {
  filter: brightness(0) invert(1);
}

.promo-video__cta:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

.promo-video__cta:hover .button__icon {
  filter: brightness(0) invert(1);
}

.tradition-story {
  padding-top: 3rem;
}

.tradition-story .container {
  width: min(100%, 94vw);
}

.tradition-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.tradition-story__media img {
  width: 100%;
  height: auto;
}

.tradition-story__content h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 3.4vw, 3.5rem);
  white-space: nowrap;
}

.tradition-story__content h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 2px;
  margin-top: 1.1rem;
  background: #f8b61a;
}

.tradition-story__content p {
  max-width: 100%;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.65;
}

.testimonials-slider {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.testimonials-slider .container {
  width: min(100%, 94vw);
}

.testimonials-slider__intro {
  margin-bottom: 2rem;
  text-align: center;
}

.testimonials-slider__intro h2 {
  font-size: clamp(2.4rem, 3.4vw, 3.5rem);
}

.testimonials-carousel {
  position: relative;
  padding: 0 2.75rem;
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.testimonials-carousel .menu-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.testimonials-carousel .menu-carousel__nav--prev {
  left: -0.25rem;
}

.testimonials-carousel .menu-carousel__nav--next {
  right: -0.25rem;
}

.testimonials-carousel .menu-carousel__track {
  align-items: stretch;
}

.testimonials-carousel .menu-carousel__viewport {
  padding: 1.25rem 0;
  margin: -1.25rem 0;
  overflow: hidden;
}

.testimonial-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 188px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem 1rem 0.9rem;
}

.testimonial-card__top {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.testimonial-card__avatar {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 999px;
  flex: 0 0 38px;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__quote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--text-soft);
}

.testimonial-card__meta {
  padding-left: calc(38px + 0.9rem);
  margin-top: 0.35rem;
  text-align: right;
}

.testimonial-card__meta h3 {
  margin-bottom: 0.2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.testimonial-card__meta p {
  margin: 0;
  font-size: 0.88rem;
}

.testimonial-card--empty {
  flex-basis: 100%;
}

.section {
  padding: 2rem 0 4rem;
}

.section--dark {
  background: linear-gradient(180deg, var(--surface-2) 0%, #0a0a0a 100%);
  color: var(--text-light);
}

.section-heading,
.story__grid,
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.section-heading h2,
.story__grid h2,
.entry-header h1,
.error-page h1,
.archive h1 {
  font-size: var(--step-5);
}

.story__text,
.entry-content,
.site-footer p {
  font-size: var(--step-0);
}

.feature-grid,
.cards-3,
.post-list {
  display: grid;
  gap: 1.5rem;
}

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

.post-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card,
.post-card,
.info-card,
.entry-single {
  overflow: hidden;
  background: var(--card);
}

.section--dark .feature-card {
  background: rgba(255, 249, 240, 0.06);
  border: 1px solid rgba(246, 198, 99, 0.14);
}

.feature-card__image img,
.post-card__image img,
.entry-thumbnail img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-card__content,
.post-card__content,
.info-card,
.entry-single {
  padding: 1.5rem;
}

.feature-card h3,
.post-card h2,
.info-card h3 {
  font-size: var(--step-3);
}

.section--dark .feature-card h3,
.section--dark .feature-card p,
.section--dark .feature-card a {
  color: var(--text-light);
}

.text-link {
  font-weight: 700;
  color: var(--accent);
}

.entry-single {
  padding: clamp(1.5rem, 3vw, 3rem);
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 2rem;
}

.entry-content a {
  color: var(--accent);
  text-decoration: underline;
}

.site-footer {
  color: var(--text);
  background: linear-gradient(135deg, #eba50d 0%, #f3b534 45%, #f6c663 100%);
  padding: 3.5rem 0 0;
}

.site-footer .container {
  width: min(100%, 94vw);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(180px, 0.55fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
}

.site-footer__col h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.7rem, 2vw, 2.35rem);
}

.site-footer__col p,
.site-footer__col a {
  color: var(--text);
}

.site-footer__actions .button--accent {
  color: #fff;
}

.site-footer__actions .button--outline-dark {
  color: var(--text);
}

.site-footer__col--contact p {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.site-footer__contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.site-footer__contact-line img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 20px;
  margin-top: 0.15rem;
}

.site-footer__hours {
  margin-top: 1.5rem;
}

.site-footer__hours h3 {
  margin-bottom: 0.7rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__hours p {
  margin-bottom: 0.35rem;
}

.site-footer__col--nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-footer .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.site-footer .footer-menu a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0a0a0a;
}

.site-footer__social a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.site-footer__col--cta p {
  max-width: 34ch;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__actions .button {
  width: 220px;
  justify-content: center;
  gap: 0.7rem;
}

.site-footer__bottom {
  width: 100%;
  margin-top: 0;
  display: flex;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 249, 240, 0.52);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(10, 10, 10, 0.58);
}

.site-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.site-footer__legal a {
  font-size: 0.9rem;
  color: var(--accent);
}

.error-page {
  text-align: center;
}

.pagination {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.button--outline-light {
  border-color: rgba(255, 249, 240, 0.72);
  color: #fff;
}

.button--outline-light .button__icon {
  filter: brightness(0) invert(1);
}

.button--outline-light:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

.menu-page {
  padding-top: 0;
}

.menu-page__hero {
  padding: 0;
  min-height: 0;
}

.menu-page__body .container {
  width: min(100%, 94vw);
}

.menu-page__hero-panel {
  min-height: clamp(340px, 80vh, 640px);
  background:
    radial-gradient(circle at top right, rgba(255, 249, 240, 0.28), transparent 24%),
    linear-gradient(135deg, #eda40f 0%, #f3b534 45%, #f6c663 100%);
}

.menu-page__hero-panel::before {
  opacity: 0.3;
}

.menu-page__hero-panel::before,
.menu-page__hero-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
}

.menu-page__hero-panel::before {
  inset: 0;
  z-index: 0;
  background-image: url("../images/noise-preload.png");
  background-repeat: repeat;
}

.menu-page__hero-panel::after {
  top: auto;
  right: clamp(4%, 8vw, 10%);
  bottom: 10%;
  width: clamp(220px, 26vw, 380px);
  height: clamp(220px, 26vw, 380px);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 50%;
}

.menu-page__hero-grid {
  display: flex;
  align-items: stretch;
  width: min(100%, 94vw);
  min-height: clamp(340px, 80vh, 640px);
}

.menu-page__hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 76vw);
  min-height: clamp(340px, 80vh, 640px);
  max-width: 760px;
  margin: 0 auto;
  padding-top: clamp(7.5rem, 10vw, 9rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
  text-align: center;
  align-items: center;
  justify-content: center;
}

.menu-page__eyebrow {
  margin: 0 0 1rem;
}

.menu-page__hero h1 {
  margin-bottom: 1rem;
  max-width: 8ch;
  color: var(--text);
  font-size: clamp(3.4rem, 5vw, 5.2rem);
  line-height: 1.02;
}

.menu-page__lead {
  max-width: 42ch;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
}

.menu-page__hero-cta {
  width: 220px;
  margin-top: 1.75rem;
}

.about-page__hero-inner {
  width: min(100%, 90vw);
  max-width: 1120px;
}

.about-page__hero .about-page__hero-title {
  max-width: 13ch;
}

.about-page__hero-copy {
  max-width: 72ch;
}

.about-page__hero-copy--short {
  max-width: 60ch;
}

.about-page__hero-copy--emphasis {
  max-width: 64ch;
}

.tradition-story__content .about-page__story-title {
  max-width: 540px;
  white-space: normal;
  text-wrap: balance;
}

.menu-page__body {
  padding-top: 3rem;
}

.menu-page__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1rem;
  margin-bottom: 3rem;
}

.menu-page__category-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  padding-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
  cursor: pointer;
}

.menu-page__category-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.menu-page__category-link:hover::after {
  transform: scaleX(1);
}

.menu-page__category-link.is-active {
  color: var(--text);
}

.menu-page__category-link.is-active::after {
  transform: scaleX(1);
}

.menu-page__sections {
  display: grid;
  gap: 3.5rem;
}

.menu-page__results {
  position: relative;
}

.menu-page__category-section {
  scroll-margin-top: 7rem;
}

.menu-page__results > .menu-page__category-section + .menu-page__category-section {
  margin-top: 4rem;
}

.menu-page__category-head {
  margin-bottom: 1.6rem;
}

.menu-page__category-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.85rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(238, 28, 37, 0.18);
  background: rgba(255, 249, 240, 0.88);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-page__category-head h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.menu-page__category-head p {
  max-width: 60ch;
  margin: 0;
  color: var(--text-soft);
}

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

.menu-page-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.menu-page-card--skeleton {
  pointer-events: none;
}

.menu-page-card__image {
  position: relative;
  aspect-ratio: 0.92;
  background: #efe6d8;
}

.menu-page-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-page-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.7rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-page-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.15rem;
}

.menu-page-card__content h3 {
  margin: 0;
  font-family: "Georgia", serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.menu-page-card__description {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.menu-page-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: auto;
}

.menu-page-card__price {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
  color: #0a0a0a;
}

.menu-page-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(238, 28, 37, 0.35);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.menu-page-card__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.menu-page-card__image--skeleton,
.menu-page-card__line {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(239, 230, 216, 0.85) 0%, rgba(255, 249, 240, 0.95) 50%, rgba(239, 230, 216, 0.85) 100%);
  background-size: 200% 100%;
  animation: menu-card-skeleton 1.2s ease-in-out infinite;
}

.menu-page-card__line {
  display: block;
  height: 0.95rem;
  border-radius: 999px;
}

.menu-page-card__line--heading {
  width: min(220px, 42%);
  height: 2.4rem;
  margin-bottom: 0.85rem;
}

.menu-page-card__line--title {
  width: 74%;
  height: 1.4rem;
  margin-bottom: 0.9rem;
}

.menu-page-card__line--price {
  width: 28%;
  margin-bottom: 1rem;
}

.menu-page-card__line--copy {
  width: 88%;
  margin-bottom: 0.65rem;
}

.menu-page-card__line--copy-short {
  width: 56%;
}

.menu-page__category-head--skeleton {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@keyframes menu-card-skeleton {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.menu-page__empty {
  padding: 4rem 0 5rem;
  text-align: center;
}

@media (max-width: 1200px) {
  .menu-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .site-header .container {
    width: min(100%, 94vw);
  }

  .feature-grid,
  .cards-3,
  .section-heading,
  .story__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 760px);
    min-height: 420px;
    align-items: center;
    justify-content: center;
    transform: none;
    margin: 0 auto;
    padding: 0 1.5rem 1.5rem;
  }

  .hero__image {
    width: min(100%, 760px);
    max-height: 420px;
    object-position: center bottom;
  }

  .home-quick-actions {
    margin-top: -2rem;
  }

  .quick-actions-card {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
  }

  .menu-card {
    flex-basis: calc((100% - 1.25rem) / 2);
  }

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

  .promo-video__frame,
  .promo-video__content {
    min-height: 360px;
  }

  .tradition-story__grid {
    grid-template-columns: 1fr;
  }

  .tradition-story__media {
    display: flex;
    justify-content: center;
  }

  .tradition-story__content {
    text-align: center;
  }

  .tradition-story__content h2 {
    white-space: normal;
  }

  .tradition-story__content p {
    max-width: 100%;
  }

  .testimonial-card {
    flex-basis: calc((100% - 1.25rem) / 2);
  }

  .testimonials-carousel {
    padding: 0 2.25rem;
  }

  .menu-page {
    padding-top: 0;
  }

  .menu-page__hero-panel {
    min-height: clamp(340px, 72vh, 560px);
  }

  .menu-page__hero-grid {
    min-height: clamp(340px, 72vh, 560px);
  }

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

  .about-page__hero-inner {
    width: min(100%, 92vw);
  }

  .quick-action + .quick-action {
    border-top: 1px solid rgba(10, 10, 10, 0.08);
    border-left: 0;
  }

  .quick-action + .quick-action::before {
    display: none;
  }

  .hero h1 {
    max-width: 10.2ch;
    font-size: clamp(3rem, 6vw, 4.4rem);
  }

  .site-header__inner {
    position: relative;
    padding-top: 1.25rem;
    padding-left: 0;
    padding-right: 0;
  }

  .site-logo {
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 6.75rem 1.5rem 2rem;
    background:
      radial-gradient(circle at top right, rgba(255, 249, 240, 0.2), transparent 24%),
      linear-gradient(135deg, #eda40f 0%, #f3b534 45%, #f6c663 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    box-shadow: none;
    overflow-y: auto;
  }

  .site-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }

  .site-nav__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    min-height: 100%;
  }

  .site-nav__eyebrow {
    display: inline-block;
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.58);
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .menu a {
    color: var(--text);
    font-family: Georgia, serif;
    font-size: clamp(2.25rem, 7vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.95;
    text-transform: none;
  }

  .menu a::after {
    bottom: -0.15rem;
  }

  .header-cta {
    width: auto;
    min-width: 220px;
  }

  .site-nav__footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1rem;
  }

  .site-nav__contact {
    display: inline-flex;
    align-items: center;
    color: rgba(10, 10, 10, 0.74);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

@media (min-width: 1680px) {
  .hero__content {
    width: min(100%, 76vw);
  }

  .hero__visual {
    width: clamp(900px, 58vw, 1320px);
  }

  .quick-actions-card {
    width: min(100%, 58vw);
  }
}

@media (max-width: 640px) {
  .menu-page {
    padding-top: 0;
  }

  .menu-page__hero {
    padding: 0;
  }

  .menu-page__hero-panel {
    min-height: clamp(320px, 62vh, 440px);
  }

  .menu-page__hero-grid {
    min-height: clamp(320px, 62vh, 440px);
  }

  .menu-page__hero h1 {
    max-width: 10ch;
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .menu-page__lead {
    font-size: 1rem;
  }

  .about-page__hero-title,
  .about-page__hero-copy,
  .about-page__hero-copy--short,
  .about-page__hero-copy--emphasis {
    max-width: 100%;
  }

  .tradition-story__content .about-page__story-title {
    max-width: 100%;
  }

  .menu-page__hero-cta {
    width: 100%;
    max-width: 240px;
  }

  .menu-page__categories {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 0.85rem;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .menu-page__categories::-webkit-scrollbar {
    display: none;
  }

  .menu-page__category-link {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }

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

  .site-header__inner {
    padding-top: 0.85rem;
    padding-left: 0;
    padding-right: 0;
  }

  .site-nav {
    padding: 6.25rem 1.25rem 1.5rem;
  }

  .menu a {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .site-nav__footer {
    gap: 0.85rem;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .hero__content {
    width: 100%;
    min-height: auto;
    padding-top: 6.25rem;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
    align-items: center;
    text-align: center;
  }

  .menu-page__hero-inner {
    width: 100%;
    min-height: clamp(320px, 62vh, 440px);
    max-width: none;
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;
    align-items: center;
    text-align: center;
  }

  .menu-page__lead {
    margin: 0 auto;
  }

  .hero__actions .button {
    width: 100%;
    max-width: 220px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    position: relative;
    min-height: 360px;
    padding: 0 0.5rem 1.25rem;
    overflow: visible;
  }

  .hero__image {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 145%;
    max-width: none;
    max-height: none;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: center bottom;
  }

  .site-logo img {
    height: 64px;
  }

  .home-quick-actions {
    margin-top: 0;
  }

  .quick-actions-card {
    width: 100%;
  }

  .menu-carousel {
    gap: 0.5rem;
  }

  .menu-card {
    flex-basis: 100%;
  }

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

  .site-footer__actions .button {
    width: 100%;
  }

  .site-footer__legal {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .testimonials-carousel {
    padding: 0 2rem;
  }

  .promo-video__frame,
  .promo-video__content {
    min-height: 320px;
  }

  .promo-video__content {
    padding: 1.5rem;
  }

  .section {
    padding-bottom: 3rem;
  }

  .testimonials-carousel .menu-carousel__nav--prev {
    left: 0;
  }

  .testimonials-carousel .menu-carousel__nav--next {
    right: 0;
  }
}
