@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=Montserrat:wght@300;400;500;600&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #2a2a2a;
  background: #faf9f6;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: 1px solid #e8e3d6;
}
.logo img { height: 44px; width: auto; display: block; }
.nav {
  display: flex;
  gap: 36px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav a {
  color: #2a2a2a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.recipe-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px 96px;
}
.recipe-back {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #888;
  text-decoration: none;
  margin-bottom: 48px;
  display: inline-block;
}
.recipe-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #4a7c59;
  text-align: center;
  margin-bottom: 14px;
}
.recipe-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 56px;
  letter-spacing: 0.01em;
  color: #2a2a2a;
  text-align: center;
  line-height: 1.05;
  margin-bottom: 12px;
}
.recipe-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: #6a6258;
  text-align: center;
  margin-bottom: 48px;
}
.recipe-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 56px;
}
.recipe-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #4a7c59;
  text-align: center;
  margin-bottom: 24px;
  margin-top: 56px;
}
.recipe-list {
  list-style: none;
  max-width: 480px;
  margin: 0 auto;
}
.recipe-list li {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: #2a2a2a;
  padding: 12px 0;
  border-bottom: 1px solid #ece6d8;
}
.recipe-list li:last-child { border-bottom: none; }
.recipe-method li {
  border-bottom: none;
  padding: 8px 0;
  color: #5a5448;
}
.recipe-method {
  counter-reset: step;
}
.recipe-method li::before {
  content: counter(step) ".";
  counter-increment: step;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: #4a7c59;
  margin-right: 12px;
}
.sub-recipe {
  border-top: 1px solid #ece6d8;
  margin-top: 64px;
  padding-top: 56px;
}
.sub-recipe-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  color: #2a2a2a;
  text-align: center;
  margin-bottom: 32px;
}
.also-try {
  background: #f0ede5;
  padding: 36px 48px;
  margin-top: 64px;
  border-radius: 4px;
}
.also-try-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #4a7c59;
  text-align: center;
  margin-bottom: 16px;
}
.also-try ul {
  list-style: none;
  text-align: center;
}
.also-try li {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  color: #5a5448;
}
.tag-us {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: #888;
  margin-top: 56px;
}
