
:root{
  --cream:#fff8ed;
  --paper:#fffdf8;
  --ink:#23160f;
  --muted:#75665c;
  --orange:#f97316;
  --deep:#7c2d12;
  --green:#356859;
  --line:#eadcc9;
  --shadow:0 18px 45px rgba(86,45,18,.12);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(249,115,22,.13), transparent 28rem),
    linear-gradient(180deg,#fffaf0 0%,#fffdf8 42%,#fff6e8 100%);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1180px,92%);margin:0 auto}
.topbar{
  background:#25160f;
  color:#ffe8ca;
  font-size:.92rem;
  text-align:center;
  padding:.65rem 1rem;
}
.nav{
  position:sticky;top:0;z-index:20;
  background:rgba(255,253,248,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(234,220,201,.8);
}
.nav-inner{
  height:76px;display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.logo{
  font-family:Georgia,serif;
  font-size:1.85rem;font-weight:800;color:var(--deep);
  letter-spacing:-.04em;
}
.logo span{color:var(--orange)}
.nav-links{display:flex;align-items:center;gap:20px;font-weight:700;color:#3c2b20}
.nav-links a{padding:.65rem .8rem;border-radius:999px}
.nav-links a:hover,.nav-links a.active{background:#fff0dc;color:var(--deep)}
.nav-actions{display:flex;gap:10px;align-items:center}
.search{
  border:1px solid var(--line);
  border-radius:999px;
  padding:.75rem 1rem;
  background:white;
  min-width:220px;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  border-radius:999px;
  padding:.88rem 1.25rem;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s ease;
}
.btn-primary{background:var(--orange);color:white;box-shadow:0 12px 24px rgba(249,115,22,.25)}
.btn-primary:hover{transform:translateY(-2px);background:#ea580c}
.btn-ghost{background:white;border-color:var(--line);color:var(--deep)}
.btn-ghost:hover{background:#fff0dc}
.hero{
  padding:64px 0 52px;
}
.hero-grid{
  display:grid;grid-template-columns:1.08fr .92fr;gap:42px;align-items:center;
}
.kicker{
  display:inline-flex;gap:.45rem;align-items:center;
  color:var(--deep);background:#fff0dc;border:1px solid #fed7aa;
  font-weight:800;border-radius:999px;padding:.45rem .75rem;margin-bottom:20px;
}
h1{
  font-size:clamp(2.5rem,6vw,5.7rem);
  line-height:.92;
  letter-spacing:-.08em;
  margin:0 0 20px;
}
.lead{font-size:1.18rem;line-height:1.75;color:var(--muted);max-width:650px}
.hero-buttons{display:flex;gap:14px;flex-wrap:wrap;margin-top:26px}
.hero-card{
  position:relative;border-radius:36px;overflow:hidden;min-height:530px;
  box-shadow:var(--shadow);
  background:#ddd;
}
.hero-card img{width:100%;height:530px;object-fit:cover}
.float-card{
  position:absolute;left:24px;right:24px;bottom:24px;
  background:rgba(255,253,248,.9);backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.8);
  border-radius:24px;padding:18px;
}
.float-card h3{margin:.2rem 0 .4rem;font-size:1.35rem}
.meta{display:flex;gap:10px;flex-wrap:wrap;color:var(--muted);font-size:.92rem}
.pill{
  background:#fff0dc;color:var(--deep);border-radius:999px;padding:.4rem .7rem;font-weight:800;
}
.section{padding:54px 0}
.section-head{
  display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:24px;
}
.eyebrow{color:var(--orange);font-weight:900;text-transform:uppercase;letter-spacing:.12em;font-size:.78rem}
h2{font-size:clamp(2rem,4vw,3.4rem);line-height:1;margin:.35rem 0 0;letter-spacing:-.055em}
.grid{display:grid;gap:22px}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.card{
  background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;box-shadow:0 10px 28px rgba(86,45,18,.07);
  transition:.2s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.card-img{height:210px;width:100%;object-fit:cover}
.card-body{padding:18px}
.card h3{margin:.15rem 0 .55rem;font-size:1.28rem}
.card p{color:var(--muted);line-height:1.65;margin:.35rem 0 1rem}
.rating{font-weight:900;color:#c2410c}
.category-tile{
  min-height:245px;display:flex;align-items:flex-end;padding:22px;
  background-size:cover;background-position:center;border-radius:var(--radius);
  color:white;overflow:hidden;position:relative;box-shadow:var(--shadow);
}
.category-tile:before{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 25%,rgba(0,0,0,.72));
}
.category-tile div{position:relative;z-index:1}
.category-tile h3{font-size:1.65rem;margin:0 0 6px}
.category-tile p{margin:0;color:#ffe8ca;font-weight:700}
.feature{
  display:grid;grid-template-columns:.95fr 1.05fr;gap:34px;align-items:center;
  background:#25160f;color:white;border-radius:36px;overflow:hidden;
}
.feature img{height:100%;min-height:420px;width:100%;object-fit:cover}
.feature-text{padding:42px}
.feature-text p{color:#ffe8ca;line-height:1.75}
.page-hero{
  padding:54px 0 24px;text-align:center;
}
.page-hero h1{font-size:clamp(2.4rem,5vw,4.9rem)}
.page-hero p{margin:0 auto;color:var(--muted);max-width:760px;line-height:1.75;font-size:1.12rem}
.recipe-layout{
  display:grid;grid-template-columns:1.1fr .9fr;gap:34px;align-items:start;
}
.recipe-main,.sidebar-box{
  background:var(--paper);border:1px solid var(--line);border-radius:28px;padding:28px;box-shadow:var(--shadow);
}
.recipe-main img{border-radius:24px;height:430px;width:100%;object-fit:cover;margin-bottom:20px}
.info-row{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin:22px 0}
.info{
  background:#fff4e5;border:1px solid #fed7aa;border-radius:18px;padding:14px;text-align:center
}
.info b{display:block;color:var(--deep)}
ol,ul{line-height:1.9;color:#46362c}
.sidebar-box{position:sticky;top:96px}
.newsletter{
  background:linear-gradient(135deg,#7c2d12,#ea580c);
  color:white;border-radius:36px;padding:36px;text-align:center;
}
.newsletter p{color:#ffe8ca}
.form{display:grid;gap:14px;max-width:560px;margin:22px auto 0}
.form input,.form textarea{
  width:100%;border:1px solid var(--line);border-radius:18px;padding:1rem;background:white;font:inherit;
}
.footer{
  margin-top:60px;background:#25160f;color:#ffe8ca;padding:44px 0;
}
.footer-grid{display:grid;grid-template-columns:1.2fr repeat(3,1fr);gap:28px}
.footer a{display:block;color:#ffe8ca;margin:.55rem 0}
.footer h4{color:white;margin:0 0 12px}
.copy{border-top:1px solid rgba(255,255,255,.12);margin-top:28px;padding-top:20px;color:#d8b88f}
.mobile-menu{display:none}
@media(max-width:900px){
  .nav-links,.nav-actions{display:none}
  .mobile-menu{display:inline-flex}
  .hero-grid,.feature,.recipe-layout{grid-template-columns:1fr}
  .grid-4,.grid-3,.footer-grid{grid-template-columns:1fr 1fr}
  .info-row{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .grid-4,.grid-3,.footer-grid{grid-template-columns:1fr}
  .hero-card,.hero-card img{min-height:auto;height:390px}
  .section-head{display:block}
}
