:root {
  --bg: #111111;
  --bg-soft: #1b1b1b;
  --text: #f5f1e8;
  --muted: #cfc7ba;
  --accent: #c86b2a;
  --accent-dark: #9f4f18;
  --white: #ffffff;
  --black: #000000;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.narrow-container {
  max-width: 850px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.logo-small {
  font-size: 0.9rem;
}

.logo-main {
  font-size: 2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--accent);
}

.nav-order-button {
  background: var(--accent);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 4px;
}

.mobile-menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.72)),
    url("../images/hero-ribs-smoker.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro-section h2,
.split-content h2,
.catering-content h2,
.final-cta h2 {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(3.2rem, 8vw, 7rem);
  letter-spacing: -0.04em;
}

.hero-description {
  margin: 24px 0 30px;
  max-width: 650px;
  font-size: 1.25rem;
  color: var(--muted);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: var(--white);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border: 2px solid var(--white);
  color: var(--white);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.intro-section,
.featured-food,
.visit-section {
  padding: 90px 0;
}

.intro-section {
  text-align: center;
  background: #151515;
}

.intro-section h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.large-copy {
  margin: 28px auto 0;
  max-width: 780px;
  font-size: 1.2rem;
  color: var(--muted);
}

.featured-food {
  background: #f4efe7;
  color: #181818;
}

.section-heading {
  margin-bottom: 40px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.food-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.food-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.food-card-content {
  padding: 24px;
}

.food-card h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.food-card p {
  margin: 0;
  color: #555555;
}

.section-action {
  margin-top: 40px;
  text-align: center;
}

.smoke-story {
  background: var(--bg-soft);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content h2 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}

.split-content p {
  color: var(--muted);
  font-size: 1.1rem;
}

.text-link {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 800;
}

.catering-callout {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.78)),
    url("../images/catering-wings.jpg") center/cover no-repeat;
}

.catering-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  text-align: center;
}

.catering-content h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.catering-content p {
  max-width: 720px;
  margin: 20px auto 30px;
  font-size: 1.15rem;
  color: var(--muted);
}

.visit-section {
  background: #f4efe7;
  color: #181818;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.visit-block {
  padding: 28px;
  background: var(--white);
  border-top: 4px solid var(--accent);
}

.visit-block h3 {
  margin-top: 0;
  text-transform: uppercase;
}

.final-cta {
  padding: 90px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.final-actions {
  justify-content: center;
  margin-top: 28px;
}

.site-footer {
  padding: 60px 0 24px;
  background: #080808;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 900;
}

.footer-grid h3 {
  margin-top: 0;
  color: var(--accent);
}

.footer-grid p {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #999999;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: #0a0a0a;
  }

  .main-nav.is-open {
    display: flex;
  }

  .mobile-menu-button {
    display: block;
  }

  .food-grid,
  .visit-grid,
  .split-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-content {
    padding: 60px 28px;
  }

  .hero {
    min-height: 68vh;
  }
}

@media (max-width: 600px) {
  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    top: 72px;
  }

  .hero-content {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .intro-section,
  .featured-food,
  .visit-section,
  .final-cta {
    padding: 65px 0;
  }

  .food-card img {
    height: 240px;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}

/* ================================
   MENU PAGE
================================ */

.menu-hero {
  padding: 100px 0 75px;
  text-align: center;
  background: #080808;
}

.menu-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 900;
}

.menu-hero p:last-child {
  color: var(--muted);
  font-size: 1.15rem;
}

.wing-special {
  background: #171717;
}

.wing-special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.wing-special-image img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.wing-special-content {
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wing-special-content h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.82;
  font-weight: 900;
}

.special-price {
  margin: 20px 0;
  color: var(--accent);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  font-weight: 900;
}

.wing-special-content p {
  max-width: 500px;
  color: var(--muted);
  font-size: 1.1rem;
}

.wing-special-content .button {
  align-self: flex-start;
  margin-top: 15px;
}

.ten-dollar-specials {
  padding: 85px 0;
  background: #f4efe7;
  color: #181818;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.special-card {
  padding: 32px 25px;
  text-align: center;
  background: #ffffff;
  border-top: 5px solid var(--accent);
}

.special-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.special-card span {
  color: var(--accent-dark);
  font-size: 2.2rem;
  font-weight: 900;
}

.special-note {
  margin: 28px 0 0;
  text-align: center;
  color: #666666;
  font-size: 0.9rem;
}

.menu-section {
  padding: 80px 0;
  background: #111111;
}

.menu-section-light {
  background: #1a1a1a;
}

.menu-section-heading {
  margin-bottom: 35px;
}

.menu-section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
}

.menu-list {
  max-width: 900px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.menu-item h3 {
  margin: 0;
  font-size: 1.2rem;
}

.menu-item p {
  margin: 5px 0 0;
  color: var(--muted);
}

.menu-price {
  flex-shrink: 0;
  color: var(--accent);
  font-weight: 900;
}

.two-column-menu {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
}

@media (max-width: 800px) {

  .wing-special-grid {
    grid-template-columns: 1fr;
  }

  .wing-special-image img {
    min-height: 350px;
    height: 350px;
  }

  .wing-special-content {
    padding: 50px 28px;
  }

  .special-grid {
    grid-template-columns: 1fr;
  }

  .two-column-menu {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 500px) {

  .menu-item {
    gap: 15px;
  }

  .menu-price {
    text-align: right;
  }

}

/* ================================
   CATERING PAGE
================================ */

.catering-page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.78)),
    url("../images/catering-wings.jpg") center/cover no-repeat;
}

