@font-face {
  font-family: "Shrikhand";
  src: url("assets/fonts/shrikhand-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson";
  src: url("assets/fonts/atkinson-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson";
  src: url("assets/fonts/atkinson-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson";
  src: url("assets/fonts/atkinson-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --white: oklch(1 0 0);
  --near-white: oklch(0.975 0.007 145);
  --ink: oklch(0.22 0.028 28);
  --muted: oklch(0.43 0.035 29);
  --red: oklch(0.49 0.185 25);
  --red-dark: oklch(0.34 0.13 25);
  --pink: oklch(0.77 0.105 22);
  --pink-light: oklch(0.91 0.045 21);
  --green: oklch(0.44 0.105 153);
  --green-dark: oklch(0.29 0.072 154);
  --sage: oklch(0.72 0.105 142);
  --leaf: oklch(0.59 0.14 147);
  --yellow: oklch(0.87 0.12 100);
  --line: oklch(0.86 0.018 145);
  --focus: oklch(0.54 0.19 248);
  --gingham-pattern: url("assets/images/red-gingham-background.png");
  --paper-texture: linear-gradient(oklch(1 0 0 / 0.14), oklch(1 0 0 / 0.14)), url("assets/images/paper-texture.png");
  --font-display: "Shrikhand", Georgia, serif;
  --font-body: "Atkinson", "Segoe UI", system-ui, sans-serif;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --z-header: 30;
  --z-dialog: 50;
  --z-quickbar: 25;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-width: 20rem;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(4.25rem + env(safe-area-inset-bottom));
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 0.2rem solid var(--focus);
  outline-offset: 0.2rem;
}

::selection {
  color: var(--white);
  background: var(--red);
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: calc(var(--z-dialog) + 1);
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  padding: max(0.75rem, env(safe-area-inset-top)) 1rem 0.75rem;
  color: var(--white);
  background: var(--green-dark);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 0.25rem 0 var(--pink);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.13rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

.wordmark-leaf {
  width: 2rem;
  height: 2rem;
  overflow: visible;
  fill: none;
  stroke: var(--pink);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.icon-button,
.menu-trigger,
.dialog-close {
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 0;
  cursor: pointer;
}

.icon-button {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--pink-light);
  font-weight: 700;
}

.language-code {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  color: var(--white);
  background: transparent;
  font-weight: 700;
}

.menu-bars {
  display: grid;
  gap: 0.32rem;
  width: 1.35rem;
}

.menu-bars i {
  display: block;
  height: 0.12rem;
  background: currentColor;
}

.menu-bars i:last-child {
  width: 100%;
  justify-self: stretch;
}

.site-dialog {
  position: fixed;
  z-index: var(--z-dialog);
  margin: 0;
  border: 0;
  color: var(--ink);
  opacity: 0;
  transition: opacity 180ms ease, transform 260ms var(--ease-out), overlay 260ms allow-discrete, display 260ms allow-discrete;
}

.site-dialog[open] {
  opacity: 1;
}

.site-dialog::backdrop {
  background: oklch(0.12 0.02 154 / 0.72);
  backdrop-filter: blur(0.3rem);
}

.menu-dialog {
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: max(1rem, env(safe-area-inset-top)) 1.25rem max(1rem, env(safe-area-inset-bottom));
  color: var(--white);
  background: var(--red-dark);
  transform: translateY(-1rem);
}

.menu-dialog[open] {
  transform: translateY(0);
}

.dialog-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  font-weight: 700;
}

.dialog-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.dialog-close {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: inherit;
  background: oklch(1 0 0 / 0.12);
  font-size: 2rem;
  line-height: 1;
}

.dialog-nav {
  display: grid;
  gap: 0;
  margin-top: clamp(3rem, 12vh, 7rem);
}

.dialog-nav a {
  display: flex;
  align-items: center;
  min-height: 4.2rem;
  border-bottom: 1px solid oklch(1 0 0 / 0.22);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 7vw, 3.5rem);
  line-height: 1.1;
}

.dialog-nav a::after {
  content: "↘";
  margin-left: auto;
  color: var(--pink);
  font-family: var(--font-body);
}

.dialog-footer {
  position: absolute;
  inset: auto 1.25rem max(1.25rem, env(safe-area-inset-bottom));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.language-dialog {
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: max(1.25rem, env(safe-area-inset-top)) 1rem max(1.25rem, env(safe-area-inset-bottom));
  border-radius: 0;
  color: var(--green-dark);
  background: var(--pink);
  background-image: linear-gradient(oklch(0.77 0.105 22 / 0.82), oklch(0.77 0.105 22 / 0.82)), var(--gingham-pattern);
  background-position: center;
  background-size: auto, 30rem auto;
  transform: translateY(-1rem);
}

.language-dialog[open] {
  transform: translateY(0);
}

.language-dialog .dialog-close {
  color: var(--white);
  background: var(--green-dark);
}

.language-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(3rem, 12vh, 7rem);
  padding: 0.5rem 1rem;
  background-color: var(--white);
  background-image: var(--paper-texture);
  background-repeat: repeat;
  background-size: auto, 31rem auto;
  box-shadow: 0.5rem 0.5rem 0 var(--green-dark);
}

.language-list button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid oklch(0.25 0.1 150 / 0.35);
  border-radius: 0;
  color: var(--green-dark);
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 6vw, 2.25rem);
  line-height: 1.1;
  text-align: left;
  cursor: pointer;
}

.language-list button[aria-pressed="true"] {
  color: var(--white);
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.language-list button span {
  min-width: 3.25rem;
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
}

.language-list button[aria-pressed="true"] span {
  color: var(--pink-light);
}

.hero {
  display: flex;
  height: 100svh;
  min-height: 42rem;
  padding-top: 4.5rem;
  flex-direction: column;
  background: var(--pink);
}

.hero-photo {
  position: relative;
  min-height: 0;
  flex: 0 1 38%;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, oklch(0.12 0.03 150 / 0.12), transparent 55%, oklch(0.12 0.03 150 / 0.38));
  pointer-events: none;
}

.hero-photo picture,
.hero-photo img {
  width: 100%;
  height: 100%;
}

.hero-photo picture {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  object-fit: cover;
  object-position: 50% 35%;
  animation: hero-image-in 750ms var(--ease-out) both;
}

.photo-place {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.35rem 0.6rem;
  color: var(--green-dark);
  background: var(--pink-light);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-copy {
  position: relative;
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.25rem 0.8rem;
  overflow: hidden;
  background-color: var(--pink);
  background-image: linear-gradient(oklch(0.77 0.105 22 / 0.82), oklch(0.77 0.105 22 / 0.82)), var(--gingham-pattern);
  background-position: center;
  background-size: auto, 30rem auto;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -1.8rem;
  left: -10%;
  width: 125%;
  height: 2.7rem;
  background: var(--pink);
  transform: rotate(-3deg);
  transform-origin: left bottom;
}

.hero-botanical {
  position: absolute;
  top: 0.2rem;
  right: -2.6rem;
  width: 11rem;
  opacity: 0.32;
  fill: none;
  stroke: var(--red);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-place,
.single-kicker,
.visit-label {
  margin: 0 0 0.6rem;
  font-weight: 700;
}

.hero-place {
  color: var(--red-dark);
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 15vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-wrap: balance;
  animation: hero-copy-in 620ms 90ms var(--ease-out) both;
}

.hero-tagline {
  max-width: 25ch;
  margin: 0.7rem 0 0;
  font-size: clamp(1.12rem, 4.6vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.hero-intro {
  max-width: 36rem;
  margin: 0.55rem 0 0;
  color: var(--red-dark);
  font-weight: 600;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.72rem 1.1rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 150ms var(--ease-out), background-color 150ms ease, color 150ms ease;
}

.button:active {
  transform: scale(0.97);
}

.button-primary {
  color: var(--white);
  background: var(--red-dark);
}

.button-text {
  gap: 0.45rem;
  padding-inline: 0.2rem;
  color: var(--red-dark);
}

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

.section {
  padding: clamp(4rem, 14vw, 7rem) 1.25rem;
}

.story {
  display: grid;
  gap: 2rem;
  background-color: var(--pink);
  background-image: linear-gradient(oklch(0.77 0.105 22 / 0.82), oklch(0.77 0.105 22 / 0.82)), var(--gingham-pattern);
  background-position: center;
  background-size: auto, 30rem auto;
}

.single-kicker {
  color: var(--red);
}

.story h2,
.gallery h2,
.reviews-section h2,
.visit-section h2,
.menu-section h2,
.trust-section h2 {
  margin: 0;
  text-wrap: balance;
}

.story h2 {
  max-width: 16ch;
  color: var(--red-dark);
  font-size: clamp(2.25rem, 10vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.story-body {
  align-self: end;
  max-width: 40rem;
}

.story-body p {
  margin: 0;
  color: var(--red-dark);
  font-size: 1.125rem;
  font-weight: 700;
  text-wrap: pretty;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  margin-top: 1rem;
  color: var(--red-dark);
  font-weight: 700;
  text-underline-offset: 0.25rem;
}

.community-band {
  padding: 2.5rem 1.25rem 3rem;
  color: var(--white);
  background: var(--green);
  overflow: hidden;
}

.community-band-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  color: var(--pink-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.community-band-track i {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--pink);
}

.community-band p {
  max-width: 25ch;
  margin: 2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1.1;
  text-wrap: balance;
}

.menu-section {
  position: relative;
  color: var(--white);
  background: var(--green-dark);
  overflow: hidden;
}

.menu-lede {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  max-width: 68rem;
}

.menu-kicker {
  margin: 0;
  color: var(--pink);
  font-weight: 700;
}

.menu-section h2 {
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 11vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.menu-lede > p:last-child {
  max-width: 42rem;
  margin: 0;
  color: var(--pink-light);
  font-size: 1.05rem;
}

.food-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 18rem 12rem 14rem;
  gap: 0.65rem;
  margin: 2.5rem 0 1.5rem;
}

.food-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--red-dark);
}

.food-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out), filter 300ms ease;
}

.food-grid figcaption {
  position: absolute;
  inset: auto auto 0 0;
  max-width: calc(100% - 1rem);
  padding: 0.65rem 0.85rem;
  color: var(--white);
  background: var(--red-dark);
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: break-word;
  hyphens: auto;
}

.food-primary {
  grid-column: 1 / -1;
  grid-row: 1;
}

.food-primary img {
  object-position: 50% 46%;
}

.food-fruit {
  grid-column: 1;
  grid-row: 2;
}

.food-sweet {
  grid-column: 2;
  grid-row: 2;
}

.food-savoury {
  grid-column: 1 / -1;
  grid-row: 3;
}

.menu-availability {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0;
  color: var(--pink-light);
}

.menu-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
}

.menu-actions .inline-link {
  margin-top: 0;
}

.gallery {
  background-color: var(--pink);
  background-image: linear-gradient(oklch(0.77 0.105 22 / 0.82), oklch(0.77 0.105 22 / 0.82)), var(--gingham-pattern);
  background-position: center;
  background-size: auto, 30rem auto;
}

.gallery-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery h2 {
  max-width: 13ch;
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 12vw, 6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.gallery-intro p {
  max-width: 36rem;
  margin: 0;
  color: var(--red-dark);
  font-size: 1.08rem;
}

.gallery-composition {
  display: grid;
  gap: 0;
}

.gallery-composition figure {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: var(--green-dark);
}

.gallery-composition img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main {
  aspect-ratio: 4 / 3;
}

.gallery-main img {
  object-position: 50% 50%;
}

.gallery-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 7rem;
  padding: 1.25rem;
  color: var(--white);
  background: var(--red-dark);
}

.gallery-caption strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1;
}

.gallery-caption span {
  margin-top: 0.35rem;
  color: var(--pink-light);
}

.photo-credit {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.trust-section {
  display: grid;
  gap: 2.5rem;
  padding: clamp(4rem, 14vw, 7rem) 1.25rem;
  color: var(--white);
  background: var(--red-dark);
}

.trust-rating {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 1rem;
  max-width: 24rem;
}

.rating-number {
  grid-row: 1 / 3;
  color: var(--pink);
  font-family: var(--font-display);
  font-size: clamp(6rem, 30vw, 10rem);
  line-height: 0.85;
}

.rating-rule {
  display: block;
  height: 0.2rem;
  background: var(--pink);
}

.trust-rating > span:not(.rating-number):not(.rating-rule) {
  font-weight: 700;
}

.trust-rating small {
  grid-column: 2;
  color: var(--pink-light);
}

.trust-copy h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.trust-copy p {
  max-width: 40rem;
  color: var(--pink-light);
}

.light-link {
  color: var(--white);
}

.reviews-section {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--pink);
  background-image: linear-gradient(oklch(0.77 0.105 22 / 0.82), oklch(0.77 0.105 22 / 0.82)), var(--gingham-pattern);
  background-position: center;
  background-size: auto, 30rem auto;
}

.review-symbol {
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
}

.reviews-copy {
  max-width: 70rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background-color: var(--white);
  background-image: var(--paper-texture);
  background-repeat: repeat;
  background-size: auto, 31rem auto;
  border: 1px solid oklch(0.25 0.1 150 / 0.28);
  box-shadow: 0.6rem 0.6rem 0 var(--red-dark);
}

.reviews-section h2 {
  color: var(--red-dark);
  font-family: var(--font-display);
  max-width: 14ch;
  font-size: clamp(2.6rem, 4.8vw, 4.35rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.reviews-rating {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-section p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--red-dark);
  font-size: 1.08rem;
}

.reviews-section .button {
  margin-top: 1.5rem;
}

.review-list {
  display: grid;
  margin-top: 1.5rem;
  border-top: 1px solid oklch(0.25 0.1 150 / 0.42);
}

.review-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 2rem;
  margin: 0;
  padding: 1.15rem 0;
  border-bottom: 1px solid oklch(0.25 0.1 150 / 0.42);
}

.review-card blockquote {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 700;
  line-height: 1.4;
}

.review-card figcaption {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  text-align: right;
  white-space: nowrap;
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 47.99rem) {
  .review-card {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .review-card blockquote,
  .review-card figcaption {
    grid-column: 1;
  }

  .review-card blockquote {
    grid-row: 1;
  }

  .review-card figcaption {
    grid-row: 2;
  }
}

.visit-section {
  display: grid;
  background: var(--sage);
}

.visit-copy {
  padding: clamp(4rem, 13vw, 6rem) 1.25rem;
}

.visit-label {
  color: var(--green-dark);
}

.visit-section h2 {
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: clamp(3rem, 13vw, 6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.visit-section address,
.site-footer address {
  font-style: normal;
}

.visit-section address {
  margin-top: 1.5rem;
  color: var(--green-dark);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.55;
}

.visit-hours,
.visit-catering {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--green-dark);
}

.visit-catering {
  font-size: 0.95rem;
}

.visit-hours a,
.visit-catering a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--red-dark);
  font-weight: 700;
  text-underline-offset: 0.2rem;
  vertical-align: middle;
}

.map-wrap {
  min-height: 28rem;
  background: var(--green-dark);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 28rem;
  border: 0;
}

.site-footer {
  display: grid;
  gap: 2rem;
  padding: 3rem 1.25rem 2rem;
  color: var(--white);
  background: var(--green-dark);
}

.footer-brand > span {
  font-family: var(--font-display);
  font-size: 2rem;
}

.footer-brand p {
  max-width: 28ch;
  margin: 0.4rem 0 0;
  color: var(--pink-light);
}

.site-footer nav {
  display: grid;
  gap: 0.35rem;
}

.site-footer nav a,
.footer-contact a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  text-underline-offset: 0.25rem;
}

