/* ===========================================================================
   Beri's Grill — visual identity
   Palette: charcoal as the anchor, ember orange as the action accent,
   mustard as the highlight. Type: Bricolage Grotesque (display) + Inter (body).
   ========================================================================= */
:root{
  --char-900:#1c1815; --char-800:#241f1a;
  --ember:#d94f1e; --ember-600:#b83f15;
  --mustard:#e8a33d;
  --cream:#faf3e8; --cream-2:#f0e4d1;
  --ink:#231c16; --muted:#7a6b5a; --line:rgba(35,28,22,.12); --white:#fff;
  --r:14px; --shadow:0 1px 2px rgba(35,28,22,.06),0 8px 24px rgba(35,28,22,.08);
  --wrap:1120px; --narrow:720px;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0; background:var(--cream); color:var(--ink);
  font-family:"Inter",system-ui,sans-serif; font-size:17px; line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{font-family:"Bricolage Grotesque","Inter",sans-serif; line-height:1.05; margin:0; letter-spacing:-.01em}
a{color:var(--ember-600); text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; display:block}
.wrap{max-width:var(--wrap); margin-inline:auto; padding-inline:24px}
.wrap-narrow{max-width:var(--narrow); margin-inline:auto; padding-inline:24px}

.eyebrow{font-size:.74rem; letter-spacing:.16em; text-transform:uppercase; font-weight:600; color:var(--ember); margin:0 0 .6rem}

/* ---- buttons ---- */
.btn{display:inline-block; font-weight:600; padding:.78em 1.4em; border-radius:999px; transition:transform .15s ease, background .15s ease}
.btn:hover{text-decoration:none; transform:translateY(-1px)}
.btn-accent{background:var(--ember); color:var(--white)}
.btn-accent:hover{background:var(--ember-600); color:var(--white)}
.btn-ghost{border:1.5px solid rgba(250,243,232,.45); color:var(--cream)}
.btn-ghost:hover{border-color:var(--cream); color:var(--white)}

/* ---- header / nav ---- */
.site-head{position:sticky; top:0; z-index:50; display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 24px; background:rgba(250,243,232,.88); backdrop-filter:blur(8px); border-bottom:1px solid var(--line)}
.brand{display:flex; align-items:center; gap:10px; color:var(--ink)}
.brand:hover{text-decoration:none}
.brand-logo{height:44px; width:auto; border-radius:6px}
.brand-name{font-family:"Bricolage Grotesque"; font-weight:700; font-size:1.12rem}
.site-nav{display:flex; align-items:center; gap:22px}
.site-nav a{color:var(--ink); font-weight:500; font-size:.96rem}
.site-nav a[aria-current=page]{color:var(--ember)}
.nav-call{background:var(--ember); color:var(--white)!important; padding:.5em 1.05em; border-radius:999px}
.nav-call:hover{background:var(--ember-600); text-decoration:none}
.nav-burger{display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px}
.nav-burger span{width:24px; height:2px; background:var(--ink); border-radius:2px}

/* ---- hero ---- */
.hero{position:relative; background:var(--char-900) center/cover no-repeat; color:var(--cream); overflow:hidden}
.hero-inner{max-width:var(--wrap); margin-inline:auto; padding:96px 24px 110px}
.hero-eyebrow{color:rgba(250,243,232,.65)}
.hero-title{font-size:clamp(2.6rem,6vw,4.6rem); font-weight:800; max-width:16ch; margin:.1em 0 .5em}
.hero-lede{max-width:54ch; color:rgba(250,243,232,.82); font-size:1.08rem}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-top:32px}
.hero-motif{position:absolute; left:0; right:0; bottom:0; color:rgba(232,163,61,.28)}
.motif svg{display:block}

/* ---- feature badge band ---- */
.band-features{display:flex; flex-wrap:wrap; gap:22px; justify-content:center;
  max-width:var(--wrap); margin:-30px auto 0; padding:26px 24px; position:relative; z-index:2;
  background:var(--white); border:1px solid var(--line); border-radius:var(--r); box-shadow:var(--shadow); width:calc(100% - 48px)}
.feature-item{display:flex; flex-direction:column; align-items:center; text-align:center; max-width:180px}
.feature-title{font-family:"Bricolage Grotesque"; font-weight:700; font-size:.98rem; color:var(--ink)}
.feature-text{font-size:.82rem; color:var(--muted); margin-top:.25em}

/* ---- sections ---- */
.section{padding:74px 0}
.section-how,.section-events{background:var(--cream-2)}
.section-head{max-width:var(--wrap); margin-inline:auto; padding-inline:24px; margin-bottom:34px; display:flex; align-items:flex-end; flex-wrap:wrap; gap:8px 18px}
.section-head h2{font-size:clamp(1.9rem,3.6vw,2.6rem); font-weight:700}
.section-head .eyebrow{flex-basis:100%; margin:0}
.see-all{margin-left:auto; font-weight:600}
.page-head{margin-bottom:26px}
.page-head h1{font-size:clamp(2.1rem,4.5vw,3.1rem); font-weight:800}
.page-sub{color:var(--muted); margin:.5rem 0 0; max-width:60ch}

