/* =========================================================
   MELTDOWN BURGERS — migrated from Squarespace
   Design tokens captured from the live site:
     Yellow  #FCCB1D   Black #000   White #FFF   Muted #8B8B8B
     Headings: Roboto Condensed 700, UPPERCASE, tight tracking
     Body/nav/buttons: aktiv-grotesk (Inter used as free substitute)
   ========================================================= */

:root{
  --yellow:#FCCB1D;
  --black:#000000;
  --white:#ffffff;
  --muted:#8b8b8b;
  --maxw:1100px;
  --header-h:110px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Inter","aktiv-grotesk",Helvetica,Arial,sans-serif;
  background:var(--black);
  color:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
  overflow-x:hidden;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}

h1,h2,h3,h4{
  font-family:"Roboto Condensed","Inter",sans-serif;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:-0.03em;
  line-height:0.95;
}
h1{font-size:clamp(2.6rem,7vw,6.8rem);color:var(--yellow)}
h2{font-size:clamp(2rem,5vw,4.9rem);color:var(--white)}
h3{font-size:clamp(1.3rem,2.6vw,2rem);color:var(--yellow)}
h4{font-size:clamp(1rem,1.6vw,1.25rem);color:var(--white)}

p{font-size:1.05rem;line-height:1.6}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  background:var(--yellow);
  color:var(--black);
  font-family:"Inter","aktiv-grotesk",sans-serif;
  font-weight:700;
  font-size:1rem;
  letter-spacing:0.02em;
  padding:14px 26px;
  border:2px solid var(--yellow);
  border-radius:0;
  cursor:pointer;
  transition:background .15s ease,color .15s ease;
  text-align:center;
}
.btn:hover{background:transparent;color:var(--yellow)}
.btn--ghost{background:transparent;color:var(--yellow)}
.btn--ghost:hover{background:var(--yellow);color:var(--black)}
.btn-row{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;margin-top:26px}

/* ---------- Header ---------- */
.site-header{
  position:fixed;top:0;left:0;width:100%;z-index:1000;
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 40px;
  transition:background .25s ease,padding .25s ease;
  background:linear-gradient(to bottom,rgba(0,0,0,.55),rgba(0,0,0,0));
}
.site-header.scrolled{background:var(--black);padding:12px 40px}
.site-header .logo img{height:64px;width:auto}
.main-nav{display:flex;align-items:center;gap:30px}
.main-nav a{
  font-family:"Inter","aktiv-grotesk",sans-serif;
  color:var(--yellow);
  text-transform:uppercase;
  font-size:.9rem;
  font-weight:600;
  letter-spacing:.04em;
}
.main-nav a:hover{color:var(--white)}
.main-nav a.ig-link{font-size:.8rem}
.nav-toggle{display:none;background:none;border:0;cursor:pointer;flex-direction:column;gap:5px;padding:8px}
.nav-toggle span{display:block;width:26px;height:3px;background:var(--yellow)}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:92vh;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;
  padding:calc(var(--header-h) + 30px) 20px 60px;
  background-size:cover;background-position:center;
}
.hero::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.35)}
.hero > *{position:relative;z-index:2}
.hero h1{max-width:14ch;margin:0 auto}
.hero .sub{margin-top:14px;max-width:40ch;color:var(--white)}

