/* Stuff N Smoke — Smokehouse Food Website Styles */

:root {
  --charcoal: #171412;
  --charcoal-light: #231d19;
  --black: #0d0b0a;
  --smoke: #d8d0c6;
  --cream: #fff1d2;
  --gold: #f4c45f;
  --gold-dark: #c9922e;
  --orange: #f26a21;
  --orange-light: #ff8a32;
  --red: #c9361f;
  --red-dark: #7d2018;
  --white: #fffaf2;
  --muted: #a99f95;
  --border: rgba(244, 196, 95, 0.2);
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  --shadow-hot: 0 10px 30px rgba(242, 106, 33, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1200px;
  --nav-height: 76px;
  --font-display: "Arial Black", "Impact", system-ui, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* =========================
   Reset / Base
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(242, 106, 33, 0.08), transparent 30rem),
    radial-gradient(circle at 85% 30%, rgba(201, 54, 31, 0.06), transparent 28rem),
    var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  background: var(--orange);
  color: var(--black);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

::placeholder {
  color: #756d65;
}

/* =========================
   Layout
   ========================= */

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--dark {
  background: var(--black);
}

.section--warm {
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.1), transparent 55%),
    var(--charcoal-light);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading p {
  max-width: 650px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* =========================
   Sticky Navigation
   ========================= */

.site-nav,
.navbar,
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--nav-height);
  background: rgba(13, 11, 10, 0.94);
  border-bottom: 1px solid rgba(244, 196, 95, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-container,
.nav-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: var(--nav-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo,
.nav-logo {
  position: relative;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 2px 2px 0 var(--red-dark);
}

.logo span,
.nav-logo span {
  color: var(--orange);
}

.logo::after,
.nav-logo::after {
  content: "🔥";
  position: absolute;
  right: -1.2rem;
  top: -0.65rem;
  font-size: 0.8rem;
  transform: rotate(12deg);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-links a.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-light), var(--red));
  color: var(--white);
  box-shadow: 0 6px 18px rgba(242, 106, 33, 0.3);
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-links a.nav-cta:hover {
  transform: translateY(-1px);
}

.nav-links a {
  position: relative;
  padding: 0.35rem 0;
  color: var(--smoke);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cream);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--charcoal-light);
  color: var(--cream);
}

/* =========================
   Hero / Homepage
   ========================= */

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(850px, calc(100vh - var(--nav-height)));
  display: grid;
  justify-content: center;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 75%, rgba(242, 106, 33, 0.22), transparent 25rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)),
    var(--charcoal);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 45%;
  background:
    linear-gradient(to top, rgba(13, 11, 10, 0.95), transparent),
    repeating-linear-gradient(
      -8deg,
      transparent 0 25px,
      rgba(255, 241, 210, 0.025) 26px 28px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 5rem 0;
  text-align: center;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "✦";
  color: var(--orange);
}

.hero h1 {
  color: var(--cream);
  text-transform: uppercase;
  text-shadow:
    3px 3px 0 var(--red-dark),
    7px 7px 0 rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  display: block;
  color: var(--orange);
  text-shadow:
    3px 3px 0 var(--red-dark),
    7px 7px 0 rgba(0, 0, 0, 0.4);
}

.hero p {
  max-width: 680px;
  margin: 1.5rem auto 2rem;
  color: var(--smoke);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.hero-microcopy {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* =========================
   Trust Strip
   ========================= */

.trust-strip {
  padding: 1.75rem 0;
  background: var(--black);
  border-bottom: 1px solid rgba(244, 196, 95, 0.1);
}

.trust-strip-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 1.25rem 2rem;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
}

.trust-strip-item .feature-icon {
  width: 36px;
  height: 36px;
  font-size: 1rem;
  margin: 0;
}

/* =========================
   Comic Smoke Decorations
   ========================= */

.smoke,
.smoke-cloud {
  position: absolute;
  pointer-events: none;
  opacity: 0.22;
  filter: blur(1px);
}

.smoke::before,
.smoke::after,
.smoke-cloud::before,
.smoke-cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #e7e1d9;
}

