/* Snack Squad — one-page pitch site
   Simple, fast, brand-forward.
*/

:root{
  --red:#E6392F;
  --dark:#0b0d12;
  --ink:#131722;
  --muted:#5a6475;
  --line:rgba(255,255,255,.14);
  --bg:#0b0d12;
  --card:#121625;
  --card2:#0f1320;
  --white:#ffffff;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
  --font-head: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-body);
  color:rgba(255,255,255,.92);
  background: radial-gradient(1200px 700px at 15% -10%, rgba(230,57,47,.35), transparent 55%),
              radial-gradient(900px 700px at 100% 5%, rgba(123,176,226,.18), transparent 55%),
              var(--bg);
}

img{max-width:100%; display:block}

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

.topbar{
  position:sticky; top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,13,18,.65);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.topbar__inner{
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none; color:inherit;
}
.brand__mark{
  width:40px; height:40px; border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--red), #ff7a3e);
  font-family:var(--font-head);
  font-weight:800;
  letter-spacing:.5px;
  box-shadow: 0 10px 25px rgba(230,57,47,.35);
}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__sub{font-size:12px; color:rgba(255,255,255,.62)}

.nav{
  display:flex; align-items:center; gap:16px;
}
.nav a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}
.nav a:hover{color:#fff}

.nav__toggle{
  display:none;
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  padding:10px 12px;
  font-size:16px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  background: var(--red);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  border:none;
  padding:12px 16px;
  border-radius:14px;
  box-shadow: 0 16px 40px rgba(230,57,47,.28);
  cursor:pointer;
}
.btn:hover{filter:brightness(1.03)}
.btn--ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:none;
}
.btn--sm{padding:10px 12px; border-radius:12px; font-weight:800}

.hero{
  position:relative;
  padding:70px 0 34px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(11,13,18,.40), rgba(11,13,18,.92)),
    url("assets/hero_billboard.png") center/cover no-repeat;
  transform: scale(1.02);
  filter:saturate(1.08) contrast(1.02);
}
.hero__inner{position:relative}
.hero__content{max-width:920px}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  font-weight:700;
  color:rgba(255,255,255,.86);
  margin-bottom:14px;
}
.dot{
  width:10px; height:10px; border-radius:99px;
  background: #46f26a;
  box-shadow: 0 0 0 6px rgba(70,242,106,.12);
}

h1,h2,h3{font-family:var(--font-head); margin:0 0 12px}
h1{
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing:-.6px;
  line-height:1.02;
}
h2{font-size: clamp(26px, 3.4vw, 40px); letter-spacing:-.3px}
h3{font-size:18px; letter-spacing:-.2px}

.lead{
  font-size: clamp(16px, 1.5vw, 19px);
  line-height:1.6;
  color:rgba(255,255,255,.84);
  max-width:780px;
}

.promises{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin:22px 0 18px;
}
.card{
  background: rgba(18,22,37,.66);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:16px 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.20);
}
.card p{margin:0; color:rgba(255,255,255,.70); line-height:1.5}

.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 10px}
.hero__fineprint{color:rgba(255,255,255,.62); font-size:13px; max-width:760px}

.section{padding:70px 0}
.section--alt{
  background: radial-gradient(900px 500px at 0% 0%, rgba(230,57,47,.14), transparent 55%),
              radial-gradient(800px 500px at 100% 0%, rgba(123,176,226,.10), transparent 55%),
              rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.muted{color:rgba(255,255,255,.70); line-height:1.6}
.small{font-size:12px}

.grid-2{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}

.panel{
  background: rgba(18,22,37,.66);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}

.stack{display:grid; gap:10px; margin-top:12px}
.step{
  display:flex; align-items:flex-start; gap:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:12px 12px;
  border-radius: 14px;
  color:rgba(255,255,255,.82);
}
.badge{
  width:24px; height:24px; border-radius:10px;
  display:grid; place-items:center;
  background: rgba(230,57,47,.20);
  border:1px solid rgba(230,57,47,.45);
  font-weight:800;
  font-size:12px;
}

.bullets{margin:14px 0 0; padding-left:18px; color:rgba(255,255,255,.76)}
.bullets li{margin:10px 0}
.bullets strong{color:#fff}

.model{
  display:grid;
  grid-template-columns: 1fr 60px 1fr;
  gap:16px;
  margin-top:18px;
  align-items:stretch;
}
.model__col{
  background: rgba(18,22,37,.66);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
}
.model__arrow{
  display:grid; place-items:center;
  color:rgba(255,255,255,.55);
  font-size:28px;
}

.cta-band{
  margin-top:22px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(230,57,47,.22), rgba(255,255,255,.04));
}

.gallery{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.shot{
  grid-column: span 6;
  background: rgba(18,22,37,.50);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.30);
}
.shot:nth-child(1){grid-column: span 12}
.shot img{width:100%; height:auto}
.shot figcaption{
  padding:12px 14px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  border-top:1px solid rgba(255,255,255,.08);
}

.quote{
  margin-top:14px;
  padding:14px 14px;
  border-left:3px solid rgba(230,57,47,.9);
  background: rgba(255,255,255,.05);
  border-radius: 14px;
  color:rgba(255,255,255,.84);
  font-weight:700;
}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
}
.contact__meta{
  margin-top:18px;
  display:grid; gap:12px;
}
.meta{
  background: rgba(18,22,37,.66);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:14px;
}
.meta__label{font-size:12px; color:rgba(255,255,255,.62); margin-bottom:6px}
.meta__value{font-weight:800}

.form{
  background: rgba(18,22,37,.66);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
label{display:block; font-weight:700; margin:0 0 12px}
input, select, textarea{
  margin-top:8px;
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,13,18,.55);
  color:#fff;
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(230,57,47,.7);
  box-shadow: 0 0 0 5px rgba(230,57,47,.14);
}
.form__fineprint{margin:10px 0 0; color:rgba(255,255,255,.58); font-size:12px}

.footer{
  padding:26px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(11,13,18,.75);
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.footer__links{display:flex; gap:14px}
.footer__links a{color:rgba(255,255,255,.72); text-decoration:none; font-weight:700; font-size:13px}
.footer__links a:hover{color:#fff}

/* Responsive */
@media (max-width: 980px){
  .promises{grid-template-columns:1fr; }
  .grid-2{grid-template-columns:1fr}
  .model{grid-template-columns:1fr}
  .model__arrow{display:none}
  .cta-band{flex-direction:column; align-items:flex-start}
  .gallery .shot{grid-column: span 12}
  .contact{grid-template-columns:1fr}
  .nav{display:none}
  .nav__toggle{display:inline-flex}
  .nav.nav--open{
    position:absolute;
    top:64px; right:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
    padding:12px;
    border-radius:16px;
    background: rgba(11,13,18,.92);
    border:1px solid rgba(255,255,255,.14);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
  }
}
