:root {
  color-scheme: light;
  --ink: #201b16;
  --muted: #6f6256;
  --line: #ded5ca;
  --paper: #fff4ea;
  --surface: #ffffff;
  --sage: #0f6a5d;
  --sage-dark: #01483f;
  --tomato: #b84631;
  --honey: #d39a28;
  --blue: #3f6173;
  --shadow: 0 18px 45px rgba(42, 31, 22, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #d9d9d9;
  color: var(--ink);
  min-width: 320px;
}

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

button {
  cursor: pointer;
}

.site-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 40px auto 0;
  min-height: 70vh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 30%, rgba(211, 154, 40, 0.1), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(15, 106, 93, 0.08), transparent 24%),
    var(--paper);
}

.hero-media {
  display: none;
}

.site-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.topbar {
  width: min(1180px, calc(100% - 32px));
  margin: 36px auto 0;
  padding: 14px 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--sage-dark);
  background: rgba(255, 250, 246, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(48, 37, 28, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-weight: 750;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(240px, 30vw, 420px);
  height: auto;
  max-height: 96px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 760;
}

.hero-copy {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 58px;
  color: var(--sage-dark);
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: inherit;
  opacity: 0.78;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 0 auto 16px;
  max-width: 680px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-carousel {
  width: min(100vw, 1180px);
  margin: 34px calc(50% - min(50vw, 590px)) 0;
  position: relative;
  cursor: ew-resize;
  user-select: none;
}

.hero-carousel::before,
.hero-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 22%;
  pointer-events: none;
}

.hero-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(255, 244, 234, 0));
}

.hero-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(255, 244, 234, 0));
}

.hero-gallery {
  --dish-step: clamp(92px, 14vw, 190px);
  height: clamp(300px, 34vw, 470px);
  position: relative;
  overflow: hidden;
  padding: 58px 34px 70px;
  perspective: 900px;
  cursor: grab;
  touch-action: pan-y;
}

.hero-gallery.is-dragging {
  cursor: grabbing;
}

.hero-dish {
  width: clamp(148px, 19vw, 280px);
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  color: inherit;
  z-index: var(--z, 1);
  opacity: 0.28;
  transform:
    translate(-50%, -50%)
    translateX(calc(var(--slot, 0) * var(--dish-step)))
    scale(var(--scale, 0.48));
  box-shadow: 0 16px 34px rgba(48, 37, 28, 0.15);
  transition:
    transform 430ms cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 430ms ease,
    box-shadow 430ms ease,
    filter 430ms ease;
  filter: saturate(0.82);
  -webkit-user-drag: none;
  touch-action: pan-y;
}

.hero-dish img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.hero-dish.is-near {
  opacity: 0.78;
  --scale: 0.74;
  --z: 4;
  filter: saturate(0.95);
}

.hero-dish.is-far {
  pointer-events: none;
}

.hero-dish[data-offset="-2"],
.hero-dish[data-offset="2"] {
  opacity: 0.42;
  --scale: 0.52;
  --z: 2;
}

.hero-dish[data-offset="-3"],
.hero-dish[data-offset="3"] {
  opacity: 0.2;
  --scale: 0.34;
  --z: 1;
}

.hero-dish[data-offset="-4"],
.hero-dish[data-offset="4"] {
  opacity: 0;
  --scale: 0.24;
  --z: 0;
  pointer-events: none;
}

.hero-dish[data-offset="-4"] {
  --slot: -4;
}

.hero-dish[data-offset="-3"] {
  --slot: -3;
}

.hero-dish[data-offset="-2"] {
  --slot: -2;
}

.hero-dish[data-offset="-1"] {
  --slot: -1;
}

.hero-dish[data-offset="0"] {
  --slot: 0;
}

.hero-dish[data-offset="1"] {
  --slot: 1;
}

.hero-dish[data-offset="2"] {
  --slot: 2;
}

.hero-dish[data-offset="3"] {
  --slot: 3;
}

.hero-dish[data-offset="4"] {
  --slot: 4;
}

.hero-dish.is-center {
  --z: 5;
  opacity: 1;
  --scale: 1.42;
  filter: saturate(1.06);
  box-shadow: 0 28px 66px rgba(48, 37, 28, 0.28);
}

.hero-dish-label {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  border-radius: 7px;
  background: rgba(255, 250, 243, 0.9);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 8px 20px rgba(32, 27, 22, 0.14);
}

.hero-dish-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 860;
}