.smoke {
  width: 180px;
  height: 150px;
  top: 12%;
  left: 7%;
  animation: smokeFloat 7s ease-in-out infinite;
}

.smoke::before {
  width: 95px;
  height: 95px;
  left: 10px;
  top: 35px;
}

.smoke::after {
  width: 120px;
  height: 120px;
  left: 70px;
  top: 5px;
}

.smoke-cloud {
  width: 220px;
  height: 170px;
  right: 4%;
  bottom: 17%;
  animation: smokeFloat 9s ease-in-out infinite reverse;
}

.smoke-cloud::before {
  width: 120px;
  height: 120px;
  right: 25px;
  bottom: 10px;
}

.smoke-cloud::after {
  width: 90px;
  height: 90px;
  left: 20px;
  bottom: 0;
}

.flame-decoration {
  position: absolute;
  pointer-events: none;
  color: var(--orange);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  text-shadow:
    3px 3px 0 var(--red-dark),
    0 0 30px rgba(242, 106, 33, 0.3);
  animation: flameFlicker 1.4s ease-in-out infinite alternate;
}

.flame-decoration--left {
  left: 3%;
  bottom: 8%;
  transform: rotate(-12deg);
}

.flame-decoration--right {
  right: 4%;
  top: 22%;
  transform: rotate(14deg);
}

/* =========================
   Buttons
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-light), var(--red));
  color: var(--white);
  box-shadow: var(--shadow-hot);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow:
    0 14px 32px rgba(242, 106, 33, 0.35),
    0 0 0 3px rgba(244, 196, 95, 0.1);
}

.btn-secondary {
  border-color: rgba(244, 196, 95, 0.45);
  background: rgba(244, 196, 95, 0.05);
  color: var(--cream);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
  background: rgba(244, 196, 95, 0.12);
  box-shadow: 0 8px 24px rgba(244, 196, 95, 0.12);
}

.btn-dark {
  background: var(--black);
  color: var(--cream);
}

.btn-small {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
}

/* =========================
   Feature Badge Grid
   ========================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-badge {
  position: relative;
  min-height: 180px;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent),
    var(--charcoal-light);
  box-shadow: var(--shadow);
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-badge::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -45px;
  bottom: -50px;
  border-radius: 50%;
  background: rgba(242, 106, 33, 0.13);
}

.feature-badge:hover {
  transform: translateY(-7px) rotate(-1deg);
  border-color: rgba(242, 106, 33, 0.55);
  box-shadow:
    var(--shadow),
    0 0 25px rgba(242, 106, 33, 0.12);
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: var(--white);
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(201, 54, 31, 0.3);
}

.feature-badge h3 {
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

.feature-badge p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* =========================
   Flavor Card Grid
   ========================= */

.flavor-grid,
.product-grid,
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.flavor-card,
.product-card,
.menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 241, 210, 0.1);
  border-radius: var(--radius);
  background: var(--charcoal-light);
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.flavor-card:hover,
.product-card:hover,
.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 106, 33, 0.55);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(242, 106, 33, 0.12);
}

.card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #100e0c;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.flavor-card:hover .card-image img,
.product-card:hover .card-image img,
.menu-card:hover .card-image img {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.04);
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 11, 10, 0.65), transparent 55%);
  pointer-events: none;
}

.card-body {
  padding: 1.4rem;
}

.card-body h3 {
  margin-bottom: 0.55rem;
}

.card-body p {
  color: var(--muted);
}

.card-teaser {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.13);
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
}

/* =========================
   Hero Image Frame
   ========================= */

