:root {
  --cream: #f3ede4;
  --cream-dark: #e8e0d4;
  --green: #6d9c3a;
  --green-dark: #558b2f;
  --green-light: #9ccc65;
  --orange: #f57c00;
  --orange-dark: #e65100;
  --text: #2d2d2d;
  --text-muted: #5a5a5a;
  --hero-ratio: 1536 / 1024;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: var(--green-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Site header ─── */

.site-header {
  background: #fff;
  border-bottom: 3px solid var(--green-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.site-logo img {
  display: block;
  width: clamp(104px, 12vw, 150px);
  height: auto;
}

.site-logo--menu {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-nav {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  color: var(--green-dark);
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav a:hover {
  background: var(--cream);
}

.site-nav a.is-active {
  background: var(--green);
  color: #fff;
}

.page--home.menu-is-open {
  overflow: hidden;
}

.page--home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(45, 45, 45, 0.22);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s ease;
}

.page--home.menu-is-open::before {
  opacity: 1;
}

.page--home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  pointer-events: none;
}

.page--home.menu-is-open .site-header {
  z-index: 120;
}

.page--home .site-header__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  padding: clamp(1.25rem, 3.4vw, 2.45rem) clamp(1rem, 4.5vw, 2.5rem);
  flex-wrap: nowrap;
}

.page--home .site-logo {
  position: relative;
  z-index: 3;
  margin-left: 0;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.42));
  transform-origin: center;
  --logo-float-transform: none;
  transition:
    filter 0.24s ease,
    transform 0.82s var(--logo-motion-ease);
}

.page--home .site-logo img {
  width: var(--floating-logo-size);
  transition: width 0.82s var(--logo-motion-ease);
}

.page--home .site-logo--menu:hover,
.page--home .site-logo--menu:focus-visible {
  filter: drop-shadow(0 8px 26px rgba(0, 0, 0, 0.5));
  transform: var(--logo-float-transform) scale(1.035);
}

.page--home .site-logo--menu:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
  border-radius: 18px;
}

.page--home .site-logo--menu.is-open {
  transform: var(--logo-float-transform) scale(0.98);
}

.page--home .site-logo--menu.is-hinting {
  animation: logo-menu-hint 1.5s 0.65s ease both;
}

@keyframes logo-menu-hint {
  0%,
  100% {
    transform: var(--logo-float-transform) rotate(0) scale(1);
  }
  18% {
    transform: var(--logo-float-transform) rotate(-3deg) scale(1.045);
  }
  36% {
    transform: var(--logo-float-transform) rotate(2.4deg) scale(1.045);
  }
  54% {
    transform: var(--logo-float-transform) rotate(-1.5deg) scale(1.03);
  }
  72% {
    transform: var(--logo-float-transform) rotate(0.9deg) scale(1.018);
  }
}

.page--home .home-menu-overlay {
  position: fixed;
  top: calc(50% + var(--floating-logo-half-size) + var(--floating-logo-gap));
  left: 50%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(9.5rem, 1fr));
  align-items: center;
  gap: clamp(0.65rem, 1.8vw, 0.95rem);
  width: min(520px, calc(100% - 2.5rem));
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 14%, rgba(245, 124, 0, 0.12), transparent 9rem),
    radial-gradient(circle at 86% 82%, rgba(109, 156, 58, 0.14), transparent 10rem),
    rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 44px rgba(45, 45, 45, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.8rem) scale(0.98);
  transform-origin: top center;
  transition:
    top 0.82s var(--logo-motion-ease),
    left 0.82s var(--logo-motion-ease),
    opacity 0.38s ease,
    transform 0.7s var(--logo-motion-ease);
}

.page--home .home-menu-overlay::before {
  content: "";
  position: absolute;
  top: -0.85rem;
  left: 50%;
  width: 3rem;
  height: 1.7rem;
  border-radius: 999px 999px 0 0;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-bottom: 0;
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.page--home .home-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.page--home.is-scrolled .home-menu-overlay {
  top: calc(var(--floating-logo-docked-y) + var(--floating-logo-half-size));
  left: calc(
    var(--floating-logo-docked-x) + var(--floating-logo-half-size) +
      var(--floating-logo-gap)
  );
  transform: translateY(calc(-50% - 0.8rem)) scale(0.98);
  transform-origin: center left;
}

.page--home.is-scrolled .home-menu-overlay::before {
  top: 50%;
  left: -0.9rem;
  width: 1.8rem;
  height: 3.6rem;
  border-radius: 999px 0 0 999px;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.74);
  transform: translateY(-50%);
}

.page--home.is-scrolled .home-menu-overlay.is-open {
  transform: translateY(-50%) scale(1);
}

