:root {
  --bg: #1a1612;
  --bg-elev: #221c17;
  --bg-card: #2a221c;
  --bg-soft: #322820;
  --cream: #f3ebe0;
  --cream-soft: #d4c8b8;
  --muted: #a89884;
  --ember: #d4652f;
  --ember-hot: #e87a3f;
  --ember-deep: #a84a1f;
  --ember-glow: rgba(212, 101, 47, 0.16);
  --line: rgba(243, 235, 224, 0.08);
  --line-ember: rgba(212, 101, 47, 0.35);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.65;
  color: var(--cream);
  background:
    radial-gradient(ellipse 55% 40% at 15% 0%, rgba(212, 101, 47, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 35% at 90% 30%, rgba(168, 74, 31, 0.08), transparent 50%),
    var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; text-wrap: balance; }
p { margin: 0; max-width: 56ch; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  transition: background 0.35s var(--ease), border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(26, 22, 18, 0.9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ember);
}

.brand__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  color: var(--cream);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-desktop a:not(.nav-cta) {
  color: var(--muted);
  transition: color 0.2s;
}

.nav-desktop a:not(.nav-cta):hover { color: var(--cream); }

.nav-cta {
  padding: 0.55rem 1.15rem;
  background: var(--ember);
  color: var(--cream) !important;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover { background: var(--ember-hot); transform: translateY(-1px); }

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(26, 22, 18, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open[hidden] { display: flex; }

.mobile-menu__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--cream);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 500;
}

.mobile-menu__nav a:hover { color: var(--ember); }

.mobile-menu__tag {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.hero {
  padding: calc(var(--header-h) + 2.5rem) clamp(1.25rem, 4vw, 2.5rem) 4rem;
}

.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow, .label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--ember-hot);
  font-weight: 500;
}

.hero__lede {
  color: var(--cream-soft);
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--ember);
  color: var(--cream);
}

.btn--primary:hover { background: var(--ember-hot); }

.btn--ghost {
  border: 1px solid var(--line-ember);
  color: var(--cream);
  background: rgba(42, 34, 28, 0.5);
}

.btn--ghost:hover { border-color: var(--ember); color: var(--ember-hot); }

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

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero__trust .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ember);
  opacity: 0.7;
}

.hero__stage {
  margin: 0;
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line-ember);
  background: var(--bg-card);
  box-shadow: 0 30px 60px rgba(10, 8, 6, 0.45);
}

.hero__stage img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero__stage figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  background: rgba(26, 22, 18, 0.88);
  border: 1px solid var(--line);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.hero__stage strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
}

.hero__stage span { font-size: 0.95rem; color: var(--cream); }

.strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 0.95rem 0;
}

.strip__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
}

.strip__track span:nth-child(odd) { color: var(--ember-hot); }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.menu, .how, .ingredients, .order {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 2.75rem;
}

.section-head--center { text-align: center; }
.section-head--center .section-lede,
.section-head--center p { margin-inline: auto; }

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.section-lede { color: var(--muted); }

.menu__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.15rem;
}

.dish {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.dish:hover {
  border-color: var(--line-ember);
  transform: translateY(-3px);
}

.dish img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dish__body { padding: 1.15rem 1.25rem 1.35rem; }

.dish__tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.45rem;
}

.dish h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}

.dish p { color: var(--muted); font-size: 0.92rem; }

.dish--feature {
  border-color: var(--line-ember);
  background:
    linear-gradient(160deg, rgba(212, 101, 47, 0.08), transparent 45%),
    var(--bg-card);
}

.dish--feature img { aspect-ratio: 16 / 10; }

.dish--feature h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.how {
  background:
    linear-gradient(180deg, transparent, rgba(212, 101, 47, 0.04), transparent),
    var(--bg);
  clip-path: polygon(0 0, 100% 2.5vw, 100% 100%, 0 calc(100% - 2.5vw));
  padding-block: calc(clamp(4rem, 10vw, 7rem) + 2.5vw);
}