.hero-image-frame {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
  overflow: hidden;
  border: 2px solid rgba(244, 196, 95, 0.25);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

.hero-image-frame {
  max-width: 620px;
  margin-inline: auto;
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
}

/* =========================
   Section Heading Centered
   ========================= */

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered p {
  margin-inline: auto;
}

/* =========================
   Spread / Copy + Visual Layout
   ========================= */

.spread-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.spread-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.spread-visual {
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.spread-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 1000px) {
  .spread-grid {
    grid-template-columns: 1fr;
  }

  .spread-visual {
    order: -1;
  }
}

/* =========================
   Feature Strip
   ========================= */

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.75rem;
}

.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-weight: 800;
  font-size: 0.95rem;
}

.feature-strip-item .feature-icon {
  width: 40px;
  height: 40px;
  font-size: 1.15rem;
  margin: 0;
}

.feature-strip--four {
  justify-content: space-between;
  padding: 2.5rem 0;
}

@media (max-width: 760px) {
  .feature-strip--four {
    justify-content: center;
    gap: 1.5rem 2rem;
  }
}

/* =========================
   Instagram Strip
   ========================= */

.instagram-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.instagram-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

@media (max-width: 760px) {
  .instagram-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
  }
}

/* =========================
   Food Photography Product Pages
   ========================= */

.product-page {
  background: #f4eee4;
  color: #29221c;
}

.product-page .site-nav,
.product-page .navbar,
.product-page header.site-header {
  background: rgba(20, 16, 13, 0.96);
}

.product-page h1,
.product-page h2,
.product-page h3,
.product-page h4 {
  color: #251d17;
}

.product-page .section--warm h1,
.product-page .section--warm h2,
.product-page .section--warm h3,
.product-page .section--warm h4,
.product-page .section--dark h1,
.product-page .section--dark h2,
.product-page .section--dark h3,
.product-page .section--dark h4 {
  color: var(--cream);
}

.product-page .pricing-item {
  border: 1px solid #e3d5c1;
  background: #fffaf2;
}

.product-page .pricing-name {
  color: #251d17;
}

.product-page .pricing-item:hover {
  border-color: #c9922e;
  background: #fff4e0;
}

.product-hero {
  padding: clamp(2rem, 5vw, 5rem) 0;
  background: #f4eee4;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  grid-template-areas: "gallery info";
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.product-detail .product-gallery {
  grid-area: gallery;
}

.product-detail .product-info {
  grid-area: info;
}

.product-detail--reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas: "info gallery";
}

.product-detail-section {
  scroll-margin-top: var(--nav-height);
}

.btn-order {
  margin-top: 1.75rem;
  width: 100%;
  max-width: 340px;
}

