
:root{
  --bg:#ffffff;
  --text:#1c1f23;
  --muted:#5a6572;
  --card:#ffffff;
  --border:#e6e8eb;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
  --max: 1100px;
  --focus: #111827;
  --accent: #2A5CAA;
  --accent2: #2A5CAA2;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:linear-gradient(180deg,#fbfbfd, var(--bg));
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.7;
  font-size: 18px;
}
a{color:inherit}
a:focus, button:focus{outline:3px solid var(--focus); outline-offset:3px; border-radius:12px}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:18px; top:18px; width:auto; height:auto; padding:10px 14px; background:#fff; border:1px solid var(--border); border-radius:12px; z-index:9999}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(160%) blur(10px);
  background:rgba(255,255,255,.82);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; flex-direction:column;
  text-decoration:none;
}
.brand strong{font-size:20px; letter-spacing:.2px}
.brand span{font-size:14px; color:var(--muted)}
.navlinks{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.navlinks a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
}
.navlinks a:hover{border-color:var(--border); background:#fff}
.cta{
  background:linear-gradient(135deg,var(--accent), var(--accent2));
  color:#fff !important;
  border:0 !important;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

.hero{
  margin:18px 0 0 0;
  border-radius: calc(var(--radius) + 8px);
  overflow:hidden;
  background:#0b0f14;
  box-shadow: var(--shadow);
}
.heroInner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:0;
}
.heroText{
  padding:34px 28px;
  background:linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.80));
}
.heroText h1{
  margin:0 0 10px 0;
  font-size:42px;
  line-height:1.15;
  letter-spacing:-.4px;
}
.heroText p{
  margin:0 0 18px 0;
  color:var(--muted);
  font-size:18px;
  max-width:58ch;
}
.heroActions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-block;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  text-decoration:none;
  font-weight:700;
}
.btn.primary{
  border:0;
  background:linear-gradient(135deg,var(--accent), var(--accent2));
  color:#fff;
}
.heroImg{
  min-height:260px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.12), rgba(0,0,0,.45)),
    url(https://images.unsplash.com/photo-1528712306091-ed0763094c98?auto=format&fit=crop&w=1800&q=70) center/cover no-repeat;
}
.pills{
  display:flex; gap:10px; flex-wrap:wrap;
  margin:18px 0 8px 0;
}
.pill{
  border:1px solid var(--border);
  background:#fff;
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  font-size:14px;
}
.section{
  margin:26px 0;
}
.section h2{
  margin:0 0 10px 0;
  font-size:26px;
  letter-spacing:-.2px;
}
.section p.lede{
  margin:0 0 18px 0;
  color:var(--muted);
  max-width:70ch;
}
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  min-height: 100%;
}
.thumb{
  height:170px;
  background-size:cover;
  background-position:center;
}
.cardBody{
  padding:16px 16px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}
.meta{display:flex; gap:10px; flex-wrap:wrap; color:var(--muted); font-size:14px}
.badge{
  display:inline-block;
  font-size:13px;
  padding:6px 10px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg,var(--accent), var(--accent2));
}
.card h3{
  margin:0;
  font-size:18px;
  letter-spacing:-.1px;
}
.card p{margin:0; color:var(--muted)}
.card a.read{
  margin-top:auto;
  font-weight:800;
  text-decoration:none;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  width:fit-content;
}
.card a.read:hover{border-color:#cfd6de}

.recipe{
  margin:22px 0;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.panel{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.recipeHero{
  height:240px;
  border-radius: calc(var(--radius) + 4px);
  overflow:hidden;
  border:1px solid var(--border);
  background-size:cover;
  background-position:center;
}
ul, ol{padding-left:20px}
li{margin:6px 0}
.footer{
  margin:30px 0 22px 0;
  padding-top:16px;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:14px;
}
.footer .cols{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{text-decoration:underline}
.smallNote{font-size:12px; color:#7b8794; margin-top:10px}

@media (max-width: 980px){
  .heroInner{grid-template-columns: 1fr}
  .heroImg{min-height:220px}
  .grid{grid-template-columns: repeat(2, 1fr)}
  .recipe{grid-template-columns: 1fr}
}
@media (max-width: 620px){
  body{font-size:17px}
  .heroText h1{font-size:34px}
  .grid{grid-template-columns: 1fr}
  .navlinks{gap:10px}
}
