:root {
  color-scheme: light;
  --ink: #2f241d;
  --ink-soft: #3a2a21;
  --ink-raised: #49352a;
  --cream: #ffffff;
  --paper: #ffffff;
  --gold: #e4aa16;
  --gold-bright: #f4c33f;
  --cyan: #b9e8f0;
  --cyan-deep: #347984;
  --cyan-soft: #edf9fb;
  --sky: #d9f2f6;
  --white: #ffffff;
  --orange: #9b6b49;
  --green: #347984;
  --muted: #786b62;
  --line: rgba(77, 55, 42, 0.14);
  --shadow: 0 22px 58px rgba(72, 49, 34, 0.14);
  --nile: #087f8a;
  --nile-deep: #075d66;
  --ivory: #fff9ed;
  --section-blue-start: #edf9fb;
  --hero-gold: linear-gradient(135deg, #f8d86a 0%, #f4c33f 52%, #e2a915 100%);
  --section-gold: linear-gradient(145deg, #fff8de 0%, #f8e5a8 52%, #efcb62 112%);
  --section-blue: linear-gradient(180deg, #edf9fb 0%, #f7fcfc 54%, #e5f3f5 100%);
  --surface-card: rgba(255, 255, 255, 0.88);
  --surface-card-warm: rgba(255, 252, 244, 0.9);
  --card-border: rgba(8, 127, 138, 0.16);
  --card-shadow: 0 18px 48px rgba(25, 69, 75, 0.1);
  --radius-card: 24px 10px 24px 10px;
  --radius-feature: 34px 14px 34px 14px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cyan-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  border-radius: 8px;
  background: var(--gold-bright);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.menu-board :focus-visible,
.allergen-callout :focus-visible,
.info-card:not(.info-card--location) :focus-visible {
  outline-color: #76500a;
}

.order-banner .button:focus-visible,
.mobile-order-bar:focus-visible {
  outline-color: var(--ink);
}

.header-marker {
  position: absolute;
  top: 0;
  width: 1px;
  height: 1px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding-top: env(safe-area-inset-top);
  color: var(--ink);
  border-bottom: 1px solid rgba(21, 16, 12, 0.06);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.985);
  box-shadow: 0 12px 32px rgba(52, 35, 14, 0.12);
}

.site-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 0;
  padding: 3px;
  border: 1px solid rgba(77, 55, 42, 0.14);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(72, 49, 34, 0.1);
}

.brand__mark::before,
.brand__mark::after,
.brand__mark span {
  content: "";
  position: absolute;
  border: 0;
}

.brand__mark::before {
  width: 25px;
  height: 14px;
  border: 4px solid var(--ink);
  border-radius: 50% 50% 42% 42%;
  background: transparent;
}

.brand__mark::after {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateY(-1px);
}

.brand__mark span {
  display: none;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__mark:has(img)::before,
.brand__mark:has(img)::after {
  display: none;
}

.brand__copy {
  display: grid;
  line-height: 1.15;
}

.brand__copy strong {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.brand__copy small {
  margin-top: 4px;
  color: #6f655d;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: #2d2824;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: #8a6200;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav-toggle {
  display: none;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink);
  border: 1px solid var(--gold-bright);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 28px rgba(217, 162, 46, 0.2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(217, 162, 46, 0.26);
}

.button--small {
  min-height: 44px;
  padding-inline: 18px;
}

.button--hero {
  min-height: 58px;
  padding-inline: 28px;
}

.button--light {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 24%, rgba(217, 95, 40, 0.16), transparent 30%),
    radial-gradient(circle at 84% 32%, rgba(217, 162, 46, 0.12), transparent 27%),
    linear-gradient(145deg, #17100b 0%, #20140b 52%, #110d0a 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(240, 201, 104, 0.18) 49%, rgba(240, 201, 104, 0.18) 51%, transparent 52%),
    linear-gradient(-30deg, transparent 48%, rgba(240, 201, 104, 0.12) 49%, rgba(240, 201, 104, 0.12) 51%, transparent 52%);
  background-size: 44px 76px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
}

.hero__layout {
  position: relative;
  z-index: 2;
  min-height: 640px;
  padding-block: 88px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.76fr);
  align-items: center;
  gap: 80px;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.order-banner h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(64px, 8.2vw, 116px);
  line-height: 0.84;
}

.hero h1 em {
  display: block;
  color: var(--gold-bright);
  font-weight: 400;
}

.hero__lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: #cfc1b3;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__facts {
  margin: 32px 0 0;
  padding: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  color: #b8a898;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.hero__facts li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__facts li + li::before {
  content: "◆";
  margin-right: 12px;
  color: rgba(240, 201, 104, 0.55);
  font-size: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fbd7d;
  box-shadow: 0 0 0 4px rgba(111, 189, 125, 0.12);
}

.hero-card {
  position: relative;
  min-height: 490px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 104, 0.28);
  border-radius: 220px 220px 24px 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    #2a1b10;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(240, 201, 104, 0.16);
  border-radius: inherit;
}

.hero-card__sun {
  position: absolute;
  top: 48px;
  left: 50%;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 201, 104, 0.3), rgba(217, 95, 40, 0.05) 58%, transparent 70%);
  transform: translateX(-50%);
}

.hero-card__top,
.hero-card__bottom {
  position: relative;
  z-index: 2;
}

.hero-card__top {
  display: flex;
  justify-content: space-between;
  color: #c4b4a3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card__plate {
  position: absolute;
  z-index: 2;
  top: 120px;
  left: 50%;
  width: 300px;
  height: 300px;
  border: 20px solid #e9dcc9;
  border-radius: 50%;
  background: #fcf7ee;
  box-shadow:
    inset 0 0 0 3px rgba(62, 38, 20, 0.15),
    0 25px 45px rgba(8, 4, 2, 0.44);
  transform: translateX(-50%) rotate(-6deg);
}

.hero-card__plate-ring {
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(217, 162, 46, 0.48);
  border-radius: 50%;
}