.product-gallery {
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  background: #ddd2c4;
  box-shadow: 0 20px 55px rgba(45, 29, 17, 0.18);
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.product-info {
  padding: 1rem 0;
}

.product-info .eyebrow {
  color: var(--orange-light);
}

.product-info > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.product-page .product-info .eyebrow {
  color: var(--red);
}

.product-page .product-info > p {
  color: #665a4e;
}

.product-description {
  margin: 1.5rem 0;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0;
}

.product-meta span {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(244, 196, 95, 0.08);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 800;
}

.product-page .product-meta span {
  border: 1px solid #d8cabb;
  background: #fffaf2;
  color: #51463c;
  font-size: 0.8rem;
  font-weight: 800;
}

.product-page .btn-secondary {
  border-color: #9d6c22;
  background: transparent;
  color: #5f4218;
}

.product-page .btn-secondary:hover {
  background: rgba(157, 108, 34, 0.08);
}

/* =========================
   Pricing List
   ========================= */

.pricing-list {
  display: grid;
  gap: 0.75rem;
}

.pricing-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(244, 196, 95, 0.15);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(90deg, rgba(242, 106, 33, 0.045), transparent),
    rgba(255, 255, 255, 0.025);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.pricing-item:hover {
  transform: translateX(4px);
  border-color: rgba(244, 196, 95, 0.4);
  background:
    linear-gradient(90deg, rgba(242, 106, 33, 0.1), transparent),
    rgba(255, 255, 255, 0.035);
}

.pricing-name {
  color: var(--cream);
  font-weight: 900;
}

.pricing-description {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.price {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
}

.price--large {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.price small {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.7em;
  font-weight: 700;
}

/* =========================
   Pricing Table
   ========================= */

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--charcoal-light);
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pricing-table th {
  background: rgba(242, 106, 33, 0.1);
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-table td {
  color: var(--smoke);
}

.pricing-table td:last-child {
  color: var(--gold);
  font-family: var(--font-display);
  text-align: right;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table tbody tr {
  transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

/* =========================
   Badges / Labels
   ========================= */

.badge,
.featured-badge,
.sale-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.badge {
  background: rgba(244, 196, 95, 0.12);
  color: var(--gold);
}

.featured-badge {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(242, 106, 33, 0.25);
}

.sale-badge {
  background: var(--red);
  color: var(--white);
}

/* =========================
   Callout / Promo
   ========================= */

.promo {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border: 2px solid rgba(244, 196, 95, 0.2);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 90% 20%, rgba(244, 196, 95, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), rgba(125, 32, 24, 0.12)),
    var(--charcoal-light);
  text-align: center;
}

.promo::before {
  content: "🔥";
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-size: 4rem;
  transform: rotate(-15deg);
  opacity: 0.8;
}

.promo::after {
  content: "💨";
  position: absolute;
  right: 2rem;
  bottom: -0.5rem;
  font-size: 4rem;
  opacity: 0.25;
}

.promo h2 {
  position: relative;
  z-index: 1;
}

.promo p {
  max-width: 650px;
  margin: 1rem auto 1.5rem;
  color: var(--smoke);
}

/* =========================
   Forms
   ========================= */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 241, 210, 0.14);
  border-radius: var(--radius-sm);
  outline: none;
  background: var(--black);
  color: var(--white);
  padding: 0.85rem 1rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.12);
}

/* =========================
   Footer
   ========================= */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(244, 196, 95, 0.12);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 1rem;
  color: var(--muted);
}

.footer-column h3 {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 0.5rem 0;
  color: var(--muted);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--orange-light);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #6f6861;
  font-size: 0.8rem;
}

/* =========================
   Utility Classes
   ========================= */

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-orange {
  color: var(--orange-light);
}

.text-cream {
  color: var(--cream);
}

.text-muted {
  color: var(--muted);
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.hidden {
  display: none !important;
}

/* =========================
   Animations
   ========================= */

@keyframes smokeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(15px, -18px, 0) scale(1.05);
  }
}

@keyframes flameFlicker {
  0% {
    transform: scale(1) rotate(-2deg);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.06) rotate(2deg);
    filter: brightness(1.08);
  }

  100% {
    transform: scale(0.97) rotate(-1deg);
    filter: brightness(0.95);
  }
}

@keyframes pulseHot {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(242, 106, 33, 0);
  }

  50% {
    box-shadow: 0 0 25px rgba(242, 106, 33, 0.22);
  }
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1000px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flavor-grid,
  .product-grid,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail,
  .product-detail--reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "gallery"
      "info";
  }

  .product-gallery {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 66px;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .nav-container,
  .nav-inner {
    min-height: var(--nav-height);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-right {
    gap: 0.4rem;
  }

  .cart-toggle {
    height: 38px;
    padding: 0 0.55rem;
    gap: 0.3rem;
    font-size: 0.75rem;
  }

  .cart-toggle .cart-label-text,
  .cart-toggle .cart-parens {
    display: none;
  }

  .cart-toggle .cart-icon {
    font-size: 1.05rem;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 1rem 1rem;
    border-bottom: 1px solid var(--border);
    background: rgba(13, 11, 10, 0.98);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }

  .nav-links.is-open,
  .nav-links.open,
  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 0.8rem 0.5rem;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 4rem 0;
  }

  .hero h1 {
    text-shadow:
      2px 2px 0 var(--red-dark),
      4px 4px 0 rgba(0, 0, 0, 0.4);
  }

  .smoke {
    left: -45px;
  }

  .smoke-cloud {
    right: -75px;
  }

  .flame-decoration {
    font-size: 4rem;
  }

  .flame-decoration--left {
    left: -5px;
  }

  .flame-decoration--right {
    right: 0;
  }

  .feature-grid,
  .flavor-grid,
  .product-grid,
  .menu-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group--full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero-actions {
    flex-direction: column;
    width: min(100%, 300px);
    margin-inline: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .feature-badge {
    min-height: 155px;
  }

  .pricing-item {
    grid-template-columns: 1fr;
  }

  .pricing-item .price-row {
    justify-self: start;
  }

  .card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-footer .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.8rem 0.7rem;
  }
}

