@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');


/* =========================
   GLOBAL
   ========================= */

body{
  margin:0;
  font-family:'Oswald',sans-serif;
  background:#0b0b0b;
  color:#f3efe7;
  line-height:1.6;
  overflow-x:hidden;

  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.025), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(227,111,30,.025), transparent 30%);
}

a{
  color:inherit;
}

.container{
  width:min(92%,1180px);
  margin:auto;
}


/* =========================
   HEADER / NAVIGATION
   ========================= */

.site-header{
  background:
    linear-gradient(to bottom,#0c0c0c,#070707);

  border-bottom:1px solid #2a2a2a;

  box-shadow:
    0 8px 25px rgba(0,0,0,.45);

  position:relative;
  z-index:10;
}

.nav-wrap{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand,
.nav a{
  text-decoration:none;
  font-weight:800;
}

.brand-lockup{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:1.2rem;
}

.brand-lockup img{
  width:70px;
  height:70px;
  object-fit:contain;
  flex-shrink:0;

  filter:
    drop-shadow(0 5px 8px rgba(0,0,0,.65));
}

.brand-lockup span{
  white-space:nowrap;
}

.nav{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.nav a{
  transition:
    color .2s ease,
    text-shadow .2s ease;
}

.nav a:hover{
  color:#e36f1e;
  text-shadow:0 0 12px rgba(227,111,30,.25);
}


/* =========================
   HOME HERO
   ========================= */

.hero{
  min-height:68vh;
  display:grid;
  place-items:center;
  text-align:center;
  padding:40px 0;

  background:
    linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.55)),
    url('../images/hero.png') center/cover no-repeat;

  box-shadow:
    inset 0 -45px 60px rgba(0,0,0,.5);
}

.hero-logo{
  width:min(500px,78vw);
  margin:auto;

  filter:
    drop-shadow(0 15px 25px rgba(0,0,0,.65));
}


/* =========================
   GENERAL SECTIONS
   ========================= */

.section{
  padding:70px 0;
  position:relative;

  background:
    radial-gradient(circle at top left, rgba(255,255,255,.015), transparent 35%),
    linear-gradient(to bottom,#0d0d0d,#0a0a0a);
}

.section + .section{
  border-top:1px solid rgba(255,255,255,.035);
}

.alt{
  background:
    radial-gradient(circle at 85% 20%, rgba(227,111,30,.035), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,.018), transparent 30%),
    linear-gradient(to bottom,#181818,#121212);
}

.center{
  text-align:center;
}

.eyebrow{
  color:#e36f1e;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;

  text-shadow:
    0 0 14px rgba(227,111,30,.12);
}

.lead{
  color:#c7c7c7;
  font-size:1.15rem;
}


/* =========================
   HEADINGS
   ========================= */

h1,
h2,
h3{
  line-height:1.2;
}

h1{
  text-shadow:
    0 4px 14px rgba(0,0,0,.5);
}

h2{
  text-shadow:
    0 3px 10px rgba(0,0,0,.4);
}


/* =========================
   GRIDS
   ========================= */

.grid-2{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}

.grid-2 > div{
  min-width:0;
}

.grid-2 > img{
  width:100%;
  max-width:100%;
  height:420px;
  object-fit:cover;
  object-position:center;
  min-width:0;

  border-radius:10px;

  box-shadow:
    0 18px 35px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.04);
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}


/* =========================
   BUTTONS
   ========================= */

.btn{
  display:inline-block;

  background:
    linear-gradient(to bottom,#eb7b2a,#d96111);

  color:#fff;
  text-decoration:none;

  padding:14px 24px;

  font-family:'Oswald',sans-serif;
  font-weight:900;
  text-transform:uppercase;

  border:none;
  border-radius:18px;

  cursor:pointer;

  box-shadow:
    0 8px 18px rgba(0,0,0,.35),
    0 0 14px rgba(227,111,30,.08);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.btn:hover{
  transform:translateY(-2px);

  box-shadow:
    0 12px 24px rgba(0,0,0,.45),
    0 0 18px rgba(227,111,30,.18);
}


/* =========================
   CARDS
   ========================= */

.card{
  border:1px solid rgba(255,255,255,.08);

  padding:24px;

  background:
    linear-gradient(
      145deg,
      rgba(28,28,28,.96),
      rgba(15,15,15,.96)
    );

  border-radius:10px;

  box-shadow:
    0 14px 28px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.025);

  margin-bottom:18px;
}


/* =========================
   MENU
   ========================= */

.menu-img{
  display:block;
  width:min(100%,980px);
  margin:25px auto;

  border-radius:10px;

  box-shadow:
    0 18px 38px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.04);
}


/* =========================
   CATERING FORM
   ========================= */

.form{
  display:grid;
  gap:14px;
  width:100%;
  min-width:0;

  padding:24px;

  box-sizing:border-box;

  background:
    linear-gradient(
      145deg,
      rgba(24,24,24,.9),
      rgba(12,12,12,.9)
    );

  border:1px solid rgba(255,255,255,.07);

  border-radius:12px;

  box-shadow:
    0 18px 35px rgba(0,0,0,.35);
}

.form > div{
  min-width:0;
}

.form label,
.form legend{
  display:block;
  font-weight:600;
  margin-bottom:7px;
}

.form input,
.form select,
.form textarea{
  width:100%;
  box-sizing:border-box;
  padding:14px;

  background:#0e0e0e;
  color:#fff;

  border:1px solid #555;
  border-radius:6px;

  font-family:'Oswald',sans-serif;
  font-size:1rem;

  box-shadow:
    inset 0 2px 8px rgba(0,0,0,.35);
}

.form textarea{
  min-height:120px;
  resize:vertical;
}

.form select{
  cursor:pointer;
}

.form input:focus,
.form select:focus,
.form textarea:focus{
  outline:none;
  border-color:#e36f1e;

  box-shadow:
    0 0 0 2px rgba(227,111,30,.08),
    inset 0 2px 8px rgba(0,0,0,.35);
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.checkbox-group{
  border:1px solid #555;
  border-radius:6px;
  padding:18px;
  margin:5px 0;

  background:
    rgba(0,0,0,.2);
}

.checkbox-group legend{
  padding:0 6px;
}

.checkbox-group label{
  display:flex;
  align-items:center;
  gap:9px;
  margin:10px 0;
  cursor:pointer;
}

.checkbox-group input{
  width:auto;
  margin:0;
}


/* =========================
   MAP
   ========================= */

.map-wrap iframe{
  width:100%;
  min-height:430px;
  border:0;

  border-radius:10px;

  box-shadow:
    0 18px 35px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.05);
}


/* =========================
   STORY / GENERAL IMAGES
   ========================= */

.section img{
  max-width:100%;
}

.section .center + img,
.section img[style*="border-radius"]{
  box-shadow:
    0 20px 40px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.04);
}