@media (min-width: 760px) {
  .page--home:not(.is-scrolled) .home-menu-overlay {
    top: 50%;
    left: 50%;
    grid-template-columns:
      minmax(7rem, 1fr)
      minmax(7rem, 1fr)
      minmax(var(--floating-logo-size), 1.55fr)
      minmax(7rem, 1fr)
      minmax(7rem, 1fr);
    width: min(1180px, calc(100% - 2rem));
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: translate(-50%, calc(-50% - 0.4rem)) scale(0.98);
    transform-origin: center;
  }

  .page--home:not(.is-scrolled) .home-menu-overlay::before {
    display: none;
  }

  .page--home:not(.is-scrolled) .home-menu-overlay.is-open {
    transform: translate(-50%, -50%) scale(1);
  }

  .page--home:not(.is-scrolled) .home-menu-overlay a:nth-of-type(1) {
    grid-column: 1;
  }

  .page--home:not(.is-scrolled) .home-menu-overlay a:nth-of-type(2) {
    grid-column: 2;
  }

  .page--home:not(.is-scrolled) .home-menu-overlay a:nth-of-type(3) {
    grid-column: 4;
  }

  .page--home:not(.is-scrolled) .home-menu-overlay a:nth-of-type(4) {
    grid-column: 5;
  }
}

.page--home .home-menu-overlay a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.65rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--green-dark);
  font-size: clamp(1.28rem, 2.25vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(0.7rem);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.36s ease,
    transform 0.44s cubic-bezier(0.16, 1, 0.3, 1);
}

.page--home .home-menu-overlay a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.48rem;
  width: 1.65rem;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

.page--home .home-menu-overlay a:hover,
.page--home .home-menu-overlay a:focus-visible {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(245, 124, 0, 0.24);
  color: var(--orange-dark);
}

.page--home .home-menu-overlay a:hover::after,
.page--home .home-menu-overlay a:focus-visible::after,
.page--home .home-menu-overlay a.is-active::after {
  transform: scaleX(1);
}

.page--home .home-menu-overlay.is-open a {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.page--home .home-menu-overlay.is-open a:nth-of-type(1) {
  transition-delay: 0.08s;
}

.page--home .home-menu-overlay.is-open a:nth-of-type(2) {
  transition-delay: 0.14s;
}

.page--home .home-menu-overlay.is-open a:nth-of-type(3) {
  transition-delay: 0.2s;
}

.page--home .home-menu-overlay.is-open a:nth-of-type(4) {
  transition-delay: 0.26s;
}

@media (max-width: 520px) {
  .page--home::before {
    background: rgba(45, 45, 45, 0.16);
  }

  .page--home .home-menu-overlay {
    top: 6.75rem;
    left: 0.85rem;
    grid-template-columns: 1fr;
    width: min(330px, calc(100% - 1.7rem));
    gap: 0.65rem;
    padding: 1.1rem;
    border-radius: 20px;
    transform: translateY(-0.8rem) scale(0.98);
    transform-origin: top left;
  }

  .page--home .home-menu-overlay::before {
    top: -0.85rem;
    left: clamp(4rem, 26vw, 6rem);
    width: 3rem;
    height: 1.7rem;
    border-radius: 999px 999px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.74);
    border-bottom: 0;
    transform: none;
  }

  .page--home .home-menu-overlay.is-open {
    transform: translateY(0) scale(1);
  }

  .page--home .home-hero__logo {
    top: 0.85rem;
    left: 0.85rem;
    --logo-float-transform: none;
    transform: var(--logo-float-transform);
  }

  .page--home .site-logo img {
    width: clamp(104px, 34vw, 140px);
  }

  .page--home .home-menu-overlay a {
    min-height: 3.25rem;
    font-size: 1.2rem;
    letter-spacing: 0.01em;
  }
}

/* Home landing page */

.page--home {
  --floating-logo-center-x: 50%;
  --floating-logo-size: clamp(240px, 27vw, 420px);
  --floating-logo-half-size: calc(var(--floating-logo-size) / 2);
  --floating-logo-gap: clamp(1rem, 2vw, 2rem);
  --floating-logo-docked-size: clamp(104px, 11vw, 152px);
  --floating-logo-docked-x: clamp(1rem, 3vw, 2rem);
  --floating-logo-docked-y: clamp(1rem, 3vw, 1.75rem);
  --logo-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(243, 237, 228, 0.36));
  isolation: isolate;
  overflow-x: clip;
}

.home-main {
  position: relative;
  z-index: 1;
  flex: 1;
}

.home-hero,
.home-section,
.home-cta {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.home-hero {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  min-height: 100svh;
  padding: 0;
  position: relative;
}

.home-hero__logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 0;
  background: transparent;
}

.page--home .home-hero__logo {
  position: fixed;
  top: 50%;
  left: var(--floating-logo-center-x);
  z-index: 130;
  margin-left: 0;
  --logo-float-transform: translate(-50%, -50%);
  transform: var(--logo-float-transform);
  transition:
    top 0.82s var(--logo-motion-ease),
    left 0.82s var(--logo-motion-ease),
    transform 0.82s var(--logo-motion-ease),
    filter 0.24s ease,
    opacity 0.24s ease;
}