.hero-card__food {
  position: absolute;
  border-radius: 54% 46% 52% 48%;
  background:
    radial-gradient(circle at 30% 30%, #f2bc55 0 8%, transparent 9%),
    radial-gradient(circle at 70% 60%, #7b4924 0 7%, transparent 8%),
    radial-gradient(circle at 50% 50%, #c87931, #7e3c1f);
  box-shadow: inset -8px -8px 14px rgba(50, 22, 8, 0.24);
}

.hero-card__food--one {
  top: 54px;
  left: 55px;
  width: 96px;
  height: 86px;
}

.hero-card__food--two {
  top: 80px;
  right: 47px;
  width: 84px;
  height: 94px;
}

.hero-card__food--three {
  bottom: 44px;
  left: 94px;
  width: 104px;
  height: 84px;
}

.hero-card__leaf {
  position: absolute;
  width: 58px;
  height: 25px;
  border-radius: 100% 0 100% 0;
  background: #567d4d;
}

.hero-card__leaf--one {
  top: 58px;
  left: 122px;
  transform: rotate(38deg);
}

.hero-card__leaf--two {
  right: 63px;
  bottom: 78px;
  transform: rotate(-25deg);
}

.hero-card__bottom {
  position: absolute;
  right: 30px;
  bottom: 29px;
  left: 30px;
  display: grid;
  text-align: center;
}

.hero-card__bottom strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 19px;
}

.hero-card__bottom span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
}

.marquee > div {
  min-width: max-content;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.marquee i {
  font-style: normal;
  opacity: 0.55;
}

/* Food-first homepage and menu presentation. */
.hero {
  min-height: 760px;
  color: var(--ink);
  border-bottom: 0;
  background: var(--hero-gold);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -6%;
  width: 112%;
  pointer-events: none;
}

.hero::after {
  bottom: -150px;
  left: -14%;
  width: 128%;
  height: 236px;
  border-radius: 47% 53% 0 0 / 94% 88% 0 0;
  background: var(--section-blue-start);
  transform: rotate(-0.65deg);
  transform-origin: 50% 100%;
}

.hero__layout {
  min-height: 720px;
  padding-block: 112px 136px;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(24px, 4vw, 66px);
}

.hero .eyebrow {
  color: #5a4210;
}

.hero h1 {
  max-width: 700px;
  font-family: var(--sans);
  font-size: clamp(66px, 7.5vw, 112px);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.hero h1 em {
  width: fit-content;
  margin-top: 14px;
  padding: 0.08em 0.14em 0.12em;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 0.58em;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  transform: rotate(-1.5deg);
}

.hero__lead {
  max-width: 510px;
  margin-top: 30px;
  color: #45330f;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 620;
  line-height: 1.55;
}

.hero__actions {
  margin-top: 30px;
}

.hero .button--hero,
.button--dark {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 15px 30px rgba(59, 39, 8, 0.2);
}

.hero .button--hero:hover,
.button--dark:hover {
  filter: none;
  box-shadow: 0 18px 36px rgba(59, 39, 8, 0.27);
}

.text-link--hero {
  color: var(--ink);
  text-decoration-thickness: 2px;
}

.hero__facts {
  color: #5e4818;
  border-top-color: rgba(21, 16, 12, 0.18);
}

.hero__facts li + li::before {
  color: rgba(21, 16, 12, 0.52);
}

.hero-media {
  --hero-shift: 0px;
  position: relative;
  z-index: 2;
  min-width: 0;
  margin: 0;
  transform: translate3d(0, var(--hero-shift), 0) rotate(1.2deg);
  transform-origin: center;
}

html[data-hero-parallax] .hero-media[data-hero-depth="1"] {
  --hero-shift: 2px;
}

html[data-hero-parallax] .hero-media[data-hero-depth="2"] {
  --hero-shift: 4px;
}

html[data-hero-parallax] .hero-media[data-hero-depth="3"] {
  --hero-shift: 6px;
}

html[data-hero-parallax] .hero-media[data-hero-depth="4"] {
  --hero-shift: 8px;
}

html[data-hero-parallax] .hero-media[data-hero-depth="5"] {
  --hero-shift: 10px;
}

html[data-hero-parallax] .hero-media[data-hero-depth="6"] {
  --hero-shift: 12px;
}

html[data-hero-parallax] .hero-media[data-hero-depth="7"] {
  --hero-shift: 14px;
}

html[data-hero-parallax] .hero-media[data-hero-depth="8"] {
  --hero-shift: 16px;
}

html[data-hero-parallax] .hero-media[data-hero-depth="9"] {
  --hero-shift: 18px;
}

html[data-hero-parallax] .hero-media[data-hero-depth="10"] {
  --hero-shift: 20px;
}

html[data-hero-parallax] .hero-media[data-hero-depth="11"] {
  --hero-shift: 22px;
}

html[data-hero-parallax] .hero-media[data-hero-depth="12"] {
  --hero-shift: 24px;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 11% 4% -1% 10%;
  border-radius: 48% 52% 10% 12%;
  background: rgba(255, 249, 230, 0.46);
  transform: rotate(-4deg);
}

.hero-media img {
  width: 112%;
  height: auto;
  max-width: none;
  margin-left: -7%;
  border-radius: 46% 54% 7% 8%;
  filter: saturate(1.03) contrast(1.02);
}

.hero-media figcaption {
  position: absolute;
  right: 0;
  bottom: 4%;
  min-width: 230px;
  padding: 17px 20px;
  display: grid;
  color: var(--paper);
  border-radius: 18px 0 18px 18px;
  background: var(--ink);
  box-shadow: 0 16px 36px rgba(48, 31, 6, 0.25);
  line-height: 1.2;
  transform: rotate(-1.5deg);
}

.hero-media figcaption span {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 19px;
}

.menu-preview {
  color: #271a11;
  background: var(--section-blue);
}

.menu-preview .eyebrow,
.page-hero .eyebrow {
  color: #7c5810;
}

.page-hero .eyebrow {
  color: #4f3a0d;
}

.favourite-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.favourite-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px 32px 12px 32px;
  background-color: var(--ink);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 20px 48px rgba(42, 58, 58, 0.15);
}

.favourite-card::before {
  content: none;
}

.favourite-card > span {
  position: absolute;
  top: 24px;
  left: 28px;
  z-index: 1;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 800;
}

.favourite-card p,
.favourite-card h3,
.favourite-card small {
  position: relative;
  z-index: 1;
}

.favourite-card p {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.favourite-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.favourite-card small {
  max-width: 31ch;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.55;
}

.favourite-card--falafel {
  background-image:
    linear-gradient(180deg, rgba(29, 20, 15, 0.06) 18%, rgba(29, 20, 15, 0.2) 52%, rgba(29, 20, 15, 0.9) 100%),
    url("/assets/images/menu-falafel.webp");
}

.favourite-card--fries {
  background-image:
    linear-gradient(180deg, rgba(29, 20, 15, 0.05) 18%, rgba(29, 20, 15, 0.2) 52%, rgba(29, 20, 15, 0.9) 100%),
    url("/assets/images/menu-loaded-fries.webp");
  transform: translateY(22px);
}

.favourite-card--kofta {
  background-image:
    linear-gradient(180deg, rgba(29, 20, 15, 0.06) 18%, rgba(29, 20, 15, 0.2) 52%, rgba(29, 20, 15, 0.9) 100%),
    url("/assets/images/menu-kofta.webp");
}

.menu-preview__action {
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.menu-preview__action p {
  margin: 0;
  color: #756453;
  font-size: 13px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--hero-gold);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -150px;
  left: -14%;
  height: 236px;
  border-radius: 47% 53% 0 0 / 94% 88% 0 0;
  background: var(--section-blue-start);
  transform: rotate(-0.65deg);
  transform-origin: 50% 100%;
}

.hero::after,
.home-hero::after,
.page-hero::after,
.policy-heading::after,
.order-hero::after {
  display: none;
}

.page-hero__layout {
  min-height: 520px;
  padding-block: 90px 130px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.page-hero h1 em {
  width: fit-content;
  margin-top: 12px;
  padding: 0.08em 0.14em 0.12em;
  display: block;
  color: #fffaf0;
  background: var(--ink);
  font-family: var(--serif);
  font-size: 0.62em;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  transform: rotate(-1deg);
}

.page-hero__layout > div:first-child > p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: #4f3b10;
  font-size: 18px;
  font-weight: 620;
}

.page-hero__stamp {
  width: 230px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 10px rgba(21, 16, 12, 0.12);
  text-align: center;
  transform: rotate(6deg);
}

.page-hero__stamp span,
.page-hero__stamp small {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.page-hero__stamp strong {
  margin-block: 4px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1;
}

.section {
  padding-block: 110px;
}

.menu-section {
  color: #271a11;
  background: var(--section-blue);
}

.section-heading {
  max-width: 760px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.menu-section .eyebrow,
.visit-section .eyebrow {
  color: #9b601e;
}

.section-heading h2,
.story-copy h2 {
  font-size: clamp(46px, 6vw, 74px);
  line-height: 0.98;
}

.section-heading > p,
.section-heading--split > p {
  margin: 0;
  color: #6c5d4e;
  font-size: 15px;
}

.menu-board {
  margin-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 24px;
}

.menu-board__side {
  display: grid;
  align-items: start;
  gap: 24px;
}

.menu-group {
  overflow: hidden;
  border: 1px solid #dfd1be;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 50px rgba(75, 48, 27, 0.08);
}

.menu-group__heading {
  min-height: 68px;
  padding: 17px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--cream);
  background: #2b1c12;
}

.menu-group__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.menu-group__heading span {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-list {
  padding-inline: 20px;
}

.menu-item {
  min-height: 92px;
  padding-block: 19px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 1px dashed #d7c8b6;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item h4,
.menu-item p {
  margin: 0;
}

.menu-item h4 {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
}

.menu-item p {
  margin-top: 5px;
  color: #7a6856;
  font-size: 12px;
}

.menu-item > strong {
  flex: 0 0 auto;
  color: #9b601e;
  font-family: var(--serif);
  font-size: 18px;
}

.menu-list--compact .menu-item {
  min-height: 0;
  padding-block: 13px;
}

.tag {
  margin-left: 6px;
  padding: 3px 6px;
  color: #365a3c;
  border: 1px solid rgba(54, 90, 60, 0.28);
  border-radius: 999px;
  background: rgba(83, 123, 88, 0.1);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: 2px;
}

.allergen-callout {
  margin-top: 28px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #332317;
  border: 1px solid rgba(155, 96, 30, 0.35);
  border-radius: 18px;
  background: #f7e8c9;
}

.allergen-callout__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 50%;
  background: #8c4f1f;
  font-weight: 900;
}

.allergen-callout p {
  margin: 3px 0 0;
  font-size: 13px;
}

.allergen-callout a {
  font-weight: 800;
}

.story-section {
  overflow: hidden;
  color: var(--ink);
  background: var(--cyan-soft);
}

.story-section__layout {
  display: grid;
  grid-template-columns: minmax(380px, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(46px, 6vw, 78px);
}

.story-van {
  position: relative;
  isolation: isolate;
  min-height: 0;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(246, 213, 104, 0.26);
  border-radius: var(--radius-feature);
  background: transparent;
  box-shadow: 0 26px 58px rgba(8, 5, 4, 0.26);
}

.story-van::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(222, 247, 249, 0.42);
  border-radius: inherit;
  pointer-events: none;
}

.story-van::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(9, 22, 24, 0.8) 100%);
  pointer-events: none;
}

.story-van img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.story-van figcaption {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 48px);
  margin: 0;
  padding: 9px 14px;
  color: var(--gold-bright);
  border: 1px solid rgba(255, 199, 25, 0.35);
  border-radius: 999px;
  background: rgba(13, 27, 30, 0.84);
  box-shadow: 0 10px 28px rgba(5, 17, 19, 0.25);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.19em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  backdrop-filter: blur(7px);
}

.story-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 26px 0 0;
  color: #675a52;
  font-size: 17px;
}

.story-copy blockquote {
  margin: 36px 0 0;
  padding: 12px 0 12px 24px;
  color: var(--gold-bright);
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
}

.visit-section {
  color: var(--ink);
  background: var(--cyan-soft);
}

.visit-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #dac7ad;
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.7);
}