/* ---- prose ---- */
.prose{font-size:1.05rem}
.prose h2{font-size:1.5rem; margin:1.8em 0 .5em}
.prose p{margin:0 0 1.1em}
.prose ul,.prose ol{padding-left:1.2em}
.story-grid{display:grid; grid-template-columns:220px 1fr; gap:32px; align-items:start}
.story-img{width:100%; border-radius:var(--r); box-shadow:var(--shadow); object-fit:cover; aspect-ratio:1/1}
@media (max-width:640px){.story-grid{grid-template-columns:1fr}.story-img{max-width:220px}}

/* ---- cards ---- */
.card-grid{max-width:var(--wrap); margin-inline:auto; padding-inline:24px; display:grid; gap:24px; grid-template-columns:repeat(auto-fill,minmax(260px,1fr))}
.card{background:var(--white); border:1px solid var(--line); border-radius:var(--r); overflow:hidden; box-shadow:var(--shadow); transition:transform .18s ease}
.card:hover{transform:translateY(-3px)}
.card-cover{height:160px; background:var(--cream-2) center/cover no-repeat}
.card-body{padding:20px 22px 24px}
.card-meta{display:flex; flex-wrap:wrap; align-items:center; gap:8px; margin:0 0 10px}
.card h3{font-size:1.22rem; font-weight:700; margin-bottom:.35em}
.card h3 a{color:var(--ink)}
.card-summary{color:var(--muted); font-size:.96rem; margin:0 0 6px}
.card-village{font-size:.78rem; color:var(--muted)}
.pill{font-size:.7rem; font-weight:600; letter-spacing:.04em; text-transform:uppercase; padding:.28em .7em; border-radius:999px; background:var(--cream-2); color:var(--ink)}
.pill-upcoming{background:rgba(217,79,30,.14); color:var(--ember-600)}
.pill-past{background:rgba(122,107,90,.16); color:var(--muted)}

/* ---- step cards ---- */
.step-card .card-body{position:relative}
.step-num{display:inline-grid; place-items:center; width:32px; height:32px; border-radius:50%; background:var(--char-900); color:var(--mustard); font-family:"Bricolage Grotesque"; font-weight:800; margin-bottom:12px}

/* ---- menu ---- */
.menu-item-list{list-style:none; margin:0; padding:0; font-size:.95rem; color:var(--muted)}
.menu-item-list li{padding:.15em 0}
.menu-categories{display:flex; flex-direction:column; gap:34px; margin:24px 0 36px}
.menu-category h2{font-size:1.4rem; margin-bottom:.6em}
.menu-item-list-full li{display:flex; flex-wrap:wrap; align-items:baseline; gap:4px 12px; padding:12px 0; border-bottom:1px solid var(--line)}
.menu-item-name{font-weight:700; color:var(--ink)}
.menu-item-price{font-weight:700; color:var(--ember-600); font-size:.92rem}
.menu-item-note{color:var(--muted); font-size:.92rem}
.product-price{font-family:"Bricolage Grotesque"; font-weight:800; font-size:1.15rem; color:var(--ember-600)}

/* ---- footer ---- */
.site-foot{background:var(--char-900); color:var(--cream); margin-top:0; padding:64px 24px 30px}
.foot-grid{max-width:var(--wrap); margin-inline:auto; display:grid; gap:40px; grid-template-columns:1.3fr 1fr; align-items:start}
.foot-cta h2{font-size:2rem; font-weight:800; margin:0 0 22px; max-width:14ch}
.foot-cta .eyebrow{color:rgba(250,243,232,.6)}
.foot-fine{color:rgba(250,243,232,.6); font-size:.88rem; margin:.7em 0 0; max-width:42ch}
.foot-fine a{color:rgba(250,243,232,.85)}
.foot-meta .brand-name{font-size:1.2rem; margin:0 0 .4em}
.foot-social{display:flex; flex-wrap:wrap; gap:16px; margin-top:14px}
.foot-social a{color:rgba(250,243,232,.85); font-size:.9rem}
.foot-copy{max-width:var(--wrap); margin:44px auto 0; padding-top:22px; border-top:1px solid rgba(250,243,232,.14); color:rgba(250,243,232,.5); font-size:.82rem}

/* ---- a11y / focus ---- */
:focus-visible{outline:3px solid var(--ember); outline-offset:2px; border-radius:4px}

/* ---- responsive ---- */
@media (max-width:760px){
  .nav-burger{display:flex}
  .site-nav{position:absolute; top:100%; left:0; right:0; flex-direction:column; align-items:stretch; gap:0;
    background:var(--cream); border-bottom:1px solid var(--line); padding:8px 0; display:none}
  .site-nav a{padding:13px 24px}
  .nav-call{margin:8px 24px; text-align:center}
  .nav-toggle:checked ~ .site-nav{display:flex}
  .foot-grid{grid-template-columns:1fr}
  .hero-inner{padding:64px 24px 84px}
}
@media (prefers-reduced-motion:reduce){
  *{transition:none!important; animation:none!important}
}
