:root {
  color-scheme: dark;
  --color-ember: #f06f2f;
  --color-ember-deep: #a83f20;
  --color-bg: #0d0d0c;
  --color-bg-soft: #151412;
  --color-panel: #1d1a17;
  --color-panel-strong: #28231f;
  --color-text: #fff4e6;
  --color-muted: #c9b9a3;
  --color-line: rgba(255, 244, 230, 0.16);
  --color-shadow: rgba(0, 0, 0, 0.48);
  --font-display: "Arial Narrow", "Helvetica Neue Condensed", "Roboto Condensed", Impact, Haettenschweiler, sans-serif;
  --font-display-weight: 700;
  --font-display-weight-strong: 750;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --space-page: clamp(1rem, 4vw, 4.5rem);
  --max-width: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(240, 111, 47, 0.08), transparent 26rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

::selection {
  background: var(--color-ember);
  color: #160b05;
}

a {
  color: inherit;
  text-decoration-color: rgba(240, 111, 47, 0.65);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #ffd6bd;
}

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

:focus-visible {
  outline: 3px solid var(--color-ember);
  outline-offset: 4px;
}

.skip-link {
  background: var(--color-text);
  color: #17110d;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-150%);
  z-index: 20;
}

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

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  background: rgba(13, 13, 12, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-line);
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 0.85rem var(--space-page);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  gap: 0.65rem;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand__mark {
  flex: 0 0 auto;
  height: clamp(1.75rem, 3vw, 2rem);
  object-fit: contain;
  width: clamp(1.75rem, 3vw, 2rem);
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 0.2rem;
}

.site-nav a {
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.95rem;
  padding: 0.55rem 0.9rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(240, 111, 47, 0.13);
  color: var(--color-text);
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-text);
  display: none;
  flex-direction: column;
  gap: 0.28rem;
  height: 2.75rem;
  justify-content: center;
  width: 2.75rem;
}

.nav-toggle__bar {
  background: currentColor;
  display: block;
  height: 2px;
  width: 1.1rem;
}

.hero {
  min-height: calc(100vh - 72px);
  overflow: hidden;
  position: relative;
}

.hero__image,
.hero__overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero__image {
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.94) 0%, rgba(13, 13, 12, 0.76) 42%, rgba(13, 13, 12, 0.28) 100%),
    linear-gradient(0deg, var(--color-bg) 0%, rgba(13, 13, 12, 0) 36%);
}

.hero__content {
  display: grid;
  gap: 1.15rem;
  max-width: 760px;
  padding: clamp(6rem, 14vh, 9rem) var(--space-page) clamp(5rem, 11vh, 8rem);
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: #ffb37c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.1;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 8.6vw, 7.1rem);
  margin-bottom: 0;
  max-width: 9ch;
}

h2 {
  font-size: clamp(1.85rem, 4.3vw, 3.55rem);
  line-height: 1.12;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.hero__lead {
  color: var(--color-text);
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
  max-width: 58ch;
}

.hero__line {
  color: #ffd6bd;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.button {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 850;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1rem;
  text-decoration: none;
  width: fit-content;
}

.button--primary {
  background: var(--color-ember);
  color: #170b05;
}

.button--primary:hover {
  background: #ff8b4d;
  color: #170b05;
}

.button--ghost {
  border-color: rgba(255, 244, 230, 0.32);
  color: var(--color-text);
}

.button--ghost:hover {
  background: rgba(255, 244, 230, 0.08);
  color: var(--color-text);
}

.section {
  margin-inline: auto;
  max-width: var(--max-width);
  padding: clamp(4rem, 8vw, 7rem) var(--space-page);
}

.section__intro {
  max-width: 720px;
}

.section__intro p:not(.eyebrow) {
  color: var(--color-muted);
  margin-bottom: 1.15rem;
}

.section-action {
  margin: 2rem 0 0;
}

.manifest__head {
  align-items: center;
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 11.875rem);
}

