/* Gui Gui BBQ — Static site for Cloudflare Pages
   Edit key details in /assets/site-config.json
*/

:root{
  --bg:#0b0b0c;
  --panel:#101012;
  --panel2:#0f0f11;
  --text:#f6f6f7;
  --muted:#b7b7bf;
  --line:rgba(255,255,255,.10);
  --line2:rgba(255,255,255,.08);
  --accent:#ffb020;
  --accent2:#ff6a3d;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 900px at 20% 0%, rgba(255,176,32,.10), transparent 55%),
              radial-gradient(900px 600px at 80% 10%, rgba(255,106,61,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
code{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}

.container{max-width:1120px; margin:0 auto; padding:0 20px}
.mt-12{margin-top:12px}
.mt-16{margin-top:16px}
.mt-24{margin-top:24px}

.skip{
  position:absolute; left:-9999px; top:0;
  background: var(--accent); color:#111; padding:10px 12px; border-radius:12px;
  z-index:9999;
}
.skip:focus{left:16px; top:16px}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,11,12,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:44px; height:44px; display:grid; place-items:center;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(255,176,32,.22), rgba(255,106,61,.18));
  border: 1px solid var(--line);
  font-weight:800;
  letter-spacing:.02em;
}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__name{font-weight:800; letter-spacing:.02em}
.brand__tag{font-size:13px; color:var(--muted)}

.nav{display:flex; align-items:center; gap:16px}
.nav a{color: rgba(246,246,247,.88); font-weight:600; font-size:14px}
.nav a:hover{color: var(--text)}
.nav__toggle{
  display:none;
  width:44px; height:44px; border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
}
.nav__toggle span{display:block; height:2px; width:18px; background: rgba(246,246,247,.88); margin:4px auto; border-radius:2px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: 1px solid rgba(255,255,255,.06);
  color:#0b0b0c;
  font-weight:800;
  box-shadow: 0 12px 30px rgba(255,176,32,.15);
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  box-shadow: none;
  border: 1px solid var(--line);
}
.btn--sm{padding:10px 12px; border-radius:12px}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--line2);
  color: rgba(246,246,247,.90);
  font-weight:650;
  font-size:13px;
}

.hero{
  position:relative;
  padding: 54px 0 18px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:center;
}
.hero h1{
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.02;
  margin: 14px 0 12px;
  letter-spacing:-.02em;
}
.lead{font-size:18px; color: rgba(246,246,247,.85); max-width:54ch}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero__badges{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; margin-top:24px}
.badge{
  padding:12px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line2);
}
.badge__title{font-size:12px; color:var(--muted); font-weight:700}
.badge__value{font-weight:800; font-size:13px}

.hero__visual{position:relative; display:grid; gap:12px}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line2);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card--image{height: 330px; position:relative}
.img{
  width:100%; height:100%;
  background-size: cover;
  background-position: center;
}
.img--hero{
  background-image:
    linear-gradient(180deg, rgba(11,11,12,.05), rgba(11,11,12,.82)),
    radial-gradient(800px 360px at 30% 20%, rgba(255,176,32,.25), transparent 55%),
    radial-gradient(600px 360px at 70% 30%, rgba(255,106,61,.20), transparent 55%),
    url("/assets/placeholder-hero.jpg");
}
.card__overlay{
  position:absolute; inset:auto 0 0 0;
  padding:16px 16px 18px;
  display:flex; flex-direction:column; gap:2px;
}
.card__label{color: rgba(246,246,247,.82); font-weight:650; font-size:13px}
.card__big{font-weight:900; font-size:22px; letter-spacing:-.01em}

.card--stat{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:1px;
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  overflow:hidden;
}
.stat{
  padding:14px 14px 16px;
  background: rgba(255,255,255,.04);
}
.stat__num{font-weight:900; font-size:22px}
.stat__txt{color: var(--muted); font-weight:650; font-size:12px}

.hero__fade{
  position:absolute; left:0; right:0; bottom:-1px; height:64px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events:none;
}

.section{padding: 70px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 60%);
  border-top:1px solid var(--line2);
  border-bottom:1px solid var(--line2);
}
.section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:20px}
.section__head h2{margin:0; font-size:28px; letter-spacing:-.01em}
.muted{color: var(--muted)}

.grid{display:grid; gap:14px}
.grid--3{grid-template-columns: repeat(3, 1fr)}
.grid--2{grid-template-columns: repeat(2, 1fr)}

.menu-card{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border:1px solid var(--line2);
}
.menu-card h3{margin:0 0 8px}
.menu-card p{margin:0 0 12px; color: rgba(246,246,247,.82)}
.menu-card__meta{display:flex; gap:8px; flex-wrap:wrap}
.chip{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,176,32,.14);
  border:1px solid rgba(255,176,32,.22);
  font-weight:750;
}
.chip--muted{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line2);
  color: rgba(246,246,247,.85);
  font-weight:650;
}

.panel{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border:1px solid var(--line2);
}
.panel h3{margin:0 0 8px}
.panel p{margin:0 0 14px}

.list{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display:inline-block; margin-right:10px; flex: 0 0 auto;
}
.list li{display:flex; align-items:flex-start; gap:10px; color: rgba(246,246,247,.86)}
.list li .dot{margin-top:6px}