/* =========================
   FOOTER
   ========================= */

.footer{
  border-top:1px solid #2a2a2a;

  padding:28px 0;

  color:#bbb;

  background:
    linear-gradient(to bottom,#0a0a0a,#050505);

  box-shadow:
    inset 0 10px 25px rgba(0,0,0,.25);
}


/* =========================
   HOME - BBQ STATEMENT
   ========================= */

.hero + .section{
  padding:90px 0;
}

.hero + .section .eyebrow{
  font-size:1.25rem;
  margin-bottom:22px;
}

.hero + .section h2{
  font-size:2.2rem;
  margin:12px 0 24px;
}

.hero + .section .lead{
  font-size:1.55rem;
  line-height:1.7;
  margin:0 auto 25px;
}

.hero + .section h2:last-child{
  font-size:2.4rem;
  margin-top:30px;
}


/* =========================
   HOME - CATERING
   ========================= */

.hero + .section + .section .eyebrow{
  font-size:1.25rem;
  margin-bottom:18px;
}

.hero + .section + .section h2{
  font-size:2rem;
  line-height:1.2;
  margin:10px 0 22px;
}

.hero + .section + .section .lead{
  font-size:1.3rem;
  line-height:1.7;
  max-width:650px;
}

.hero + .section + .section .btn{
  font-size:1.1rem;
  padding:16px 24px;
  margin-top:8px;
}


/* =========================
   TABLET / PHONE
   ========================= */

@media(max-width:820px){

  .nav-wrap{
    flex-direction:column;
    align-items:center;
    padding:12px 0 16px;
    gap:10px;
  }

  .brand-lockup img{
    width:55px;
    height:55px;
  }

  .nav{
    justify-content:center;
    gap:10px 16px;
  }

  .grid-2,
  .grid-3{
    grid-template-columns:1fr;
  }

  .grid-2 > img{
    height:auto;
  }

  .hero{
    min-height:55vh;
    padding:30px 0;
  }

  .hero-logo{
    width:min(430px,82vw);
  }

  .form{
    padding:20px;
  }
}


/* =========================
   SMALL PHONES
   ========================= */

@media(max-width:600px){

  .container{
    width:min(90%,1180px);
  }

  .brand-lockup{
    font-size:1rem;
  }

  .nav{
    font-size:.95rem;
  }

  .section{
    padding:50px 0;
  }

  .form-row{
    grid-template-columns:1fr;
  }

  .form{
    padding:16px;
  }

  .hero + .section{
    padding:60px 0;
  }

  .hero + .section h2{
    font-size:1.8rem;
  }

  .hero + .section .lead{
    font-size:1.25rem;
  }

  .hero + .section h2:last-child{
    font-size:2rem;
  }

  .hero + .section + .section h2{
    font-size:1.7rem;
  }

  .hero + .section + .section .lead{
    font-size:1.15rem;
  }
}
/* =========================
   DEPTH PASS - ROUND TWO
   ========================= */

.section{
  position:relative;
  overflow:hidden;
}

.section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.035), transparent 30%),
    radial-gradient(circle at 80% 85%, rgba(227,111,30,.05), transparent 28%);
}

