
:root {
  --ink: #24302b;
  --mute: #66756e;
  --paper: #f4f6f3;
  --sage: #6f8f7c;
  --sage-deep: #3f5d4c;
  --line: rgba(36,48,43,.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Karla", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); font-family: var(--sans); background: var(--paper); line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 5vw; position: sticky; top: 0; z-index: 20;
  background: rgba(244,246,243,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { font-family: var(--display); font-size: 1.55rem; text-decoration: none; font-weight: 700; }
.top nav { display: flex; gap: 1.15rem; flex-wrap: wrap; }
.top nav a { text-decoration: none; font-weight: 600; font-size: .9rem; color: var(--mute); }

.intro {
  text-align: center; padding: clamp(2.5rem,7vw,4.5rem) 5vw 1.2rem;
  max-width: 42rem; margin: 0 auto; animation: rise .8s ease both;
}
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage-deep); margin: 0 0 1rem;
}
.intro h1 {
  font-family: var(--display); font-size: clamp(3rem,7vw,5rem); line-height: .95; margin: 0 0 1rem;
}
.deck { color: var(--mute); font-size: 1.12rem; margin: 0 0 1.4rem; }
.btn {
  display: inline-flex; align-items: center; padding: .85rem 1.2rem;
  background: var(--sage-deep); color: #fff; text-decoration: none; font-weight: 700; font-size: .92rem;
  border: 0; cursor: pointer;
}
.btn.dark { background: var(--ink); }
.btn:hover { filter: brightness(1.05); }

.hero { margin: 0 5vw 0; }
.hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; animation: wash 1s ease both; }

.method, .kit, .letter { padding: clamp(2.5rem,6vw,4rem) 5vw; }
.method h2, .recipe-copy h2, .kit h2, .class-card h2, .letter h2 {
  font-family: var(--display); font-size: clamp(2rem,3.5vw,2.8rem); margin: 0 0 1.2rem; text-align: center;
}
.kit h2 { text-align: left; }

.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.steps article { background: #fff; border: 1px solid var(--line); position: relative; }
.steps .num {
  position: absolute; top: .7rem; left: .7rem; width: 1.7rem; height: 1.7rem;
  border-radius: 999px; background: var(--sage-deep); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: .85rem; z-index: 1;
}
.steps img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.steps h3 { font-family: var(--display); font-size: 1.35rem; margin: .8rem 1rem .35rem; }
.steps p { margin: 0 1rem 1rem; color: var(--mute); font-size: .95rem; }

.recipes {
  display: grid; grid-template-columns: .9fr 1.1fr; background: #e7eee9;
  border-block: 1px solid var(--line);
}
.recipe-copy { padding: clamp(2rem,5vw,3.5rem) 5vw; display: flex; flex-direction: column; justify-content: center; }
.recipe-copy h2 { text-align: left; }
.recipe-copy ul { list-style: none; padding: 0; margin: 0; }
.recipe-copy li { padding: .75rem 0; border-bottom: 1px solid var(--line); color: var(--mute); }
.recipe-copy strong { color: var(--ink); }
.recipes > img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }

.kit-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.kit-grid article { background: #fff; border: 1px solid var(--line); }
.kit-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.kit-grid h3 { font-family: var(--display); margin: .85rem 1rem .35rem; font-size: 1.3rem; }
.kit-grid p { margin: 0 1rem 1rem; color: var(--mute); }

.class { position: relative; min-height: 64vh; display: grid; align-items: end; }
.class > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.class-card {
  position: relative; z-index: 1; margin: 5vw; max-width: 26rem;
  background: rgba(244,246,243,.95); padding: 1.4rem; border: 1px solid var(--line);
}
.class-card h2 { text-align: left; font-size: 1.8rem; margin-bottom: .7rem; }
.class-card p { color: var(--mute); margin: 0 0 1rem; }

.letter { background: var(--sage-deep); color: #f4f6f3; }
.letter h2 { color: #f4f6f3; }
.letter p { color: rgba(244,246,243,.78); margin: 0; text-align: center; }
.letter form { margin: 1.1rem auto 0; display: flex; flex-wrap: wrap; gap: .5rem; max-width: 32rem; justify-content: center; }
.letter input { flex: 1 1 200px; border: 0; padding: .85rem 1rem; font: inherit; }
.letter button { border: 0; background: #dfe8e2; color: var(--ink); font-weight: 700; padding: .85rem 1.2rem; cursor: pointer; }
.form-note { flex: 1 1 100%; font-size: .85rem; margin: .25rem 0 0 !important; }
.form-note a { color: #fff; }

.foot { padding: 2rem 5vw 2.5rem; border-top: 1px solid var(--line); }
.foot strong { font-family: var(--display); font-size: 1.35rem; }
.foot p { color: var(--mute); }
.footer-legal { display: flex; flex-wrap: wrap; gap: .7rem 1.1rem; margin: 1rem 0; }
.footer-legal a { text-decoration: none; color: var(--mute); font-size: .9rem; }
.fine { font-size: .85rem; }

.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 50;
  max-width: 36rem; margin: 0 auto; padding: 1rem 1.1rem;
  background: #111; color: #f5f5f5; box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.cookie-banner a { color: #fff; }
.cookie-banner p { margin: 0 0 .8rem; font-size: .92rem; line-height: 1.45; color: inherit; }
.cookie-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-btn { border: 0; padding: .65rem 1rem; cursor: pointer; font-weight: 600; background: #fff; color: #111; }
.cookie-btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }

@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes wash { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .top nav { display: none; }
  .steps, .recipes, .kit-grid { grid-template-columns: 1fr; }
  .recipes > img { min-height: 260px; }
  .class { min-height: 55vh; }
}
