:root {
  --bg: #edf4ea;
  --bg-strong: #d8e7d2;
  --surface: rgba(255, 251, 245, 0.78);
  --surface-solid: #fbf8f2;
  --surface-alt: #f5f1e9;
  --ink: #191813;
  --ink-soft: #5d584f;
  --line: rgba(25, 24, 19, 0.12);
  --line-strong: rgba(25, 24, 19, 0.18);
  --shadow: 0 28px 64px rgba(18, 28, 18, 0.14);
  --shadow-soft: 0 18px 34px rgba(18, 28, 18, 0.08);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --reading-width: 42rem;
  --reading-width-wide: 52rem;
  --container: min(1180px, calc(100vw - clamp(1.5rem, 4vw, 4rem)));
  --header-height: 5.5rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html.startup-lock,
html.startup-lock body {
  overflow: hidden !important;
  overflow-anchor: none;
  overscroll-behavior: none;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  line-height: 1.55;
  color: var(--ink);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top left, rgba(222, 237, 214, 0.9), transparent 34%),
    radial-gradient(circle at 85% 0%, rgba(255, 251, 243, 0.7), transparent 24%),
    linear-gradient(180deg, #e7f0e3 0%, #f6f1e8 46%, #fbfaf6 100%);
}

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

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

h1,
h2,
h3,
p,
li,
span,
strong,
label,
a,
button {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

button,
input,
select,
textarea {
  font: inherit;
  min-width: 0;
}

button {
  cursor: pointer;
  line-height: 1.2;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  inset: 1rem auto auto 1rem;
  inline-size: auto;
  block-size: auto;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  z-index: 100;
  clip: auto;
  clip-path: none;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Lora", serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.15rem, 5.8vw, 5rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.2rem);
}

h3 {
  font-size: clamp(1.38rem, 2vw, 1.9rem);
  line-height: 1.18;
}

p,
li {
  line-height: 1.62;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.55rem;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
  box-shadow: var(--shadow-soft);
}

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

.button--ghost {
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button--small {
  min-height: 2.8rem;
  padding-inline: 1.2rem;
  font-size: 0.95rem;
}

.button--block {
  width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  transition:
    background-color 240ms ease,
    box-shadow 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 242, 234, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(25, 24, 19, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  line-height: 1;
  min-width: 0;
}

.brand__wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0;
}

.brand__name-row {
  display: inline-flex;
  align-items: center;
}

.brand__icon-wrap {
  display: grid;
  place-items: center;
  width: 3.8rem;
  height: 4.5rem;
  flex-shrink: 0;
}

.brand__icon {
  width: 3.3rem;
  height: auto;
}

.brand__mark {
  font-family: "Lora", serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.23em;
  line-height: 1;
  margin-left: 0.12rem;
}

.brand__name {
  font-family: "Lora", serif;
  font-size: 2.08rem;
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 1.02;
}

.site-header .brand {
  align-items: flex-start;
  flex: 0 1 auto;
  gap: 0.72rem;
  max-width: calc(100% - 8.75rem);
}

.site-header .brand__wordmark {
  gap: 0.3rem;
  padding-top: 0.08rem;
  white-space: nowrap;
}

.site-header .brand__icon-wrap {
  width: 3.25rem;
  height: 3.7rem;
  align-self: flex-start;
}

.site-header .brand__icon {
  width: 2.8rem;
}

.site-header .brand__mark {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  margin-left: 0.14rem;
}

.site-header .brand__name {
  font-size: 1.96rem;
  line-height: 1;
  letter-spacing: -0.044em;
}

.brand--footer .brand__wordmark {
  gap: 0.28rem;
  padding-top: 0.08rem;
}

.brand--footer .brand__name {
  line-height: 1;
}

.brand--hero {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 22rem;
  gap: 1rem;
  margin-inline: auto;
  text-align: center;
}

.brand--hero .brand__wordmark {
  align-items: center;
  gap: 0.3rem;
}

.brand--hero .brand__name-row {
  justify-content: center;
}

.brand--hero .brand__icon-wrap {
  width: 7.4rem;
  height: 8.7rem;
}

.brand--hero .brand__icon {
  width: 5.2rem;
}

.brand--hero .brand__mark {
  font-size: 0.82rem;
  letter-spacing: 0.26em;
}

.brand--hero .brand__name {
  font-size: clamp(2.45rem, 3.8vw, 3.35rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.96rem;
  font-weight: 500;
  min-width: 0;
}

.site-nav a:not(.button) {
  position: relative;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.25rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  padding: 0.24rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-soft);
}

.lang-switch__button {
  min-width: 2.55rem;
  min-height: 2.3rem;
  padding: 0.35rem 0.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.lang-switch__button:hover,
.lang-switch__button:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.lang-switch__button.is-active {
  background: var(--ink);
  color: #fff;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0;
  border: 1px solid rgba(25, 24, 19, 0.18);
  border-radius: 999px;
  background: rgba(25, 24, 19, 0.08);
  flex: 0 0 auto;
  flex-shrink: 0;
  z-index: 36;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 0.85rem;
  width: 1.3rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease, top 220ms ease;
}

.nav-toggle span:nth-child(1) {
  top: 1rem;
}

.nav-toggle span:nth-child(2) {
  top: 1.42rem;
}

.nav-toggle span:nth-child(3) {
  top: 1.84rem;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 1.42rem;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 1.42rem;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: calc(var(--header-height) + clamp(1rem, 3vw, 2.2rem));
  min-height: auto;
}

.hero__backdrop {
  position: absolute;
  inset: -4rem 0 auto auto;
  width: min(34rem, 44vw);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.72), transparent 58%),
    radial-gradient(circle at center, rgba(198, 219, 193, 0.8), transparent 72%);
  filter: blur(16px);
  opacity: 0.8;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(1.85rem, 3.4vw, 4rem);
  min-height: clamp(640px, calc(100svh - var(--header-height) - 1rem), 820px);
  padding-bottom: clamp(2.6rem, 4vw, 4rem);
}

.hero__grid > *,
.hero__visual > *,
.intro-strip__grid > *,
.catalog-item > *,
.ingredients-grid > *,
.gallery-grid > *,
.about > *,
.contact-layout > *,
.site-footer__inner > * {
  min-width: 0;
}

.hero__copy,
.section-heading,
.catalog-item__content,
.ingredient-card,
.gallery-tile--placeholder div,
.about__content,
.contact-panel,
.order-panel,
.review,
.order-panel__intro,
.about__media--placeholder div {
  min-width: 0;
}

.hero__copy {
  display: grid;
  align-content: start;
  gap: clamp(0.95rem, 1.8vw, 1.45rem);
  max-width: 37.5rem;
}

.hero__lead {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.11rem);
  color: var(--ink-soft);
  max-width: 34rem;
}

.hero h1 {
  max-width: 10.4ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.15rem;
}

.hero__meta {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.hero__meta li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0;
}

.hero__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.7;
  transform: translateY(-50%);
}

.hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 1rem;
  align-items: stretch;
}

.hero__frame {
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero__frame img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.hero__logo-stage {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  min-height: clamp(300px, 36vh, 410px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.6rem, 2.7vw, 2.35rem);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 40%),
    linear-gradient(180deg, rgba(248, 246, 239, 0.92), rgba(216, 231, 210, 0.92));
}