.section > .container{
  position:relative;
  z-index:1;
}

.alt{
  background:
    linear-gradient(to bottom,#1c1c1c 0%,#121212 100%);
  box-shadow:
    inset 0 20px 40px rgba(0,0,0,.25),
    inset 0 -20px 40px rgba(0,0,0,.3);
}

.card{
  transform:translateY(0);
  border:1px solid rgba(255,255,255,.11);

  background:
    linear-gradient(
      145deg,
      rgba(35,35,35,.98),
      rgba(12,12,12,.98)
    );

  box-shadow:
    0 18px 35px rgba(0,0,0,.55),
    0 2px 0 rgba(255,255,255,.025) inset;
}

.card:hover{
  transform:translateY(-3px);
  transition:.2s ease;
}

.grid-2 > img,
.menu-img,
.map-wrap iframe,
.section img[style*="border-radius"]{
  box-shadow:
    0 22px 45px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.06),
    0 0 25px rgba(227,111,30,.05);
}

.form{
  background:
    linear-gradient(
      145deg,
      rgba(30,30,30,.98),
      rgba(10,10,10,.98)
    );

  border:1px solid rgba(255,255,255,.1);

  box-shadow:
    0 22px 45px rgba(0,0,0,.55),
    0 0 25px rgba(227,111,30,.04);
}

.btn{
  box-shadow:
    0 10px 24px rgba(0,0,0,.45),
    0 0 22px rgba(227,111,30,.18);
}

.btn:hover{
  box-shadow:
    0 14px 30px rgba(0,0,0,.55),
    0 0 30px rgba(227,111,30,.28);
}

.eyebrow{
  text-shadow:
    0 0 12px rgba(227,111,30,.25);
}

.footer{
  background:
    linear-gradient(to bottom,#0d0d0d,#050505);

  box-shadow:
    inset 0 10px 25px rgba(255,255,255,.015),
    0 -8px 25px rgba(0,0,0,.4);
}
/* =========================
   CONTENT LIFT
   ========================= */

/* Main headings */
h1,
h2,
h3{
  text-shadow:
    0 3px 6px rgba(0,0,0,.75),
    0 0 14px rgba(255,255,255,.035);
}

/* Regular text */
p,
.lead{
  text-shadow:
    0 2px 4px rgba(0,0,0,.6);
}

/* Orange eyebrow text */
.eyebrow{
  text-shadow:
    0 2px 5px rgba(0,0,0,.75),
    0 0 18px rgba(227,111,30,.32);
}

/* Photos */
.grid-2 > img,
.menu-img,
.section img[style*="border-radius"]{
  position:relative;

  box-shadow:
    0 28px 55px rgba(0,0,0,.7),
    0 8px 18px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.07),
    0 0 28px rgba(227,111,30,.08);

  transform:translateY(-2px);
}

/* Map */
.map-wrap iframe{
  box-shadow:
    0 28px 55px rgba(0,0,0,.7),
    0 8px 18px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.07);
}
/* =========================
   STRONGER TEXT LIFT
   ========================= */

h1,
h2,
h3{
  text-shadow:
    0 4px 8px rgba(0,0,0,.9),
    0 0 2px rgba(255,255,255,.12),
    0 0 18px rgba(255,255,255,.06);
}

.lead,
p{
  text-shadow:
    0 3px 6px rgba(0,0,0,.8),
    0 0 1px rgba(255,255,255,.08);
}

.eyebrow{
  text-shadow:
    0 3px 7px rgba(0,0,0,.9),
    0 0 4px rgba(227,111,30,.45),
    0 0 22px rgba(227,111,30,.28);
}