.hero-dish-meta {
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 780;
}


main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 70px 0;
  background: var(--paper);
  position: relative;
  z-index: 2;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 250, 246, 0.95);
  border: 1px solid rgba(222, 213, 202, 0.9);
  border-radius: var(--radius);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.search-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.search-shell input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.tab-button {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-weight: 750;
  text-decoration: none;
}

.tab-button.active {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fffaf3;
}

.menu-summary {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 20px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.menu-summary > div {
  min-height: 82px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.summary-number {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 850;
  color: var(--sage-dark);
}

.summary-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 760;
  text-transform: uppercase;
}

.recipe-grid {
  display: grid;
  gap: 64px;
  padding-top: 54px;
  border-top: 1px dashed #b9aa9b;
}

.menu-section {
  scroll-margin-top: 18px;
}

.section-kicker {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage);
  font-weight: 860;
}

.menu-section h2 {
  margin: 0 0 28px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  color: var(--sage-dark);
}

.menu-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 34px;
}

.recipe-card {
  position: relative;
  border-bottom: 1px dashed #b9aa9b;
}

.card-open {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 92px;
  padding: 14px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.card-image {
  width: 62px;
  height: 62px;
  border-radius: 6px;
  object-fit: cover;
  background: #e8dfd3;
}

.card-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.card-meta {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.card-title {
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 850;
}

.card-description {
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.82rem;
}

.tag-list {
  color: var(--sage-dark);
  font-weight: 860;
  white-space: nowrap;
}

.tag {
  padding: 5px 8px;
  border-radius: 999px;
  background: #edf1e7;
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 760;
}

.favorite-pill {
  display: none;
  position: absolute;
  margin: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(32, 27, 22, 0.78);
  color: #fffaf3;
  font-size: 0.74rem;
  font-weight: 800;
}

.topbar .icon-button {
  color: #fffaf3;
  border-color: var(--sage-dark);
}

.edit-menu-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px 0 12px;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  background: var(--sage-dark);
  color: #fffaf3;
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
}

.edit-menu-button span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.16);
  line-height: 1;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.culture-section {
  padding: 68px 0 56px;
  text-align: center;
}

.culture-section h2,
.site-footer h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--sage-dark);
}

.culture-section h2 {
  margin-bottom: 30px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.culture-gallery {
  display: grid;
  grid-template-columns: 0.95fr 0.8fr 1.15fr 0.8fr 0.95fr;
  gap: 20px;
  align-items: center;
}

.culture-gallery img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(48, 37, 28, 0.12);
}

.culture-gallery img:nth-child(3) {
  aspect-ratio: 1.2 / 1;
  transform: scale(1.08);
}

.story-band {
  margin: 0 -70px;
  padding: 54px 90px;
  display: grid;
  grid-template-columns: 1fr minmax(230px, 360px);
  gap: 48px;
  align-items: center;
  background: #f4ad28;
  color: #3d2c16;
}

.story-band p {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

.story-author {
  margin-top: 18px !important;
  font-family: inherit !important;
  font-size: 0.9rem;
  font-weight: 850;
}

.story-band img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(48, 37, 28, 0.18);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 40px;
  padding: 50px 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: var(--sage-dark);
  text-decoration: none;
  font-size: 0.88rem;
}

.empty-state {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 243, 0.42);
  border-radius: var(--radius);
  background: var(--sage-dark);
  color: inherit;
  font-size: 1.35rem;
  font-weight: 780;
}

.manage-panel {
  width: min(460px, 100%);
  height: 100dvh;
  padding: 22px;
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 10;
  overflow: auto;
  transform: translateX(102%);
  transition: transform 180ms ease;
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 50px rgba(32, 27, 22, 0.18);
}

.manage-panel.open {
  transform: translateX(0);
}

.panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-header h2 {
  margin: 0;
  font-size: 1.55rem;
}

.recipe-picker {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.picker-header h3 {
  margin: 0;
  font-size: 1rem;
}

.picker-list {
  display: grid;
  gap: 8px;
  max-height: 235px;
  overflow: auto;
  padding-right: 4px;
}

.picker-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: inherit;
  text-align: left;
}

.picker-item.active {
  border-color: var(--sage-dark);
  box-shadow: inset 0 0 0 1px var(--sage-dark);
}

.picker-item img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
}

.picker-title,
.picker-meta {
  display: block;
}

.picker-title {
  font-size: 0.9rem;
  font-weight: 850;
}