.page--home.is-scrolled {
  --floating-logo-size: var(--floating-logo-docked-size);
  --floating-logo-half-size: calc(var(--floating-logo-docked-size) / 2);
}

.page--home.is-scrolled .home-hero__logo {
  top: var(--floating-logo-docked-y);
  left: var(--floating-logo-docked-x);
  --logo-float-transform: none;
}

.section-kicker {
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.home-section h2,
.home-cta h2 {
  color: var(--green-dark);
  line-height: 1.08;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(85, 139, 47, 0.24);
}

.button--secondary {
  background: #fff;
  border-color: rgba(85, 139, 47, 0.22);
  color: var(--green-dark);
}

.button--light {
  background: #fff;
  color: var(--green-dark);
}

.home-hero__media {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100svh;
  background: var(--cream);
  pointer-events: none;
}

.home-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(243, 237, 228, 0.28), rgba(243, 237, 228, 0.82));
  pointer-events: none;
  z-index: 1;
}

.home-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  opacity: 0.58;
}

.home-section {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.75rem) clamp(1rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.84);
  box-shadow:
    0 16px 44px rgba(45, 45, 45, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
}

.home-section + .home-section,
.home-section + .home-cta {
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

.home-section__head {
  max-width: 650px;
  margin-bottom: 1.75rem;
}

.home-section h2,
.home-cta h2 {
  font-size: clamp(1.85rem, 5vw, 3.1rem);
  letter-spacing: -0.035em;
}

.home-section__head p,
.home-story p,
.home-cta p {
  color: var(--text-muted);
}

.home-featured .home-section__head {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 1.1rem;
  text-align: center;
}

.home-featured .section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(245, 124, 0, 0.1);
  color: var(--orange-dark);
}

.home-featured h2::after {
  content: "";
  display: block;
  width: 88px;
  height: 4px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-dark), var(--orange));
}

.featured-carousel {
  position: relative;
  margin-top: 0.35rem;
  padding-inline: clamp(2.5rem, 8vw, 4rem);
}

.featured-grid {
  --featured-card-width: min(80vw, 400px);

  position: relative;
  min-height: clamp(390px, 62vw, 480px);
  overflow: hidden;
  touch-action: pan-y;
}

.dish-card {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: var(--featured-card-width);
  gap: 0.9rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
  transform: translate(-50%, -50%) scale(0.76);
  transform-origin: center;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.dish-card.is-focused {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  transform: translate(-50%, -50%) scale(1);
}

.dish-card.is-prev,
.dish-card.is-next {
  z-index: 2;
  opacity: 0.72;
  pointer-events: auto;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.dish-card.is-prev {
  transform: translate(-108%, -50%) scale(0.82);
}

.dish-card.is-next {
  transform: translate(8%, -50%) scale(0.82);
}

.dish-card.is-hidden {
  z-index: 1;
  opacity: 0;
}

.featured-carousel__control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.92);
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.featured-carousel__control--prev {
  left: 0;
}

.featured-carousel__control--next {
  right: 0;
}

.featured-menu-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
}

.featured-menu-cta .button {
  min-height: 3.35rem;
  padding: 0.95rem 1.75rem;
  background: linear-gradient(135deg, var(--green-dark), var(--orange));
  box-shadow: 0 16px 34px rgba(85, 139, 47, 0.24);
  font-size: 1rem;
}

.featured-menu-cta .button::after {
  content: "→";
  margin-left: 0.6rem;
  transition: transform 0.18s ease;
}

.featured-menu-cta .button:hover {
  box-shadow: 0 20px 42px rgba(230, 81, 0, 0.22);
}

.featured-menu-cta .button:hover::after {
  transform: translateX(4px);
}

.home-catering {
  overflow: hidden;
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.25rem, 5vw, 3.75rem);
  background:
    radial-gradient(circle at 8% 20%, rgba(156, 204, 101, 0.18), transparent 15rem),
    radial-gradient(circle at 92% 80%, rgba(245, 124, 0, 0.14), transparent 16rem),
    rgba(255, 250, 242, 0.92);
  text-align: center;
}

.home-catering__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.home-catering h2 {
  margin-bottom: 0.8rem;
}

.home-catering__content > p:not(.section-kicker) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
}

.home-catering__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.home-catering__actions .button {
  min-height: 3.2rem;
  padding-inline: 1.5rem;
}

.home-catering__actions .button--primary {
  background: linear-gradient(135deg, var(--green-dark), var(--orange));
  box-shadow: 0 14px 30px rgba(85, 139, 47, 0.22);
}

.home-catering__visual {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1.12;
  margin: 0 auto;
}

.home-catering__visual::before {
  position: absolute;
  inset: 8% 5% 6% 8%;
  border-radius: 46% 54% 58% 42%;
  background: linear-gradient(145deg, rgba(85, 139, 47, 0.2), rgba(245, 124, 0, 0.2));
  content: "";
  transform: rotate(-7deg);
}