.hero__logo-stage::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12%;
  width: min(15rem, 62%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  filter: blur(8px);
  transform: translateX(22%);
}

.hero__logo-note,
.hero__logo-caption {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.hero__logo-note {
  align-self: flex-start;
  max-width: 13rem;
  font-size: 0.9rem;
}

.hero__logo-caption {
  max-width: 22rem;
  text-align: center;
  font-size: 0.99rem;
}

.hero__placeholder-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero__info-card {
  display: none;
}

.hero__info-card strong {
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  line-height: 1.1;
  font-weight: 500;
}

.hero__info-card span {
  color: var(--ink-soft);
}

.hero__info-card--soft {
  background:
    linear-gradient(180deg, rgba(250, 247, 241, 0.92), rgba(221, 233, 215, 0.9)),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.72), transparent 45%);
}

.hero__photo-card {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: clamp(420px, 54vh, 590px);
}

.hero__photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 24, 19, 0.06), rgba(24, 24, 19, 0.62));
}

.hero__photo-copy {
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(8px);
  max-width: min(22.5rem, calc(100% - 2.4rem));
}

.hero__photo-copy strong {
  font-size: clamp(1.08rem, 1.34vw, 1.26rem);
  line-height: 1.18;
  font-weight: 500;
  max-width: 16ch;
}

.hero__photo-copy span {
  color: var(--ink-soft);
  line-height: 1.42;
  max-width: 31ch;
  font-size: 0.92rem;
}

.intro-strip {
  padding: 0.3rem 0 0.8rem;
}

.intro-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip__grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.section {
  padding: clamp(4.1rem, 6.3vw, 6.4rem) 0;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  max-width: var(--reading-width-wide);
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  max-width: 12.5ch;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  max-width: var(--reading-width);
}

.catalog {
  display: grid;
  gap: 2.2rem;
}

.catalog-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
  padding: clamp(1.25rem, 2.8vw, 1.85rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(251, 248, 242, 0.78);
  box-shadow: var(--shadow-soft);
}

.catalog-item--reverse .catalog-item__media {
  order: 2;
}

.catalog-item--reverse .catalog-item__content {
  order: 1;
}

.catalog-item__media {
  overflow: hidden;
  border-radius: 1.5rem;
  min-height: 26rem;
}

.catalog-item__media--slider {
  position: relative;
  isolation: isolate;
  background: rgba(220, 231, 213, 0.34);
}

.catalog-item__media--placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.9rem;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 35%),
    linear-gradient(180deg, rgba(252, 249, 244, 0.72), rgba(217, 231, 210, 0.88)),
    repeating-linear-gradient(
      -45deg,
      rgba(25, 24, 19, 0.04),
      rgba(25, 24, 19, 0.04) 10px,
      rgba(255, 255, 255, 0.14) 10px,
      rgba(255, 255, 255, 0.14) 20px
    );
}

.catalog-item__placeholder-tag {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.catalog-item__media--placeholder strong {
  font-size: clamp(1.65rem, 2.3vw, 2.15rem);
  line-height: 1;
  font-weight: 500;
}

.catalog-item__media--placeholder span {
  display: block;
  max-width: 18rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.catalog-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.catalog-item__media--photo,
.catalog-item__media--slider {
  position: relative;
}

.catalog-item__media--photo::after,
.catalog-item__media--slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 24, 19, 0.08), rgba(24, 24, 19, 0.62));
}

.catalog-item__slider-track {
  position: relative;
  min-height: inherit;
  height: 100%;
}

.catalog-item__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 320ms ease,
    transform 500ms ease;
  pointer-events: none;
}

.catalog-item__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.catalog-item__slider-topbar {
  position: absolute;
  inset: 1rem 1rem auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.catalog-item__slider-count {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.9);
  border: 1px solid rgba(25, 24, 19, 0.08);
  box-shadow: 0 0.9rem 2.2rem rgba(25, 24, 19, 0.12);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.catalog-item__slider-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.catalog-item__slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  aspect-ratio: 1;
  border: 1px solid rgba(25, 24, 19, 0.08);
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.9);
  color: var(--ink);
  box-shadow: 0 0.9rem 2.2rem rgba(25, 24, 19, 0.12);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.catalog-item__slider-button[data-slider-prev] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.5 6.5L9 12l5.5 5.5' fill='none' stroke='%23191813' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.95rem 0.95rem;
}

.catalog-item__slider-button[data-slider-next] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.5 6.5L15 12l-5.5 5.5' fill='none' stroke='%23191813' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.95rem 0.95rem;
}

.catalog-item__slider-button:hover,
.catalog-item__slider-button:focus-visible {
  background-color: rgba(220, 231, 213, 0.96);
  border-color: rgba(110, 137, 98, 0.36);
  transform: translateY(-1px);
}

.catalog-item__media-copy {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 1;
  max-width: 20rem;
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.84);
}

.catalog-item__media-copy strong {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.02;
  font-weight: 500;
}

.catalog-item__media-copy span {
  color: var(--ink-soft);
}

.catalog-item:hover .catalog-item__slide.is-active,
.catalog-item:hover .catalog-item__media > img {
  transform: scale(1.04);
}

.catalog-item__label {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.catalog-item__content > p {
  color: var(--ink-soft);
}

.catalog-item__content {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.catalog-item__content > * {
  margin: 0;
}

.catalog-item__content h3 {
  max-width: 15ch;
  font-weight: 500;
}

.catalog-item__content ul {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.catalog-item__content li {
  position: relative;
  padding-left: 1.4rem;
  margin: 0;
}

.catalog-item__content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--ink);
}

.catalog-item__footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}

.catalog-item__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.ingredients-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.2rem, 2vw, 1.8rem);
  align-items: start;
}

.ingredients-layout > *,
.ingredients-list > *,
.ingredient-entry summary > * {
  min-width: 0;
}

.ingredients-intro-card {
  position: sticky;
  top: calc(var(--header-height) + 1.25rem);
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.25rem, 2vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(247, 244, 238, 0.9)),
    radial-gradient(circle at top left, rgba(217, 231, 210, 0.32), transparent 56%);
  box-shadow: var(--shadow-soft);
}

.ingredients-intro-card h3 {
  max-width: 14ch;
  font-size: clamp(1.48rem, 2vw, 1.95rem);
}

.ingredients-intro-card p {
  margin: 0;
  color: var(--ink-soft);
}

.ingredient-note-list,
.ingredient-variant-list,
.ingredient-entry__notes {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ingredient-note-list {
  display: grid;
  gap: 0.7rem;
}

.ingredient-note-list li,
.ingredient-variant-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
}

.ingredient-note-list li::before,
.ingredient-variant-list li::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: rgba(25, 24, 19, 0.34);
}

.ingredients-list {
  display: grid;
  gap: 0.95rem;
}

.ingredient-entry {
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(251, 248, 242, 0.82);
  box-shadow: var(--shadow-soft);
}

.ingredient-entry[open] {
  background: rgba(251, 248, 242, 0.94);
}

.ingredient-entry summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  list-style: none;
}

.ingredient-entry summary::-webkit-details-marker {
  display: none;
}