.manifest__mark {
  aspect-ratio: 1;
  justify-self: end;
  object-fit: contain;
  width: clamp(10rem, 15vw, 11.875rem);
}

.manifest__grid {
  border-bottom: 1px solid var(--color-line);
  border-top: 1px solid var(--color-line);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
  padding-block: 1.5rem;
}

.manifest__grid p {
  color: var(--color-muted);
  margin: 0;
}

.manifest h2 {
  font-size: clamp(2.05rem, 4.8vw, 3.85rem);
  font-weight: var(--font-display-weight);
  line-height: 1.14;
  max-width: 15ch;
}

.recipe-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.empty-state {
  border-bottom: 1px solid var(--color-line);
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  margin-top: 2rem;
  max-width: 720px;
  padding-block: 1.5rem;
}

.empty-state h3 {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: var(--font-display-weight);
  letter-spacing: 0;
  line-height: 1.13;
  text-transform: uppercase;
}

.empty-state .button {
  margin-top: 0.75rem;
}

.recipes-overview h1 {
  font-size: clamp(2.75rem, 7vw, 5.45rem);
  line-height: 1.11;
  max-width: 11ch;
}

.recipe-search {
  align-items: end;
  border-bottom: 1px solid var(--color-line);
  border-top: 1px solid var(--color-line);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto auto;
  margin-top: 2rem;
  padding-block: 1.25rem;
}

