:root {
  --paper: #f8f5ef;
  --surface: #fffdf9;
  --ink: #20231f;
  --muted: #666b64;
  --line: #ddd9d0;
  --green: #2f6846;
  --green-soft: #dfece3;
  --orange: #d96f32;
  --shadow: 0 18px 50px rgba(36, 43, 36, .09);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-size: 20px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: clamp(58px, 9vw, 112px) 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(44px, 8vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 10px;
  background: var(--orange);
}

h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 500;
}

.lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.recipe-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.recipe-card::before {
  content: "Google Docs · Gerechten";
  display: block;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.recipe-card h2 {
  margin-bottom: 22px;
  font-size: 26px;
}

.recipe-card h3 {
  margin: 24px 0 8px;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.recipe-card ul,
.recipe-card ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 74px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 249, .72);
}

.step-number {
  display: block;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

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

.notice {
  padding: 28px;
  border-radius: 14px;
  background: var(--green-soft);
}

.notice h2 { margin-bottom: 10px; font-size: 26px; }
.notice p { max-width: 760px; margin: 0; }

.legal {
  width: min(820px, 100%);
  padding: 70px 0 90px;
}

.legal h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 68px);
}

.legal .intro {
  margin: 0 0 48px;
  color: var(--muted);
  font-size: 18px;
}

.legal section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal h2 {
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 500;
}

.legal p { margin: 0 0 14px; }
.legal ul { margin: 10px 0 16px; padding-left: 22px; }
.legal li + li { margin-top: 8px; }
.legal a { color: var(--green); text-underline-offset: 3px; }

.updated {
  margin-top: 40px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { text-underline-offset: 3px; }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  .site-nav { justify-content: flex-end; gap: 8px 14px; }
  .hero { grid-template-columns: 1fr; padding-top: 52px; }
  .recipe-card { transform: none; }
  .steps { grid-template-columns: 1fr; }
  .step-number { margin-bottom: 18px; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .recipe-card { transition: transform .25s ease, box-shadow .25s ease; }
  .recipe-card:hover { transform: rotate(0); box-shadow: 0 24px 65px rgba(36, 43, 36, .13); }
}
