@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #faf7f2;
  color: #2d2a24;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.hero {
  text-align: center;
  padding: 3.5rem 1rem 2rem;
  background: linear-gradient(180deg, #f5e6d0 0%, #faf7f2 100%);
}
.hero .hero-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3a3630;
  letter-spacing: -0.02em;
}
.hero p {
  color: #7a746a;
  margin-top: 0.4rem;
  font-size: 1.1rem;
}

.recipe-header {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem;
}
.recipe-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #3a3630;
  letter-spacing: -0.02em;
}
.recipe-header .recipe-tagline {
  color: #7a746a;
  margin-top: 0.3rem;
  font-size: 1.05rem;
}

.back {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #8b7e6a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.back:hover {
  color: #c07d42;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem 4rem;
  flex: 1;
}

.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ebe5db;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.card:hover .card-cta {
  color: #c07d42;
}
.card .card-image {
  overflow: hidden;
}
.card .card-image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}
.card .card-image:hover img {
  transform: scale(1.03);
}
.card .card-body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card h2 {
  font-size: 1.25rem;
  color: #3a3630;
  margin-bottom: 0.3rem;
}
.card p {
  font-size: 0.92rem;
  color: #7a746a;
  flex: 1;
}
.card .card-cta {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8b7e6a;
  transition: color 0.2s;
}

.recipe {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.recipe > img {
  width: 600px;
  max-width: 100%;
  aspect-ratio: 3/2;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.recipe .recipe-content {
  background: #fff;
  border: 1px solid #ebe5db;
  border-radius: 14px;
  padding: 2rem;
  margin-top: 1.75rem;
}
.recipe .section-icon {
  margin-right: 0.35rem;
}
.recipe h2 {
  font-size: 1.3rem;
  color: #3a3630;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f5e6d0;
}
.recipe .ingredients + .steps {
  margin-top: 2rem;
}
.recipe ul {
  list-style: none;
  padding-left: 0;
}
.recipe ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  border-bottom: 1px solid #f0ece6;
}
.recipe ul li:last-child {
  border-bottom: none;
}
.recipe ul li .ingredient-note {
  display: block;
  font-size: 0.85rem;
  color: #7a746a;
  font-style: italic;
}
.recipe ul li::before {
  content: "•";
  color: #c07d42;
  font-weight: bold;
  position: absolute;
  left: 0.25rem;
}
.recipe ol {
  padding-left: 0;
  counter-reset: step;
  list-style: none;
}
.recipe ol li {
  padding: 0.6rem 0 0.6rem 2.5rem;
  position: relative;
  border-bottom: 1px solid #f0ece6;
  counter-increment: step;
}
.recipe ol li:last-child {
  border-bottom: none;
}
.recipe ol li .step-options {
  margin-top: 0.5rem;
  padding-left: 0;
  list-style: none;
}
.recipe ol li .step-options li {
  padding: 0.35rem 0 0.35rem 1.25rem;
  counter-increment: none;
  border-bottom: none;
  font-size: 0.92rem;
  color: #7a746a;
}
.recipe ol li .step-options li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: auto;
  height: auto;
  background: none;
  color: #c07d42;
  font-weight: normal;
  font-size: inherit;
  border-radius: 0;
  display: inline;
  align-items: unset;
  justify-content: unset;
}
.recipe ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  background: #f5e6d0;
  color: #c07d42;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-back {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sticky-back.visible {
  opacity: 1;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #7a746a;
  font-size: 0.85rem;
  border-top: 1px solid #ebe5db;
  margin-top: auto;
}

/*# sourceMappingURL=style.css.map */
