:root{
  --bg:#F7F6F3;
  --surface:#fff;
  --soft:#F1EFEB;
  --line:#E3DFD8;
  --ink:#1F1F1F;
  --muted:#6E6E73;
  --accent:#D98A5F;
  --accent-soft:#F3E7DE;
  --navy:#1F1F1F;
  --success:#5C8A72;
  --shadow:0 18px 50px rgba(31,31,31,.06);
  --radius:24px;
  --font:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text",Inter,Segoe UI,sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;min-height:100%;background:var(--bg);color:var(--ink);font-family:var(--font)}
a{color:inherit;text-decoration:none}
button,input{font:inherit;color:inherit}
button{cursor:pointer}
img{display:block;max-width:100%}
.skip{position:absolute;left:-999px;top:0;background:#fff;padding:8px 12px;z-index:50}
.skip:focus{left:12px;top:12px}

.topbar{
  position:sticky;top:0;z-index:30;height:72px;padding:0 max(16px,4vw);
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  background:rgba(247,246,243,.92);backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(227,223,216,.8);
}
.brand{display:flex;align-items:center;gap:10px}
.brand img{width:40px;height:40px;border-radius:12px;object-fit:cover;background:var(--accent-soft)}
.brand-type strong{display:block;font-size:17px;font-weight:800;letter-spacing:-.03em}
.brand-type strong span{color:var(--accent)}
.brand-type small{display:block;font-size:10px;color:var(--muted);margin-top:2px}
.nav{display:flex;gap:22px;font-size:14px;font-weight:700}
.nav a:hover{color:var(--accent)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border:0;border-radius:999px;padding:14px 20px;font-weight:750;
  transition:transform .15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--accent);color:#fff;box-shadow:0 10px 24px rgba(217,138,95,.22)}
.btn-ghost{background:#fff;border:1px solid var(--line);color:var(--ink)}
.btn-small{padding:11px 16px;font-size:13px}

.page{max-width:1120px;margin:0 auto;padding:48px 22px 88px}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;background:#fff;border:1px solid var(--line);
  padding:8px 12px;border-radius:999px;font-size:11px;font-weight:800;color:var(--accent);
  text-transform:uppercase;letter-spacing:.08em;
}

.hero{display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center;min-height:560px}
.hero-copy h1{
  font-size:clamp(36px,5.4vw,58px);line-height:1.02;letter-spacing:-.05em;
  margin:18px 0 18px;max-width:18ch;
}
.hero-copy h1 em{font-style:normal;color:var(--accent)}
.hero-copy p{font-size:18px;line-height:1.55;color:var(--muted);max-width:42ch;margin:0}
.actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px}
.hero-media{
  position:relative;min-height:480px;border-radius:36px;overflow:hidden;
  background:#F7F1EA;box-shadow:var(--shadow);
}
.hero-media img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:contain;object-position:center;
}
.hero-media:after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,transparent 58%,rgba(31,31,31,.55));
}
.hero-float{
  position:absolute;z-index:2;left:20px;right:20px;bottom:20px;
  background:rgba(255,255,255,.96);padding:16px 18px;border-radius:18px;
  display:flex;justify-content:space-between;gap:14px;align-items:center;
}
.hero-float strong{display:block;font-size:15px}
.hero-float span{display:block;font-size:12px;color:var(--muted);margin-top:3px;line-height:1.35}
.hero-float-cta{
  flex:0 0 44px;height:44px;border-radius:50%;display:grid;place-items:center;
  background:var(--accent-soft);color:var(--accent);font-size:22px;font-weight:800;
}

.section{margin-top:80px}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:24px}
.section-head h2,.page-title{font-size:clamp(30px,3.8vw,44px);letter-spacing:-.04em;margin:0}
.section-head p,.lead{margin:8px 0 0;color:var(--muted);line-height:1.55;max-width:42rem}

.purpose-grid,.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.feature-grid{grid-template-columns:repeat(2,1fr)}
.purpose-card,.feature-card{
  background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px;
}
.purpose-card h3,.feature-card h3{margin:0 0 8px;font-size:18px}
.purpose-card p,.feature-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.5}
.feature-num{
  display:inline-block;font-size:11px;font-weight:800;letter-spacing:.1em;
  color:var(--accent);margin-bottom:10px;
}