.recipe-search label {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.recipe-search span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.recipe-search input {
  background: #120f0d;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-text);
  font: inherit;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  width: 100%;
}

.recipe-search input:focus {
  outline: 3px solid var(--color-ember);
  outline-offset: 3px;
}

.category-filter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.category-filter a {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 750;
  padding: 0.45rem 0.75rem;
  text-decoration: none;
}

.category-filter a:hover,
.category-filter a.is-active {
  background: rgba(240, 111, 47, 0.14);
  border-color: rgba(240, 111, 47, 0.55);
  color: var(--color-text);
}

.result-count {
  color: #ffd6bd;
  font-weight: 800;
  margin: 1.2rem 0 0;
}

.result-count span {
  color: var(--color-muted);
  font-weight: 650;
}

.recipe-card {
  background: linear-gradient(180deg, var(--color-panel-strong), var(--color-panel));
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 1rem 3rem var(--color-shadow);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.recipe-card__media {
  aspect-ratio: 4 / 3;
  background: #21130c;
  display: block;
  overflow: hidden;
}

.recipe-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
  width: 100%;
}

.recipe-card:hover .recipe-card__media img {
  transform: scale(1.035);
}

.recipe-card__body {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.recipe-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: var(--font-display-weight);
  hyphens: none;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 0;
  overflow-wrap: normal;
  text-transform: uppercase;
  word-break: normal;
}

.recipe-card h3 a {
  text-decoration: none;
}

.recipe-card__subtitle,
.recipe-card__teaser {
  color: var(--color-muted);
  margin: 0;
}

.rating-grid {
  display: grid;
  gap: 0.55rem;
}

.rating {
  align-items: center;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 5.4rem minmax(4rem, 1fr) 2.4rem;
  min-width: 0;
}

.rating__label,
.rating__value {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.rating__value {
  text-align: right;
}

.rating__track {
  background: rgba(255, 244, 230, 0.13);
  border-radius: 999px;
  height: 0.45rem;
  overflow: hidden;
}

.rating__track span {
  background: linear-gradient(90deg, var(--color-ember-deep), var(--color-ember));
  display: block;
  height: 100%;
  width: var(--rating-percent);
}

.meta-list,
.detail-meta {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.meta-list {
  grid-template-columns: repeat(3, 1fr);
}

.meta-list div,
.detail-meta div {
  border-top: 1px solid var(--color-line);
  padding-top: 0.65rem;
}

dt {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0.08rem 0 0;
}

.detail-teaser {
  align-items: center;
  border-top: 1px solid var(--color-line);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.recipe-detail {
  background: linear-gradient(180deg, rgba(240, 111, 47, 0.08), transparent 28rem);
}

.recipe-hero {
  align-items: start;
  display: grid;
  gap: clamp(2.25rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.recipe-hero h1 {
  font-size: 4.2rem;
  font-size: clamp(2.55rem, 8.9cqi, 5.15rem);
  font-weight: var(--font-display-weight-strong);
  hyphens: none;
  line-height: 1.1;
  max-width: 100%;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.recipe-hero__copy {
  container-type: inline-size;
  inline-size: 100%;
  min-width: 0;
}

.recipe-hero__subtitle {
  color: #ffd6bd;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 750;
  margin: 1rem 0 0;
}

.recipe-hero__media {
  align-self: start;
  margin: 0;
  min-width: 0;
  padding-top: 0.4rem;
  width: 100%;
}

.recipe-hero__media img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 1rem 3rem var(--color-shadow);
  object-fit: cover;
  width: 100%;
}

.js-only {
  display: none;
}

.has-js .recipe-comfort.js-only {
  align-items: center;
  border-bottom: 1px solid var(--color-line);
  border-top: 1px solid var(--color-line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: space-between;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.recipe-jump-nav,
.recipe-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.recipe-actions {
  justify-content: flex-end;
}

.recipe-action-status {
  color: #ffd6bd;
  font-size: 0.92rem;
  font-weight: 750;
  margin: 0;
  min-height: 1.45rem;
}

.has-js .has-serving-calculator > [data-servings-label] {
  display: none;
}

.has-js .serving-control.js-only {
  align-items: center;
  display: inline-grid;
  gap: 0.5rem;
  grid-template-columns: auto minmax(6rem, 1fr) auto;
  margin-top: 0.2rem;
}

.serving-control button {
  background: rgba(255, 244, 230, 0.06);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  height: 2.25rem;
  width: 2.25rem;
}

.serving-control button:hover:not(:disabled) {
  background: rgba(240, 111, 47, 0.18);
  border-color: rgba(240, 111, 47, 0.5);
}

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

.serving-control span {
  color: var(--color-text);
  font-weight: 750;
  text-align: center;
}

.recipe-story {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  padding-top: 1rem;
}

.recipe-story > p,
.story-text {
  color: var(--color-muted);
  font-size: 1.1rem;
}

.story-text p {
  margin: 0 0 1rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-text strong {
  color: var(--color-text);
  font-weight: 850;
}

.recipe-body {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr) minmax(0, 1.35fr);
}

.recipe-panel {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  display: grid;
  gap: 1.5rem;
  padding: 1.2rem;
  position: sticky;
  top: 96px;
}

.recipe-columns {
  display: contents;
}

.recipe-columns > * {
  min-width: 0;
}

@supports not (display: contents) {
  .recipe-body {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 2.35fr);
  }

  .recipe-columns {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(300px, 1fr) minmax(0, 1.35fr);
  }
}

.ingredient-list,
.step-list {
  margin: 0;
  padding: 0;
}

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

.ingredient-list li {
  border-bottom: 1px solid var(--color-line);
  display: grid;
  gap: 0.2rem;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  padding-bottom: 0.7rem;
}

.ingredient-list small {
  color: var(--color-muted);
  grid-column: 2;
}

.ingredient-list__amount {
  color: #ffb37c;
  font-weight: 800;
}

.step-list {
  counter-reset: steps;
  display: grid;
  gap: 1rem;
  list-style: none;
}

.step-list li {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  counter-increment: steps;
  padding: 1.1rem;
  position: relative;
}

.step-list h3::before {
  color: var(--color-ember);
  content: counter(steps, decimal-leading-zero) " ";
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
}

.step-list p:last-child {
  margin-bottom: 0;
}

.step-comment {
  border-left: 3px solid var(--color-ember);
  color: #ffd6bd;
  font-weight: 700;
  padding-left: 0.8rem;
}

#zutaten,
#zubereitung,
#kommentare {
  scroll-margin-top: 6rem;
}

.recipe-comments {
  display: grid;
  gap: 1.5rem;
  padding-top: 1rem;
}

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

.comment-item,
.comment-form,
.comment-empty,
.comment-notice {
  background: rgba(255, 244, 230, 0.04);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.comment-item {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.comment-item header {
  align-items: start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.comment-item h3,
.comment-form h3,
.comment-empty h3 {
  margin-bottom: 0.25rem;
}

.comment-item time,
.comment-form p,
.comment-empty p,
.comment-field p {
  color: var(--color-muted);
}

.comment-item time {
  font-size: 0.9rem;
  white-space: nowrap;
}

.comment-text {
  color: var(--color-text);
}

.comment-text p {
  margin: 0 0 0.75rem;
}

.comment-text p:last-child {
  margin-bottom: 0;
}

.comment-form {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
}

.comment-field {
  display: grid;
  gap: 0.4rem;
}

.comment-field label {
  color: var(--color-text);
  font-weight: 800;
}

.comment-field input,
.comment-field textarea {
  background: #120f0d;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-text);
  font: inherit;
  padding: 0.75rem 0.85rem;
  width: 100%;
}

.comment-field textarea {
  resize: vertical;
}

.comment-field input:focus,
.comment-field textarea:focus {
  outline: 3px solid var(--color-ember);
  outline-offset: 3px;
}

.comment-field p,
.comment-field-error {
  font-size: 0.9rem;
  margin: 0;
}

.comment-field-error {
  color: #ffad9f;
  font-weight: 750;
}

.comment-empty,
.comment-notice {
  padding: 1rem;
}

.comment-notice--success {
  border-color: rgba(158, 230, 168, 0.38);
  color: #9ee6a8;
}

.comment-notice--error {
  border-color: rgba(255, 139, 122, 0.38);
  color: #ffad9f;
}

.comment-honeypot {
  height: 1px;
  left: -100vw;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.notes__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.5rem;
}

.notes__grid article {
  border-top: 1px solid var(--color-line);
  padding-top: 1rem;
}

.notes__grid p {
  color: var(--color-muted);
}

.site-footer {
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  padding: 1.5rem var(--space-page);
  text-align: center;
}

.site-footer__nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.site-footer__nav a {
  color: var(--color-muted);
  font-size: 0.95rem;
  text-decoration-color: rgba(240, 111, 47, 0.6);
}

.site-footer__nav a:hover {
  color: var(--color-text);
}

.legal-page {
  max-width: 980px;
}

.legal-page h1 {
  font-size: clamp(2.75rem, 7vw, 5.4rem);
  line-height: 1.12;
  max-width: 100%;
}

.legal-content {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.legal-content section {
  border-top: 1px solid var(--color-line);
  padding-top: 1.25rem;
}

.legal-content h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.55rem);
  line-height: 1.14;
}

.legal-content p,
.legal-content address {
  color: var(--color-muted);
  font-style: normal;
  max-width: 75ch;
}

.legal-content code {
  color: #ffd6bd;
}

.not-found {
  min-height: 60vh;
}

@media (max-width: 980px) {
  .manifest__head {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .manifest__mark {
    grid-row: 1;
    justify-self: start;
    width: clamp(6rem, 24vw, 8rem);
  }

  .manifest__grid,
  .recipe-grid,
  .recipe-hero,
  .recipe-story,
  .recipe-body,
  .recipe-columns {
    grid-template-columns: 1fr;
  }

  .recipe-hero {
    gap: 1.5rem;
  }

  .recipe-hero h1 {
    font-size: 4.15rem;
    font-size: clamp(2.45rem, 13cqi, 5rem);
    max-width: 100%;
  }

  .recipe-panel {
    position: static;
  }

  .recipe-grid {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: var(--color-panel);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: 0 1rem 2rem var(--color-shadow);
    display: none;
    flex-direction: column;
    left: var(--space-page);
    padding: 0.45rem;
    position: absolute;
    right: var(--space-page);
    top: calc(100% + 0.5rem);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: calc(100vh - 64px);
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(13, 13, 12, 0.9) 0%, rgba(13, 13, 12, 0.72) 48%, var(--color-bg) 100%),
      linear-gradient(90deg, rgba(13, 13, 12, 0.65), rgba(13, 13, 12, 0.2));
  }

  .hero__content {
    padding-top: 5rem;
  }

  .meta-list,
  .notes__grid {
    grid-template-columns: 1fr;
  }

  .detail-teaser {
    align-items: start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .recipe-search {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .category-filter a {
    flex: 1 1 auto;
    text-align: center;
  }

  .has-js .recipe-comfort.js-only {
    align-items: stretch;
  }

  .recipe-jump-nav,
  .recipe-actions {
    width: 100%;
  }

  .recipe-jump-nav .button,
  .recipe-actions .button {
    flex: 1 1 11rem;
  }

  .recipe-action-status {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 1rem;
  }

  .brand__mark {
    height: 1.7rem;
    width: 1.7rem;
  }

  .rating {
    grid-template-columns: 4.8rem minmax(3rem, 1fr) 2.3rem;
  }

  .ingredient-list li {
    grid-template-columns: 1fr;
  }

  .ingredient-list small {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .recipe-card:hover .recipe-card__media img {
    transform: none;
  }
}

@media print {
  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background: #fff;
    color: #1b1713;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 11pt;
    line-height: 1.35;
  }

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

  .site-header,
  .site-footer,
  .skip-link,
  .recipe-comfort,
  .recipe-hero__media,
  .rating-grid,
  .button,
  .serving-control {
    display: none !important;
  }

  .section {
    max-width: none;
    padding: 0 0 1rem;
  }

  .recipe-detail {
    background: #fff;
  }

  .recipe-hero,
  .recipe-story,
  .recipe-body,
  .recipe-columns {
    display: block;
  }

  .recipe-hero {
    border-bottom: 1px solid #bbb;
    margin-bottom: 1rem;
  }

  .eyebrow {
    color: #6b3a1f;
    font-size: 9pt;
    letter-spacing: 0.08em;
  }

  h1,
  h2,
  h3 {
    color: #1b1713;
    font-family: Georgia, "Times New Roman", serif;
    page-break-after: avoid;
    break-after: avoid;
  }

  h1 {
    font-size: 24pt;
    line-height: 1.08;
    max-width: none;
  }

  h2 {
    border-top: 1px solid #d7d0c8;
    font-size: 16pt;
    margin-top: 1rem;
    padding-top: 0.65rem;
  }

  h3 {
    font-size: 12pt;
  }

  .recipe-hero__subtitle,
  .recipe-story > p,
  .story-text,
  .ingredient-list small,
  .step-comment {
    color: #3d342c;
  }

  .story-text p {
    margin-bottom: 0.55rem;
  }

  .story-text strong {
    color: #1b1713;
  }

  .recipe-panel {
    background: #fff;
    border: 1px solid #d7d0c8;
    display: block;
    margin: 0 0 1rem;
    padding: 0.75rem;
    position: static;
  }

  .detail-meta {
    display: grid;
    gap: 0.35rem 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-meta div {
    border-top: 0;
    padding-top: 0;
  }

  .has-js .has-serving-calculator > [data-servings-label] {
    display: inline;
  }

  dt {
    color: #6b3a1f;
    font-size: 8.5pt;
  }

  dd {
    margin: 0;
  }

  .ingredient-list {
    gap: 0.35rem;
  }

  .ingredient-list li {
    border-bottom: 1px solid #e2ddd6;
    break-inside: avoid;
    gap: 0.1rem 0.4rem;
    grid-template-columns: 6.5rem minmax(0, 1fr);
    padding-bottom: 0.35rem;
  }

  .ingredient-list__amount {
    color: #5d2e18;
  }

  .step-list {
    gap: 0.55rem;
  }

  .step-list li {
    background: #fff;
    border: 1px solid #d7d0c8;
    break-inside: avoid;
    padding: 0.75rem;
  }

  .step-comment {
    border-left: 2px solid #9b4a24;
    font-weight: 700;
  }
}