.ingredient-entry summary::after {
  content: "+";
  display: grid;
  place-items: center;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.ingredient-entry[open] summary::after {
  content: "−";
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: rotate(180deg);
}

.ingredient-entry__summary {
  display: grid;
  gap: 0.38rem;
  max-width: 38rem;
}

.ingredient-entry__summary .catalog-item__label {
  margin: 0 0 0.28rem;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(223, 235, 217, 0.86);
  border: 1px solid rgba(89, 120, 76, 0.14);
  color: #355033;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.ingredient-entry__summary strong {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
}

.ingredient-entry__summary span {
  max-width: 50ch;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ingredient-tags {
  grid-column: 1 / -1;
  display: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.42rem;
  max-width: 34rem;
  margin-top: 0.55rem;
}

.ingredient-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.85rem;
  padding: 0.28rem 0.66rem;
  border: 1px solid rgba(25, 24, 19, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ingredient-entry[open] .ingredient-tags {
  display: flex;
}

.ingredient-entry__body {
  display: grid;
  gap: 0.95rem;
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid rgba(25, 24, 19, 0.08);
}

.ingredient-entry__body p {
  margin: 0;
  max-width: var(--reading-width-wide);
  color: var(--ink-soft);
}

.ingredient-entry__body strong,
.ingredient-entry__notes strong,
.ingredient-variant-list strong {
  color: var(--ink);
}

.ingredient-variant-list {
  display: grid;
  gap: 0.75rem;
  max-width: var(--reading-width-wide);
}

.ingredient-entry__notes {
  display: grid;
  gap: 0.62rem;
  max-width: var(--reading-width-wide);
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(25, 24, 19, 0.12);
}

.ingredient-entry__notes li {
  color: var(--ink-soft);
}

.section--gallery {
  background: linear-gradient(180deg, rgba(217, 231, 210, 0.38), rgba(255, 255, 255, 0));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(6rem, auto);
  gap: 1.05rem;
}

.gallery-tile {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  grid-column: span 4;
  grid-row: span 4;
  padding: 1rem;
  overflow: hidden;
  border: 0;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.gallery-tile--placeholder {
  align-items: end;
  justify-content: flex-start;
  padding: 1.5rem;
  border: 1px dashed rgba(25, 24, 19, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(242, 247, 239, 0.88)),
    radial-gradient(circle at top, rgba(217, 231, 210, 0.5), transparent 65%);
}

.gallery-tile--wide {
  grid-column: span 8;
}

.gallery-tile--tall {
  grid-row: span 6;
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 24, 19, 0) 40%, rgba(24, 24, 19, 0.62));
}

.gallery-tile > div {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  display: grid;
  gap: 0.45rem;
}

.gallery-tile .catalog-item__label {
  color: rgba(255, 255, 255, 0.74);
}

.gallery-tile strong {
  display: block;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.08;
  font-weight: 500;
  color: #fff;
}

.gallery-tile--placeholder::after {
  display: none;
}

.gallery-tile--placeholder div {
  position: relative;
  z-index: 1;
  max-width: 24rem;
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem 1.2rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.82);
}

.gallery-tile--placeholder strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.08;
  font-weight: 500;
}

.gallery-tile span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.gallery-tile--placeholder span {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.02);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: start;
}

.contact-layout {
  grid-template-areas:
    "order"
    "contact";
}

.about__content {
  display: grid;
  gap: 1rem;
}

.about__content p:not(.eyebrow) {
  color: var(--ink-soft);
  margin: 0;
  max-width: var(--reading-width);
}

.about__points {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.about__points p {
  margin: 0;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.about__media {
  overflow: hidden;
  margin: 0;
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.about__media img {
  height: 100%;
  min-height: 36rem;
  object-fit: cover;
}

.about__media--placeholder {
  display: flex;
  align-items: end;
  min-height: 36rem;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(216, 231, 210, 0.92)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 50%);
}

.about__media--placeholder div {
  max-width: 26rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
}

.about__media--placeholder p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.review,
.contact-panel,
.order-panel {
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(251, 248, 242, 0.82);
  box-shadow: var(--shadow-soft);
}

.review {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem;
  gap: 0.9rem;
}

.review p {
  margin: 0;
  color: var(--ink-soft);
}

.review strong,
.review span {
  display: block;
}

.review span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.review strong {
  font-weight: 600;
}

.contact-panel,
.order-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.order-panel {
  grid-area: order;
  width: 100%;
}

.contact-panel {
  grid-area: contact;
  max-width: 32rem;
}

.contact-panel p,
.order-panel__intro p {
  color: var(--ink-soft);
  margin: 0;
  max-width: var(--reading-width);
}

.contact-panel h2,
.order-panel__intro h2 {
  max-width: 11ch;
  font-size: clamp(1.85rem, 3.6vw, 2.9rem);
}

.order-panel__intro p {
  max-width: 46rem;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.3rem;
}

.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 3.45rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  font-weight: 600;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(25, 24, 19, 0.22);
}

.contact-note {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.15rem;
}

.contact-note p {
  margin: 0;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "form"
    "calendar"
    "actions";
  gap: 1.2rem;
  align-items: start;
}

.order-form {
  grid-area: form;
  width: 100%;
}

.order-side {
  display: block;
  grid-area: calendar;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
}

.order-layout__submit {
  grid-area: actions;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}

.order-side > .calendar-card {
  width: 100%;
  max-width: none;
}

.order-form,
.calendar-card {
  min-width: 0;
  border: 1px solid rgba(25, 24, 19, 0.08);
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 239, 0.88)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 38px rgba(34, 37, 26, 0.08);
}

.order-form,
.calendar-card {
  padding: 1.3rem;
}

.calendar-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.18;
  margin-bottom: 0.55rem;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.05rem;
}

.order-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 600;
  min-width: 0;
  color: var(--ink);
  line-height: 1.35;
}

.order-form label > span,
.order-form__group-label {
  display: block;
  overflow-wrap: break-word;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 3.35rem;
  border: 1px solid rgba(25, 24, 19, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.95rem 1rem 0.92rem;
  color: var(--ink);
  line-height: 1.45;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
  overflow-wrap: break-word;
}

.order-form textarea {
  min-height: 8.6rem;
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(89, 120, 76, 0.4);
  box-shadow: 0 0 0 4px rgba(177, 197, 170, 0.26);
  background: #fff;
}

.order-form input.is-invalid,
.order-form select.is-invalid,
.order-form textarea.is-invalid {
  border-color: rgba(138, 47, 47, 0.34);
  box-shadow: 0 0 0 4px rgba(138, 47, 47, 0.1);
  background: rgba(255, 248, 248, 0.96);
}

.order-form__date-field {
  display: grid;
  gap: 0.5rem;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(25, 24, 19, 0.08);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(223, 235, 217, 0.42), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.78);
}

.order-form__date-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.order-form__date-value {
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.38;
  overflow-wrap: break-word;
}

.order-form__date-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.order-form__full {
  grid-column: 1 / -1;
}

.order-form__section-intro {
  display: grid;
  gap: 0.28rem;
  margin-top: 0.1rem;
  margin-bottom: 0.15rem;
}

.order-form__section-eyebrow {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.order-form__section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.08;
}