.picker-meta {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 740;
}

.panel-header .icon-button,
.dialog-close {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.recipe-form,
.recipe-form label {
  display: grid;
  gap: 8px;
}

.recipe-form {
  gap: 14px;
}

.recipe-form label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 780;
}

.recipe-form input,
.recipe-form select,
.recipe-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 11px 12px;
  outline: 0;
}

.inline-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: start;
}

.inline-check input {
  width: auto;
}

.recipe-form textarea {
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.file-drop {
  padding: 14px;
  border: 1px dashed #b8ab9c;
  border-radius: var(--radius);
  background: #fbf4ea;
}

.file-drop img {
  width: 100%;
  margin-top: 10px;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.form-actions,
.data-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.primary-button,
.secondary-button,
.danger-button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--radius);
  font-weight: 820;
}

.primary-button {
  border: 1px solid var(--sage-dark);
  background: var(--sage-dark);
  color: #fffaf3;
}

.secondary-button {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.danger-button {
  border: 1px solid #d8b4a8;
  background: #fff1ec;
  color: #9a351f;
}

.danger-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.import-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.data-actions {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 9;
  background: rgba(32, 27, 22, 0.34);
}

.recipe-dialog {
  width: min(920px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.recipe-dialog::backdrop {
  background: rgba(32, 27, 22, 0.48);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1fr;
}

.dialog-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: #e8dfd3;
}

.dialog-body {
  padding: 30px;
}

.dialog-body h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.08;
}

.dialog-body > .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: inherit;
  white-space: normal;
}

.dialog-meta {
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.recipe-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
}

.recipe-columns h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.recipe-columns ul,
.recipe-columns ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.edit-row {
  margin-top: 22px;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 850;
  padding: 0;
}

@media (max-width: 760px) {
  .site-hero {
    min-height: 64vh;
    margin-top: 0;
    width: 100%;
  }

  main,
  .site-footer {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .topbar {
    border-radius: var(--radius);
    width: calc(100% - 32px);
    margin-top: 28px;
    padding: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: center;
    align-items: center;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 5px;
    order: 2;
    grid-column: 1;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

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

  .nav-links a {
    flex: 0 0 auto;
    min-height: 28px;
    display: inline-grid;
    place-items: center;
    padding: 0 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 250, 243, 0.72);
    color: var(--sage-dark);
    font-size: 0.7rem;
    font-weight: 850;
  }

  .edit-menu-button {
    order: 2;
    grid-column: 2;
    width: 34px;
    height: 34px;
    min-height: 34px;
    justify-content: center;
    padding: 0;
    font-size: 0;
    border-radius: 50%;
  }

  .edit-menu-button span {
    width: 20px;
    height: 20px;
    font-size: 0.9rem;
  }

  .brand {
    order: 1;
    justify-content: center;
    grid-column: 1 / -1;
  }

  .brand-logo {
    width: min(68vw, 230px);
    max-height: 68px;
  }

  .hero-copy {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-copy h1 {
    margin-bottom: 12px;
  }

  .hero-lede {
    line-height: 1.45;
  }

  .hero-carousel {
    width: 100vw;
    margin-top: 4px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .hero-gallery {
    --dish-step: clamp(82px, 28vw, 146px);
    height: 238px;
    padding: 12px 18px 18px;
  }

  .hero-dish {
    width: clamp(126px, 42vw, 212px);
    transition:
      transform 220ms cubic-bezier(0.16, 0.9, 0.18, 1),
      opacity 220ms ease,
      box-shadow 220ms ease,
      filter 220ms ease;
  }

  .hero-dish.is-center {
    --scale: 1.28;
  }

  .hero-dish.is-near {
    --scale: 0.72;
  }

  .hero-dish[data-offset="-2"],
  .hero-dish[data-offset="2"] {
    --scale: 0.44;
  }

  .hero-dish[data-offset="-3"],
  .hero-dish[data-offset="3"] {
    --scale: 0.28;
  }

  .tabs {
    justify-content: flex-start;
  }

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

  .menu-summary > div {
    min-height: 64px;
  }

  .dialog-layout,
  .recipe-columns,
  .form-grid,
  .menu-list,
  .culture-gallery,
  .story-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .story-band {
    margin-left: -16px;
    margin-right: -16px;
    padding: 36px 16px;
  }

  .dialog-image {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .dialog-body {
    padding: 22px;
  }
}
