:root {
  --milk: #f4f1ed;
  --paper: #fffdf9;
  --blush: #ead7d2;
  --sage-soft: #dce5df;
  --sky-soft: #dce6e9;
  --lilac-soft: #e4dde5;
  --ink: #211d20;
  --muted: #6d6468;
  --green: #6f2938;
  --leaf: #b7c7ba;
  --tomato: #a85d3e;
  --blue: #45646b;
  --line: rgba(33, 29, 32, 0.16);
  --shadow: 0 24px 70px rgba(54, 38, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #faf7f4 0, var(--milk) 48%, #edf2ef 100%);
  overflow-x: hidden;
}

body:not(.is-ready) {
  overflow: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  color: #f5eddb;
  overflow: hidden;
}

.loader-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.2%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0) 28%),
    #3b1822;
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
}

.loader-panel-left {
  left: 0;
  border-right: 1px solid rgba(239, 222, 182, 0.14);
}

.loader-panel-right {
  right: 0;
}

.loader-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(78vw, 520px);
  justify-items: center;
  opacity: 1;
  transition: opacity 320ms ease, transform 500ms ease;
}

.loader-grain {
  position: relative;
  width: 70px;
  height: 180px;
  margin-bottom: 18px;
}

.loader-stem {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 168px;
  background: linear-gradient(to top, rgba(205, 158, 113, 0.4), #cd9e71);
  box-shadow: 0 0 18px rgba(205, 158, 113, 0.18);
  transform: scaleY(0);
  transform-origin: bottom;
  animation: loader-grow 1050ms 120ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.loader-seed {
  position: absolute;
  left: 50%;
  width: 13px;
  height: 31px;
  border: 1px solid #cd9e71;
  border-radius: 90% 10% 90% 10%;
  opacity: 0;
  transform-origin: 0 100%;
  animation: loader-seed 480ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.loader-seed:nth-of-type(even) {
  margin-left: -13px;
  border-radius: 10% 90% 10% 90%;
  transform-origin: 100% 100%;
}

.seed-1 {
  bottom: 92px;
  animation-delay: 560ms;
}

.seed-2 {
  bottom: 106px;
  animation-delay: 650ms;
}

.seed-3 {
  bottom: 120px;
  animation-delay: 740ms;
}

.seed-4 {
  bottom: 134px;
  animation-delay: 830ms;
}

.seed-5 {
  bottom: 148px;
  animation-delay: 920ms;
}

.seed-6 {
  bottom: 162px;
  animation-delay: 1010ms;
}

.loader-word {
  display: flex;
  gap: 0.02em;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 10vw, 118px);
  font-weight: 500;
  line-height: 0.9;
}

.loader-word span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: loader-letter 660ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.loader-word span:nth-child(1) { animation-delay: 650ms; }
.loader-word span:nth-child(2) { animation-delay: 740ms; }
.loader-word span:nth-child(3) { animation-delay: 830ms; }
.loader-word span:nth-child(4) { animation-delay: 920ms; }
.loader-word span:nth-child(5) { animation-delay: 1010ms; }

.loader-place {
  width: 0;
  margin: 26px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(205, 158, 113, 0.62);
  color: rgba(245, 237, 219, 0.64);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  animation: loader-rule 720ms 1050ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.loader.is-leaving .loader-content {
  opacity: 0;
  transform: scale(0.97);
}

.loader.is-leaving .loader-panel-left {
  transform: translateX(-100%);
}

.loader.is-leaving .loader-panel-right {
  transform: translateX(100%);
}

@keyframes loader-grow {
  to { transform: scaleY(1); }
}

@keyframes loader-seed {
  from {
    opacity: 0;
    transform: rotate(0deg) scale(0.2);
  }
  to {
    opacity: 1;
    transform: rotate(48deg) scale(1);
  }
}

.loader-seed:nth-of-type(even) {
  animation-name: loader-seed-left;
}

@keyframes loader-seed-left {
  from {
    opacity: 0;
    transform: rotate(0deg) scale(0.2);
  }
  to {
    opacity: 1;
    transform: rotate(-48deg) scale(1);
  }
}

@keyframes loader-letter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-rule {
  55% { width: 100%; }
  to { width: 100%; }
}

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

main section {
  scroll-margin-top: 84px;
}

.site-grain {
  --grain-progress: 0;
  position: absolute;
  top: 0;
  right: -56px;
  bottom: 0;
  z-index: 0;
  width: clamp(76px, 8vw, 122px);
  opacity: 0.46;
  pointer-events: none;
  overflow: hidden;
  background-image:
    radial-gradient(ellipse 12px 30px at 38% 18%, rgba(196, 86, 51, 0.12) 0 62%, transparent 64%),
    radial-gradient(ellipse 12px 30px at 62% 31%, rgba(196, 86, 51, 0.12) 0 62%, transparent 64%),
    radial-gradient(ellipse 10px 26px at 40% 48%, rgba(86, 107, 63, 0.13) 0 62%, transparent 64%),
    radial-gradient(ellipse 10px 26px at 61% 62%, rgba(86, 107, 63, 0.13) 0 62%, transparent 64%);
  background-repeat: repeat-y;
  background-size: 100% 320px;
}

.site-grain::before {
  content: "";
  position: absolute;
  top: 118px;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(
    rgba(86, 107, 63, 0),
    rgba(86, 107, 63, 0.36) 8%,
    rgba(86, 107, 63, 0.36) 88%,
    rgba(86, 107, 63, 0)
  );
  transform: translateX(-50%);
}

.site-grain::after {
  content: "";
  position: sticky;
  top: 86px;
  display: block;
  height: min(46vh, 390px);
  margin-top: calc(120px + var(--grain-progress) * 34vh);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 14%, rgba(196, 86, 51, 0.12), transparent 34%),
    linear-gradient(rgba(247, 242, 232, 0), rgba(247, 242, 232, 0.52), rgba(247, 242, 232, 0));
  filter: blur(10px);
}

.site-grain svg {
  position: sticky;
  top: 88px;
  width: 100%;
  height: min(46vh, 390px);
  margin-top: calc(120px + var(--grain-progress) * 34vh);
  overflow: visible;
  filter: drop-shadow(0 16px 24px rgba(48, 41, 30, 0.14));
  transform: rotate(calc(-6deg + var(--grain-progress) * 11deg));
  transform-origin: 50% 10%;
}

.grain-stem,
.grain-awn {
  fill: none;
  stroke: rgba(86, 107, 63, 0.72);
  stroke-linecap: round;
}

.grain-stem {
  stroke-width: 4;
}

.grain-awn {
  stroke-width: 2;
}

.grain-kernel {
  fill: rgba(196, 86, 51, 0.2);
  stroke: rgba(86, 107, 63, 0.62);
  stroke-width: 2;
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(248, 244, 236, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.book-link,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--paper);
  background: var(--green);
  font-family: Georgia, serif;
}

.nav {
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--muted);
  font-size: 14px;
}

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

.book-link {
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-weight: 700;
}

.hero {
  position: relative;
  display: block;
  min-height: 88vh;
  padding: 92px clamp(18px, 4vw, 54px) 38px;
  overflow: hidden;
}

.hero-media {
  position: relative;
  height: min(64vh, 660px);
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 28, 24, 0.54), rgba(29, 28, 24, 0.08) 58%, rgba(29, 28, 24, 0.32)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 56%;
  display: block;
}