.order-form__section-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 42rem;
}

.order-form__adaptive {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem 1.15rem 1.05rem;
  border: 1px solid rgba(25, 24, 19, 0.08);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(249, 246, 241, 0.92), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.8);
}

.order-form__adaptive-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}

.order-form__adaptive-copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.order-form__group-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.order-form__group-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.order-form__unit-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.36rem 0.78rem;
  border-radius: 999px;
  background: rgba(223, 235, 217, 0.92);
  border: 1px solid rgba(89, 120, 76, 0.14);
  color: #486144;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.order-form__quantity-input {
  display: grid;
}

.order-form__quantity-input[hidden] {
  display: none !important;
}

.order-form__quantity-input input {
  margin: 0;
}

.order-form__preset-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.order-form__preset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.25rem;
  min-height: 3.1rem;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(25, 24, 19, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
}

.order-form__preset:hover,
.order-form__preset:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(89, 120, 76, 0.28);
  box-shadow: 0 0 0 4px rgba(177, 197, 170, 0.18);
  outline: none;
}

.order-form__preset.is-active {
  background:
    linear-gradient(180deg, rgba(223, 235, 217, 0.92), rgba(212, 230, 204, 0.82)),
    #fff;
  border-color: rgba(89, 120, 76, 0.22);
  color: #2e4129;
}

.order-form__check-option {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.order-form__check-option:hover,
.order-form__check-option:focus-within {
  transform: translateY(-1px);
  border-color: rgba(89, 120, 76, 0.22);
  box-shadow: 0 0 0 4px rgba(177, 197, 170, 0.12);
}

.order-form__check-option:has(input:checked) {
  border-color: rgba(89, 120, 76, 0.26);
  background:
    linear-gradient(180deg, rgba(236, 244, 231, 0.98), rgba(226, 238, 219, 0.92)),
    rgba(255, 255, 255, 0.96);
}

.order-form__error {
  min-height: 1.25rem;
  margin: 0;
  color: #8a2f2f;
  font-size: 0.88rem;
  line-height: 1.45;
}

.order-form__error--field {
  min-height: 0.95rem;
  font-size: 0.83rem;
}

.order-form__hint {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.order-layout__submit > button:disabled,
.button:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.calendar-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.calendar-card__header .catalog-item__label {
  margin-bottom: 0.5rem;
}

.calendar-card {
  display: grid;
  gap: 0.9rem;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
}

.calendar-nav {
  display: flex;
  gap: 0.55rem;
}

.calendar-nav__button {
  width: 2.8rem;
  height: 2.8rem;
  min-width: 2.8rem;
  min-height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(25, 24, 19, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.08rem;
  box-shadow: 0 10px 18px rgba(25, 24, 19, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.calendar-nav__button:hover,
.calendar-nav__button:focus-visible {
  transform: translateY(-1px) scale(1.02);
  background: #fff;
  border-color: rgba(25, 24, 19, 0.2);
  box-shadow: 0 12px 24px rgba(25, 24, 19, 0.12);
}

.calendar-nav__button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.calendar-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.calendar-month {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  text-transform: capitalize;
}

.calendar-meta__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(116, 154, 99, 0.14);
  border: 1px solid rgba(89, 120, 76, 0.18);
  color: #486144;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-meta__lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.3rem;
  width: min(100%, 41rem);
  margin-inline: auto;
}

.calendar-weekdays {
  margin-bottom: 0.08rem;
}

.calendar-weekdays span {
  padding: 0.25rem 0 0.15rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.calendar-day {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0.32rem 0.18rem 0.56rem;
  border: 1px solid rgba(25, 24, 19, 0.06);
  border-radius: 0.92rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 243, 237, 0.94)),
    rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 8px 18px rgba(25, 24, 19, 0.06);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease,
    color 200ms ease;
  cursor: pointer;
}

.calendar-day__number {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  line-height: 1;
}

.calendar-day__marker {
  position: absolute;
  left: 50%;
  bottom: 0.34rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(25, 24, 19, 0.16);
}

.calendar-day.is-holiday::before {
  content: "";
  position: absolute;
  top: 0.38rem;
  right: 0.38rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: #b5853d;
  box-shadow: 0 0 0 3px rgba(181, 133, 61, 0.14);
}

.calendar-day:hover:not(:disabled),
.calendar-day:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  outline: none;
  border-color: rgba(89, 120, 76, 0.28);
  box-shadow:
    0 0 0 4px rgba(177, 197, 170, 0.22),
    0 14px 24px rgba(25, 24, 19, 0.09);
}

.calendar-day.is-available {
  border-color: rgba(110, 145, 96, 0.14);
  background:
    linear-gradient(180deg, rgba(232, 243, 227, 0.96), rgba(216, 234, 208, 0.88)),
    rgba(218, 236, 211, 0.86);
}

.calendar-day.is-available .calendar-day__marker {
  background: #5f8753;
}

.calendar-day.is-unavailable {
  background:
    linear-gradient(180deg, rgba(251, 237, 237, 0.96), rgba(246, 225, 225, 0.88)),
    rgba(244, 225, 225, 0.88);
  color: #8a2f2f;
  border-color: rgba(138, 47, 47, 0.12);
  box-shadow: none;
}

.calendar-day.is-unavailable .calendar-day__marker {
  background: #b05050;
}

.calendar-day.is-muted {
  background: rgba(25, 24, 19, 0.05);
  color: rgba(25, 24, 19, 0.38);
  border-color: rgba(25, 24, 19, 0.03);
  box-shadow: none;
}

.calendar-day.is-muted .calendar-day__marker {
  background: rgba(25, 24, 19, 0.18);
}

.calendar-day.is-selected {
  border-color: rgba(25, 24, 19, 0.2);
  background:
    linear-gradient(180deg, rgba(32, 34, 26, 0.96), rgba(16, 18, 14, 0.94)),
    var(--ink);
  color: #fff;
  box-shadow:
    0 0 0 4px rgba(177, 197, 170, 0.18),
    0 18px 28px rgba(15, 16, 13, 0.24);
}

.calendar-day.is-selected .calendar-day__marker {
  width: 0.45rem;
  height: 0.45rem;
  background: rgba(223, 235, 217, 0.96);
}

.calendar-day:disabled {
  cursor: not-allowed;
  transform: none;
}

.calendar-day--empty {
  visibility: hidden;
  pointer-events: none;
}

.calendar-legend {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.calendar-legend div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.5rem;
  padding: 0.7rem 0.8rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(25, 24, 19, 0.06);
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.4;
}

.calendar-legend__dot {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

.calendar-legend__dot--available {
  background: rgba(108, 176, 98, 0.86);
}

.calendar-legend__dot--booked {
  background: rgba(183, 78, 78, 0.86);
}

.calendar-legend__dot--muted {
  background: rgba(25, 24, 19, 0.22);
}

.calendar-status {
  margin: 0;
  min-height: 3.15rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(223, 235, 217, 0.32);
  border: 1px solid rgba(89, 120, 76, 0.1);
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  overflow-wrap: break-word;
  width: min(100%, 41rem);
  margin-inline: auto;
}

.order-result {
  margin-top: 1.5rem;
  padding: 1.3rem;
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(223, 235, 217, 0.56), rgba(245, 250, 243, 0.92)),
    rgba(217, 231, 210, 0.48);
  border: 1px solid rgba(25, 24, 19, 0.08);
  box-shadow: 0 16px 30px rgba(34, 37, 26, 0.08);
}

.order-result__ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  margin: 0 0 0.6rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(25, 24, 19, 0.9);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-result h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.order-result p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.order-summary {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(25, 24, 19, 0.08);
  white-space: pre-line;
  line-height: 1.7;
}

.copy-status {
  min-height: 1.4rem;
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.order-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  padding: 2rem 0 2.7rem;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(223, 235, 217, 0.55), transparent 28%),
    linear-gradient(180deg, rgba(248, 245, 239, 0.88), rgba(250, 247, 241, 0.96));
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.8rem;
  flex-wrap: wrap;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(25, 24, 19, 0.08);
}

.brand--footer {
  margin-bottom: 0.65rem;
}

.site-footer__inner > div:first-child {
  display: grid;
  gap: 0.65rem;
  max-width: 19rem;
}

.site-footer__inner > div:first-child p:last-child {
  margin: 0;
  color: var(--ink-soft);
  max-width: 18rem;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.65rem 1.2rem;
  align-content: start;
  color: var(--ink-soft);
}

.site-footer__links a {
  position: relative;
  padding-bottom: 0.12rem;
  transition: color 200ms ease, transform 200ms ease;
}

.site-footer__links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.1rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.site-footer__links a:hover::after,
.site-footer__links a:focus-visible::after {
  transform: scaleX(1);
}

.site-footer__inner > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  align-self: end;
}