.footer-contact {
  display: grid;
  gap: 0.65rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid oklch(1 0 0 / 0.22);
  color: var(--pink-light);
  font-size: 0.85rem;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.mobile-quickbar {
  position: fixed;
  inset: auto 0 0;
  z-index: var(--z-quickbar);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--white);
  box-shadow: 0 -0.25rem 0 var(--pink);
  transition: transform 180ms var(--ease-out);
}

.mobile-quickbar.is-hidden-on-hero {
  transform: translateY(calc(100% + env(safe-area-inset-bottom)));
}

.mobile-quickbar a {
  display: grid;
  place-items: center;
  min-height: 4rem;
  color: var(--white);
  background: var(--red-dark);
  text-decoration: none;
  font-weight: 700;
}

.mobile-quickbar a:last-child {
  background: var(--green-dark);
}

/* Mobile: keep the page lively, but let each stop earn its scroll distance. */
@media (max-width: 47.99rem) {
  .section,
  .trust-section {
    padding-top: clamp(2.75rem, 10vw, 4rem);
    padding-bottom: clamp(2.75rem, 10vw, 4rem);
  }

  .story,
  .trust-section {
    gap: 1.5rem;
  }

  .community-band {
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }

  .community-band p {
    margin-top: 1.4rem;
  }

  .food-grid {
    grid-template-rows: 14rem 9.5rem 11rem;
    margin-top: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .gallery-intro {
    margin-bottom: 1.4rem;
  }

  .gallery-caption {
    padding: 1rem;
  }

  .visit-copy {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 20rem;
  }

  .site-footer {
    gap: 1.5rem;
    padding-top: 2.5rem;
  }
}

/* Short mobile screens may need one extra scroll instead of silently clipping translated copy. */
@media (max-height: 44rem) and (max-width: 47.99rem) {
  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero-photo {
    flex: 0 0 32svh;
  }

  .hero-copy {
    flex: 0 0 auto;
    padding-top: 1.25rem;
  }
}

/* Taller phones trade spare hero-copy padding for a more legible storefront. */
@media (min-height: 56.25rem) and (max-width: 47.99rem) {
  .hero-photo {
    flex-basis: 48.85%;
  }
}

@media (hover: hover) {
  .button:hover {
    transform: translateY(-0.12rem);
  }

  .button-primary:hover {
    background: var(--red);
  }

  .button-light:hover {
    color: var(--red-dark);
    background: var(--pink);
  }

  .dialog-nav a:hover {
    color: var(--pink);
  }

  .language-list button:hover {
    border-color: var(--green);
  }

  .food-grid figure:hover img {
    transform: scale(1.025);
    filter: saturate(1.06);
  }
}

@media (min-width: 48rem) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    padding-inline: 2rem;
  }

  .wordmark {
    font-size: 1.3rem;
  }

  .language-dialog {
    inset: 50% auto auto 50%;
    width: min(34rem, calc(100% - 2rem));
    height: auto;
    max-height: calc(100dvh - 2rem);
    border-radius: var(--radius-md);
    transform: translate(-50%, calc(-50% + 1rem));
  }

  .language-dialog[open] {
    transform: translate(-50%, -50%);
  }

  .story,
  .gallery-intro,
  .trust-section,
  .reviews-section {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    align-items: end;
  }

  .section,
  .trust-section {
    padding-inline: clamp(2rem, 6vw, 6rem);
  }

  .story-body {
    justify-self: end;
  }

  .community-band {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
    gap: 3rem;
    padding: 4rem clamp(2rem, 6vw, 6rem);
  }

  .community-band p {
    max-width: 28ch;
    margin: 0;
  }

  .menu-lede {
    grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    column-gap: 3rem;
  }

  .menu-kicker {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .menu-section h2,
  .menu-lede > p:last-child {
    grid-column: 2;
  }

  .food-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-template-rows: 15rem 15rem;
    gap: 0.85rem;
    margin-block: 3.5rem 2rem;
  }

  .food-primary {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .food-fruit {
    grid-column: 2 / 4;
    grid-row: 1;
  }

  .food-sweet {
    grid-column: 2;
    grid-row: 2;
  }

  .food-savoury {
    grid-column: 3;
    grid-row: 2;
  }

  .gallery-composition {
    grid-template-columns: minmax(0, 1.35fr) minmax(15rem, 0.65fr);
    grid-template-rows: minmax(24rem, 1fr);
  }

  .gallery-main {
    grid-column: 1;
    grid-row: 1;
    min-height: 24rem;
  }

  .gallery-caption {
    grid-column: 2;
    grid-row: 1;
    padding: 2rem;
  }

  .reviews-section {
    align-items: start;
  }

  .story {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 6rem);
    padding-top: clamp(4.5rem, 8vw, 6rem);
    padding-bottom: clamp(4.5rem, 8vw, 6rem);
  }

  .story-body {
    align-self: center;
  }

  .story-body p {
    font-size: clamp(1.25rem, 1.45vw, 1.5rem);
    line-height: 1.6;
  }

  .reviews-section {
    grid-template-columns: minmax(8rem, 0.32fr) minmax(0, 0.68fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    padding-top: clamp(4.5rem, 8vw, 6rem);
    padding-bottom: clamp(4.5rem, 8vw, 6rem);
  }

  .review-symbol {
    align-self: start;
    font-size: clamp(9rem, 12vw, 13rem);
  }

  .review-symbol {
    font-size: clamp(9rem, 12vw, 13rem);
  }

  .visit-section {
    grid-template-columns: minmax(22rem, 0.8fr) minmax(0, 1.2fr);
  }

  .visit-copy {
    padding-inline: clamp(2rem, 6vw, 6rem);
  }

  .site-footer {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    padding: 4rem clamp(2rem, 6vw, 6rem) 2rem;
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }

  .mobile-quickbar {
    display: none;
  }
}