.hero-copy {
  position: absolute;
  left: clamp(38px, 7vw, 116px);
  bottom: clamp(64px, 10vw, 126px);
  max-width: min(720px, calc(100vw - 76px));
  color: var(--paper);
  padding-bottom: 0;
  z-index: 2;
}

.hero-copy .eyebrow,
.hero-copy .lead {
  color: rgba(255, 253, 247, 0.88);
}

.hero-copy .lead {
  max-width: 700px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.18);
}

.hero-copy .secondary-action {
  color: var(--paper);
  border-color: rgba(255, 253, 247, 0.44);
  background: rgba(255, 253, 247, 0.1);
  backdrop-filter: blur(12px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--tomato);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(86px, 14vw, 210px);
  line-height: 0.82;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 630px;
  color: #3d382e;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.primary-action {
  background: var(--ink);
  color: var(--paper);
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.72);
}

.intro,
.menu-section,
.bakery,
.gallery,
.visit {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 54px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.74fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  max-width: 1320px;
  margin-inline: auto;
  background: transparent;
}

.intro > p,
.bakery-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.menu-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 16%, rgba(241, 223, 216, 0.76), transparent 27%),
    radial-gradient(circle at 96% 20%, rgba(225, 236, 236, 0.92), transparent 30%),
    linear-gradient(180deg, #f7f1e7, #edf2e3);
  border-top: 1px solid var(--line);
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 28px clamp(18px, 4vw, 54px) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(86, 107, 63, 0.26), transparent);
}