.site-footer__meta {
  display: flex;
  justify-content: center;
  padding-top: 1.25rem;
  text-align: center;
}

.site-footer__credit {
  position: relative;
  display: inline-grid;
  gap: 0;
  margin: 0;
  padding: 0.78rem 1.15rem 0.78rem 1.1rem;
  border: 1px solid rgba(25, 24, 19, 0.1);
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 238, 230, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 14px 28px rgba(18, 28, 18, 0.08);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.site-footer__credit-main {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.site-footer__credit:hover,
.site-footer__credit:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(25, 24, 19, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 18px 34px rgba(18, 28, 18, 0.12);
  outline: none;
}

.site-footer__heart {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1;
  color: #fffaf7;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.35), transparent 38%),
    linear-gradient(145deg, #d86b8a, #a93b60);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.45),
    0 10px 18px rgba(169, 59, 96, 0.2);
  transform-origin: center;
  animation: footer-heart-float 3.1s ease-in-out infinite;
}

.site-footer__credit-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-footer__credit-name {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.site-footer__heart::before {
  content: none;
}

.site-footer__heart::after {
  content: none;
}

.floating-actions {
  display: none;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(25, 24, 19, 0.9);
  color: #fff;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.mobile-cta {
  display: none;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(139, 45, 59, 0));
  }
  20% {
    transform: scale(1.16);
    filter: drop-shadow(0 0 0.35rem rgba(139, 45, 59, 0.35));
  }
  35% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.12);
    filter: drop-shadow(0 0 0.45rem rgba(139, 45, 59, 0.3));
  }
}

@keyframes footer-heart-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  18% {
    transform: translateY(-1px) scale(1.04);
  }
  42% {
    transform: translateY(0) scale(0.98);
  }
  58% {
    transform: translateY(-2px) scale(1.08);
  }
  76% {
    transform: translateY(0) scale(1.01);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

section[id],
div[id] {
  scroll-margin-top: calc(var(--header-height) + 1.2rem);
}

@media (max-width: 1080px) {
  .hero__grid,
  .about,
  .catalog-item,
  .ingredients-layout,
  .order-layout {
      grid-template-columns: 1fr;
    }

  .order-layout {
    grid-template-areas:
      "form"
      "calendar"
      "actions";
  }

  .contact-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "order"
      "contact";
  }

  .hero__grid {
    min-height: auto;
    align-items: start;
    padding-bottom: 3rem;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__visual {
    max-width: 40rem;
    margin-inline: auto;
  }

  .catalog-item--reverse .catalog-item__media,
  .catalog-item--reverse .catalog-item__content {
    order: initial;
  }

  .catalog-item__media,
  .about__media img {
    min-height: 24rem;
  }

  .about__media--placeholder {
    min-height: 24rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .gallery-tile {
    grid-column: span 4;
  }

  .gallery-tile--wide {
    grid-column: span 8;
  }

  .ingredients-intro-card {
    position: static;
  }

  .order-side {
      grid-template-columns: 1fr;
      margin-top: 1.05rem;
    }
  }

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 1.25rem, 100%);
    --header-height: 4.8rem;
  }

  h1 {
    font-size: clamp(2.4rem, 6.6vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.8rem, 4.7vw, 2.45rem);
  }

  h3 {
    font-size: clamp(1.28rem, 3.5vw, 1.62rem);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 24, 19, 0.12);
    border-color: rgba(25, 24, 19, 0.24);
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 0.5rem) 1rem auto;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: rgba(251, 248, 242, 0.96);
    box-shadow: var(--shadow-soft);
    transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
    z-index: 35;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 2.9rem;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
  }

  .hero {
    padding-top: calc(var(--header-height) + 1.1rem);
  }

  .hero__visual {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 1rem;
  }

  .hero__backdrop {
    display: none;
  }

  .hero__logo-stage {
    grid-row: auto;
    min-height: 20rem;
    align-items: stretch;
    padding: 1.35rem;
  }

  .hero__logo-stage::before {
    width: 12rem;
    bottom: -16%;
    transform: translateX(16%);
  }

  .hero__logo-caption {
    max-width: none;
    text-align: left;
    font-size: 0.95rem;
  }

  .hero__info-card {
    min-height: auto;
    display: none;
  }

  .hero__photo-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 18rem;
  }

  .hero__meta {
    gap: 0.7rem;
    font-size: 0.93rem;
  }

  .hero__lead {
    max-width: none;
  }

  .hero__grid {
    gap: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .contact-layout {
    gap: 1rem;
  }

  .intro-strip__grid,
  .order-form {
    grid-template-columns: 1fr;
  }

  .order-layout {
    gap: 1rem;
  }

  .catalog-item__media-copy {
    max-width: none;
  }

  .intro-strip__grid {
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-tile,
  .gallery-tile--wide,
  .gallery-tile--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 14rem;
  }

  .section {
    padding: clamp(4rem, 9vw, 5rem) 0;
  }

  .section-heading {
    margin-bottom: 2.1rem;
  }

  .catalog-item {
    gap: 1.2rem;
    padding: 1rem;
  }

  .catalog-item__media {
    min-height: 15rem;
  }

  .catalog-item__content h3 {
    max-width: 16ch;
  }

  .contact-panel h2,
  .order-panel__intro h2 {
    max-width: 13ch;
  }

  .floating-actions {
    display: none;
  }

  .mobile-cta {
    display: none;
  }

  .lang-switch {
    padding: 0.2rem;
  }

  .lang-switch__button {
    min-width: 2.25rem;
    min-height: 2.1rem;
    padding-inline: 0.58rem;
    font-size: 0.74rem;
  }
}

