:root{
  --bg:#fbf7f2;
  --surface:#ffffff;
  --text:#1b110b;
  --muted:#5a463a;
  --brand:#eeb16d;
  --brand-2:#7a4b2a;
  --stroke:rgba(27,17,11,.12);
  --shadow:0 10px 30px rgba(27,17,11,.10);
  --radius:18px;
  --container:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
button{font:inherit}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}

.skip-link{
  position:absolute; left:-999px; top:12px;
  background:var(--surface); border:1px solid var(--stroke);
  padding:10px 12px; border-radius:12px; box-shadow:var(--shadow);
  z-index:9999;
}
.skip-link:focus{left:12px}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.header{
  position:sticky; top:0; z-index:1000;
  background:rgba(251,247,242,.75);
  backdrop-filter:saturate(1.2) blur(10px);
  border-bottom:1px solid var(--stroke);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  min-width:fit-content;
}
.brand-logo{
  width:36px; height:36px; border-radius:12px; object-fit:cover;
  border:1px solid var(--stroke);
}
.brand-name{
  display:flex; flex-direction:column; line-height:1.1;
}
.brand-name strong{font-size:14px; letter-spacing:.08em}
.brand-name span{font-size:12px; color:var(--muted)}

.nav{
  display:flex; align-items:center; gap:18px;
}
.nav a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
  font-weight:600;
  letter-spacing:.01em;
}
.nav a.active{
  color:var(--text);
  background:rgba(238,177,109,.20);
  border:1px solid rgba(238,177,109,.35);
}
.nav a:focus-visible{
  outline:3px solid rgba(238,177,109,.55);
  outline-offset:2px;
}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:var(--surface);
  box-shadow:0 6px 18px rgba(27,17,11,.08);
}
.nav-toggle svg{width:22px; height:22px}

@media (max-width: 820px){
  .nav{display:none}
  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav.is-open{
    display:flex;
    position:absolute;
    left:16px; right:16px; top:64px;
    background:var(--surface);
    border:1px solid var(--stroke);
    border-radius:16px;
    padding:8px;
    box-shadow:var(--shadow);
    flex-direction:column;
    gap:6px;
  }
  .nav.is-open a{width:100%}
}

.hero{
  position:relative;
  border-bottom:1px solid var(--stroke);
  background:
    linear-gradient(120deg, rgba(27,17,11,.78), rgba(27,17,11,.35)),
    url("images/15403440-04.jpeg");
  background-size:cover;
  background-position:center;
  color:#fff;
}
.hero .container{padding:56px 0 44px}
.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
}
.hero-title{
  margin:14px 0 8px;
  font-size:clamp(34px, 6vw, 64px);
  letter-spacing:.06em;
  line-height:1.0;
}
.hero-sub{
  margin:0;
  color:rgba(255,255,255,.88);
  font-size:clamp(14px, 2.2vw, 18px);
}
.hero-actions{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:var(--surface);
  color:var(--text);
  font-weight:800;
  letter-spacing:.02em;
  box-shadow:0 10px 24px rgba(27,17,11,.10);
}
.btn.primary{
  background:linear-gradient(180deg, rgba(238,177,109,1), rgba(222,140,58,1));
  border-color:rgba(0,0,0,.08);
  color:#201206;
}
.btn.ghost{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.24);
  color:#fff;
  box-shadow:none;
}
.btn:focus-visible{
  outline:3px solid rgba(238,177,109,.6);
  outline-offset:2px;
}

.section{
  padding:34px 0;
}
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  margin-bottom:14px;
}
.section-title h2{
  margin:0;
  font-size:26px;
  letter-spacing:.02em;
}
.section-title p{
  margin:0;
  color:var(--muted);
  font-weight:600;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:14px;
}

.card{
  background:var(--surface);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 6px 22px rgba(27,17,11,.06);
  transition:transform .18s ease, box-shadow .18s ease;
}
.card:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(27,17,11,.10);
}
.card-media{
  height:160px;
  background:#efe7de;
}
.card-media img{
  width:100%; height:100%;
  object-fit:cover;
}
.card-body{
  padding:14px 14px 16px;
}
.card h3{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:.03em;
  text-transform:uppercase;
}
.price-list{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.price-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  padding:10px 10px;
  border-radius:14px;
  background:rgba(238,177,109,.10);
  border:1px solid rgba(238,177,109,.18);
}
.price-row span:first-child{
  color:var(--text);
  font-weight:750;
}
.price-row span:last-child{
  color:var(--brand-2);
  font-weight:900;
  white-space:nowrap;
}
.card-desc{
  margin:10px 0 0;
  color:var(--muted);
  font-weight:600;
}
.note{
  margin:10px 0 0;
  color:var(--muted);
  font-size:13px;
  font-weight:600;
}
.disclaimer{
  margin:14px 0 0;
  padding:14px 14px;
  border-radius:16px;
  border:1px dashed rgba(27,17,11,.18);
  background:rgba(255,255,255,.7);
  color:var(--muted);
  font-weight:650;
  font-size:13px;
}

.info{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:14px;
}
@media (max-width: 820px){
  .info{grid-template-columns:1fr}
}

.panel{
  background:var(--surface);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 6px 22px rgba(27,17,11,.06);
}
.panel h2, .panel h1{margin:0 0 10px}
.panel p{margin:0; color:var(--muted); font-weight:650}
.kv{
  margin-top:10px;
  display:grid;
  gap:10px;
}
.kv .row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 10px;
  border-radius:14px;
  background:rgba(27,17,11,.04);
  border:1px solid rgba(27,17,11,.08);
}
.kv .row strong{letter-spacing:.02em}
.kv .row span{color:var(--muted); font-weight:750}

.content{
  padding:24px 0 34px;
}
.content h1{margin:0 0 12px}
.content h2{margin:18px 0 10px}
.content p{margin:10px 0; color:var(--muted); font-weight:650}
.content ol, .content ul{
  margin:10px 0 10px 20px;
  color:var(--muted);
  font-weight:650;
}
.content li{margin:8px 0}
.hr{
  height:1px; background:var(--stroke); margin:18px 0;
}

.footer{
  margin-top:24px;
  border-top:1px solid var(--stroke);
  background:rgba(255,255,255,.6);
}
.footer-inner{
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  flex-wrap:wrap;
}
.footer small{color:var(--muted); font-weight:650}
.footer a{color:var(--brand-2); font-weight:800}
.allergen-tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:10px;
}

.allergen-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:30px;
  height:28px;
  padding:0 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  letter-spacing:.02em;
  background:rgba(27,17,11,.06);
  border:1px solid rgba(27,17,11,.12);
  color:var(--text);
}

.allergen-legend{
  background:rgba(255,255,255,.75);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:0 6px 22px rgba(27,17,11,.06);
}

.allergen-legend h3{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.legend-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:8px;
}

.legend-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px;
  border-radius:14px;
  background:rgba(238,177,109,.10);
  border:1px solid rgba(238,177,109,.18);
}

.legend-item span{
  color:var(--muted);
  font-weight:750;
}