/* =========================
   Sticky Mobile Order Bar
   ========================= */

.sticky-cta {
  display: none;
}

@media (max-width: 760px) {
  .sticky-cta {
    display: flex;
    gap: 0.6rem;
    position: fixed;
    z-index: 900;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(13, 11, 10, 0.97);
    border-top: 1px solid rgba(244, 196, 95, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .sticky-cta .btn {
    flex: 1;
  }

  body {
    padding-bottom: 78px;
  }
}

/* =========================
   Accessibility / Motion
   ========================= */

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================
   Cart: Nav Toggle
   ========================= */

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 1.1rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-light), var(--red));
  color: var(--white);
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(242, 106, 33, 0.3);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cart-toggle:hover,
.cart-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(242, 106, 33, 0.4);
}

.cart-icon {
  font-size: 1rem;
}

.cart-label {
  display: inline-block;
}

.cart-count {
  display: inline-block;
  font-weight: 900;
}

.sticky-cta .cart-toggle,
.sticky-cta .cart-icon {
  font-size: 1rem;
}

/* =========================
   Cart: Add-to-Cart Buttons
   ========================= */

.price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}

.btn-add-cart {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(244, 196, 95, 0.35);
  border-radius: 999px;
  background: rgba(244, 196, 95, 0.08);
  color: var(--cream);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.btn-add-cart:hover,
.btn-add-cart:focus-visible {
  background: linear-gradient(135deg, var(--orange-light), var(--red));
  border-color: transparent;
  color: var(--white);
  transform: translateY(-1px);
}

.btn-add-cart.is-added {
  background: linear-gradient(135deg, #5ea24c, #3f7e30);
  border-color: transparent;
  color: var(--white);
}

.product-page .btn-add-cart {
  color: #51463c;
  border-color: #d8cabb;
  background: #fffaf2;
}

.product-page .btn-add-cart:hover,
.product-page .btn-add-cart:focus-visible {
  background: linear-gradient(135deg, var(--orange-light), var(--red));
  color: var(--white);
}

/* =========================
   Cart: Drawer & Overlay
   ========================= */

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(10, 8, 7, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cart-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  background: var(--charcoal, #1a1512);
  background: #17130f;
  border-left: 1px solid rgba(244, 196, 95, 0.18);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.45);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(244, 196, 95, 0.14);
}

.cart-drawer-header h3 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0;
}

.cart-close {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--charcoal-light);
  color: var(--cream);
  font-size: 1rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
  padding: 2.5rem 0.5rem;
}

.cart-line-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(244, 196, 95, 0.1);
}

.cart-line-item:first-child {
  padding-top: 0;
}

.cart-line-name {
  color: var(--cream);
  font-weight: 800;
  font-size: 0.95rem;
}

