:root {
  --cream: #f4efe5;
  --paper: #fffaf0;
  --ink: #203027;
  --sage: #748578;
  --lime: #d9ed75;
  --gold: #efb343;
  --line: rgba(32, 48, 39, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.nav {
  height: 76px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand-mark {
  display: grid;
  width: 35px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 22px;
}
.nav-link {
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100vh - 76px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-image, .hero-shade {
  position: absolute;
  inset: 0;
}
.hero-image {
  background: url("/schnitzelbowl.png") center 46% / cover no-repeat;
  transform: scale(1.015);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 22, 18, .82) 0%, rgba(15, 22, 18, .48) 42%, rgba(15, 22, 18, .04) 72%),
    linear-gradient(0deg, rgba(15, 22, 18, .36), transparent 52%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(730px, 90%);
  padding: clamp(72px, 10vw, 150px) clamp(24px, 7vw, 110px);
  color: white;
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1, .recipe h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(62px, 8.2vw, 128px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .84;
}
.hero h1 em { color: var(--lime); }
.intro {
  max-width: 570px;
  margin: 36px 0 40px;
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}
.facts {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.28);
  width: min(560px, 100%);
}
.facts div {
  min-width: 130px;
  padding: 22px 30px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.facts strong {
  font-family: "Playfair Display", serif;
  color: var(--lime);
  font-size: 28px;
}
.facts span {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.recipe {
  padding: clamp(90px, 12vw, 180px) clamp(24px, 7vw, 110px);
  background: var(--paper);
}
.recipe-head {
  display: grid;
  grid-template-columns: 1.4fr .7fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.eyebrow.dark { color: var(--sage); }
.recipe h2 {
  font-size: clamp(50px, 6.2vw, 94px);
  line-height: .94;
}
.recipe-lead {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  line-height: 1.45;
}
.recipe-grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(400px, 1.3fr);
  gap: clamp(70px, 10vw, 160px);
  padding-top: 80px;
}
.recipe h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 36px;
}
.servings {
  margin: 8px 0 44px;
  color: var(--sage);
  font-size: 13px;
}
.ingredients h4 {
  margin: 32px 0 14px;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.ingredients ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ingredients li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.45;
}
.ingredients li span { font-weight: 700; }
.method > h3 { margin-bottom: 28px; }
.method ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.method li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.step {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-style: italic;
}
.method h4 {
  margin: 1px 0 8px;
  font-size: 17px;
}
.method p {
  margin: 0;
  color: #59655e;
  font-size: 15px;
  line-height: 1.75;
}

.tip {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 12vw, 190px);
  text-align: center;
  background: var(--ink);
  color: white;
}
.tip blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 58px);
  font-style: italic;
  line-height: 1.24;
}
footer {
  padding: 36px clamp(24px, 7vw, 110px);
  display: flex;
  justify-content: space-between;
  background: #152019;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}
footer span { color: var(--lime); font-weight: 700; }
footer p { margin: 0; }

@media (max-width: 800px) {
  .hero { min-height: 820px; }
  .hero-shade { background: linear-gradient(0deg, rgba(15,22,18,.9) 0%, rgba(15,22,18,.5) 62%, rgba(15,22,18,.08) 100%); }
  .hero-copy { padding-bottom: 64px; }
  .hero h1 { font-size: clamp(58px, 17vw, 90px); }
  .facts div { min-width: 0; flex: 1; padding-right: 12px; }
  .recipe-head, .recipe-grid { grid-template-columns: 1fr; gap: 50px; }
  .recipe-head { padding-bottom: 52px; }
  .recipe-grid { padding-top: 52px; }
}

@media (max-width: 480px) {
  .nav { height: 66px; }
  .nav-link { font-size: 10px; }
  .hero { min-height: calc(100svh - 66px); }
  .hero-image { background-position: 58% center; }
  .hero-copy { width: 100%; }
  .intro { margin: 28px 0; }
  .facts { flex-wrap: wrap; }
  .facts div { min-width: 33%; display: block; }
  .facts span { display: block; margin-top: 4px; }
  .method li { grid-template-columns: 44px 1fr; gap: 10px; }
  footer { gap: 20px; }
}