.info-card--location {
  color: var(--cream);
  border-color: #2b1c12;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.12)),
    #2b1c12;
}

.info-card__number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-left: auto;
  color: #9b601e;
  border: 1px solid rgba(155, 96, 30, 0.35);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 13px;
}

.info-card--location .info-card__number {
  color: var(--gold-bright);
  border-color: rgba(240, 201, 104, 0.35);
}

.info-card__label {
  margin: 22px 0 12px;
  color: #6f553e;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.info-card--location .info-card__label {
  color: #bda78e;
}

.info-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 39px);
  font-weight: 500;
  line-height: 1.08;
}

.info-card > p:not(.info-card__label) {
  margin: 20px 0 0;
  color: #715e4c;
  font-size: 13px;
}

.info-card .text-link {
  margin-top: auto;
  padding-top: 28px;
  color: #7d4919;
}

.info-card--location .text-link {
  color: var(--gold-bright);
}

.order-banner {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 52%),
    var(--gold);
}

.order-banner__inner {
  min-height: 210px;
  padding-block: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.order-banner .eyebrow {
  color: #5c3713;
}

.order-banner h2 {
  max-width: 700px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
}

.site-footer {
  background: #100c09;
}

.site-footer__top {
  padding-block: 42px 30px;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(190px, 0.65fr) minmax(240px, 0.8fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}

.site-footer__intro > p {
  max-width: 390px;
  margin: 16px 0 0;
  color: #b9ab9d;
  font-size: 14px;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

.site-footer__group a {
  min-height: 44px;
  margin-left: -6px;
  padding-inline: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d1c5b8;
  font-size: 14px;
  text-decoration: none;
}

.site-footer__group a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: currentColor;
  opacity: 0.82;
}

.site-footer__group a:hover .site-footer__icon {
  opacity: 1;
}

.site-footer__email span {
  overflow-wrap: anywhere;
}

.site-footer__review-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 18px;
  color: #1d5ec6;
  border-radius: 50%;
  background: var(--cream);
  font-size: 10px;
  font-weight: 900;
}

.site-footer__address {
  display: grid;
  gap: 7px;
}

.site-footer__address strong {
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__address a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.45;
  text-decoration-color: rgba(240, 201, 104, 0.55);
  text-underline-offset: 4px;
}

.site-footer__bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #b9ab9d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom strong {
  color: var(--cream);
}

.mobile-order-bar {
  display: none;
}