.catering-page-overlay {
  position: absolute;
  inset: 0;
}

.catering-page-hero-content {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

.catering-page-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: .82;
  font-weight: 900;
}

.catering-page-hero-content > p:not(.section-kicker) {
  max-width: 620px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.catering-intro {
  padding: 90px 0;
  text-align: center;
  background: #151515;
}

.catering-intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.catering-events {
  padding: 90px 0;
  background: #f4efe7;
  color: #181818;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.event-card {
  padding: 30px;
  background: #fff;
  border-top: 4px solid var(--accent);
}

.event-card h3 {
  margin-top: 0;
}

.event-card p {
  margin-bottom: 0;
  color: #555;
}

.catering-food {
  background: #151515;
}

.catering-food-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
}

.catering-food-image img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.catering-food-content {
  padding: 75px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catering-food-content h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
}

.catering-food-content p {
  color: var(--muted);
}

.catering-food-list {
  padding-left: 20px;
  margin: 20px 0 25px;
}

.catering-food-list li {
  margin-bottom: 10px;
}

.catering-process {
  padding: 90px 0;
  background: #0d0d0d;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.process-step {
  padding: 32px;
  background: #181818;
}

.process-step span {
  color: var(--accent);
  font-size: 2.5rem;
  font-weight: 900;
}

.process-step h3 {
  margin: 15px 0 10px;
}

.process-step p {
  color: var(--muted);
}

.catering-inquiry {
  padding: 90px 0;
  background: #f4efe7;
  color: #181818;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.inquiry-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
}

.inquiry-copy p:last-child {
  color: #555;
}

.catering-form {
  padding: 35px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #ccc;
  background: #fff;
  font: inherit;
}

.form-group textarea {
  resize: vertical;
}

.catering-form button {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 15px 0 0;
  color: #777;
  font-size: .82rem;
}

@media (max-width: 850px) {

  .event-grid,
  .process-grid,
  .catering-food-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .catering-food-image img {
    min-height: 350px;
    height: 350px;
  }

  .catering-food-content {
    padding: 55px 28px;
  }

}

@media (max-width: 600px) {

  .event-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .catering-form {
    padding: 25px 20px;
  }

}

/* ABOUT PAGE */

.about-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,.32), rgba(0,0,0,.78)),
    url("../images/hero-ribs-smoker.jpg") center/cover no-repeat;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: .82;
  font-weight: 900;
}

.about-hero-content > p:last-child {
  max-width: 600px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.2rem;
}

.about-story {
  background: #f4efe7;
  color: #181818;
}

.about-story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: stretch;
}

.about-story-copy {
  padding: 85px 60px 85px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-story-copy h2 {
  margin: 0 0 25px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: .95;
}

.about-story-copy p {
  color: #555;
  font-size: 1.05rem;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.about-philosophy {
  padding: 90px 0;
  background: #111;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.philosophy-card {
  padding: 35px;
  background: #1a1a1a;
  border-top: 4px solid var(--accent);
}

.philosophy-card span {
  color: var(--accent);
  font-size: 2.5rem;
  font-weight: 900;
}

.philosophy-card h3 {
  margin: 15px 0 10px;
  font-size: 1.4rem;
}

.philosophy-card p {
  color: var(--muted);
}

.about-journey {
  padding: 90px 0;
  background: #080808;
}

.journey-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  max-width: 850px;
}

.journey-year,
.journey-copy {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.journey-year span {
  color: var(--accent);
  font-size: 2.2rem;
  font-weight: 900;
}

.journey-copy h3 {
  margin: 0 0 8px;
}

.journey-copy p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 850px) {
  .about-story-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .about-story-copy {
    padding: 60px 0;
  }

  .about-story-image img {
    min-height: 350px;
    height: 350px;
  }
}

@media (max-width: 600px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-year {
    padding-bottom: 5px;
    border-bottom: 0;
  }

  .journey-copy {
    padding-top: 5px;
  }
}

/* ================================
   CONTACT PAGE
================================ */

.contact-hero {
  padding: 110px 0 85px;
  text-align: center;
  background: #080808;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: .9;
  font-weight: 900;
}

.contact-hero > .container > p:last-child {
  max-width: 650px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.contact-quick {
  background: var(--accent);
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-action {
  padding: 45px 30px;
  border-right: 1px solid rgba(255,255,255,.25);
  transition: .2s ease;
}

.contact-action:last-child {
  border-right: 0;
}

.contact-action:hover {
  background: rgba(0,0,0,.15);
}

.contact-action span {
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.contact-action h2 {
  margin: 8px 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
}

.contact-action p {
  margin: 0;
}

.contact-details {
  background: #151515;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.contact-details-copy {
  padding: 80px 60px 80px 0;
}

.contact-details-copy h2 {
  margin: 0 0 35px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: .95;
}

.contact-info-block {
  margin-bottom: 25px;
}

.contact-info-block h3 {
  margin: 0 0 5px;
  color: var(--accent);
  text-transform: uppercase;
}

.contact-info-block p {
  margin: 0;
  color: var(--muted);
}

.contact-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.contact-details-visual img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.general-contact {
  padding: 90px 0;
  background: #f4efe7;
  color: #181818;
}

@media (max-width: 850px) {

  .contact-quick-grid,
  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .contact-action {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.25);
  }

  .contact-details-copy {
    padding: 60px 0;
  }

  .contact-details-visual img {
    min-height: 350px;
    height: 350px;
  }

}

@media (max-width: 600px) {

  .contact-detail-actions {
    flex-direction: column;
  }

}