.how__steps {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}

.step {
  padding: 1.5rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}

.step__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--ember);
  display: block;
  margin-bottom: 0.75rem;
}

.step svg {
  color: var(--ember-hot);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step p { color: var(--muted); font-size: 0.95rem; }

.ingredients__layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.ingredients__copy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0.5rem 0 1rem;
}

.ingredients__copy > p {
  color: var(--cream-soft);
  margin-bottom: 1.5rem;
}

.story-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.story-list li {
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border-left: 3px solid var(--ember);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.story-list strong {
  display: block;
  color: var(--cream);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.ingredients__photos {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.ing-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}

.ing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ing-photo--a {
  grid-row: 1 / 3;
  min-height: 320px;
}

.ing-photo--a img { aspect-ratio: 3 / 4; min-height: 100%; }

.ing-photo--b img { aspect-ratio: 4 / 3; }

.ing-photo--b figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.4rem 0.7rem;
  background: rgba(26, 22, 18, 0.88);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--ember-hot);
  letter-spacing: 0.04em;
}

.order__panel {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background:
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(212, 101, 47, 0.14), transparent 55%),
    var(--bg-elev);
  border: 1px solid var(--line-ember);
  border-radius: calc(var(--radius) + 6px);
}

.order__copy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.12;
  margin: 0.5rem 0 0.85rem;
}

.order__copy > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.plans {
  display: grid;
  gap: 0.75rem;
}

.plan {
  text-align: left;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.15rem 1rem;
  transition: border-color 0.2s, background 0.2s;
}

.plan.is-active,
.plan:hover {
  border-color: var(--line-ember);
  background: var(--bg-soft);
}

.plan__name {
  font-weight: 600;
  color: var(--cream);
  grid-column: 1;
}

.plan__meta {
  font-size: 0.85rem;
  color: var(--muted);
  grid-column: 1;
}

.plan__price {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ember-hot);
}

.plan__price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: 0.15rem;
}

.order__form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-content: start;
}

.form-lead {
  color: var(--cream-soft);
  max-width: none;
}

.form-lead strong { color: var(--ember-hot); }

.order__form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.order__form input[type="email"],
.order__form input[type="text"] {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--cream);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  outline: none;
}

.order__form input:focus { border-color: var(--ember); }

.check-row {
  display: flex !important;
  align-items: flex-start;
  gap: 0.65rem;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.9rem !important;
  color: var(--cream-soft) !important;
  grid-template-columns: none !important;
}

.check-row input {
  margin-top: 0.2rem;
  accent-color: var(--ember);
  width: auto;
}

.form-msg {
  min-height: 1.25em;
  color: var(--ember-hot);
  font-size: 0.9rem;
  max-width: none;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: none;
}

.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem) 3rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--ember);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.footer__brand span { color: var(--cream); }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.footer__links a:hover { color: var(--ember-hot); }
.footer__legal { font-size: 0.78rem; opacity: 0.75; }

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js-ready .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .menu__grid {
    grid-template-columns: 1fr 1fr;
  }
  .dish--feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
  }
  .dish--feature img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 280px;
  }
  .dish--feature .dish__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
  }
  .how__steps { grid-template-columns: 1fr 1fr; }
  .order__panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
  .site-footer {
    grid-template-columns: auto 1fr auto;
    text-align: left;
    align-items: center;
  }
  .footer__links { justify-content: flex-end; }
  .footer__legal { grid-column: 1 / -1; text-align: center; }
}