@media (max-width: 560px) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  h1 {
    font-size: clamp(2rem, 10.8vw, 2.55rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.56rem, 7.2vw, 2rem);
    line-height: 1.08;
  }

  h3 {
    font-size: clamp(1.18rem, 5.6vw, 1.44rem);
    line-height: 1.14;
  }

  input,
  select,
  textarea,
  button {
    font-size: 16px;
  }

  .hero h1 {
    max-width: 8.1ch;
  }

  .hero {
    padding-top: calc(var(--header-height) + 0.7rem);
  }

  .hero__grid {
    gap: 1.1rem;
    padding-bottom: 1.75rem;
  }

  .hero__copy {
    gap: 0.8rem;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .hero__logo-stage {
    min-height: 14rem;
    padding: 1rem;
    gap: 0.8rem;
  }

  .hero__logo-note {
    max-width: none;
    font-size: 0.82rem;
  }

  .hero__logo-caption {
    font-size: 0.92rem;
  }

  .hero__photo-card {
    min-height: 14rem;
  }

  .hero__photo-copy {
    inset: auto 0.85rem 0.85rem;
    max-width: min(20rem, calc(100% - 1.7rem));
    padding: 0.95rem 1rem;
  }

  .hero__photo-copy strong {
    max-width: 14ch;
    font-size: clamp(1.04rem, 4.7vw, 1.24rem);
  }

  .hero__photo-copy span {
    max-width: 30ch;
    font-size: 0.94rem;
  }

  .hero__actions {
    display: grid;
    gap: 0.8rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .site-footer__inner,
  .catalog-item__footer,
  .catalog-item__actions,
  .order-result__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer__inner > p:last-child {
    align-self: stretch;
    text-align: left;
  }

  .brand {
    gap: 0.65rem;
  }

  .site-header .brand {
    gap: 0.62rem;
    max-width: calc(100% - 7.35rem);
  }

  .brand__icon-wrap {
    width: 3rem;
    height: 3.6rem;
  }

  .brand__icon {
    width: 2.55rem;
  }

  .site-header .brand__wordmark {
    gap: 0.22rem;
    padding-top: 0.08rem;
  }

  .site-header .brand__icon-wrap {
    width: 2.7rem;
    height: 3.15rem;
  }

  .site-header .brand__icon {
    width: 2.28rem;
  }

  .brand__mark {
    font-size: 0.62rem;
  }

  .site-header .brand__mark {
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    margin-left: 0.12rem;
  }

  .brand__name {
    font-size: 1.48rem;
  }

  .site-header .brand__name {
    font-size: 1.42rem;
    line-height: 1;
  }

  .brand--hero .brand__icon-wrap {
    width: 5.9rem;
    height: 7rem;
  }

  .brand--hero .brand__icon {
    width: 4.1rem;
  }

  .brand--hero .brand__name {
    font-size: 2.15rem;
  }

  .catalog-item {
    padding: 1rem;
  }

  .catalog-item__media {
    min-height: 13.5rem;
  }

  .catalog-item__slider-topbar {
    inset: 0.8rem 0.8rem auto;
  }

  .catalog-item__slider-count {
    min-height: 2.1rem;
    padding: 0.4rem 0.72rem;
    font-size: 0.72rem;
  }

  .catalog-item__slider-button {
    width: 2.1rem;
    font-size: 1rem;
  }

  .catalog-item__media--placeholder strong {
    font-size: 1.7rem;
  }

  .catalog-item__media-copy {
    inset: auto 0.85rem 0.85rem;
    padding: 0.9rem 1rem;
  }

  .hero__photo-copy {
    max-width: min(24rem, calc(100% - 1.7rem));
  }

  .catalog-item__content h3 {
    max-width: none;
  }

  .catalog-item__content {
    gap: 0.8rem;
  }

  .catalog-item__media-copy {
    max-width: none;
  }

  .catalog-item__media-copy strong {
    font-size: 1.34rem;
    line-height: 1.04;
  }

  .catalog-item__media-copy span {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .section-heading h2,
  .contact-panel h2,
  .order-panel__intro h2 {
    max-width: none;
  }

  .contact-panel h2,
  .order-panel__intro h2 {
    font-size: clamp(1.56rem, 7vw, 1.96rem);
  }

  .order-panel__intro p {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .section-heading {
    gap: 0.8rem;
    margin-bottom: 1.75rem;
  }

  .catalog-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.55rem;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

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

  .catalog-nav a {
    flex: 0 0 auto;
    min-height: 2.5rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.84rem;
  }

  .ingredients-intro-card,
  .review,
  .contact-panel,
  .order-panel {
    padding: 1.15rem;
  }

  .gallery-tile,
  .gallery-tile--wide,
  .gallery-tile--tall {
    min-height: 12rem;
  }

  .gallery-tile--placeholder div {
    padding: 1rem;
  }

  .site-footer__links {
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: center;
  }

  .section {
    padding: 3.75rem 0;
  }

  .catalog-item,
  .review,
  .contact-panel,
  .order-panel {
    border-radius: 1.4rem;
  }

  .catalog-item {
    gap: 0.95rem;
    padding: 0.9rem;
  }

  .catalog-item__media {
    min-height: 13.5rem;
  }

  .catalog-item__slider-topbar {
    inset: 0.7rem 0.7rem auto;
  }

  .catalog-item__slider-count {
    min-height: 1.7rem;
    padding: 0.2rem 0.56rem;
    font-size: 0.72rem;
  }

  .catalog-item__slider-button {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    min-height: 2rem;
  }

  .catalog-item__media-copy {
    inset: auto 0.75rem 0.75rem;
    gap: 0.35rem;
    padding: 0.78rem 0.85rem;
    max-width: calc(100% - 1.5rem);
  }

  .catalog-item__media-copy strong {
    font-size: clamp(1.1rem, 5.5vw, 1.34rem);
    line-height: 1.05;
  }

  .catalog-item__media-copy span {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .catalog-item__content {
    gap: 0.75rem;
  }

  .catalog-item__content ul {
    gap: 0.55rem;
  }

  .contact-list a,
  .contact-list span {
    min-height: 3rem;
    padding: 0.82rem 0.95rem;
  }

  .order-panel__intro {
    gap: 0.6rem;
  }

  .order-form label {
    gap: 0.42rem;
  }

  .order-form input,
  .order-form select,
  .order-form textarea {
    min-height: 3rem;
    padding: 0.82rem 0.92rem 0.8rem;
  }

  .order-form textarea {
    min-height: 7rem;
  }

  .order-form__adaptive {
    gap: 0.75rem;
    padding: 0.95rem 1rem 0.92rem;
  }

  .hero__frame,
  .catalog-item__media,
  .about__media {
    border-radius: 1.25rem;
  }

  .site-footer__credit {
    gap: 0;
    padding: 0.72rem 0.92rem;
  }

  .site-footer__credit-main {
    gap: 0.55rem;
  }

  .site-footer__credit-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .site-footer__credit-name {
    font-size: 0.94rem;
  }

  .ingredient-entry summary {
    grid-template-columns: 1fr;
    padding: 1rem 1rem 0.95rem;
  }

  .ingredient-entry summary::after {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
  }

  .ingredient-tags {
    justify-content: flex-start;
    max-width: none;
  }

  .ingredient-entry__body {
    padding: 0 1rem 1rem;
  }

  .calendar-nav__button {
    width: 2.55rem;
    height: 2.55rem;
    min-width: 2.55rem;
    min-height: 2.55rem;
  }

  .calendar-meta {
    align-items: flex-start;
  }

  .calendar-meta__lead {
    font-size: 0.89rem;
  }

  .order-form__adaptive-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-form__preset {
    min-width: 4.55rem;
    min-height: 3rem;
  }

  .calendar-day {
    min-height: auto;
    border-radius: 0.92rem;
    font-size: 0.88rem;
    padding: 0.35rem 0.28rem 0.7rem;
  }
}

@media (max-width: 380px) {
  :root {
    --container: min(100vw - 1rem, 100%);
    --header-height: 4.5rem;
  }

  .header__inner {
    gap: 0.75rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .site-header .brand__icon-wrap {
    width: 2.48rem;
    height: 2.86rem;
  }

  .site-header .brand__icon {
    width: 2.08rem;
  }

  .brand__mark {
    letter-spacing: 0.18em;
  }

  .site-header .brand__mark {
    font-size: 0.54rem;
    margin-left: 0.1rem;
  }

  .brand__name {
    font-size: 1.34rem;
  }

  .site-header .brand__name {
    font-size: 1.26rem;
    line-height: 1;
  }

  .site-header .brand {
    max-width: calc(100% - 6.8rem);
  }

  .hero h1 {
    max-width: none;
  }

  .button,
  .contact-list a,
  .contact-list span {
    min-height: 3.35rem;
    padding-inline: 1rem;
  }

  .order-form input,
  .order-form select,
  .order-form textarea {
    font-size: 0.95rem;
  }

  .order-form,
  .calendar-card,
  .order-result {
    padding: 1.05rem;
    border-radius: 1.2rem;
  }

  .order-form__adaptive,
  .order-form__date-field {
    padding: 0.95rem;
  }

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

  .calendar-meta__badge {
    min-height: 1.8rem;
  }

  .order-form__preset-options {
    gap: 0.55rem;
  }

  .order-form__preset {
    flex: 1 1 calc(50% - 0.55rem);
    min-width: 0;
  }

  .catalog-item__slider-topbar {
    inset: 0.65rem 0.65rem auto;
  }

  .catalog-item__slider-controls {
    gap: 0.4rem;
  }

  .catalog-item__slider-button {
    width: 1.95rem;
    height: 1.95rem;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 0.32rem;
  }

  .calendar-weekdays span {
    font-size: 0.62rem;
    letter-spacing: 0;
  }

  .calendar-day {
    min-height: auto;
    border-radius: 0.8rem;
    padding: 0.28rem 0.2rem 0.62rem;
  }

  .site-nav {
    inset: calc(var(--header-height) + 0.45rem) 0.75rem auto;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .site-footer__credit {
    width: 100%;
    justify-content: center;
    gap: 0.45rem;
  }

  .site-footer__credit-main {
    justify-content: center;
  }

  .site-footer__credit-label,
  .site-footer__credit-name {
    justify-content: center;
  }
}

.catalog-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0 0 1.8rem;
}

.catalog-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(25, 24, 19, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.catalog-item__media--specials {
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 42%),
    linear-gradient(180deg, rgba(245, 241, 233, 0.96), rgba(220, 231, 213, 0.92));
}

.catalog-item__specials-stage {
  display: grid;
  gap: 0.65rem;
}

.catalog-item__specials-stage strong {
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  line-height: 1.02;
  font-weight: 500;
}

.catalog-item__specials-stage span {
  max-width: 24rem;
  color: var(--ink-soft);
}

.special-sets-preview {
  display: grid;
  gap: 0.8rem;
}

.special-set-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(25, 24, 19, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.78);
}

.special-set-card__eyebrow {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.special-set-card strong {
  font-size: 1.08rem;
  font-weight: 600;
}

.special-set-card span {
  color: var(--ink-soft);
  line-height: 1.5;
}

.special-set-card__image {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  border-radius: 0.9rem;
  margin-bottom: 0.25rem;
}

.section--sets .section-heading {
  max-width: 46rem;
}

.sets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.set-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(25, 24, 19, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 243, 236, 0.86)),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(18, 28, 18, 0.08);
}

.set-card__media {
  overflow: hidden;
  border-radius: 1.15rem;
  min-height: 15rem;
  background: rgba(244, 239, 231, 0.8);
}

.set-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.set-card__placeholder {
  display: grid;
  place-items: center;
  min-height: 15rem;
  padding: 1rem;
  color: var(--ink-soft);
  text-align: center;
}

.set-card__content {
  display: grid;
  gap: 0.65rem;
}

.set-card__content h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.set-card__content p:last-of-type {
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .sets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sets-grid {
    grid-template-columns: 1fr;
  }

  .set-card {
    padding: 0.95rem;
  }

  .set-card__media,
  .set-card__placeholder {
    min-height: 13rem;
  }
}

.order-form__preset-options--stack {
  display: grid;
  grid-template-columns: 1fr;
}

.order-form__check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.order-form__check-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(25, 24, 19, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
}

.order-form__check-option input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: #6f8f63;
}

.order-form__check-option span {
  color: var(--ink);
  line-height: 1.4;
}

.calendar-day.is-holiday {
  border-color: rgba(162, 121, 46, 0.18);
  background:
    linear-gradient(180deg, rgba(250, 244, 227, 0.98), rgba(245, 234, 206, 0.9)),
    rgba(250, 241, 219, 0.9);
}

.calendar-day.is-selected.is-holiday::before {
  background: #f1ca7a;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}

.calendar-legend__dot--holiday {
  background: #b5853d;
}

.order-form__date-field {
  gap: 0.4rem;
  padding: 1rem 1.05rem;
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(228, 239, 223, 0.52), rgba(255, 255, 255, 0.92)),
    rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.order-form__date-value {
  font-size: 1.02rem;
  line-height: 1.32;
}

.order-form__date-note {
  font-size: 0.89rem;
  line-height: 1.5;
}

.calendar-card {
  gap: 1.05rem;
  padding: 1.4rem;
  border-radius: 1.65rem;
  border-color: rgba(25, 24, 19, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 239, 0.9)),
    rgba(255, 255, 255, 0.86);
}

.calendar-card__header {
  align-items: center;
  margin-bottom: 0;
}

.calendar-card__header .catalog-item__label {
  margin-bottom: 0.35rem;
  opacity: 0.84;
}

.calendar-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.calendar-nav {
  gap: 0.7rem;
}

.calendar-nav__button {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  border: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(25, 24, 19, 0.08),
    0 10px 22px rgba(25, 24, 19, 0.08);
  font-size: 1.2rem;
}

.calendar-nav__button:hover,
.calendar-nav__button:focus-visible {
  transform: translateY(-1px) scale(1.02);
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(89, 120, 76, 0.22),
    0 14px 24px rgba(25, 24, 19, 0.1);
}

.calendar-meta {
  align-items: center;
  gap: 0.7rem;
}

.calendar-month {
  font-size: 1.06rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.calendar-meta__badge {
  min-height: 2.05rem;
  padding: 0.34rem 0.78rem;
  background: rgba(116, 154, 99, 0.12);
  border-color: rgba(89, 120, 76, 0.14);
  color: #4f6847;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.calendar-meta__lead {
  max-width: 30ch;
  font-size: 0.89rem;
  line-height: 1.5;
  color: rgba(25, 24, 19, 0.68);
}

.calendar-weekdays,
.calendar-grid {
  gap: 0.34rem;
}

.calendar-weekdays {
  margin-bottom: 0.12rem;
}

.calendar-weekdays span {
  padding: 0 0 0.18rem;
  color: rgba(25, 24, 19, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.calendar-grid {
  justify-items: stretch;
}

.calendar-grid.is-animating .calendar-day {
  animation: calendarFadeIn 240ms ease both;
}

.calendar-grid.is-animating[data-direction="next"] .calendar-day {
  animation-name: calendarSlideNext;
}

.calendar-grid.is-animating[data-direction="prev"] .calendar-day {
  animation-name: calendarSlidePrev;
}

.calendar-day {
  aspect-ratio: 1 / 1;
  min-height: 2.9rem;
  padding: 0;
  border: 0;
  border-radius: 0.94rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(25, 24, 19, 0.05);
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.calendar-day__number {
  font-size: 0.88rem;
  font-weight: 600;
}

.calendar-day__marker {
  display: none;
}

.calendar-day.is-available {
  background:
    linear-gradient(180deg, rgba(232, 243, 227, 0.96), rgba(220, 236, 212, 0.92)),
    rgba(223, 236, 216, 0.92);
  box-shadow: inset 0 0 0 1px rgba(95, 135, 83, 0.1);
}

.calendar-day.is-holiday {
  background:
    linear-gradient(180deg, rgba(252, 246, 232, 0.98), rgba(247, 236, 207, 0.94)),
    rgba(249, 239, 214, 0.94);
  color: #4d4023;
  box-shadow:
    inset 0 0 0 1px rgba(208, 172, 103, 0.26),
    inset 0 0 0 2px rgba(189, 144, 66, 0.52),
    inset 0 0 0 5px rgba(255, 250, 241, 0.96),
    0 12px 22px rgba(188, 145, 73, 0.12);
}

.calendar-day.is-holiday::before,
.calendar-day.is-selected.is-holiday::before {
  content: none !important;
  display: none !important;
}

.calendar-day.is-holiday::after {
  content: none !important;
  display: none !important;
}

.calendar-day:hover:not(:disabled),
.calendar-day:focus-visible:not(:disabled) {
  transform: translateY(-1px) scale(1.02);
  border-color: transparent;
  box-shadow:
    inset 0 0 0 1px rgba(95, 135, 83, 0.14),
    0 10px 20px rgba(40, 56, 34, 0.08);
}

.calendar-day.is-muted {
  background: rgba(25, 24, 19, 0.045);
  color: rgba(25, 24, 19, 0.34);
  box-shadow: inset 0 0 0 1px rgba(25, 24, 19, 0.03);
}

.calendar-day.is-selected {
  background:
    linear-gradient(180deg, #5d7f4f, #45653a),
    #4d6f41;
  color: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 14px 24px rgba(52, 73, 43, 0.22);
}

.calendar-day.is-selected.is-holiday {
  color: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 0 2px rgba(233, 204, 133, 0.78),
    inset 0 0 0 4px rgba(70, 98, 58, 0.22),
    0 14px 24px rgba(52, 73, 43, 0.22);
}

.calendar-day.is-holiday:hover:not(:disabled),
.calendar-day.is-holiday:focus-visible:not(:disabled) {
  box-shadow:
    inset 0 0 0 1px rgba(208, 172, 103, 0.3),
    inset 0 0 0 2px rgba(189, 144, 66, 0.66),
    inset 0 0 0 5px rgba(255, 250, 241, 0.98),
    0 14px 24px rgba(188, 145, 73, 0.16);
}

.calendar-legend {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
  margin-top: 0.1rem;
  width: min(100%, 41rem);
  margin-inline: auto;
}

.calendar-legend div {
  min-height: 0;
  padding: 0.78rem 0.84rem;
  border: 0;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(25, 24, 19, 0.05);
  font-size: 0.82rem;
  line-height: 1.35;
}

.calendar-legend__dot {
  width: 0.66rem;
  height: 0.66rem;
}

.calendar-status {
  min-height: 0;
  padding: 0.95rem 1rem;
  border-radius: 1.12rem;
  background:
    linear-gradient(180deg, rgba(232, 241, 227, 0.74), rgba(243, 248, 239, 0.88)),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(89, 120, 76, 0.08);
  color: rgba(25, 24, 19, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
  width: min(100%, 41rem);
  margin-inline: auto;
}

@keyframes calendarFadeIn {
  from {
    opacity: 0.01;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes calendarSlideNext {
  from {
    opacity: 0.01;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes calendarSlidePrev {
  from {
    opacity: 0.01;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section--admin,
.admin-shell {
  display: none !important;
}

.order-form {
  max-width: 44rem;
  margin: 0 auto;
}

.order-side {
  max-width: 38rem;
}

.order-layout__submit {
  max-width: 38rem;
}

.calendar-card {
  padding: 1.15rem 1.2rem;
  gap: 0.9rem;
}

.calendar-weekdays,
.calendar-grid {
  max-width: 34.5rem;
  margin-inline: auto;
  gap: 0.45rem;
}

.calendar-day {
  min-height: 4rem;
  border-radius: 1rem;
}

.calendar-status {
  margin-top: 0.35rem;
}

@media (max-width: 820px) {
  .catalog-nav,
  .order-form__check-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "order"
      "contact";
  }

  .order-form,
  .order-side,
  .order-layout__submit {
    max-width: none;
  }

  .calendar-card {
    padding: 1.15rem;
  }

  .calendar-card__header {
    align-items: flex-start;
  }

  .calendar-nav__button {
    width: 3.1rem;
    height: 3.1rem;
    min-width: 3.1rem;
    min-height: 3.1rem;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 0.38rem;
    max-width: none;
  }

  .calendar-day {
    min-height: 3.05rem;
    border-radius: 0.92rem;
  }

  .calendar-legend {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .calendar-card {
    width: 100%;
    padding: 1.05rem;
    gap: 0.95rem;
  }

  .calendar-card h3 {
    font-size: clamp(1.06rem, 6vw, 1.25rem);
  }

  .calendar-nav {
    margin-left: auto;
  }

  .calendar-meta {
    align-items: center;
    gap: 0.55rem;
  }

  .calendar-month {
    font-size: 1rem;
  }

  .calendar-meta__lead {
    max-width: none;
    font-size: 0.86rem;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 0.3rem;
    width: 100%;
    max-width: none;
  }

  .calendar-day {
    min-height: 2.7rem;
    border-radius: 0.82rem;
  }

  .calendar-weekdays span {
    font-size: 0.64rem;
    letter-spacing: 0.04em;
  }

  .calendar-legend,
  .calendar-status,
  .order-side,
  .order-layout__submit {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 380px) {
  .calendar-day {
    min-height: 2.42rem;
    border-radius: 0.74rem;
  }

  .calendar-day__number {
    font-size: 0.8rem;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