@media (min-width: 56.25rem) {
  .hero {
    display: grid;
    grid-template-columns: minmax(25rem, 0.88fr) minmax(0, 1.12fr);
    min-height: 100svh;
    padding-top: 0;
  }

  .hero-photo {
    grid-column: 2;
    min-height: 100svh;
  }

  .hero-photo img {
    object-position: 52% 50%;
  }

  .hero-copy {
    grid-row: 1;
    min-height: 100svh;
    padding: 8rem clamp(2.5rem, 5vw, 5.5rem) 4rem;
  }

  .hero-copy::before {
    content: none;
  }

  .hero-botanical {
    top: 5.5rem;
    right: -2rem;
    width: 16rem;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 7vw, 6rem);
  }

  .photo-place {
    right: 2rem;
    bottom: 2rem;
  }

  .menu-dialog {
    padding-inline: clamp(2rem, 7vw, 7rem);
  }

  .dialog-footer {
    inset-inline: clamp(2rem, 7vw, 7rem);
  }

  .dialog-nav {
    width: min(70rem, 100%);
  }

  .dialog-nav a {
    min-height: 5.2rem;
  }
}

@media (min-width: 75rem) {
  .section,
  .trust-section,
  .community-band,
  .visit-copy,
  .site-footer {
    padding-inline: max(6rem, calc((100vw - 82rem) / 2));
  }

  .food-grid {
    grid-template-rows: 18rem 18rem;
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0.55;
    transform: scale(1.035);
    filter: saturate(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: var(--ink);
    --line: var(--green-dark);
  }

  .button,
  .language-list button {
    outline: 2px solid currentColor;
    outline-offset: -2px;
  }
}
