.container {
  max-width: 980px;
  padding: clamp(16px, 3vw, 26px);
}

.breadcrumb {
  margin-bottom: 14px;
  color: #7b5a3a;
  font-size: 0.94rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: #7b5a3a;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.container > h1 {
  margin: 0 0 14px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.75rem, 4.2vw, 2.6rem);
  line-height: 1.12;
  text-align: center;
  color: #1b354a;
}

.recipe-quick-facts {
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.recipe-fact {
  background: #fff;
  border: 1px solid #e8d4b8;
  border-radius: 10px;
  padding: 10px;
}

.recipe-fact dt {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #8e6240;
}

.recipe-fact dd {
  margin: 3px 0 0;
  font-weight: 700;
  color: #1f374b;
}

.story-card {
  background: linear-gradient(180deg, var(--paper-soft), #fff8ea);
  border: 1px solid var(--line);
  border-left: 5px solid var(--copper);
  border-radius: 10px;
  padding: clamp(14px, 2.8vw, 20px);
  margin: 0 0 20px;
}

.story-card h2 {
  margin: 0 0 12px;
  border-bottom: 0;
  padding-bottom: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.story-media {
  margin: 0;
  justify-self: start;
  width: 100%;
  max-width: 320px;
}

.story-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e7d1b4;
  display: block;
}

.story-copy {
  margin: 0;
  max-width: 68ch;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.64;
}

.story-copy p {
  margin: 0 0 10px;
}

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

.recipe-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.section-card {
  background: #fff;
  border: 1px solid #e8d4b8;
  border-radius: 12px;
  padding: clamp(14px, 2.6vw, 20px);
  box-shadow: 0 6px 16px rgba(15, 47, 69, 0.08);
}

.section-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 6px;
}

.section-card h3 {
  color: #224258;
  margin-bottom: 8px;
}

.section-card ul,
.section-card ol {
  margin-top: 0;
  padding-left: 22px;
}

.section-card li {
  margin-bottom: 6px;
  line-height: 1.55;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 10px;
}

.steps li {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #eddac0;
  border-radius: 10px;
  background: #fffdfa;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  box-shadow: 0 4px 10px rgba(158, 97, 51, 0.25);
  margin-top: 1px;
}

.notes,
.notes-card {
  background: linear-gradient(180deg, var(--paper-soft), #fff8ea);
  border: 1px solid var(--line);
  border-left: 5px solid var(--copper);
  border-radius: 10px;
  padding: clamp(14px, 2.8vw, 20px);
  margin: 0 0 20px;
}

.notes h2,
.notes-card h2 {
  margin-top: 0;
}

.print-button {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  color: var(--white);
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(158, 97, 51, 0.25);
  width: min(280px, 100%);
  margin: 0 auto;
}

.print-button:hover {
  filter: brightness(1.05);
}

.dish-image-narrow {
  width: 100%;
  height: auto;
}

.no-print {
  display: block;
}

.plain-list-item {
  list-style-type: none;
  margin-left: -20px;
}

@media (min-width: 760px) {
  .recipe-quick-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .story-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .story-copy {
    order: 1;
  }

  .story-media {
    order: 2;
    justify-self: end;
  }

  .recipe-sections {
    grid-template-columns: 1fr 1.15fr;
  }
}

@media (max-width: 759px) {
  .story-media {
    max-width: 100%;
  }
}

@media print {
  .no-print,
  .navbar,
  .print-button,
  .site-footer {
    display: none;
  }

  .container {
    box-shadow: none;
    border: 0;
    margin: 0;
    max-width: 100%;
  }
}