@media (max-width: 980px) {
  .desktop-nav {
    gap: 20px;
  }

  .site-header__inner > .button {
    margin-left: auto;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(60px, 8.5vw, 88px);
  }

  .hero-card {
    min-height: 430px;
  }

  .hero-card__plate {
    top: 110px;
    width: 250px;
    height: 250px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .story-section__layout {
    gap: 42px;
  }

  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .visit-grid .info-card:last-child {
    grid-column: 1 / -1;
    min-height: 310px;
  }

  .site-footer__top {
    grid-template-columns: minmax(240px, 1.1fr) minmax(165px, 0.65fr) minmax(220px, 0.85fr);
    gap: 24px 30px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 128px;
  }

  body {
    padding-bottom: 0;
  }

  body.home-page {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header__inner {
    min-height: 0;
    padding-block: 8px;
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .site-header__inner > .button {
    min-height: 44px;
    margin-left: auto;
    padding-inline: 14px;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 11px;
  }

  .desktop-nav {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    order: 3;
  }

  .desktop-nav a {
    min-width: 0;
    justify-content: center;
    border-radius: 9px;
    font-size: 12px;
  }

  .desktop-nav a:hover {
    background: rgba(240, 201, 104, 0.08);
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__mark::before {
    width: 20px;
    height: 20px;
  }

  .brand__copy strong {
    font-size: 15px;
  }

  .brand__copy small {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: auto;
  }

  .hero__layout {
    min-height: 0;
    padding-block: 64px 48px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 17px;
  }

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

  .hero__actions .text-link {
    min-height: 44px;
    align-items: center;
  }

  .hero__facts {
    gap: 10px 18px;
  }

  .hero__facts li + li::before {
    display: none;
  }

  .hero-card {
    width: min(100%, 420px);
    min-height: 460px;
    margin-inline: auto;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading h2,
  .story-copy h2,
  .order-banner h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .menu-board {
    margin-top: 40px;
  }

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

  .story-section__layout {
    grid-template-columns: 1fr;
  }

  .story-van {
    width: 100%;
    min-height: 0;
    border-radius: 10px 96px 10px 10px;
    margin-inline: auto;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .visit-grid .info-card:last-child {
    grid-column: auto;
  }

  .info-card {
    min-height: 320px;
    padding: 28px 24px;
    align-items: center;
    text-align: center;
  }

  .info-card__number {
    margin-left: 0;
  }

  .info-card > p:not(.info-card__label) {
    max-width: 38ch;
    font-size: 14px;
  }

  .info-card .text-link {
    min-height: 44px;
    justify-content: center;
  }

  .order-banner__inner {
    min-height: 230px;
    padding-block: 30px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .order-banner h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .site-footer__top {
    padding-block: 38px 28px;
    grid-template-columns: minmax(0, 0.85fr) minmax(240px, 0.75fr);
    gap: 24px 30px;
  }

  .site-footer__intro {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    min-height: 0;
    padding-block: 18px max(18px, env(safe-area-inset-bottom));
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .home-page .mobile-order-bar {
    position: fixed;
    z-index: 120;
    right: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 10px;
    min-height: 52px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--ink);
    border: 1px solid #f8dd91;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    box-shadow: 0 16px 42px rgba(8, 4, 2, 0.48);
    text-decoration: none;
  }

  .mobile-order-bar > span:first-child {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
  }

  .mobile-order-bar > span:last-child {
    font-size: 22px;
  }
}

@media (max-width: 430px) {
  .hero__actions .button,
  .order-banner .button {
    width: 100%;
  }

  .hero-card {
    min-height: 400px;
    padding: 24px;
  }

  .hero-card__plate {
    top: 100px;
    width: 225px;
    height: 225px;
  }

  .hero-card__food--one {
    top: 44px;
    left: 42px;
  }

  .hero-card__food--two {
    top: 67px;
    right: 35px;
  }

  .hero-card__food--three {
    bottom: 33px;
    left: 72px;
  }

  .menu-item {
    gap: 14px;
  }

  .allergen-callout {
    padding: 18px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer__intro,
  .site-footer__socials {
    grid-column: auto;
  }

  .site-footer__top {
    padding-block: 34px 24px;
  }

  .site-footer__socials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 8px;
  }

  .site-footer__socials h2,
  .site-footer__socials .site-footer__review,
  .site-footer__socials .site-footer__email {
    grid-column: 1 / -1;
  }

  .site-footer__socials a {
    margin-left: 0;
    padding-inline: 2px;
  }

  .site-footer__bottom {
    padding-block: 14px max(14px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
}

@media (max-width: 330px) {
  .site-footer__bottom {
    display: flex;
    align-items: center;
    gap: 0;
  }
}

.section.section-theme--gold {
  color: var(--ink);
  background: var(--section-gold);
}

.section.section-theme--blue {
  color: var(--ink);
  background: var(--section-blue);
}

.section-theme--gold .eyebrow {
  color: #73520b;
}

.section-theme--gold .section-heading > p,
.section-theme--gold .section-heading--split > p,
.section-theme--gold .story-copy > p:not(.eyebrow) {
  color: #615039;
}

.page-hero--catering {
  background: var(--hero-gold);
}

.reviews-social-section,
.reviews-section {
  position: relative;
  overflow: hidden;
}

.reviews-social-layout {
  margin-top: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(300px, 0.62fr);
  align-items: stretch;
  gap: 20px;
}

.reviews-section .review-carousel {
  margin-top: 54px;
}

.review-carousel {
  min-width: 0;
  padding: clamp(28px, 4vw, 46px);
  color: var(--ink);
  border: 1px solid rgba(104, 74, 12, 0.16);
  border-radius: var(--radius-feature);
  background: var(--surface-card-warm);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
}

.review-carousel__viewport {
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.review-carousel__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 16px;
}

.review-card {
  min-width: 0;
  padding: 4px 2px;
}

.review-card__stars {
  margin: 0 0 20px;
  color: #b77d00;
  font-size: 16px;
  letter-spacing: 0.16em;
}

.review-card blockquote {
  max-width: 26ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.review-card cite {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-style: normal;
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(47, 36, 29, 0.14);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.review-card__avatar--nile {
  background: var(--nile);
}

.review-card__avatar--gold {
  color: #34271f;
  background: var(--gold-bright);
}

.review-card__avatar--brown {
  background: #34271f;
}

.review-card__author {
  min-width: 0;
  display: grid;
}

.review-card__author strong {
  font-size: 14px;
}

.review-card__author > span {
  margin-top: 2px;
  color: #6f655f;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.has-js .review-carousel__viewport {
  overflow: hidden;
}

.has-js .review-carousel__track {
  grid-template-columns: minmax(0, 1fr);
}

.has-js .review-card {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transform: translateX(18px) scale(0.985);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js [data-review-active="0"] [data-review-slide="0"],
.has-js [data-review-active="1"] [data-review-slide="1"],
.has-js [data-review-active="2"] [data-review-slide="2"],
.has-js [data-review-active="3"] [data-review-slide="3"] {
  opacity: 1;
  pointer-events: auto;
  user-select: text;
  transform: none;
}

.review-carousel__footer {
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(77, 55, 42, 0.12);
}

.review-carousel__google-link {
  color: #73520b;
  font-size: 12px;
  font-weight: 850;
  text-underline-offset: 4px;
}

.review-carousel__controls {
  display: none;
  align-items: center;
  gap: 10px;
}

.has-js .review-carousel__controls {
  display: flex;
}

.review-carousel__controls button {
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(77, 55, 42, 0.16);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(72, 49, 34, 0.1);
  font: inherit;
  font-size: 18px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.review-carousel__controls button:hover {
  border-color: var(--gold);
  background: #fff8dc;
  transform: translateY(-1px);
}

.review-carousel__status {
  min-width: 78px;
  margin: 0;
  color: #6f655f;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.social-spotlight {
  min-width: 0;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-feature);
  background: linear-gradient(145deg, #34271f 0%, #1b1410 72%, #0a4c54 132%);
  box-shadow: 0 20px 54px rgba(47, 36, 29, 0.18);
}

.social-spotlight .eyebrow {
  color: var(--gold-bright);
}

.social-spotlight h3 {
  max-width: 9ch;
  margin: 18px 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.social-spotlight > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #d9eef1;
  font-size: 14px;
}

.social-spotlight__links {
  margin-top: 28px;
  display: grid;
  gap: 9px;
}

.social-spotlight__links a {
  min-height: 54px;
  padding: 8px 13px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  border: 1px solid rgba(185, 232, 240, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.social-spotlight__links a:hover {
  border-color: rgba(244, 195, 63, 0.58);
  background: rgba(255, 255, 255, 0.11);
  transform: translateX(2px);
}

.social-spotlight__links svg {
  width: 22px;
  height: 22px;
  color: var(--gold-bright);
}

.social-spotlight__links i {
  color: var(--gold-bright);
  font-size: 16px;
  font-style: normal;
  text-align: right;
}

@media (max-width: 980px) {
  .reviews-social-layout {
    grid-template-columns: 1fr;
  }

  .social-spotlight h3 {
    max-width: none;
  }

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

@media (max-width: 720px) {
  .reviews-social-layout,
  .reviews-section .review-carousel {
    margin-top: 38px;
  }

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

  .review-carousel__controls {
    width: 100%;
    justify-content: space-between;
  }

  .social-spotlight__links {
    grid-template-columns: 1fr;
  }

  .catering-teaser__flag {
    right: -24%;
    width: 76%;
    opacity: 0.11;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not([data-motion-preference="full"]) {
    scroll-behavior: auto;
  }

  html:not([data-motion-preference="full"]) *,
  html:not([data-motion-preference="full"]) *::before,
  html:not([data-motion-preference="full"]) *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.brand--footer {
  color: var(--cream);
}

.brand--footer .brand__copy small {
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header__inner {
    gap: 16px;
  }

  .brand__copy small {
    display: none;
  }

  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(350px, 1.1fr);
    gap: 24px;
  }

  .hero-media img {
    width: 106%;
    margin-left: -3%;
  }

  .favourite-card {
    min-height: 310px;
    padding: 25px;
  }

  .page-hero__layout {
    gap: 40px;
  }

  .page-hero__stamp {
    width: 190px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 132px;
  }

  .site-header__inner {
    padding-block: 8px 7px;
  }

  .desktop-nav {
    width: 100%;
    margin: 0;
    padding-bottom: 2px;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    order: 3;
    scrollbar-width: none;
  }

  .desktop-nav::-webkit-scrollbar {
    display: none;
  }

  .desktop-nav a {
    min-width: max-content;
    padding-inline: 14px;
  }

  .desktop-nav a::after {
    right: 13px;
    left: 13px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__copy strong {
    font-size: 16px;
  }

  .hero::after {
    bottom: -122px;
    height: 188px;
  }

  .hero__layout {
    padding-block: 104px 100px;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(56px, 17vw, 84px);
  }

  .hero h1 em {
    margin-top: 10px;
    font-size: 0.55em;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero-media {
    width: min(100%, 600px);
    margin-inline: auto;
    transform: translate3d(0, var(--hero-shift), 0) rotate(0.8deg);
  }

  .hero-media img {
    width: 112%;
    margin-left: -7%;
  }

  .hero-media figcaption {
    right: 2%;
    bottom: 1%;
    min-width: 210px;
  }

  .favourite-grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }

  .favourite-card {
    min-height: 280px;
  }

  .favourite-card--fries {
    transform: none;
  }

  .menu-preview__action {
    margin-top: 38px;
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero::after {
    bottom: -116px;
    height: 180px;
  }

  .page-hero__layout {
    min-height: 0;
    padding-block: 72px 100px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .page-hero h1 {
    font-size: clamp(54px, 15vw, 82px);
  }

  .page-hero__stamp {
    width: 160px;
    margin-inline: auto;
  }
}

@media (max-width: 430px) {
  .site-header__inner > .button {
    padding-inline: 12px;
  }

  .site-header__inner > .button span {
    display: none;
  }

  .hero__layout {
    padding-top: 92px;
  }

  .hero__lead {
    font-size: 16px;
  }

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

  .hero-media figcaption {
    right: 0;
    min-width: 190px;
    padding: 14px 16px;
  }

  .hero-media figcaption strong {
    font-size: 17px;
  }

  .favourite-card {
    min-height: 260px;
    border-radius: 24px 24px 10px 24px;
  }
}

@media (max-width: 330px) {
  .site-header .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand {
    gap: 8px;
  }

  .brand__copy strong {
    font-size: 14px;
  }

  .site-header__inner > .button {
    padding-inline: 10px;
    font-size: 10px;
  }
}

/* Gold, white and cyan brand layer. */
.brand__mark {
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.brand:hover .brand__mark {
  box-shadow: 0 8px 22px rgba(72, 49, 34, 0.15);
  transform: translateY(-1px);
}

.hero h1 em,
.page-hero h1 em {
  transform-origin: left center;
}

.trust-ribbon {
  position: relative;
  z-index: 3;
  padding-block: 34px 40px;
  color: var(--ink);
  background: var(--section-blue-start);
}

.trust-ribbon__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-ribbon p {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 21px 22px 20px 76px;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(8, 127, 138, 0.2);
  border-radius: 24px 10px 24px 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 218, 0.9));
  box-shadow: 0 16px 38px rgba(25, 69, 75, 0.1);
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.trust-ribbon p::before {
  content: "0" counter(trust-item);
  position: absolute;
  top: 50%;
  left: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #5c4208;
  border: 1px solid rgba(228, 170, 22, 0.5);
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe98d, var(--gold-bright));
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  transform: translateY(-50%);
}

.trust-ribbon__inner {
  counter-reset: trust-item;
}

.trust-ribbon p {
  counter-increment: trust-item;
}

@media (hover: hover) and (pointer: fine) {
  .trust-ribbon p:hover {
    border-color: rgba(8, 127, 138, 0.34);
    box-shadow: 0 20px 44px rgba(25, 69, 75, 0.14);
    transform: translateY(-3px);
  }
}

.trust-ribbon strong {
  color: #6e4e00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-ribbon span {
  margin-top: 2px;
  color: #41666a;
  font-size: 11px;
  font-weight: 650;
}

.menu-preview {
  background: var(--section-blue);
}

.favourite-card--fries {
  background-image:
    linear-gradient(180deg, rgba(29, 20, 15, 0.05) 18%, rgba(29, 20, 15, 0.2) 52%, rgba(29, 20, 15, 0.9) 100%),
    url("/assets/images/menu-loaded-fries.webp");
}

.favourite-card--kofta {
  color: var(--white);
  background-image:
    linear-gradient(180deg, rgba(29, 20, 15, 0.06) 18%, rgba(29, 20, 15, 0.2) 52%, rgba(29, 20, 15, 0.9) 100%),
    url("/assets/images/menu-kofta.webp");
}

.section.story-section.section-theme--gold {
  color: var(--paper);
  background: linear-gradient(145deg, #34271f 0%, #211711 72%, #075d66 145%);
}

.story-section .eyebrow {
  color: var(--gold-bright);
}

.story-section .story-copy h2 {
  color: var(--paper);
}

.section.story-section .story-copy > p:not(.eyebrow) {
  color: #bde8ec;
}

.story-section .story-copy blockquote {
  color: #f9df83;
  border-left-color: var(--gold-bright);
}

.catering-teaser {
  color: var(--ink);
  background: var(--section-blue);
}

.catering-teaser__card {
  position: relative;
  min-height: 340px;
  padding: clamp(38px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  border: 1px solid rgba(8, 127, 138, 0.22);
  border-radius: var(--radius-feature);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 249, 251, 0.94));
  box-shadow: var(--card-shadow);
}

.catering-teaser__flag {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  filter: saturate(0.92) contrast(1.03);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 22%, #000 54%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 22%, #000 54%);
  pointer-events: none;
}

.catering-teaser__copy {
  position: relative;
  z-index: 1;
}

.catering-teaser .eyebrow,
.catering-options .eyebrow,
.enquiry-section .eyebrow {
  color: #08717a;
}

.catering-teaser h2,
.enquiry-section h2 {
  max-width: 12ch;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.96;
}

.catering-teaser__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: #486266;
}

.dietary-pills {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.dietary-pills li {
  padding: 8px 12px;
  color: #17565c;
  border: 1px solid rgba(8, 127, 138, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.catering-teaser__card > .button {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.visit-section {
  background: var(--section-blue);
}

.visit-showcase {
  margin-top: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 20px;
}

.visit-showcase--planner {
  margin-top: 28px;
  padding: 16px;
  gap: 16px;
  border: 1px solid rgba(8, 127, 138, 0.16);
  border-radius: 42px 16px 42px 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(185, 232, 240, 0.42));
  box-shadow: 0 22px 56px rgba(25, 69, 75, 0.08);
}

.visit-map-card,
.visit-van-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 127, 138, 0.2);
  border-radius: var(--radius-feature);
  box-shadow: var(--card-shadow);
}

.visit-map-card {
  padding: 10px;
  display: grid;
  background: rgba(255, 255, 255, 0.88);
}

.visit-map-card__frame {
  min-height: 340px;
  overflow: hidden;
  border-radius: 24px 8px 24px 8px;
  background: var(--cyan);
}

.visit-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  border: 0;
}

.visit-map-card__caption {
  padding: 22px 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.visit-map-card__caption p,
.visit-map-card__caption h3,
.visit-map-card__caption span {
  margin: 0;
}

.visit-map-card__caption p {
  color: var(--cyan-deep);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.visit-map-card__caption h3 {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.7vw, 35px);
  font-weight: 600;
  line-height: 1;
}

.visit-map-card__caption div > span {
  margin-top: 7px;
  display: block;
  color: #64777a;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.visit-map-card__caption .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.visit-van-card {
  position: relative;
  isolation: isolate;
  min-height: 478px;
  margin: 0;
  background: var(--ink);
}

.visit-van-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(18, 12, 8, 0.9) 100%);
  pointer-events: none;
}

.visit-van-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.visit-van-card figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  color: var(--white);
}

.visit-van-card figcaption span {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visit-van-card figcaption strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 45px);
  line-height: 0.98;
}

.visit-van-card figcaption small {
  max-width: 34ch;
  margin-top: 12px;
  color: #d5e2e3;
  font-size: 12px;
  line-height: 1.55;
}

.visit-section .visit-grid {
  margin-top: 24px;
}

.visit-section .visit-grid--planner {
  margin-top: 48px;
}

.visit-section .info-card {
  min-height: 300px;
}

.visit-section .visit-grid--planner .info-card:nth-child(2) {
  border-color: rgba(228, 170, 22, 0.38);
  background: linear-gradient(145deg, #fff9e8, #f7e4a8);
}

.visit-section .visit-grid--planner .info-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(221, 246, 249, 0.9));
}

.info-card {
  border-color: rgba(8, 127, 138, 0.22);
  border-radius: var(--radius-card);
  background: var(--surface-card);
  box-shadow: 0 14px 38px rgba(25, 69, 75, 0.08);
}

.info-card.info-card--location {
  color: var(--cream);
  border-color: #2b1c12;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.12)),
    #2b1c12;
  box-shadow: 0 18px 44px rgba(43, 28, 18, 0.16);
}

.info-card__number {
  color: var(--cyan-deep);
  border-color: rgba(8, 127, 138, 0.28);
  background: var(--cyan-soft);
}

.order-banner {
  color: var(--ink);
  border-block: 1px solid rgba(117, 80, 8, 0.16);
  background: var(--hero-gold);
}

.order-banner .eyebrow {
  color: #5f4209;
}

.order-banner .button--light {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 15px 30px rgba(59, 39, 8, 0.2);
}

.menu-section {
  background: var(--section-blue);
}

.menu-trust-row {
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.menu-trust-row li {
  min-width: 0;
  padding: 18px 20px;
  display: grid;
  border: 1px solid rgba(8, 127, 138, 0.18);
  border-radius: 18px 18px 6px 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(8, 127, 138, 0.07);
}

.menu-trust-row strong {
  color: #795600;
  font-family: var(--serif);
  font-size: 19px;
}

.menu-trust-row span {
  margin-top: 3px;
  color: #597174;
  font-size: 11px;
}

.menu-group {
  border-color: rgba(8, 127, 138, 0.2);
  border-radius: var(--radius-feature);
  background: var(--surface-card);
  box-shadow: var(--card-shadow);
}

.menu-board {
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
  align-items: start;
}

.menu-group__heading {
  min-height: 76px;
  padding-inline: 26px;
}

.menu-group__heading h3 {
  font-size: 25px;
}

.menu-list {
  padding: 12px;
}

.menu-group--main .menu-group__heading span {
  color: var(--sky);
}

.menu-group--cyan .menu-group__heading {
  color: var(--ink);
  background: var(--cyan);
}

.menu-group--gold .menu-group__heading {
  color: var(--ink);
  background: var(--gold-bright);
}

.menu-item {
  padding-inline: 12px;
  border-bottom-color: rgba(8, 127, 138, 0.19);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.44);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.menu-item + .menu-item {
  margin-top: 6px;
}

.menu-item:hover {
  background: rgba(223, 249, 251, 0.92);
  box-shadow: 0 10px 26px rgba(8, 127, 138, 0.08);
  transform: translateX(3px);
}

.menu-item > strong {
  color: var(--cyan-deep);
}

.menu-item--pictured {
  min-height: 108px;
  padding-block: 14px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.menu-item--pictured > div,
.menu-item--pictured > h4 {
  min-width: 0;
}

.menu-item__image {
  width: 78px;
  height: 78px;
  display: block;
  object-fit: cover;
  border: 2px solid var(--white);
  border-radius: 19px;
  box-shadow: 0 8px 20px rgba(46, 34, 25, 0.14);
}

.menu-item__details {
  min-height: 34px;
  margin-top: 9px;
  padding: 4px 0;
  color: #6e4e00;
  border: 0;
  border-bottom: 1px solid rgba(110, 78, 0, 0.42);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-item__details:hover {
  color: var(--cyan-deep);
  border-bottom-color: var(--cyan-deep);
  transform: translateX(2px);
}

.menu-details-dialog {
  width: min(820px, calc(100% - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
  color: var(--ink);
  border: 1px solid rgba(8, 127, 138, 0.26);
  border-radius: 34px 14px 34px 14px;
  background: var(--paper);
  box-shadow: 0 36px 100px rgba(29, 20, 15, 0.3);
}

.menu-details-dialog::backdrop {
  background: rgba(29, 20, 15, 0.64);
  backdrop-filter: blur(8px);
}

.menu-details-dialog__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
}

.menu-details-dialog__close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(77, 55, 42, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(29, 20, 15, 0.12);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.menu-details-dialog__image {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.menu-details-dialog__content {
  padding: 62px 46px 42px;
}

.menu-details-dialog__title-row {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.menu-details-dialog__title-row h2,
.menu-details-dialog__summary,
.menu-details-dialog__option,
.menu-details-dialog__notice p {
  margin: 0;
}

.menu-details-dialog__title-row h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.menu-details-dialog__title-row > strong {
  flex: 0 0 auto;
  color: var(--cyan-deep);
  font-family: var(--serif);
  font-size: 22px;
}

.menu-details-dialog__summary {
  margin-top: 24px;
  color: #4f4037;
  font-size: 16px;
}

.menu-details-dialog__option {
  margin-top: 8px;
  color: #6f5b4c;
  font-size: 13px;
}

.menu-details-dialog__notice {
  margin-block: 26px;
  padding: 19px;
  color: #3f330e;
  border: 1px solid rgba(228, 170, 22, 0.36);
  border-radius: 18px 8px 18px 8px;
  background: linear-gradient(145deg, #fff9e9, #f8e9b9);
}

.menu-details-dialog__notice strong {
  display: block;
  font-size: 13px;
}

.menu-details-dialog__notice p {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.55;
}

.menu-details-dialog__notice a {
  margin-top: 12px;
  display: inline-flex;
  color: #6e4e00;
  font-size: 12px;
  font-weight: 900;
  text-underline-offset: 4px;
}

.menu-item__image--coffee {
  object-position: 73% center;
}

.menu-item__image--tea {
  object-position: 24% center;
}

.menu-item__upgrade {
  color: var(--cyan-deep);
  font-weight: 900;
}

.menu-list--compact .menu-item--pictured {
  min-height: 72px;
  padding-block: 9px;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 11px;
}

.menu-list--compact .menu-item__image {
  width: 52px;
  height: 52px;
  border-radius: 15px;
}

.tag {
  color: #075f67;
  border-color: rgba(8, 127, 138, 0.26);
  background: var(--cyan-soft);
}

.page-hero--catering {
  background: var(--hero-gold);
}

.page-hero--catering h1 em {
  max-width: 12ch;
}

.page-hero__stamp--cyan {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--cyan-soft);
  box-shadow: 0 0 0 10px rgba(8, 127, 138, 0.14);
}

.page-hero__stamp--cyan strong {
  color: var(--cyan-deep);
  font-size: 27px;
}

.catering-options {
  color: var(--ink);
  background: var(--section-blue);
}

.service-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(8, 127, 138, 0.18);
  border-radius: var(--radius-feature);
  box-shadow: var(--card-shadow);
}

.service-card::after {
  content: "";
  position: absolute;
  top: -44px;
  right: 24px;
  width: 104px;
  height: 150px;
  border: 1px solid rgba(8, 127, 138, 0.2);
  border-radius: 52px 52px 0 0;
}

.service-card--gold {
  background: linear-gradient(180deg, #fff8e5, #f8e8b6);
}

.service-card--cyan {
  background: linear-gradient(180deg, #f4fbfc, #dceff2);
}

.service-card--light {
  background: var(--surface-card);
}

.service-card__number {
  position: absolute;
  top: 26px;
  left: 28px;
  color: rgba(21, 16, 12, 0.72);
  font-family: var(--serif);
  font-weight: 800;
}

.service-card p,
.service-card h3,
.service-card small {
  position: relative;
  z-index: 1;
}

.service-card p {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3.7vw, 48px);
  line-height: 1;
}

.service-card small {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.55;
}

.catering-values {
  margin-top: 26px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border: 1px solid rgba(8, 127, 138, 0.17);
  border-radius: var(--radius-card);
  background: var(--surface-card);
}

.catering-values p {
  margin: 0;
  display: grid;
}

.catering-values strong {
  color: #755300;
  font-family: var(--serif);
  font-size: 19px;
}

.catering-values span {
  color: #4c6c6f;
  font-size: 12px;
}

.enquiry-section {
  position: relative;
  color: var(--ink);
  background: var(--section-gold);
}

.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.65fr);
  align-items: start;
  gap: clamp(44px, 8vw, 100px);
}

.enquiry-layout > div > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #47676a;
}

.enquiry-checklist {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.enquiry-checklist li {
  min-height: 58px;
  padding: 8px 14px 8px 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(8, 127, 138, 0.17);
  border-radius: 16px 6px 16px 6px;
  background: var(--surface-card-warm);
  font-weight: 720;
}

.enquiry-checklist span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  border-radius: 50%;
  background: var(--gold-bright);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 800;
}

.enquiry-card {
  padding: clamp(30px, 5vw, 48px);
  color: var(--cream);
  border-radius: var(--radius-feature);
  background:
    radial-gradient(circle at 90% 8%, rgba(53, 205, 216, 0.24), transparent 30%),
    var(--ink-soft);
  box-shadow: var(--shadow);
}

.enquiry-card__label {
  margin: 0;
  color: var(--sky);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.enquiry-card h3 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
}

.enquiry-card > p:not(.enquiry-card__label, .enquiry-card__address) {
  margin: 20px 0 0;
  color: #c6d5d6;
}

.button--cyan {
  width: 100%;
  margin-top: 28px;
  color: var(--ink);
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 14px 34px rgba(53, 205, 216, 0.2);
}

.enquiry-card__email {
  min-height: 44px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  font-size: 13px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.enquiry-card__address {
  margin: 26px 0 0;
  padding-top: 22px;
  color: #c6d5d6;
  border-top: 1px solid rgba(174, 234, 240, 0.18);
  font-size: 12px;
}

.enquiry-card__address strong {
  color: var(--gold-bright);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.enquiry-card__address a {
  color: var(--cream);
  font-weight: 700;
  text-underline-offset: 3px;
}

.catering-allergen {
  padding-block: 10px 100px;
  color: var(--ink);
  background: var(--section-gold);
}

.catering-allergen .allergen-callout {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.78);
}

@keyframes mobile-nav-drawer-in {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobile-nav-drawer-out {
  to {
    opacity: 0;
    transform: translateY(-8px) scale(0.99);
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 12px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .site-header__inner {
    gap: 16px;
  }
}

@media (max-width: 820px) {
  .enquiry-layout {
    grid-template-columns: 1fr;
  }

  .enquiry-card {
    width: min(100%, 620px);
  }

  .visit-showcase {
    grid-template-columns: 1fr;
  }

  .visit-van-card {
    min-height: 420px;
  }

  .menu-details-dialog__card {
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  }

  .menu-details-dialog__content {
    padding: 62px 30px 34px;
  }
}

@media (max-width: 720px) {
  .catering-teaser__flag {
    opacity: 0.32;
  }

  html.has-js {
    scroll-padding-top: 82px;
  }

  html.mobile-nav-open {
    overflow: hidden;
  }

  html.mobile-nav-open body > main,
  html.mobile-nav-open body > footer,
  html.mobile-nav-open body > .mobile-order-bar {
    filter: blur(7px);
    opacity: 0.56;
    pointer-events: none;
    transition: filter 200ms ease, opacity 200ms ease;
  }

  html.mobile-nav-open .site-header {
    background: #fffaf2;
    box-shadow: 0 12px 30px rgba(46, 33, 27, 0.2);
  }

  .has-js .site-header__inner {
    min-height: 64px;
    padding-block: 8px;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .has-js .desktop-nav {
    display: none;
  }

  .has-js .mobile-nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #3b2a22;
    border: 1px solid rgba(8, 127, 138, 0.16);
    border-radius: 12px;
    background: #dff3f7;
    box-shadow: none;
    font: inherit;
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
  }

  .mobile-nav-toggle__icon {
    position: relative;
    width: 17px;
    height: 14px;
    display: block;
    flex: 0 0 auto;
  }

  .mobile-nav-toggle__icon::before,
  .mobile-nav-toggle__icon::after,
  .mobile-nav-toggle__icon span {
    content: "";
    position: absolute;
    left: 0;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-nav-toggle__icon::before {
    top: 0;
  }

  .mobile-nav-toggle__icon span {
    top: 6px;
  }

  .mobile-nav-toggle__icon::after {
    bottom: 0;
  }

  .mobile-nav-drawer {
    position: fixed;
    z-index: 400;
    inset: max(72px, calc(env(safe-area-inset-top) + 68px)) 10px auto;
    width: min(calc(100% - 20px), 520px);
    max-width: none;
    max-height: calc(100dvh - 84px);
    margin: 0 auto;
    padding: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink);
    border: 1px solid rgba(8, 127, 138, 0.28);
    border-radius: 18px;
    background: #fffaf2;
    box-shadow: 0 22px 60px rgba(46, 33, 27, 0.24);
    transform-origin: top center;
  }

  .mobile-nav-drawer[open] {
    display: grid;
    animation: mobile-nav-drawer-in 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .mobile-nav-drawer.is-closing {
    animation: mobile-nav-drawer-out 200ms cubic-bezier(0.4, 0, 1, 1) both;
  }

  .mobile-nav-drawer::backdrop {
    background: transparent;
  }

  .mobile-nav-drawer__header {
    padding: 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .mobile-nav-drawer__header p,
  .mobile-nav-drawer__header h2 {
    margin: 0;
  }

  .mobile-nav-drawer__header p {
    color: #8a6300;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.19em;
    text-transform: uppercase;
  }

  .mobile-nav-drawer__header h2 {
    margin-top: 4px;
    font-family: var(--serif);
    font-size: 23px;
    line-height: 1;
    letter-spacing: -0.035em;
  }

  .mobile-nav-drawer__header button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--ink);
    border: 1px solid rgba(8, 127, 138, 0.16);
    border-radius: 50%;
    background-color: #dff3f7;
    background-image: url("/assets/vendor/mdi/close.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    box-shadow: none;
    cursor: pointer;
  }

  .mobile-nav-drawer :focus-visible {
    outline-color: #087f8a;
  }

  .mobile-nav-drawer__links {
    display: grid;
    gap: 2px;
  }

  .mobile-nav-drawer__links a {
    min-height: 48px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    color: var(--ink);
    border: 0;
    border-radius: 10px;
    background: transparent;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease;
  }

  .mobile-nav-drawer__links a:hover {
    color: #765000;
    background: #eef8fa;
  }

  .mobile-nav-drawer__links a[aria-current="page"] {
    color: var(--ink);
    background: #dff3f7;
    box-shadow: inset 3px 0 #087f8a;
  }

  .mobile-nav-drawer__links strong {
    min-width: 0;
    font-size: 15px;
    font-weight: 850;
  }

  .mobile-nav-drawer__order {
    min-height: 52px;
    margin-top: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #fffaf0;
    border-radius: 12px;
    background: #2e211b;
    box-shadow: 0 12px 24px rgba(46, 33, 27, 0.16);
    text-decoration: none;
  }

  .mobile-nav-drawer__order > span:first-child {
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-nav-drawer__order > span:last-child {
    font-size: 20px;
  }

  .mobile-nav-drawer__review {
    min-height: 46px;
    margin-top: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #075f67;
    border: 1px solid rgba(8, 127, 138, 0.28);
    border-radius: 12px;
    background: #eef8fa;
    font-size: 12px;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
  }

  .trust-ribbon {
    padding-block: 20px 28px;
  }

  .trust-ribbon__inner,
  .menu-trust-row,
  .service-grid,
  .catering-values {
    grid-template-columns: 1fr;
  }

  .trust-ribbon p {
    padding-left: 74px;
    border-radius: 18px;
    text-align: left;
  }

  .menu-details-dialog {
    width: min(620px, calc(100% - 20px));
    max-height: calc(100dvh - 20px);
    border-radius: 28px 12px 28px 12px;
  }

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

  .menu-details-dialog__image {
    height: 238px;
    min-height: 0;
  }

  .menu-details-dialog__content {
    padding: 32px 24px 28px;
  }

  .menu-details-dialog__title-row {
    margin-top: 12px;
  }

  .menu-details-dialog__close {
    top: 12px;
    right: 12px;
  }

  .visit-showcase {
    margin-top: 38px;
  }

  .visit-showcase--planner {
    padding: 10px;
    border-radius: 30px 12px 30px 12px;
  }

  .visit-map-card,
  .visit-van-card {
    border-radius: 28px 28px 10px 28px;
  }

  .visit-map-card__frame,
  .visit-map-card iframe {
    min-height: 300px;
  }

  .visit-map-card__caption {
    padding: 20px 12px 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .visit-map-card__caption .button {
    width: 100%;
  }

  .visit-van-card {
    min-height: 360px;
  }

  .visit-van-card figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .catering-teaser__card {
    padding: 38px 26px;
    grid-template-columns: 1fr;
    gap: 30px;
    border-radius: 44px 18px 44px 18px;
  }

  .catering-teaser__card > .button {
    width: fit-content;
  }

  .menu-trust-row {
    margin-top: 28px;
  }

  .service-grid {
    margin-top: 38px;
  }

  .service-card {
    min-height: 280px;
  }

  .catering-values {
    padding: 20px;
  }

  .page-hero--catering h1 em {
    max-width: 10ch;
  }
}

@media (max-width: 430px) {
  .story-van {
    min-height: 0;
  }

  .story-van figcaption {
    bottom: 18px;
    max-width: calc(100% - 24px);
    padding: 7px 10px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .visit-map-card__frame,
  .visit-map-card iframe {
    min-height: 260px;
  }

  .visit-van-card {
    min-height: 310px;
  }

  .catering-teaser__card > .button,
  .button--cyan {
    width: 100%;
  }

  .enquiry-checklist li {
    border-radius: 20px;
  }

  .enquiry-card {
    border-radius: 28px 28px 10px 28px;
  }

  .menu-item--pictured {
    grid-template-columns: 60px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .menu-item__image {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .menu-list--compact .menu-item--pictured {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .menu-list--compact .menu-item__image {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

@media (max-width: 330px) {
  .has-js .site-header .brand__copy {
    display: none;
  }

  .menu-item--pictured {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
  }

  .menu-item__image {
    width: 52px;
    height: 52px;
    grid-column: 1;
    grid-row: 1 / span 2;
    border-radius: 14px;
  }

  .menu-item--pictured > div,
  .menu-item--pictured > h4 {
    grid-column: 2;
    grid-row: 1;
  }

  .menu-item--pictured > strong {
    margin-top: 2px;
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .menu-list--compact .menu-item--pictured {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 7px;
  }

  .menu-list--compact .menu-item__image {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not([data-motion-preference="full"]) .story-van img,
  html:not([data-motion-preference="full"]) .visit-van-card img {
    animation: none;
    transform: none;
  }

  html:not([data-motion-preference="full"]) .hero h1 em,
  html:not([data-motion-preference="full"]) .page-hero h1 em {
    animation: none;
    transform: rotate(-1deg);
  }

  html:not([data-motion-preference="full"]) .brand:hover .brand__mark,
  html:not([data-motion-preference="full"]) .menu-item:hover,
  html:not([data-motion-preference="full"]) .mobile-nav-drawer__links a:hover,
  html:not([data-motion-preference="full"]) .social-spotlight__links a:hover,
  html:not([data-motion-preference="full"]) .review-carousel__controls button:hover {
    transform: none;
  }

  html:not([data-motion-preference="full"]) .review-card,
  html:not([data-motion-preference="full"]) body > main,
  html:not([data-motion-preference="full"]) body > footer {
    transition: none;
  }

  html:not([data-motion-preference="full"]) .mobile-nav-drawer[open],
  html:not([data-motion-preference="full"]) .mobile-nav-drawer.is-closing,
  html:not([data-motion-preference="full"]) .mobile-nav-drawer::backdrop {
    animation: none;
  }
}

@media (forced-colors: active) {
  .trust-ribbon p,
  .catering-teaser__card,
  .menu-trust-row li,
  .service-card,
  .catering-values,
  .enquiry-checklist li,
  .enquiry-card,
  .visit-map-card,
  .visit-van-card,
  .review-carousel,
  .review-carousel__controls button,
  .social-spotlight,
  .social-spotlight__links a,
  .mobile-nav-toggle,
  .mobile-nav-drawer,
  .mobile-nav-drawer__links a,
  .mobile-nav-drawer__header button,
  .mobile-nav-drawer__order,
  .mobile-nav-drawer__review {
    border: 1px solid CanvasText;
  }
}