.cta-row{display:flex; gap:12px; margin-top:20px; flex-wrap:wrap}

.steps{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.step{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border:1px solid var(--line2);
}
.step__num{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.05);
  border:1px solid var(--line2);
  font-weight:900;
  margin-bottom:10px;
}

.masonry{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.shot{
  border-radius: var(--radius2);
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  height: 220px;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.shot::before{
  content:"";
  position:absolute; inset:0;
  background-size: cover;
  background-position:center;
  filter: saturate(1.05);
}
.shot__label{
  position:absolute; left:14px; bottom:14px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(11,11,12,.55);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  font-weight:800;
  font-size:12px;
}

.shot--1{grid-column: span 7; height: 280px}
.shot--2{grid-column: span 5; height: 280px}
.shot--3{grid-column: span 4}
.shot--4{grid-column: span 4}
.shot--5{grid-column: span 4}
.shot--6{grid-column: span 12; height: 240px}

.shot--1::before{background-image: linear-gradient(180deg, rgba(11,11,12,.10), rgba(11,11,12,.75)), url("/assets/placeholder-1.jpg")}
.shot--2::before{background-image: linear-gradient(180deg, rgba(11,11,12,.12), rgba(11,11,12,.78)), url("/assets/placeholder-2.jpg")}
.shot--3::before{background-image: linear-gradient(180deg, rgba(11,11,12,.10), rgba(11,11,12,.78)), url("/assets/placeholder-3.jpg")}
.shot--4::before{background-image: linear-gradient(180deg, rgba(11,11,12,.10), rgba(11,11,12,.78)), url("/assets/placeholder-4.jpg")}
.shot--5::before{background-image: linear-gradient(180deg, rgba(11,11,12,.10), rgba(11,11,12,.78)), url("/assets/placeholder-5.jpg")}
.shot--6::before{background-image: linear-gradient(180deg, rgba(11,11,12,.10), rgba(11,11,12,.78)), url("/assets/placeholder-6.jpg")}

.review{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border:1px solid var(--line2);
}
.review p{margin:0 0 14px; color: rgba(246,246,247,.90); font-weight:650}
.review__who{display:flex; gap:10px; align-items:center}
.avatar{
  width:40px; height:40px; border-radius:14px;
  background: linear-gradient(135deg, rgba(255,176,32,.20), rgba(255,106,61,.18));
  border:1px solid var(--line2);
}
.review__name{font-weight:900}
.review__meta{color:var(--muted); font-size:12px; font-weight:650}

.reserve{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.form{
  padding:18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  border:1px solid var(--line2);
}
label{display:grid; gap:8px; font-weight:750; font-size:13px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--line2);
  background: rgba(0,0,0,.28);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(255,176,32,.35);
  box-shadow: 0 0 0 3px rgba(255,176,32,.12);
}
.form__row{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-bottom:12px;
}
.form__row:nth-of-type(2){grid-template-columns: 1fr 1fr 110px}
.form__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.fineprint{margin:12px 0 0; color: var(--muted); font-size:12px}

.reserve__side .info-card{
  padding:18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  border:1px solid var(--line2);
}
.kv{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.kv li{display:flex; justify-content:space-between; gap:14px; color: rgba(246,246,247,.86)}
.kv li span:first-child{color: var(--muted); font-weight:700}
.divider{height:1px; background: var(--line2); margin:14px 0}

.location{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:14px;
}
.location__card{
  padding:18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  border:1px solid var(--line2);
}
.location__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.map{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.02);
  min-height: 340px;
}
.map iframe{width:100%; height:100%; border:0; display:block; min-height: 340px}

.footer{
  border-top:1px solid var(--line2);
  padding: 28px 0 40px;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer__brand{display:flex; gap:10px; align-items:center}
.footer__name{font-weight:900}
.footer__meta{color:var(--muted); font-size:12px; font-weight:650}
.footer__right{display:flex; gap:14px; flex-wrap:wrap; color: rgba(246,246,247,.86)}
.footer__right a{border-bottom:1px dashed rgba(255,255,255,.22)}
.footer__right a:hover{border-bottom-color: rgba(255,176,32,.55)}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; }
  .hero__badges{grid-template-columns: 1fr; }
  .reserve{grid-template-columns: 1fr}
  .location{grid-template-columns: 1fr}
  .grid--3{grid-template-columns: 1fr}
  .grid--2{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .section__head{flex-direction:column; align-items:flex-start}
  .nav{
    position:absolute;
    right:20px;
    top:70px;
    width:min(320px, calc(100vw - 40px));
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:14px;
    background: rgba(11,11,12,.92);
    border:1px solid var(--line2);
    border-radius: 18px;
    display:none;
  }
  .nav a{padding:10px 10px; border-radius:14px; background: rgba(255,255,255,.03); border:1px solid var(--line2)}
  .nav a.btn{background: linear-gradient(135deg, var(--accent), var(--accent2)); color:#0b0b0c; border:0}
  .nav__toggle{display:inline-grid; place-items:center}
  .nav.is-open{display:flex}
}