.cart-line-meat {
  color: var(--orange-light);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.cart-line-price {
  color: var(--gold);
  font-weight: 900;
  font-family: var(--font-display);
  white-space: nowrap;
}

.cart-line-controls {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.3rem;
}

.cart-qty button {
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 999px;
  background: var(--charcoal-light);
  color: var(--cream);
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
}

.cart-qty span {
  min-width: 1.2rem;
  text-align: center;
  color: var(--cream);
  font-weight: 800;
  font-size: 0.9rem;
}

.cart-line-remove {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.cart-line-remove:hover {
  color: var(--red);
}

.cart-drawer-footer {
  padding: 1.25rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(244, 196, 95, 0.14);
  background: rgba(0, 0, 0, 0.15);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--cream);
  font-weight: 900;
  font-size: 1.15rem;
}

.cart-total-row span:last-child {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.btn-checkout {
  width: 100%;
}

.btn-checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.cart-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.5;
}

.cart-note a {
  color: var(--orange-light);
  font-weight: 700;
}

.cart-note--centered {
  margin-top: 1.25rem;
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
  }
}

.cart-count.bump {
  animation: cartBump 0.4s ease;
}

@keyframes cartBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* =========================
   Homepage Menu Cards (Regular/Spicy quick-add)
   ========================= */

.product-meta.centered {
  justify-content: center;
}

.flavor-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.flavor-card-icon {
  font-size: 1.3rem;
}

.flavor-card--chicken .flavor-card-header {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
}

.flavor-card--salmon .flavor-card-header {
  background: linear-gradient(135deg, #3d7f93, #285a68);
}

.flavor-card--turkey .flavor-card-header {
  background: linear-gradient(135deg, #8a5a30, #6b431f);
}

.flavor-variants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.flavor-variant {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.85rem 0.5rem;
  border: 1px solid rgba(244, 196, 95, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.flavor-variant .variant-name {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.flavor-variant .price {
  font-size: 1.35rem;
}

.flavor-add-btn {
  width: 100%;
  margin-bottom: 0.9rem;
}

.flavor-card-link {
  display: block;
  text-align: center;
  color: var(--orange-light);
  font-weight: 800;
  font-size: 0.85rem;
}

.flavor-card-link:hover {
  color: var(--gold);
}

/* =========================
   Product Tabs: Salad / Wrap Option Cards
   ========================= */

.product-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.product-option-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(244, 196, 95, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.option-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #100e0c;
}

.option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-option-card h3 {
  margin: 1.2rem 1.4rem 0.4rem;
  font-size: 1.4rem;
}

.option-description {
  margin: 0 1.4rem 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.option-variants {
  display: grid;
  gap: 0.6rem;
  margin: 0 1.4rem 1.4rem;
}

.option-variant {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(244, 196, 95, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.option-variant .variant-label {
  color: var(--cream);
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.option-variant .price {
  font-size: 1.1rem;
}

.product-page .option-variant .variant-label,
.section--warm .option-variant .variant-label {
  color: var(--cream);
}

.product-options-footer {
  margin-top: 2rem;
  text-align: center;
}

.product-options-footer .btn-order {
  margin-top: 0;
  width: 100%;
  max-width: 340px;
}

@media (max-width: 760px) {
  .product-options {
    grid-template-columns: 1fr;
  }

  .flavor-variants {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   Homepage Menu — Simple Clickable Tiles
   ========================= */

.flavor-grid--simple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flavor-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: 1.6rem 1.2rem;
  border: 1px solid rgba(255, 241, 210, 0.1);
  border-radius: var(--radius);
  background: var(--charcoal-light);
  box-shadow: var(--shadow);
  text-align: center;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.flavor-tile:hover,
.flavor-tile:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(242, 106, 33, 0.55);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(242, 106, 33, 0.12);
}

.flavor-tile-image {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid rgba(244, 196, 95, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.flavor-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.flavor-tile:hover .flavor-tile-image img,
.flavor-tile:focus-visible .flavor-tile-image img {
  transform: scale(1.08);
}

.flavor-tile-label {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 760px) {
  .flavor-grid--simple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .flavor-tile {
    padding: 1rem 0.6rem;
    gap: 0.6rem;
  }

  .flavor-tile-label {
    font-size: 0.95rem;
  }
}