.prose .section-head p{max-width:46rem}
.prose-lead{margin:0 0 16px;color:var(--muted);font-size:16px;line-height:1.65;max-width:48rem}
.prose-emphasis{margin:18px 0 0;font-size:18px;font-weight:750;line-height:1.45;max-width:40rem}
.question-list{
  margin:18px 0 0;padding:0;list-style:none;display:grid;gap:10px;
  grid-template-columns:1fr 1fr;
}
.question-list li{
  background:#fff;border:1px solid var(--line);border-radius:16px;padding:14px 16px;
  font-size:14px;line-height:1.45;color:var(--ink);
}
.question-list li:before{content:"→ ";color:var(--accent);font-weight:800}
.split-section{
  display:grid;grid-template-columns:1.35fr .65fr;gap:28px;align-items:start;
}
.split-section h2{font-size:clamp(28px,3.4vw,40px);letter-spacing:-.04em;margin:0 0 14px}
.split-section p{color:var(--muted);font-size:15px;line-height:1.6;margin:0 0 14px;max-width:42rem}
.split-section p strong{color:var(--ink)}
.callout{
  background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px;
  position:sticky;top:92px;
}
.callout.accent{background:#fff8f3;border-color:#f0d0b8}
.callout strong{display:block;margin-bottom:8px;font-size:16px}
.callout p{margin:0 0 14px;color:var(--muted);font-size:14px;line-height:1.5}
.callout .btn{width:100%}
.method-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:18px}
.method-card{background:#fff;border:1px solid var(--line);border-radius:20px;padding:20px}
.method-card h3{margin:0 0 8px;font-size:17px}
.method-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.45}
.closing .prose-lead{font-size:17px}