.home-catering__photo {
  position: absolute;
  overflow: hidden;
  aspect-ratio: 1;
  border: 6px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 16px 34px rgba(45, 45, 45, 0.17);
}

.home-catering__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-catering__photo--jerk {
  z-index: 2;
  top: 10%;
  left: 0;
  width: 62%;
}

.home-catering__photo--jerk img {
  object-position: 49% 50%;
}

.home-catering__photo--oxtail {
  z-index: 1;
  top: 0;
  right: 0;
  width: 48%;
}

.home-catering__photo--oxtail img {
  object-position: 44% 50%;
}

.home-catering__photo--curry {
  z-index: 3;
  right: 5%;
  bottom: 0;
  width: 46%;
}

.home-catering__photo--curry img {
  object-position: 42% 50%;
}

@media (min-width: 760px) {
  .home-catering {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    text-align: left;
  }

  .home-catering__content {
    margin: 0;
  }

  .home-catering__content > p:not(.section-kicker) {
    margin-left: 0;
  }

  .home-catering__actions {
    justify-content: flex-start;
  }
}

.dish-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background: #fffaf2;
}

.dish-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.dish-card > div:not(.dish-card__media) {
  padding: 0 0.25rem 0.35rem;
}

.dish-card h3 {
  color: var(--green-dark);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.dish-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.home-story {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.home-story__copy,
.home-story__note,
.home-story__delivery {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(10px);
}

.home-story__copy {
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.home-story__copy .cta-link {
  margin-top: 1.5rem;
}

.home-story__note {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background:
    linear-gradient(150deg, rgba(85, 139, 47, 0.9), rgba(245, 124, 0, 0.82)),
    var(--green-dark);
  color: #fff;
}

.home-story__note strong {
  display: block;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.home-story__note span {
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.88);
}

.home-story__social {
  display: flex;
  gap: 1.25rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.home-story__social a {
  display: inline-flex;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  opacity: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.home-story__social a:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.home-story__social svg {
  width: 2rem;
  height: 2rem;
  max-width: 2rem;
  max-height: 2rem;
  display: block;
  flex-shrink: 0;
  fill: currentColor;
}

.home-story__delivery {
  grid-column: 1 / -1;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  text-align: center;
}

.home-story__delivery h2 {
  margin-bottom: 1.5rem;
  color: var(--green-dark);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-story__delivery-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.home-story__delivery-links a {
  display: flex;
  min-height: 7rem;
  padding: 1.5rem;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(85, 139, 47, 0.16);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.home-story__delivery-links a:hover {
  border-color: rgba(85, 139, 47, 0.48);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.home-story__delivery-links a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.home-story__delivery-links img {
  display: block;
  width: min(100%, 15rem);
  height: 3.25rem;
  object-fit: contain;
}

@media (max-width: 599px) {
  .home-story__social {
    margin-top: 1.5rem;
  }

  .home-story__social a {
    width: 3.25rem;
    height: 3.25rem;
  }

  .home-story__delivery-links {
    grid-template-columns: 1fr;
  }

  .home-story__delivery-links a {
    min-height: 6rem;
  }

  .home-catering__actions {
    flex-direction: column;
  }
}

.home-cta {
  margin-bottom: clamp(3rem, 7vw, 5rem);
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(85, 139, 47, 0.96), rgba(109, 156, 58, 0.9)),
    var(--green-dark);
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 54px rgba(85, 139, 47, 0.25);
  backdrop-filter: blur(10px);
}

.home-cta .section-kicker,
.home-cta h2,
.home-cta p {
  color: #fff;
}

.home-cta p {
  max-width: 34rem;
  margin: 0.75rem auto 0;
  opacity: 0.88;
}

.home-cta__actions {
  justify-content: center;
}

/* ─── Interior pages ─── */

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-main {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  width: 100%;
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.page-lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

/* ─── Menu page visuals ─── */

.page--menu {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 28%, var(--cream) 100%);
}

.page--menu .site-header {
  background: rgba(255, 250, 242, 0.98);
  border-bottom: 2px solid rgba(156, 204, 101, 0.8);
  box-shadow: 0 8px 24px rgba(45, 45, 45, 0.06);
  backdrop-filter: blur(12px);
}

.page--menu .site-header__inner {
  max-width: 920px;
  padding: 0.38rem 1.25rem;
  justify-content: center;
  gap: clamp(2rem, 7vw, 4.5rem);
  flex-wrap: nowrap;
}

.page--menu .site-logo img {
  width: clamp(72px, 7vw, 92px);
}

.page--menu .site-nav {
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.page--menu .site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--green-dark);
  line-height: 1;
}

.page--menu .site-nav a:hover {
  background: rgba(243, 237, 228, 0.9);
}

.page--menu .site-nav a.is-active {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(109, 156, 58, 0.24);
}

.page--menu .site-nav a.is-active:hover {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
}

.page-main--menu {
  max-width: 760px;
}

.menu-intro .page-lead {
  margin-bottom: 0;
}

.menu-order-call {
  display: flex;
  justify-content: center;
  margin: 0.75rem 0 0;
}

.menu-order-call + .menu-sheet {
  margin-top: 1rem;
}

.menu-order-options {
  margin-top: 0.75rem;
  padding: clamp(1.2rem, 3vw, 1.75rem);
  border: 1px solid rgba(85, 139, 47, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0 0, rgba(156, 204, 101, 0.12), transparent 12rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(45, 45, 45, 0.07);
  text-align: center;
}

.menu-order-options + .menu-sheet {
  margin-top: 1rem;
}

.menu-order-options__head h2 {
  color: var(--green-dark);
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  line-height: 1.1;
}

.menu-order-options__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.menu-order-option {
  display: flex;
  min-height: 5.25rem;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 139, 47, 0.16);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(45, 45, 45, 0.06);
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.menu-order-option:hover {
  border-color: rgba(85, 139, 47, 0.48);
  box-shadow: 0 10px 24px rgba(45, 45, 45, 0.1);
  transform: translateY(-2px);
}

.menu-order-option:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.menu-order-option img {
  display: block;
  width: min(100%, 11rem);
  height: 2.6rem;
  object-fit: contain;
}

.menu-order-option--phone {
  flex-direction: column;
  gap: 0.15rem;
  border-color: transparent;
  background: linear-gradient(135deg, var(--green-dark), var(--orange));
  color: #fff;
}

.menu-order-option--phone span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-order-option--phone strong {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
}

.menu-order-options__note {
  margin-top: 0.85rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-style: italic;
}

.menu-catering-cta {
  margin-top: 1.5rem;
  padding: clamp(1.75rem, 5vw, 2.75rem) clamp(1.25rem, 4vw, 2.25rem);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(85, 139, 47, 0.96), rgba(245, 124, 0, 0.88)),
    var(--green-dark);
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 38px rgba(85, 139, 47, 0.2);
}

.menu-catering-cta .section-kicker,
.menu-catering-cta h2,
.menu-catering-cta p {
  color: #fff;
}

.menu-catering-cta h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  line-height: 1.08;
}

.menu-catering-cta > p:not(.section-kicker) {
  max-width: 34rem;
  margin: 0.7rem auto 0;
  color: rgba(255, 255, 255, 0.9);
}

.menu-catering-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.menu-catering-cta__email {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

@media (max-width: 599px) {
  .menu-order-options__links {
    grid-template-columns: 1fr;
  }

  .menu-order-option {
    min-height: 4.75rem;
  }

  .menu-catering-cta__actions {
    flex-direction: column;
  }
}

.menu-section__call-note {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.menu-section__call-note a {
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration: none;
}

.menu-section__call-note a:hover {
  text-decoration: underline;
}

.menu-sheet {
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.1rem, 3vw, 1.65rem);
  border: 1px solid rgba(85, 139, 47, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(156, 204, 101, 0.1), transparent 10rem),
    #fff;
  box-shadow:
    0 10px 28px rgba(45, 45, 45, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.menu-tabs__tab {
  flex: 1;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(85, 139, 47, 0.2);
  border-radius: 999px;
  background: rgba(243, 237, 228, 0.65);
  color: var(--green-dark);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.menu-tabs__tab:hover {
  background: rgba(156, 204, 101, 0.18);
  border-color: rgba(85, 139, 47, 0.35);
}

.menu-tabs__tab:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.menu-tabs__tab[aria-selected="true"] {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(109, 156, 58, 0.24);
}

.menu-tab-panel {
  display: none;
}

.menu-tab-panel.is-active {
  display: block;
}

.menu-tab-panel > .menu-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.menu-section + .menu-section {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(85, 139, 47, 0.14);
}

.menu-section__title {
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.menu-section__list {
  list-style: none;
}

.menu-row + .menu-row {
  margin-top: 0.85rem;
}

.menu-row--compact + .menu-row--compact {
  margin-top: 0.45rem;
}

.menu-row__line {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  overflow-wrap: anywhere;
}

.menu-row__name {
  flex: 0 1 auto;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.menu-row__leader {
  flex: 1 1 auto;
  min-width: 0.75rem;
  margin-bottom: 0.18em;
  border-bottom: 1px dotted rgba(85, 139, 47, 0.32);
}

.menu-row__price {
  flex: 0 0 auto;
  font-weight: 600;
  color: var(--green-dark);
  white-space: nowrap;
}

.menu-row__note {
  margin: 0.2rem 0 0;
  padding-left: 0.05rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.menu-row--has-photo {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.menu-row__thumb {
  flex: 0 0 4.5rem;
  width: 4.5rem;
  height: 4.5rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(85, 139, 47, 0.14);
  border-radius: 10px;
  background: none;
  box-shadow: 0 4px 12px rgba(45, 45, 45, 0.08);
  font: inherit;
  cursor: zoom-in;
}

.menu-row__thumb:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.menu-row__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.menu-photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.menu-photo-lightbox[hidden] {
  display: none;
}

.menu-photo-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.menu-photo-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(90vw, 42rem);
  max-height: 85vh;
}

.menu-photo-lightbox__img {
  display: block;
  max-width: min(90vw, 42rem);
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}

.menu-photo-lightbox__close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(85, 139, 47, 0.2);
  border-radius: 999px;
  background: var(--cream);
  color: var(--green-dark);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(45, 45, 45, 0.2);
}

.menu-photo-lightbox__close:hover {
  background: #fff;
}

.menu-photo-lightbox__close:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .menu-photo-lightbox__close {
    transition: none;
  }
}

.menu-row__content {
  flex: 1;
  min-width: 0;
}

.menu-row--has-photo .menu-row__note {
  padding-left: 0;
}

.content-block {
  position: relative;
  margin-bottom: 0;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(85, 139, 47, 0.13);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0 0, rgba(156, 204, 101, 0.12), transparent 11rem),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 12px 32px rgba(45, 45, 45, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .page--home::before,
  .page--home .site-logo,
  .page--home .site-logo img,
  .page--home .home-hero__logo,
  .page--home .home-menu-overlay,
  .page--home .home-menu-overlay a,
  .page--home .home-menu-overlay a::after {
    transition: none;
  }

  .page--home .site-logo--menu.is-hinting {
    animation: none;
  }
}

.story-text p,
.story-section p {
  margin-bottom: 1rem;
  color: var(--text);
}

.story-text p:last-child,
.story-section p:last-child {
  margin-bottom: 0;
}

.page-main--menu .menu-intro .page-lead {
  max-width: 100%;
  line-height: 1.65;
}

.menu-intro + .story-page {
  margin-top: 1.25rem;
}

.menu-intro + .contact-page {
  margin-top: 1.25rem;
}

.story-page {
  background:
    radial-gradient(circle at 100% 0, rgba(156, 204, 101, 0.08), transparent 14rem),
    radial-gradient(circle at 0 100%, rgba(245, 124, 0, 0.06), transparent 12rem);
}

.story-flow {
  max-width: 100%;
  margin-bottom: 1.75rem;
  line-height: 1.72;
}

.story-flow--offset {
  max-width: 94%;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .story-flow--offset {
    margin-left: clamp(0.5rem, 3vw, 2rem);
  }
}

.story-brand-moment {
  margin-bottom: 2.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.85);
  box-shadow: 0 10px 28px rgba(245, 124, 0, 0.08);
  overflow: hidden;
}

.story-brand-moment::after {
  content: "";
  display: table;
  clear: both;
}

.story-brand {
  margin: 0;
  float: right;
  width: clamp(100px, 22vw, 140px);
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.story-brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(45, 45, 45, 0.1));
}

.story-motto {
  font-style: normal;
  font-weight: 700;
  color: var(--green-dark);
}

.story-close {
  margin-top: 0.5rem;
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
}

.story-close p {
  color: var(--text-muted);
}

@media (max-width: 599px) {
  .story-brand {
    float: none;
    display: block;
    width: clamp(100px, 28vw, 130px);
    margin: 0 auto 1.25rem;
  }

  .story-flow--offset {
    max-width: 100%;
    margin-left: 0;
  }
}

/* ─── Contact page ─── */

.contact-page {
  position: relative;
  overflow: hidden;
  padding: clamp(0.25rem, 2vw, 0.5rem) 0 0.5rem;
  background:
    radial-gradient(circle at 100% 0, rgba(156, 204, 101, 0.1), transparent 14rem),
    radial-gradient(circle at 0 100%, rgba(245, 124, 0, 0.07), transparent 12rem);
}

.contact-page::before,
.contact-page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-page::before {
  top: 2rem;
  left: -2.5rem;
  width: 7rem;
  height: 7rem;
  background: rgba(156, 204, 101, 0.12);
}

.contact-page::after {
  right: -2rem;
  bottom: 4rem;
  width: 5.5rem;
  height: 5.5rem;
  background: rgba(245, 124, 0, 0.1);
}

.contact-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
  overflow: hidden;
  min-height: clamp(14rem, 38vw, 18rem);
  margin-bottom: 1.5rem;
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 28px;
  border: 1px solid rgba(156, 204, 101, 0.28);
  background: rgba(255, 250, 242, 0.92);
  box-shadow:
    0 14px 32px rgba(245, 124, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("public/images/Hot Pot Logo_Final1.png") center / clamp(13rem, 62%, 18rem)
    no-repeat;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.contact-call {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 24rem;
  min-height: 3.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(230, 81, 0, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-call:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 38px rgba(230, 81, 0, 0.4);
}

.contact-call::before {
  content: "📞";
  font-size: 1.15rem;
}

.menu-order-call .contact-call {
  display: inline-flex;
  flex-shrink: 0;
  width: auto;
  max-width: none;
  min-height: 2.5rem;
  padding: 0.55rem 1.25rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  box-shadow: 0 6px 16px rgba(230, 81, 0, 0.22);
  white-space: nowrap;
}

.menu-order-call .contact-call::before {
  font-size: 0.95rem;
}

.menu-order-call .contact-call:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 20px rgba(230, 81, 0, 0.28);
}

.contact-hero__address {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 26rem;
  font-size: clamp(1rem, 2.8vw, 1.1rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
}

.contact-directions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 24rem;
  min-height: 2.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  border: 2px solid rgba(85, 139, 47, 0.35);
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.contact-directions:hover {
  color: var(--green-dark);
  background: rgba(156, 204, 101, 0.12);
  border-color: rgba(85, 139, 47, 0.5);
  transform: translateY(-2px);
}

.contact-details-card {
  margin-bottom: 0.5rem;
  text-align: center;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.1rem, 3vw, 1.65rem);
  border: 1px solid rgba(85, 139, 47, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(156, 204, 101, 0.1), transparent 10rem),
    #fff;
  box-shadow:
    0 10px 28px rgba(45, 45, 45, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.55rem;
}

.contact-hours-list {
  display: grid;
  gap: 0.65rem;
  max-width: 24rem;
  margin-inline: auto;
}

.contact-hours-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dotted rgba(85, 139, 47, 0.28);
}

.contact-hours-list dt {
  font-weight: 600;
  color: var(--text);
}

.contact-hours-list dd {
  color: var(--text-muted);
  text-align: right;
}

.contact-hours-list .is-closed dt,
.contact-hours-list .is-closed dd {
  color: var(--text-muted);
  opacity: 0.75;
}

.contact-hours-list .is-closed dd {
  font-style: italic;
}

.contact-email {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(85, 139, 47, 0.12);
}

.contact-email a {
  font-weight: 600;
}

.placeholder-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--cream-dark);
  color: var(--text-muted);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.cta-row {
  margin-top: 2.5rem;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--orange-dark);
  border: 2px solid var(--orange);
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  transition: background 0.15s ease;
}

.cta-link:hover {
  background: rgba(245, 124, 0, 0.1);
}

/* ─── Footer ─── */

.site-footer {
  position: relative;
  z-index: 1;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  padding: 1.25rem 1.25rem;
  font-size: 0.8rem;
}

.site-footer a {
  color: #fff;
  font-weight: 600;
}

.site-footer__inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer__info {
  flex: 1;
  min-width: 0;
}

.site-footer__info p + p {
  margin-top: 0.35rem;
  opacity: 0.75;
  font-size: 0.72rem;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.site-footer__social a {
  display: inline-flex;
  padding: 0.4rem;
  opacity: 0.9;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.site-footer__social a:hover {
  opacity: 1;
  transform: scale(1.08);
}

.site-footer__social svg {
  width: 1.9rem;
  height: 1.9rem;
  max-width: 1.9rem;
  max-height: 1.9rem;
  display: block;
  flex-shrink: 0;
  fill: currentColor;
}

.site-footer__note {
  max-width: 920px;
  margin: 0.5rem auto 0;
  font-size: 0.65rem;
  opacity: 0.65;
}

@media (max-width: 599px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

/* ─── Responsive ─── */

@media (min-width: 760px) {
  .home-hero {
    grid-template-columns: minmax(190px, 1fr) minmax(0, 3fr);
    align-items: stretch;
  }

  .home-hero__logo-panel {
    min-height: 0;
    padding: 0 clamp(1rem, 2.5vw, 2rem);
  }

  .home-story {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  }
}

@media (max-width: 520px) {
  .page--home {
    --floating-logo-size: clamp(142px, 40vw, 190px);
    --floating-logo-half-size: calc(var(--floating-logo-size) / 2);
    --floating-logo-docked-size: clamp(92px, 27vw, 122px);
    --floating-logo-docked-x: 0.85rem;
    --floating-logo-docked-y: 0.85rem;
    --floating-logo-gap: 0.85rem;
  }

  .home-hero,
  .home-section,
  .home-cta {
    width: min(100% - 1.25rem, 1120px);
  }

  .home-hero {
    min-height: 92svh;
  }

  .home-hero__logo-panel {
    min-height: 92svh;
  }

  .page--home .home-hero__logo {
    top: 48%;
    left: 50%;
    --logo-float-transform: translate(-50%, -50%);
    transform: var(--logo-float-transform);
  }

  .page--home.is-scrolled {
    --floating-logo-size: var(--floating-logo-docked-size);
    --floating-logo-half-size: calc(var(--floating-logo-docked-size) / 2);
  }

  .page--home.is-scrolled .home-hero__logo {
    top: var(--floating-logo-docked-y);
    left: var(--floating-logo-docked-x);
    --logo-float-transform: none;
  }

  .page--home .site-logo img {
    width: var(--floating-logo-size);
  }

  .home-hero__media {
    height: 100svh;
  }

  .home-hero__media::before {
    background:
      radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.08), transparent 18rem),
      linear-gradient(180deg, rgba(243, 237, 228, 0.34), rgba(243, 237, 228, 0.88));
  }

  .home-hero__media img {
    object-position: center 48%;
    opacity: 0.5;
  }

  .featured-grid {
    --featured-card-width: 100%;
  }

  .dish-card.is-prev {
    transform: translate(-94%, -50%) scale(0.82);
  }

  .dish-card.is-next {
    transform: translate(-6%, -50%) scale(0.82);
  }

  .page--home .home-menu-overlay {
    top: calc(48% + var(--floating-logo-half-size) + var(--floating-logo-gap));
    left: 50%;
    grid-template-columns: 1fr;
    width: min(330px, calc(100% - 1.7rem));
    gap: 0.65rem;
    padding: 1.1rem;
    border-radius: 20px;
    transform: translate(-50%, -0.8rem) scale(0.98);
    transform-origin: top center;
  }

  .page--home .home-menu-overlay::before {
    top: -0.85rem;
    left: 50%;
    width: 3rem;
    height: 1.7rem;
    border-radius: 999px 999px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.74);
    border-bottom: 0;
    transform: translateX(-50%);
  }

  .page--home .home-menu-overlay.is-open {
    transform: translate(-50%, 0) scale(1);
  }

  .page--home.is-scrolled .home-menu-overlay {
    top: 6.75rem;
    left: 0.85rem;
    transform: translateY(-0.8rem) scale(0.98);
    transform-origin: top left;
  }

  .page--home.is-scrolled .home-menu-overlay::before {
    top: -0.85rem;
    left: clamp(4rem, 26vw, 6rem);
    width: 3rem;
    height: 1.7rem;
    border-radius: 999px 999px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.74);
    border-bottom: 0;
    transform: none;
  }

  .page--home.is-scrolled .home-menu-overlay.is-open {
    transform: translateY(0) scale(1);
  }

  .page--home .home-menu-overlay a {
    min-height: 3.25rem;
    font-size: 1.2rem;
    letter-spacing: 0.01em;
  }

  .home-cta__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .home-cta {
    padding: 2rem 1.25rem;
  }

  .page--menu .site-header__inner {
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem 0.65rem;
  }

  .page--menu .site-logo img {
    width: clamp(68px, 21vw, 84px);
  }

  .page--menu .site-nav {
    justify-content: center;
    gap: 0.3rem;
    flex-wrap: wrap;
  }

  .page--menu .site-nav a {
    min-height: 2.15rem;
    padding: 0.48rem 0.7rem;
    font-size: 0.72rem;
  }

  .menu-order-call .contact-call {
    font-size: 0.9rem;
    padding: 0.6rem 1.1rem;
    min-height: 2.75rem;
    white-space: normal;
    text-align: center;
  }

  .menu-section__call-note {
    font-size: 0.9rem;
  }

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

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Persistent homepage navigation after the hero */
.page--home.is-scrolled .home-menu-overlay {
  top: calc(var(--floating-logo-docked-y) + var(--floating-logo-half-size));
  right: var(--floating-logo-docked-x);
  left: auto;
  display: flex;
  width: auto;
  padding: 0.45rem;
  gap: 0.2rem;
  border-radius: 999px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%);
  transform-origin: center right;
}

.page--home.is-scrolled .home-menu-overlay::before {
  display: none;
}

.page--home.is-scrolled .home-menu-overlay.is-open {
  transform: translateY(-50%);
}

.page--home.is-scrolled .home-menu-overlay a {
  min-height: 2.85rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font-size: clamp(0.76rem, 1.4vw, 0.9rem);
  letter-spacing: 0.02em;
  opacity: 1;
  transform: none;
}

.page--home.is-scrolled .home-menu-overlay a::after {
  bottom: 0.3rem;
  height: 2px;
}

@media (max-width: 520px) {
  .page--home.is-scrolled .home-hero__logo {
    opacity: 0;
    pointer-events: none;
  }

  .page--home.is-scrolled .home-menu-overlay,
  .page--home.is-scrolled .home-menu-overlay.is-open {
    top: 0.65rem;
    right: auto;
    left: 50%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: calc(100% - 1.25rem);
    padding: 0.35rem;
    gap: 0.15rem;
    border-radius: 18px;
    transform: translateX(-50%);
    transform-origin: top center;
  }

  .page--home.is-scrolled .home-menu-overlay a {
    min-height: 2.8rem;
    padding: 0.45rem 0.2rem;
    border: 0;
    border-radius: 14px;
    font-size: clamp(0.66rem, 3vw, 0.78rem);
    line-height: 1.15;
    text-align: center;
  }
}