.menu-heading {
  position: relative;
  max-width: 1120px;
  margin-inline: auto;
}

.menu-heading p:not(.section-kicker) {
  max-width: 420px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.real-menu {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}

.menu-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin-bottom: 18px;
  margin-inline: auto;
}

.menu-tab {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(29, 28, 24, 0.12);
  border-radius: 8px;
  color: var(--muted);
  background: var(--paper);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(48, 41, 30, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.menu-tab span {
  display: block;
  margin-bottom: 18px;
  color: rgba(29, 28, 24, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.tab-snacks {
  background: linear-gradient(135deg, #fff7f3, var(--blush));
}

.tab-hot {
  background: linear-gradient(135deg, #f4f8f5, var(--sage-soft));
}

.tab-breakfast {
  background: linear-gradient(135deg, #f5f4f8, var(--sky-soft));
}

.menu-tab:hover {
  transform: translateY(-2px);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(48, 41, 30, 0.12);
}

.menu-tab.is-active {
  color: var(--paper);
  border-color: rgba(29, 28, 24, 0.22);
  background: var(--green);
  box-shadow: 0 22px 56px rgba(86, 107, 63, 0.28);
}

.menu-tab.is-active span {
  color: rgba(255, 250, 240, 0.58);
}

.menu-column {
  position: relative;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(29, 28, 24, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.66)),
    var(--paper);
  box-shadow: 0 30px 80px rgba(48, 41, 30, 0.12);
  overflow: hidden;
}

.menu-column::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(244, 223, 215, 0.48);
  pointer-events: none;
}

#menu-hot::after {
  background: rgba(233, 239, 220, 0.7);
}

#menu-breakfast::after {
  background: rgba(223, 238, 240, 0.72);
}

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

.menu-column h3 {
  margin-bottom: 20px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.menu-column ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.menu-column li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid rgba(29, 28, 24, 0.11);
  line-height: 1.28;
}

.menu-column li:first-child {
  border-top: 0;
  padding-top: 0;
}

.menu-column span {
  color: var(--muted);
}

.menu-column b {
  color: var(--ink);
  font-size: 15px;
}

.menu-column b::after {
  content: " ₽";
  font-weight: 600;
}

.bakery {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: linear-gradient(135deg, var(--sage-soft), #eee3e2);
}

.bakery-visual {
  position: relative;
  min-height: 520px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(29, 28, 24, 0.12), rgba(86, 107, 63, 0.2)),
    url("bakery-spica.png");
  background-size: cover;
  background-position: center;
  color: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bakery-visual strong {
  position: absolute;
  right: 28px;
  bottom: 28px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(29, 28, 24, 0.54);
  backdrop-filter: blur(10px);
}

.grain-lines {
  position: absolute;
  inset: auto 28px 88px 28px;
  height: 190px;
  border: solid rgba(255, 250, 240, 0.48);
  border-width: 0 1px 1px;
  border-radius: 0 0 999px 999px;
}

.grain-lines::before,
.grain-lines::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 42%;
  height: 74%;
  border-bottom: 1px solid rgba(255, 250, 240, 0.48);
}

.grain-lines::before {
  left: 8%;
  transform: rotate(13deg);
}

.grain-lines::after {
  right: 8%;
  transform: rotate(-13deg);
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.feature-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(86, 107, 63, 0.28);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 250, 240, 0.5);
  font-weight: 750;
}

.gallery {
  background: #f8f5f3;
  border-top: 1px solid var(--line);
}

.gallery-heading {
  max-width: 1260px;
  margin-inline: auto;
}

.gallery-heading p:not(.section-kicker) {
  max-width: 340px;
  color: var(--muted);
  line-height: 1.45;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.64fr);
  grid-template-rows: 260px 260px;
  gap: 14px;
  max-width: 1260px;
  margin-inline: auto;
}

.gallery-grid figure,
.gallery-note {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}

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

.gallery-large {
  grid-row: span 2;
}

.gallery-note {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--blush), var(--sky-soft));
}