.journey{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
.journey-card{border-radius:20px;padding:18px;background:#fff;border:1px solid var(--line)}
.journey-card .num{
  display:grid;place-items:center;width:32px;height:32px;border-radius:10px;
  background:var(--accent-soft);font-size:12px;font-weight:800;color:var(--accent);
}
.journey-card h3{margin:14px 0 6px;font-size:16px}
.journey-card p{color:var(--muted);font-size:13px;line-height:1.4;margin:0}
.journey-card.active{background:var(--navy);color:#fff;border-color:var(--navy)}
.journey-card.active p{color:#c8c8cc}
.journey-card.active .num{background:var(--accent);color:#fff}

.choice-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;max-width:760px}
.choice{
  background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px;
  text-align:left;transition:transform .15s ease,box-shadow .15s ease;
}
.choice:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.choice-icon{
  width:52px;height:52px;border-radius:16px;display:grid;place-items:center;
  background:var(--accent-soft);font-size:24px;
}
.choice h3{margin:14px 0 6px;font-size:18px}
.choice p{margin:0;color:var(--muted);font-size:14px;line-height:1.45}
.more{display:inline-block;margin-top:14px;font-size:13px;font-weight:800;color:var(--accent)}

.recipe-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.recipe-card-link{display:block;color:inherit;text-decoration:none;height:100%}
.recipe-card-link:hover .more{color:var(--accent)}
.crumbs{display:flex;flex-wrap:wrap;gap:8px;align-items:center;font-size:12px;font-weight:700;color:var(--muted);margin:0 0 14px}
.crumbs a{color:var(--muted)}
.crumbs a:hover{color:var(--accent)}
.recipe-card{
  overflow:hidden;border-radius:24px;background:#fff;border:1px solid var(--line);
  cursor:pointer;transition:transform .15s ease,box-shadow .15s ease;text-align:left;padding:0;width:100%;
}
.recipe-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.recipe-photo{
  height:180px;display:grid;place-items:center;
  background:linear-gradient(145deg,var(--accent-soft),#f0d4bf);
}
.recipe-photo .emoji{font-size:64px;line-height:1}
.recipe-body{padding:16px 18px 18px}
.chips{display:flex;gap:6px;flex-wrap:wrap}
.chip{
  font-size:10px;font-weight:800;background:var(--soft);color:#765842;
  padding:5px 9px;border-radius:999px;
}
.recipe-body h3{margin:10px 0 6px;font-size:18px}
.recipe-body p{margin:0;color:var(--muted);font-size:13px;line-height:1.45}

.catalog-hook{margin:22px 0 0;color:var(--muted);font-size:14px;line-height:1.5}
.catalog-hook a{color:var(--accent);font-weight:700}

.dark-band{
  background:var(--navy);color:#fff;border-radius:28px;padding:36px 40px;
  display:grid;grid-template-columns:1.2fr .8fr;gap:24px;align-items:center;
}
.dark-band h2{font-size:clamp(26px,3vw,34px);letter-spacing:-.03em;margin:0 0 10px}
.dark-band p{color:#c8c8cc;line-height:1.55;margin:0}
.dark-band .actions{justify-content:flex-end;margin:0}

.filters{display:flex;gap:8px;flex-wrap:wrap;margin:20px 0 24px}
.filter{
  border:1px solid var(--line);background:#fff;border-radius:999px;
  padding:9px 13px;font-size:12px;font-weight:800;color:var(--muted);
}
.filter.active{background:var(--navy);color:#fff;border-color:var(--navy)}
.searchbox{
  display:flex;gap:8px;background:#fff;border:1px solid var(--line);
  padding:8px;border-radius:16px;max-width:560px;
}
.searchbox input{width:100%;border:0;outline:none;padding:8px 10px;background:transparent}
.empty-msg{color:var(--muted);padding:12px 0}

.recipe-hero{display:grid;grid-template-columns:1fr .8fr;gap:36px;align-items:center}
.recipe-hero h1{font-size:clamp(36px,5vw,58px);line-height:1;letter-spacing:-.045em;margin:14px 0}
.recipe-hero p{color:var(--muted);font-size:17px;line-height:1.55}
.big-recipe-art{
  min-height:360px;border-radius:32px;
  background:linear-gradient(145deg,var(--accent-soft),#e8b894);
  display:grid;place-items:center;font-size:120px;box-shadow:var(--shadow);
}
.meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:16px}
.meta span{
  font-size:11px;background:#fff;border:1px solid var(--line);
  border-radius:999px;padding:7px 10px;font-weight:700;
}
.recipe-layout{display:grid;grid-template-columns:.75fr 1.25fr;gap:20px;margin-top:36px}
.panel{background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px}
.panel h2{margin:0 0 10px;font-size:20px}
.panel-note{margin:0 0 12px;color:var(--muted);font-size:13px;line-height:1.45}
.ingredients{padding-left:18px;margin:0;line-height:1.9;color:var(--ink)}
.assembly{margin:0;color:var(--muted);font-size:15px;line-height:1.55}
.app-box{
  margin-top:18px;padding:16px;border:1px solid #f0d0b8;background:#fff8f3;
  border-radius:16px;font-size:13px;line-height:1.5;
}
.app-box strong{display:block;margin-bottom:4px;color:var(--ink)}

footer{border-top:1px solid var(--line);background:#fff}
.footer-inner{
  max-width:1120px;margin:0 auto;padding:28px 22px;
  display:flex;justify-content:space-between;gap:24px;align-items:center;
}
.footer-brand{display:flex;align-items:center;gap:10px}
.footer-brand img{width:28px;height:28px;border-radius:8px}
.footer-brand strong{display:block;font-size:15px}
.footer-brand strong span{color:var(--accent)}
.footer-brand p{margin:4px 0 0;color:var(--muted);font-size:12px}
.footer-nav{display:flex;gap:16px;font-size:12px;font-weight:700;color:var(--muted);flex-wrap:wrap}
.footer-nav a:hover{color:var(--accent)}

@media(max-width:920px){
  .nav{display:none}
  .hero,.recipe-hero,.recipe-layout,.dark-band,.split-section{grid-template-columns:1fr}
  .journey{grid-template-columns:repeat(2,1fr)}
  .choice-grid,.recipe-grid,.purpose-grid,.question-list{grid-template-columns:1fr 1fr}
  .feature-grid,.method-grid{grid-template-columns:1fr 1fr}
  .callout{position:static}
  .dark-band .actions{justify-content:flex-start}
  .hero-media{min-height:400px}
}
@media(max-width:620px){
  .topbar{height:64px}
  .brand-type small{display:none}
  .page{padding:32px 16px 72px}
  .hero{min-height:auto;gap:28px}
  .hero-copy h1{font-size:34px;max-width:none}
  .hero-copy p{font-size:16px}
  .hero-media{min-height:340px;border-radius:28px}
  .section{margin-top:56px}
  .section-head{flex-direction:column;align-items:start}
  .journey,.choice-grid,.recipe-grid,.purpose-grid,.feature-grid,.method-grid,.question-list{grid-template-columns:1fr}
  .dark-band{padding:26px 22px}
  .big-recipe-art{min-height:260px;font-size:96px}
  .footer-inner{flex-direction:column;align-items:flex-start}
}