/* ---------- Generic section ---------- */
.section{padding:70px 20px;text-align:center}
.container{max-width:var(--maxw);margin:0 auto}
.section--tight{padding:40px 20px}
.section h2{margin-bottom:6px}
.section p{max-width:60ch;margin:14px auto 0;color:#e6e6e6}
.lead{max-width:50ch;margin:0 auto}

/* full-bleed image band */
.image-band{width:100%;overflow:hidden}
.image-band img{width:100%;height:auto;object-fit:cover}

/* image + caption block used across home */
.feature{
  display:flex;flex-direction:column;align-items:center;text-align:center;
  padding:60px 20px;gap:22px;
}
.feature img{max-width:min(760px,92vw)}
.feature h2,.feature h3{max-width:22ch}

/* two/three up image grid */
.grid{display:grid;gap:4px}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--2{grid-template-columns:repeat(2,1fr)}
.grid img{width:100%;height:100%;object-fit:cover;aspect-ratio:1/1}

/* ---------- Menu items ---------- */
.menu-item{
  display:grid;grid-template-columns:1fr 1fr;align-items:center;
  gap:0;min-height:70vh;
}
.menu-item .media{width:100%;height:100%}
.menu-item .media img{width:100%;height:100%;object-fit:cover;min-height:50vh}
.menu-item .info{padding:50px 40px;text-align:center}
.menu-item .info h2{color:var(--white);margin-bottom:14px}
.menu-item .info .price{color:var(--yellow)}
.menu-item .info p{margin:0 auto 22px;color:#e6e6e6;max-width:40ch}
.menu-item--reverse .media{order:2}
.menu-item--reverse .info{order:1}

.menu-note{
  padding:70px 20px;text-align:center;background:var(--black);
}
.menu-note h1,.menu-note h2{margin-bottom:16px}
.menu-note .options{
  font-family:"Roboto Condensed",sans-serif;font-weight:700;text-transform:uppercase;
  color:var(--yellow);font-size:clamp(1.1rem,2vw,1.6rem);letter-spacing:-0.02em;
  line-height:1.8;max-width:50ch;margin:0 auto 8px;
}
.menu-note .fineprint{color:var(--muted);font-weight:600;text-transform:uppercase;font-size:.8rem;letter-spacing:.05em;margin-top:6px}

/* ---------- War on hunger callout ---------- */
.war{background:var(--black);text-align:center;padding:70px 20px}
.war img.warlogo{max-width:420px;margin:24px auto}

/* ---------- Footer ---------- */
.site-footer{background:var(--black);text-align:center;padding:80px 20px 60px;border-top:1px solid #1a1a1a}
.site-footer h2{margin-bottom:18px}
.site-footer .address{color:var(--white);font-size:1.1rem;margin-bottom:26px;text-transform:uppercase;font-family:"Roboto Condensed",sans-serif;font-weight:700;letter-spacing:-0.01em}
.site-footer .address strong{color:var(--yellow)}
.site-footer .ig{display:inline-block;margin-top:34px;color:var(--muted);font-size:.85rem;letter-spacing:.05em}
.site-footer .ig:hover{color:var(--yellow)}

/* ---------- Forms ---------- */
.form-wrap{max-width:640px;margin:40px auto 0;text-align:left}
.form-row{display:flex;gap:16px;flex-wrap:wrap}
.form-row .form-field{flex:1;min-width:220px}
.form-field{margin-bottom:20px}
.form-field label{display:block;font-weight:600;margin-bottom:7px;font-size:.9rem;letter-spacing:.02em}
.form-field label .req{color:var(--yellow)}
.form-field input,.form-field textarea{
  width:100%;padding:13px 15px;background:#111;border:1px solid #333;color:var(--white);
  font-family:inherit;font-size:1rem;border-radius:0;
}
.form-field input:focus,.form-field textarea:focus{outline:none;border-color:var(--yellow)}
.form-field textarea{min-height:130px;resize:vertical}
.checkbox-group{display:flex;flex-direction:column;gap:12px}
.checkbox-line{display:flex;align-items:flex-start;gap:10px}
.checkbox-line input{width:auto;margin-top:4px}
.checkbox-line label{margin:0;font-weight:500}
.form-legend{font-weight:600;margin-bottom:12px;display:block}

/* ---------- News article ---------- */
.article{max-width:760px;margin:0 auto;text-align:left;padding:0 20px}
.article h2{color:var(--yellow);margin-bottom:26px;text-align:center}
.article p{margin-bottom:20px;color:#e6e6e6}
.article .quote{color:var(--white);font-weight:600}
.article img{margin:34px auto;max-width:100%}
.article .subhead{color:var(--yellow);text-align:center;margin:40px 0 10px}

/* ---------- Utilities ---------- */
.bg-black{background:var(--black)}
.pad-top-header{padding-top:var(--header-h)}
.center{text-align:center}
.mt{margin-top:22px}

/* ---------- Responsive ---------- */
@media(max-width:860px){
  .site-header{padding:14px 20px}
  .site-header .logo img{height:48px}
  .main-nav{
    position:fixed;inset:0;background:var(--black);flex-direction:column;
    justify-content:center;gap:26px;font-size:1.3rem;transform:translateX(100%);
    transition:transform .3s ease;
  }
  .main-nav.open{transform:translateX(0)}
  .main-nav a{font-size:1.4rem}
  .nav-toggle{display:flex;z-index:1100}
  .menu-item{grid-template-columns:1fr}
  .menu-item .media{order:1 !important}
  .menu-item .info{order:2 !important;padding:40px 24px}
  .grid--3{grid-template-columns:1fr 1fr}
  .hero{min-height:80vh}
}
@media(max-width:480px){
  .grid--3,.grid--2{grid-template-columns:1fr}
}