@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
  .how__steps { grid-template-columns: repeat(4, 1fr); }
  .ingredients__layout {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .strip__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
/* ===== SIGNATURE: Recipe editorial ===== */
body {
  background:
    radial-gradient(ellipse 50% 35% at 10% 0%, rgba(212, 101, 47, 0.1), transparent 55%),
    linear-gradient(180deg, #1f1a15 0%, #1a1612 40%, #221c17 100%);
}
.hero--editorial {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 27px, rgba(243,235,224,0.03) 28px),
    var(--bg-elev);
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 28px 28px;
  margin-bottom: 0;
}
.menu--calendar .menu__grid { display: none; }
.week-cal {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) 1rem;
}
.day-cell {
  background: #2c241c;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(243,235,224,0.04) inset;
}
.day-cell__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.65rem 0.9rem;
  background: rgba(212, 101, 47, 0.1);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
}
.day-cell__head .day {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--ember);
}
.day-cell__head .day-num {
  font-size: 1.4rem;
  color: var(--cream-soft);
}
.day-cell img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.day-cell__body,
.day-cell__rest {
  padding: 0.9rem 1rem 1.1rem;
}
.day-cell h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.35rem 0 0.35rem;
  color: var(--cream);
}
.day-cell p { color: var(--muted); font-size: 0.9rem; }
.day-cell .dish__tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
}
.day-cell--rest {
  background:
    linear-gradient(160deg, rgba(212,101,47,0.08), transparent 50%),
    #261f18;
  min-height: 200px;
  justify-content: flex-start;
}
.day-cell--feature {
  border-color: var(--line-ember);
}

/* Kitchen alternating steps */
.how--kitchen .how__steps { display: none; }
.kitchen-steps {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.k-step {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
.k-step__photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.k-step__photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.k-step__num {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cream);
  background: rgba(26, 22, 18, 0.72);
  backdrop-filter: blur(8px);
  padding: 0.15rem 0.65rem;
  border-radius: 10px;
  line-height: 1;
  border: 1px solid var(--line-ember);
}
.k-step__copy h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}
.k-step__copy p { color: var(--cream-soft); }

/* Mosaic ingredients */
.ingredients--mosaic {
  padding: 4rem clamp(1.25rem, 4vw, 2.5rem);
  background:
    linear-gradient(180deg, transparent, rgba(50,40,32,0.5)),
    var(--bg);
}
.ingredients--mosaic .ingredients__layout,
.ingredients--mosaic .ingredients__photos { display: none; }
.ingredients--mosaic {
  display: grid;
  gap: 2rem;
  max-width: calc(var(--max) + 5rem);
  margin: 0 auto;
}
.ingredients--mosaic .ingredients__copy {
  max-width: 40rem;
}
.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1.2fr 0.8fr 0.9fr;
  gap: 0.65rem;
  min-height: 420px;
}
.mosaic figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mosaic__a { grid-row: 1 / 3; grid-column: 1; }
.mosaic__b { grid-row: 1; grid-column: 2; }
.mosaic__c { grid-row: 2 / 4; grid-column: 2; }
.mosaic__d { grid-row: 3; grid-column: 1; }
.mosaic figcaption {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  background: rgba(26,22,18,0.8);
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  color: var(--cream-soft);
}

.order {
  background: #241d17;
  border-top: 1px solid var(--line);
  border-radius: 28px 28px 0 0;
  margin-top: 1rem;
}

@media (min-width: 720px) {
  .week-cal {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
  }
  .day-cell--mon { grid-column: 1 / 3; }
  .day-cell--sat { grid-column: 3 / 5; }
  .day-cell--fri { grid-column: 1 / 3; }
  .day-cell--sun { grid-column: 3 / 5; }
  .k-step--left {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .k-step--right {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .k-step--right .k-step__photo { order: 2; }
  .k-step--right .k-step__copy { order: 1; }
  .ingredients--mosaic {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }
}
@media (min-width: 980px) {
  .week-cal {
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: auto;
  }
  .day-cell--mon,
  .day-cell--sat,
  .day-cell--fri,
  .day-cell--sun { grid-column: auto; }
}
/* paper section transitions */
.menu--calendar {
  padding: 4rem 0 3rem;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(243,235,224,0.025) 32px),
    #1e1914;
  border-radius: 24px 24px 0 0;
  margin-top: -0.5rem;
}
.how--kitchen {
  padding: 4rem 0;
  background: #241e18;
  border-top: 1px solid var(--line);
}