.gallery-note span {
  margin-bottom: auto;
  color: var(--tomato);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.gallery-note strong {
  margin-bottom: 12px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
}

.gallery-note p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.4;
}

.visit {
  background: linear-gradient(135deg, #211d20, #45646b);
  color: var(--paper);
}

.visit .section-kicker {
  color: var(--leaf);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 250, 240, 0.18);
}

.visit-grid div {
  min-height: 170px;
  padding: 20px;
  background: var(--ink);
}

.visit-grid span {
  display: block;
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.55);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.visit-grid strong {
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.12;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 54px);
  color: var(--muted);
  background: var(--milk);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.source-note {
  text-align: right;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .bakery,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-copy {
    left: 38px;
    right: 38px;
  }

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

  .gallery-grid {
    grid-template-rows: auto;
  }

  .gallery-large,
  .gallery-grid figure {
    min-height: 360px;
  }

}

@media (max-width: 680px) {
  .loader-grain {
    height: 150px;
    transform: scale(0.86);
    transform-origin: bottom center;
  }

  .loader-place {
    letter-spacing: 0.14em;
  }

  .topbar {
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .book-link {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding-top: 84px;
    gap: 22px;
  }

  .hero-media,
  .hero-media img {
    height: 620px;
    min-height: 620px;
    max-height: none;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-copy {
    left: 30px;
    right: 30px;
    top: 380px;
    bottom: auto;
    max-width: none;
  }

  h1 {
    font-size: clamp(76px, 23vw, 108px);
    margin-bottom: 12px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions {
    display: flex;
    margin-top: 20px;
  }

  .primary-action,
  .secondary-action {
    width: auto;
    min-height: 42px;
    padding: 0 16px;
  }

  .intro,
  .menu-section,
  .bakery,
  .gallery,
  .visit {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .section-heading {
    display: block;
  }

  .site-grain {
    right: -58px;
    width: 82px;
    opacity: 0.22;
  }

  .site-grain::before {
    top: 86px;
  }

  .site-grain svg,
  .site-grain::after {
    top: 88px;
    height: 220px;
    margin-top: calc(92px + var(--grain-progress) * 28vh);
  }

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

  .menu-tabs {
    gap: 4px;
  }

  .menu-tab {
    min-height: 68px;
    text-align: left;
  }

  .menu-tab span {
    display: inline;
    margin-right: 12px;
    font-size: 20px;
  }

  .bakery-visual {
    min-height: 410px;
  }

  .gallery-large,
  .gallery-grid figure {
    min-height: 260px;
  }

  .gallery-note {
    min-height: 240px;
  }

  .footer {
    display: block;
  }

  .source-note {
    margin-top: 8px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-panel,
  .loader-content {
    transition-duration: 180ms;
  }

  .loader-stem,
  .loader-seed,
  .loader-word span,
  .loader-place {
    animation-duration: 1ms;
    animation-delay: 0ms;
  }
}
