:root {
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 8px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, .18);
  --shadow-tight: 0 12px 32px rgba(0, 0, 0, .16);
  --page-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  letter-spacing: 0;
}

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

button, input {
  font: inherit;
}

.shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: none;
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: default;
}

.brand-logo {
  width: 76px;
  height: 76px;
  border-radius: 0;
  object-fit: contain;
  display: block;
  background: transparent;
  padding: 0;
  box-shadow: none;
  filter: contrast(1.28) drop-shadow(0 5px 10px rgba(23,16,15,.22));
}

.brand-word {
  display: grid;
  gap: 2px;
}

.brand-word strong {
  font-size: 15px;
  line-height: 1;
}

.brand-word small {
  font-size: 10px;
  line-height: 1;
  opacity: .72;
  font-weight: 850;
}

.mark {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 7px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.btn {
  border: 0;
  min-height: 44px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.btn.big {
  min-height: 54px;
  padding: 0 24px;
  font-size: 16px;
}

.hero {
  position: relative;
}

.hero-grid {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: 46px;
  align-items: center;
  padding: 56px 0 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  border-radius: 7px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1 {
  margin: 18px 0 0;
  font-size: clamp(44px, 6vw, 84px);
  line-height: .92;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.lead {
  margin: 22px 0 0;
  max-width: 680px;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.42;
  font-weight: 580;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 680px;
}

.metric {
  border-radius: 8px;
  padding: 16px;
}

.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 750;
}

.visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: end center;
}

.product-shot {
  position: relative;
  width: min(100%, 430px);
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, .34));
  z-index: 2;
}

.floating-card {
  position: absolute;
  z-index: 4;
  border-radius: 8px;
  padding: 15px;
  box-shadow: var(--shadow-tight);
  transform: translate3d(var(--float-x, 0px), var(--float-y, 0px), 0);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease;
}

.floating-card strong {
  display: block;
  font-size: 15px;
}

.floating-card span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

.gift-card {
  left: 0;
  bottom: 44px;
  width: 260px;
}

.ai-card {
  right: 0;
  top: 86px;
  width: 292px;
}

.chat-lines {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.bubble {
  width: fit-content;
  max-width: 100%;
  border-radius: 8px;
  padding: 9px 11px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.bubble.user {
  margin-left: auto;
}

.section {
  position: relative;
  padding: 76px 0;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--page-max), calc(100% - 40px));
  height: 1px;
  background: rgba(115, 87, 81, .18);
  transform: translateX(-50%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  max-width: 390px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.model-card {
  border-radius: 8px;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.model-media {
  height: 250px;
  display: grid;
  place-items: center;
  padding: 18px;
}

.model-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 25px rgba(0,0,0,.22));
}

.model-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}

.model-body h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  border-radius: 6px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 850;
}

.price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-size: 22px;
  font-weight: 950;
}

.compare {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
}

.compare-col {
  padding: 18px;
  min-height: 250px;
}

.compare-col h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.compare-col p {
  margin: 9px 0;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.recipe-band {
  border-radius: 8px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: center;
}

.recipe-band h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 58px);
  line-height: .98;
}

.recipe-band p {
  margin: 15px 0 0;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 650;
}

.recipe-stack {
  display: grid;
  gap: 10px;
}

.recipe-item {
  border-radius: 8px;
  min-height: 66px;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 850;
}

.recipe-item small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 650;
}

.sticky-chat {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  width: 310px;
  max-width: calc(100vw - 36px);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.chat-panel {
  border-radius: 8px;
  overflow: hidden;
}

.chat-launch {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  color: #fff8ed;
  background: #17100f;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.chat-launch strong,
.chat-launch small {
  display: block;
  text-align: left;
}

.chat-launch strong {
  font-size: 14px;
  line-height: 1;
}

.chat-launch small {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 800;
  opacity: .82;
}

.sticky-chat.is-collapsed {
  width: auto;
  overflow: visible;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.sticky-chat.is-collapsed .chat-panel {
  display: none;
}

.sticky-chat.is-collapsed .chat-launch {
  display: inline-flex;
}

.chat-head {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
}

.chat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.chat-head strong {
  display: block;
  font-size: 13px;
}

.chat-head span {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
}

.chat-close {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  color: currentColor;
  background: rgba(255,255,255,.1);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.chat-body {
  padding: 10px 12px 0;
}

.quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.quick span {
  min-height: 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 820;
}

.chat-input {
  display: flex;
  gap: 7px;
  padding: 10px 12px 12px;
}

.chat-input input {
  min-width: 0;
  flex: 1;
  border: 0;
  min-height: 36px;
  border-radius: 7px;
  padding: 0 12px;
  outline: none;
  font-size: 12px;
  font-weight: 650;
}

.chat-input button {
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  font-weight: 950;
  cursor: pointer;
}

.mobile-bar {
  display: none;
}

@media (max-width: 980px) {
  .links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .visual {
    min-height: 560px;
  }

  .model-grid,
  .compare,
  .recipe-band {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-chat {
    display: block;
    right: 12px;
    bottom: 12px;
    width: min(310px, calc(100vw - 24px));
  }

  .sticky-chat.is-collapsed {
    width: auto;
  }

  .mobile-bar {
    display: none;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 24px, var(--page-max));
  }

  .nav {
    min-height: 72px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-word small {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  h1 {
    font-size: 43px;
  }

  .hero-grid {
    gap: 22px;
    padding-top: 32px;
  }

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

  .visual {
    min-height: 460px;
  }

  .product-shot {
    max-height: 470px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .gift-card,
  .ai-card {
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }
}

/* SmokeTech */
.theme-tech {
  color: #f5f2e9;
  background: #090908;
}

.theme-tech .topbar {
  background: rgba(9, 9, 8, .74);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.theme-tech .mark,
.theme-tech .btn.primary,
.theme-tech .chat-input button {
  color: #100f0d;
  background: #f0a331;
}

.theme-tech .btn.secondary,
.theme-tech .icon-btn {
  color: #f5f2e9;
  background: rgba(255,255,255,.1);
}

.theme-tech .hero {
  background:
    linear-gradient(90deg, #090908 0%, rgba(9,9,8,.88) 48%, rgba(9,9,8,.36) 100%),
    url("assets/hero-tech-bg.webp") center / cover no-repeat;
}

.theme-tech .eyebrow,
.theme-tech .metric,
.theme-tech .floating-card,
.theme-tech .model-card,
.theme-tech .compare-col,
.theme-tech .sticky-chat,
.theme-tech .mobile-bar {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
}

.theme-tech .lead,
.theme-tech .section-head p,
.theme-tech .floating-card span,
.theme-tech .metric span {
  color: #c9c0b2;
}

.theme-tech .model-media {
  background: linear-gradient(145deg, #1d1a16, #0d0c0b);
}

.theme-tech .tag,
.theme-tech .quick span,
.theme-tech .recipe-item {
  color: #21180b;
  background: #f4c979;
}

.theme-tech .recipe-band {
  background: linear-gradient(135deg, #f0a331, #f2d187 58%, #e7ece6);
  color: #11100e;
}

.theme-tech .chat-head {
  background: #f0a331;
  color: #100f0d;
}

.theme-tech .chat-dot {
  background: #2b7c42;
}

.theme-tech .bubble {
  background: rgba(255,255,255,.11);
}

.theme-tech .bubble.user {
  color: #100f0d;
  background: #f0a331;
}

.theme-tech .chat-input input {
  color: #f5f2e9;
  background: rgba(255,255,255,.1);
}

/* Recipe Club */
.theme-recipe {
  color: #241f1b;
  background: #fff8ef;
}

.theme-recipe .topbar {
  background: rgba(255, 248, 239, .82);
  border-bottom: 1px solid rgba(88, 54, 29, .12);
}

.theme-recipe .mark,
.theme-recipe .btn.primary,
.theme-recipe .chat-input button {
  color: #fff9ef;
  background: #b43c18;
}

.theme-recipe .btn.secondary,
.theme-recipe .icon-btn {
  color: #3d2a22;
  background: #f1dfc7;
}

.theme-recipe .hero {
  background:
    linear-gradient(90deg, rgba(255,248,239,.98) 0%, rgba(255,248,239,.9) 50%, rgba(255,248,239,.28) 100%),
    url("assets/hero-recipe-bg.webp") center / cover no-repeat;
}

.theme-recipe .eyebrow,
.theme-recipe .metric,
.theme-recipe .model-card,
.theme-recipe .compare-col,
.theme-recipe .sticky-chat,
.theme-recipe .mobile-bar {
  background: #fffdf8;
  border: 1px solid #ead8c1;
}

.theme-recipe .floating-card {
  background: #3b241a;
  color: #fff8ef;
}

.theme-recipe .lead,
.theme-recipe .section-head p,
.theme-recipe .floating-card span,
.theme-recipe .metric span {
  color: #72533d;
}

.theme-recipe .model-media {
  background: linear-gradient(145deg, #f3e0c6, #fff8ef);
}

.theme-recipe .tag,
.theme-recipe .quick span,
.theme-recipe .recipe-item {
  color: #3b241a;
  background: #f1d18e;
}

.theme-recipe .recipe-band {
  background: linear-gradient(135deg, #2c211b, #78350f 54%, #c84a20);
  color: #fff8ef;
}

.theme-recipe .chat-head {
  background: #2c211b;
  color: #fff8ef;
}

.theme-recipe .chat-dot {
  background: #7bd37b;
}

.theme-recipe .bubble {
  background: #f1dfc7;
}

.theme-recipe .bubble.user {
  color: #fff8ef;
  background: #b43c18;
}

.theme-recipe .chat-input input {
  background: #f5eadb;
  color: #241f1b;
}

/* Retail */
.theme-retail {
  color: #101827;
  background: #f7f9fc;
}

.theme-retail .topbar {
  background: rgba(247,249,252,.88);
  border-bottom: 1px solid #dbe4f0;
}

.theme-retail .mark,
.theme-retail .btn.primary,
.theme-retail .chat-input button {
  background: #2563eb;
  color: #fff;
}

.theme-retail .btn.secondary,
.theme-retail .icon-btn {
  background: #e7edf6;
  color: #101827;
}

.theme-retail .hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(249,115,22,.16), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #edf3fb 55%, #fff4eb 100%);
}

.theme-retail .eyebrow,
.theme-retail .metric,
.theme-retail .floating-card,
.theme-retail .model-card,
.theme-retail .compare-col,
.theme-retail .sticky-chat,
.theme-retail .mobile-bar {
  background: #fff;
  border: 1px solid #dce5ef;
}

.theme-retail .lead,
.theme-retail .section-head p,
.theme-retail .floating-card span,
.theme-retail .metric span {
  color: #526173;
}

.theme-retail .model-media {
  background: linear-gradient(145deg, #eef4fb, #fff);
}

.theme-retail .tag,
.theme-retail .quick span,
.theme-retail .recipe-item {
  color: #0e2a5f;
  background: #dbeafe;
}

.theme-retail .recipe-band {
  background: linear-gradient(135deg, #0f172a, #2563eb 54%, #f97316);
  color: #fff;
}

.theme-retail .chat-head {
  background: #0f172a;
  color: #fff;
}

.theme-retail .chat-dot {
  background: #22c55e;
}

.theme-retail .bubble {
  background: #e7edf6;
}

.theme-retail .bubble.user {
  background: #2563eb;
  color: #fff;
}

.theme-retail .chat-input input {
  background: #edf2f7;
  color: #101827;
}

/* Industrial */
.theme-industrial {
  color: #edf2f0;
  background: #111413;
}

.theme-industrial .topbar {
  background: rgba(17,20,19,.82);
  border-bottom: 1px solid rgba(219, 226, 222, .12);
}

.theme-industrial .mark,
.theme-industrial .btn.primary,
.theme-industrial .chat-input button {
  color: #07100c;
  background: #8ee2a8;
}

.theme-industrial .btn.secondary,
.theme-industrial .icon-btn {
  color: #edf2f0;
  background: rgba(142,226,168,.12);
}

.theme-industrial .hero {
  background:
    linear-gradient(90deg, #111413 0%, rgba(17,20,19,.9) 50%, rgba(17,20,19,.35) 100%),
    url("assets/hero-industrial-bg.webp") center / cover no-repeat;
}

.theme-industrial .eyebrow,
.theme-industrial .metric,
.theme-industrial .floating-card,
.theme-industrial .model-card,
.theme-industrial .compare-col,
.theme-industrial .sticky-chat,
.theme-industrial .mobile-bar {
  background: rgba(237,242,240,.08);
  border: 1px solid rgba(237,242,240,.14);
}

.theme-industrial .lead,
.theme-industrial .section-head p,
.theme-industrial .floating-card span,
.theme-industrial .metric span {
  color: #aab7b0;
}

.theme-industrial .model-media {
  background: linear-gradient(145deg, #242a28, #131716);
}

.theme-industrial .tag,
.theme-industrial .quick span,
.theme-industrial .recipe-item {
  color: #07100c;
  background: #8ee2a8;
}

.theme-industrial .recipe-band {
  background: linear-gradient(135deg, #dce5df, #8ee2a8 54%, #f4bf4f);
  color: #111413;
}

.theme-industrial .chat-head {
  background: #8ee2a8;
  color: #07100c;
}

.theme-industrial .chat-dot {
  background: #0a8f43;
}

.theme-industrial .bubble {
  background: rgba(237,242,240,.1);
}

.theme-industrial .bubble.user {
  color: #07100c;
  background: #8ee2a8;
}

.theme-industrial .chat-input input {
  color: #edf2f0;
  background: rgba(237,242,240,.1);
}

/* Bold */
.theme-bold {
  color: #111111;
  background: #f4f0e8;
}

.theme-bold .topbar {
  background: rgba(244,240,232,.84);
  border-bottom: 2px solid #111;
}

.theme-bold .mark,
.theme-bold .btn.primary,
.theme-bold .chat-input button {
  color: #fff;
  background: #111;
}

.theme-bold .btn.secondary,
.theme-bold .icon-btn {
  color: #111;
  background: #ffcf24;
  border: 2px solid #111;
}

.theme-bold .hero {
  background:
    linear-gradient(118deg, #f4f0e8 0%, #f4f0e8 52%, #ffcf24 52%, #ffcf24 69%, #f0642f 69%, #f0642f 100%);
}

.theme-bold .eyebrow,
.theme-bold .metric,
.theme-bold .floating-card,
.theme-bold .model-card,
.theme-bold .compare-col,
.theme-bold .sticky-chat,
.theme-bold .mobile-bar {
  background: #fffaf0;
  border: 2px solid #111;
  box-shadow: 8px 8px 0 #111;
}

.theme-bold .lead,
.theme-bold .section-head p,
.theme-bold .floating-card span,
.theme-bold .metric span {
  color: #4c4038;
}

.theme-bold .model-media {
  background: #f0642f;
}

.theme-bold .tag,
.theme-bold .quick span,
.theme-bold .recipe-item {
  color: #111;
  background: #ffcf24;
  border: 2px solid #111;
}

.theme-bold .recipe-band {
  background: #111;
  color: #fffaf0;
  border: 2px solid #111;
}

.theme-bold .chat-head {
  background: #111;
  color: #fffaf0;
}

.theme-bold .chat-dot {
  background: #ffcf24;
}

.theme-bold .bubble {
  background: #f4f0e8;
  border: 2px solid #111;
}

.theme-bold .bubble.user {
  background: #ffcf24;
}

.theme-bold .chat-input input {
  border: 2px solid #111;
  background: #fffaf0;
  color: #111;
}

.theme-bold h1 {
  font-size: clamp(50px, 8vw, 112px);
  line-height: .82;
  text-transform: uppercase;
}

/* Index */
.index-page {
  background: #101216;
  color: #f7f2e8;
}

.index-hero {
  min-height: 100vh;
  padding: 44px 0;
  display: grid;
  align-items: center;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.index-card {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #1b1e24;
  display: flex;
  flex-direction: column;
}

.index-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.index-card div {
  padding: 18px;
}

.index-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1;
}

.index-card p {
  color: #b8c0c9;
  font-weight: 650;
  line-height: 1.4;
}

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

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

/* Traeger-inspired product storytelling */
.theme-traeger {
  --earth-red: #8c1c13;
  --earth-clay: #bf4342;
  --earth-ivory: #e7d7c1;
  --earth-taupe: #a78a7f;
  --earth-brown: #735751;
  --earth-ink: #17100f;
  --earth-paper: #f4eadb;
  color: var(--earth-ink);
  background: var(--earth-ivory);
}

.theme-traeger .topbar {
  background: rgba(231, 215, 193, .9);
  border-bottom: 1px solid rgba(115, 87, 81, .28);
}

.theme-traeger .mark {
  background: var(--earth-ink);
  color: var(--earth-ivory);
}

.theme-traeger .btn.primary,
.theme-traeger .chat-input button {
  background: var(--earth-red);
  color: #fff8ed;
}

.theme-traeger .btn.secondary,
.theme-traeger .icon-btn {
  background: var(--earth-brown);
  color: #fff8ed;
}

.theme-traeger .hero {
  background:
    linear-gradient(100deg, var(--earth-ivory) 0%, #f0e4d2 52%, var(--earth-brown) 52%, #2b1916 100%);
}

.theme-traeger .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, .96fr);
  gap: 34px;
}

.theme-traeger h1 {
  max-width: 650px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: .96;
}

.theme-traeger .eyebrow {
  background: var(--earth-red);
  color: #fff8ed;
}

.theme-traeger .lead {
  color: #5f4741;
}

.theme-traeger .metric,
.theme-traeger .model-card,
.theme-traeger .compare-col,
.theme-traeger .sticky-chat,
.theme-traeger .floating-card {
  background: var(--earth-paper);
  border: 1px solid rgba(115, 87, 81, .28);
}

.theme-traeger .metric,
.theme-traeger .floating-card,
.lineup-card,
.catalog-card,
.catalog-hero-card,
.modal-card,
.food-card,
.use-card,
.chat-promo,
.function-stack article,
.support-card,
.recipe-band,
.ai-box,
.decision-main {
  box-shadow: 0 18px 42px rgba(71, 45, 38, .12);
}

.theme-traeger .metric span,
.theme-traeger .section-head p,
.theme-traeger .floating-card span {
  color: #735751;
}

.traeger-visual {
  min-height: 680px;
  place-items: center;
}

.smoker-wrap {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  position: relative;
  z-index: 3;
  max-height: 690px;
  width: min(84%, 520px);
  filter: drop-shadow(0 32px 30px rgba(0,0,0,.42));
  animation: productBreath 5s ease-in-out infinite;
  will-change: transform;
}

.traeger-product {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-height: 690px;
  object-fit: contain;
}

.oven-window-fx {
  position: absolute;
  z-index: 3;
  left: 43.5%;
  top: 51.2%;
  width: 14.6%;
  height: 11.2%;
  border-radius: 4px;
  overflow: hidden;
  pointer-events: none;
  opacity: .95;
  background: transparent;
  box-shadow:
    inset 0 0 18px rgba(255,213,134,.24),
    inset 0 -12px 18px rgba(255,132,41,.22);
  clip-path: inset(4% 5% 6% 5% round 4px);
  mix-blend-mode: screen;
  animation: ovenGlow 2.8s ease-in-out infinite;
}

.oven-window-fx::before,
.oven-window-fx::after,
.oven-window-fx i {
  content: "";
  position: absolute;
  pointer-events: none;
}

.oven-window-fx::before {
  left: 10%;
  right: 10%;
  bottom: 2%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,232,146,.98), rgba(255,145,52,.62) 48%, rgba(255,91,34,.2) 70%, transparent 78%);
  animation: emberPulse 1.6s ease-in-out infinite;
}

.oven-window-fx::after {
  left: 9%;
  top: 8%;
  width: 82%;
  height: 92%;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.28) 46%, transparent 82%),
    radial-gradient(ellipse at center, rgba(255,255,255,.22), transparent 66%);
  transform: translateY(22px);
  animation: steamInside 3.8s ease-in-out infinite;
}

.oven-window-fx i {
  bottom: 5%;
  width: 15%;
  height: 68%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.46), rgba(255,255,255,.1) 54%, rgba(255,255,255,0));
  animation: steamInside 4.2s ease-in-out infinite;
}

.oven-window-fx i:nth-child(1) { left: 24%; animation-delay: -.7s; }
.oven-window-fx i:nth-child(2) { left: 45%; height: 66%; animation-delay: -1.8s; }
.oven-window-fx i:nth-child(3) { left: 64%; height: 50%; animation-delay: -2.8s; }

.product-halo {
  --hero-halo-x: 0px;
  --hero-halo-y: 0px;
  position: absolute;
  width: min(86%, 560px);
  height: 72%;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(191,67,66,.34), rgba(231,215,193,.12)),
    linear-gradient(180deg, rgba(23,16,15,.4), rgba(23,16,15,.08));
  clip-path: polygon(10% 0, 100% 7%, 88% 100%, 0 92%);
  transform: translate3d(var(--hero-halo-x), var(--hero-halo-y), 0) translateY(24px) rotate(-2deg);
  animation: haloPulse 7s ease-in-out infinite;
}

.smoke-field {
  position: absolute;
  inset: 10% 6% auto auto;
  width: 440px;
  height: 420px;
  pointer-events: none;
  overflow: hidden;
}

.smoke-field i {
  position: absolute;
  bottom: 0;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.3) 0 26%, rgba(255,255,255,.14) 42%, transparent 72%);
  filter: none;
  animation: smokeRise 7s ease-in-out infinite;
}

.smoke-field i:nth-child(1) { left: 40px; animation-delay: 0s; }
.smoke-field i:nth-child(2) { left: 130px; width: 120px; height: 120px; animation-delay: 1.4s; }
.smoke-field i:nth-child(3) { left: 250px; width: 92px; height: 92px; animation-delay: 2.7s; }
.smoke-field i:nth-child(4) { left: 320px; width: 70px; height: 70px; animation-delay: 4s; }

.lineup-carousel {
  overflow: hidden;
  padding: 2px 2px 24px;
}

.lineup {
  --lineup-gap: 14px;
  display: flex;
  gap: var(--lineup-gap);
  align-items: stretch;
  will-change: transform;
}

.lineup.is-sliding {
  transition: transform .72s cubic-bezier(.22, .78, .22, 1);
}

.lineup-card {
  flex: 0 0 calc((100% - 42px) / 4);
  min-height: 350px;
  border-radius: 8px;
  background: var(--earth-paper);
  border: 1px solid rgba(115,87,81,.25);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.lineup-card img {
  height: 220px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.22));
  transition: transform .35s ease;
}

.lineup-card:hover img {
  transform: translateY(-8px) scale(1.04);
}

.lineup-card h3 {
  margin: 12px 0 8px;
  font-size: 23px;
}

.lineup-card p {
  margin: 0;
  color: #735751;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 720;
}

.products-section {
  background:
    linear-gradient(180deg, rgba(167,138,127,.22), rgba(167,138,127,.12)),
    #d7c4aa;
}

.lineup-section {
  background:
    linear-gradient(180deg, #eadcc8 0%, #e7d7c1 100%);
}

.decision-section,
.use-section {
  background:
    linear-gradient(180deg, rgba(23,16,15,.06), rgba(23,16,15,0) 28%),
    linear-gradient(180deg, #cfb59b 0%, #e4d2ba 100%);
}

.flavor-section {
  background:
    radial-gradient(circle at 78% 28%, rgba(140,28,19,.18), transparent 34%),
    linear-gradient(180deg, #e7d7c1 0%, #d9c6ad 100%);
}

.ai-section,
.chat-promo-section {
  background:
    linear-gradient(180deg, #cdb39d 0%, #e7d7c1 100%);
}

.support-section {
  background:
    linear-gradient(180deg, #f0e4d2 0%, #e3d0b7 100%);
}

.lineup-section::after,
.use-section::after,
.chat-promo-section::after,
.ai-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(var(--page-max), calc(100% - 40px));
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(140,28,19,.42), transparent);
  transform: translateX(-50%);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.food-card {
  position: relative;
  min-height: 390px;
  border-radius: 8px;
  padding: 18px;
  overflow: hidden;
  background: #f6ead8;
  border: 1px solid rgba(115,87,81,.24);
  box-shadow: 0 16px 36px rgba(115,87,81,.12);
}

.food-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 6px;
  padding: 0 9px;
  background: var(--earth-red);
  color: #fff8ed;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.food-card h3 {
  margin: 14px 0 8px;
  font-size: 28px;
  line-height: 1;
}

.food-card p {
  margin: 0;
  color: #735751;
  font-weight: 680;
  line-height: 1.42;
}

.food-visual {
  position: relative;
  height: 170px;
  margin: -2px -2px 18px;
  border-radius: 8px;
  overflow: hidden;
  background: #8c1c13;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}

.food-visual::before,
.food-visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.food-card.brisket .food-visual {
  background:
    linear-gradient(130deg, rgba(255,255,255,.2), transparent 34%),
    repeating-linear-gradient(105deg, #7a1711 0 18px, #bf4342 18px 32px, #e7d7c1 32px 37px);
}

.food-card.brisket .food-visual::after {
  inset: 26px 34px;
  border-radius: 36px 16px 30px 18px;
  background:
    linear-gradient(145deg, rgba(255,222,179,.85), rgba(255,222,179,0) 18%),
    repeating-linear-gradient(18deg, #682019 0 20px, #9a2b21 20px 36px, #d88a65 36px 41px);
  transform: rotate(-8deg);
}

.food-card.fish .food-visual {
  background: linear-gradient(135deg, #735751, #a78a7f);
}

.food-card.fish .food-visual::after {
  inset: 44px 24px 44px 34px;
  border-radius: 50% 44% 44% 50%;
  background:
    radial-gradient(circle at 24% 50%, #f5e7d2 0 6px, transparent 7px),
    repeating-linear-gradient(90deg, #8c1c13 0 13px, #bf4342 13px 22px, #e7d7c1 22px 26px);
  clip-path: polygon(0 50%, 14% 12%, 82% 0, 100% 50%, 82% 100%, 14% 88%);
}

.food-card.chicken .food-visual {
  background: linear-gradient(135deg, #e7d7c1, #a78a7f);
}

.food-card.chicken .food-visual::after {
  inset: 30px 46px;
  border-radius: 45% 55% 48% 52%;
  background:
    radial-gradient(circle at 70% 28%, rgba(255,244,220,.75), transparent 14%),
    linear-gradient(145deg, #bf4342, #8c1c13 60%, #5a231e);
  transform: rotate(8deg);
}

.food-card.sausage .food-visual {
  background: linear-gradient(135deg, #2b1916, #735751);
}

.food-card.sausage .food-visual::after {
  inset: 34px 24px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, #8c1c13 0 42px, #bf4342 42px 76px, #e7d7c1 76px 82px);
  box-shadow: 0 34px 0 rgba(140,28,19,.72);
}

.food-card.cheese .food-visual {
  background: linear-gradient(135deg, #735751, #2b1916);
}

.food-card.cheese .food-visual::after {
  inset: 34px 46px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 34%, rgba(115,87,81,.5) 0 12px, transparent 13px),
    radial-gradient(circle at 68% 58%, rgba(115,87,81,.38) 0 16px, transparent 17px),
    linear-gradient(135deg, #e8bc6b, #f7d98e);
  transform: skewX(-9deg) rotate(-3deg);
}

.food-card.market .food-visual {
  background:
    linear-gradient(135deg, rgba(23,16,15,.22), rgba(23,16,15,.04)),
    repeating-linear-gradient(90deg, #8c1c13 0 26px, #bf4342 26px 44px, #e7d7c1 44px 52px);
}

.food-card.market .food-visual::after {
  inset: 34px 34px 26px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.45)),
    repeating-linear-gradient(0deg, transparent 0 26px, rgba(23,16,15,.45) 26px 30px);
  border: 8px solid rgba(23,16,15,.35);
}

.food-card .food-visual {
  background-size: cover;
  background-position: center;
}

.food-card .food-visual::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(23,16,15,.04), rgba(23,16,15,.32));
}

.food-card .food-visual::after {
  display: none;
}

.food-card.brisket .food-visual {
  background:
    linear-gradient(180deg, rgba(23,16,15,.02), rgba(23,16,15,.32)),
    url("assets/new-food-ribs.png") center / cover no-repeat;
}

.food-card.fish .food-visual {
  background:
    linear-gradient(180deg, rgba(23,16,15,.02), rgba(23,16,15,.32)),
    url("assets/new-food-fish-plate.png") center / cover no-repeat;
}

.food-card.chicken .food-visual {
  background:
    linear-gradient(180deg, rgba(23,16,15,.02), rgba(23,16,15,.32)),
    url("assets/new-food-chicken-real.png") center / cover no-repeat;
}

.food-card.sausage .food-visual {
  background:
    linear-gradient(180deg, rgba(23,16,15,.02), rgba(23,16,15,.36)),
    url("assets/new-food-sausage.png") center / cover no-repeat;
}

.food-card.cheese .food-visual {
  background:
    linear-gradient(180deg, rgba(23,16,15,.02), rgba(23,16,15,.32)),
    url("assets/new-food-cheese-real.png") center / cover no-repeat;
}

.food-card.market .food-visual {
  background:
    linear-gradient(180deg, rgba(23,16,15,.02), rgba(23,16,15,.36)),
    url("assets/new-food-smoking-chamber.png") center / cover no-repeat;
}

.use-head {
  display: grid;
  grid-template-columns: minmax(180px, .38fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.use-head h2 {
  max-width: 920px;
}

.use-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: minmax(250px, 1fr) minmax(250px, 1fr);
  gap: 18px;
}

.use-card {
  position: relative;
  min-height: 250px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  color: #fff8ed;
  background: var(--earth-ink);
  isolation: isolate;
  box-shadow: 0 26px 70px rgba(71,45,38,.2);
}

.use-card:first-child {
  grid-row: 1 / span 2;
}

.use-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1.01);
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}

.use-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(23,16,15,.02) 12%, rgba(23,16,15,.34) 54%, rgba(23,16,15,.82) 100%),
    linear-gradient(90deg, rgba(140,28,19,.42), transparent 58%);
}

.use-card-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.use-card-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--earth-red);
  color: #fff8ed;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.use-card-copy h3 {
  margin: 14px 0 0;
  max-width: 520px;
  color: #fff8ed;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: .96;
}

.use-card-copy p {
  margin: 12px 0 0;
  max-width: 560px;
  color: #f4e5d1;
  font-weight: 760;
  line-height: 1.38;
}

.use-grid .use-card:not(:first-child) .use-card-copy {
  max-width: 310px;
}

.use-card:hover img {
  transform: scale(1.055);
}

.decision-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.decision-main,
.function-stack article {
  border-radius: 8px;
  border: 1px solid rgba(115,87,81,.24);
}

.decision-main {
  padding: 32px;
  background:
    radial-gradient(circle at 92% 12%, rgba(191,67,66,.24), transparent 32%),
    var(--earth-ink);
  color: #fff8ed;
}

.decision-main h2 {
  margin: 20px 0 0;
  font-size: clamp(36px, 4.7vw, 64px);
  line-height: .94;
}

.decision-main p {
  margin: 18px 0 0;
  max-width: 640px;
  color: #ead9c4;
  font-weight: 650;
  line-height: 1.48;
}

.decision-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.decision-steps div {
  min-height: 112px;
  border-radius: 8px;
  padding: 14px;
  background: rgba(231,215,193,.1);
  border: 1px solid rgba(231,215,193,.18);
}

.decision-steps strong {
  display: block;
  font-size: 28px;
  color: #f6d1a0;
}

.decision-steps span {
  display: block;
  margin-top: 12px;
  font-weight: 760;
  line-height: 1.25;
}

.function-stack {
  display: grid;
  gap: 14px;
}

.function-stack article {
  padding: 24px;
  background: var(--earth-paper);
}

.function-stack h3 {
  margin: 0;
  font-size: 26px;
}

.function-stack p {
  margin: 10px 0 0;
  color: #735751;
  font-weight: 650;
  line-height: 1.42;
}

.flavor-stage {
  position: relative;
  border-radius: 8px;
  min-height: 500px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23,16,15,.96), rgba(140,28,19,.68) 58%, rgba(23,16,15,.2)),
    url("assets/new-food-smoking-chamber.png") center / cover no-repeat;
  color: #fff8ed;
  isolation: isolate;
}

.flavor-copy {
  position: relative;
  z-index: 4;
  width: min(620px, calc(100% - 40px));
  padding: 46px;
}

.flavor-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 76px);
  line-height: .9;
}

.flavor-copy p {
  max-width: 500px;
  color: #ead9c4;
  font-weight: 650;
  line-height: 1.45;
}

.meat-orbit {
  position: absolute;
  inset: 0 0 0 46%;
  overflow: hidden;
  z-index: 3;
}

.meat-card {
  --card-scale: 1;
  --card-rotate: 0deg;
  position: absolute;
  top: 170px;
  right: -340px;
  width: 238px;
  height: 118px;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.2);
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.04)),
    repeating-linear-gradient(110deg, #8c1c13 0 18px, #bf4342 18px 30px, #e7d7c1 30px 34px);
  box-shadow: 0 26px 54px rgba(0,0,0,.35);
  transform: translate3d(0, 0, 0) scale(var(--card-scale)) rotate(var(--card-rotate));
  animation: meatFloatLine 26s linear infinite;
}

.meat-card strong,
.meat-card span {
  position: relative;
  z-index: 2;
  display: block;
  text-shadow: 0 2px 10px rgba(0,0,0,.42);
}

.meat-card strong {
  font-size: 20px;
}

.meat-card span {
  margin-top: 8px;
  color: #fff1d8;
  font-size: 12px;
  font-weight: 760;
}

.meat-card:nth-child(1) {
  animation-delay: 0s;
  background:
    linear-gradient(90deg, rgba(23,16,15,.24), rgba(23,16,15,0)),
    url("assets/new-food-ribs.png") center / cover no-repeat;
}

.meat-card:nth-child(2) {
  animation-delay: -5.2s;
  background:
    linear-gradient(90deg, rgba(23,16,15,.54), rgba(23,16,15,.08)),
    url("assets/new-food-fish-plate.png") center / cover no-repeat;
}

.meat-card:nth-child(3) {
  animation-delay: -10.4s;
  background:
    linear-gradient(90deg, rgba(23,16,15,.58), rgba(23,16,15,.08)),
    url("assets/new-food-sausage.png") center / cover no-repeat;
}

.meat-card:nth-child(4) {
  animation-delay: -15.6s;
  background:
    linear-gradient(90deg, rgba(23,16,15,.58), rgba(23,16,15,.08)),
    url("assets/new-food-cheese-real.png") center / cover no-repeat;
}

.meat-card:nth-child(5) {
  animation-delay: -20.8s;
  background:
    linear-gradient(90deg, rgba(23,16,15,.58), rgba(23,16,15,.08)),
    url("assets/new-food-chicken-real.png") center / cover no-repeat;
}

.ai-panel {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 18px;
  align-items: stretch;
}

.ai-box {
  border-radius: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 10%, rgba(191,67,66,.2), transparent 36%),
    var(--earth-ink);
  color: #fff8ed;
  min-height: 370px;
}

.ai-box h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: .98;
}

.ai-box p {
  color: #ead9c4;
  line-height: 1.45;
  font-weight: 650;
}

.ai-chat-demo {
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 270px;
}

.ai-chat-demo .bubble {
  background: #ead9c4;
  color: #241713;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.ai-chat-demo .bubble.user {
  background: var(--earth-red);
  color: #fff8ed;
}

.chat-promo {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .7fr);
  gap: 22px;
  align-items: stretch;
  border-radius: 8px;
  padding: 34px;
  color: #fff8ed;
  background:
    radial-gradient(circle at 82% 18%, rgba(191,67,66,.32), transparent 34%),
    linear-gradient(135deg, #17100f 0%, #241311 48%, #8c1c13 100%);
  border: 1px solid rgba(231,215,193,.22);
  overflow: hidden;
  position: relative;
}

.chat-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255,255,255,.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 90px);
}

.chat-promo-copy,
.chat-promo-demo {
  position: relative;
  z-index: 1;
}

.chat-promo-copy {
  align-self: center;
}

.chat-promo-copy h2 {
  margin: 18px 0 0;
  max-width: 760px;
  color: #fff8ed;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .94;
}

.chat-promo-copy p {
  margin: 20px 0 0;
  max-width: 680px;
  color: #f0dfc8;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 760;
  line-height: 1.35;
}

.chat-promo-copy .btn {
  margin-top: 26px;
}

.chat-promo-demo {
  align-self: stretch;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 330px;
  border-radius: 8px;
  overflow: hidden;
  background: #f4eadb;
  color: #17100f;
  box-shadow: 0 22px 54px rgba(0,0,0,.28);
}

.chat-demo-head {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #17100f;
  color: #fff8ed;
}

.chat-demo-body {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 16px;
}

.chat-demo-body .bubble {
  background: #ead9c4;
  color: #241713;
}

.chat-demo-body .bubble.user {
  justify-self: end;
  background: var(--earth-red);
  color: #fff8ed;
}

.catalog-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(140,28,19,.16), transparent 28%),
    linear-gradient(180deg, #e7d7c1 0%, #d6bea4 52%, #e7d7c1 100%);
}

.catalog-hero {
  padding: 78px 0 38px;
  background:
    linear-gradient(180deg, rgba(23,16,15,.04), transparent 58%),
    #e7d7c1;
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 26px;
  align-items: end;
}

.catalog-hero h1 {
  margin: 18px 0 0;
  max-width: 920px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .92;
}

.catalog-hero p {
  margin: 22px 0 0;
  max-width: 720px;
  color: #735751;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 740;
  line-height: 1.38;
}

.catalog-hero-card {
  border-radius: 8px;
  padding: 22px;
  color: #fff8ed;
  background:
    radial-gradient(circle at 92% 14%, rgba(191,67,66,.36), transparent 32%),
    linear-gradient(135deg, #17100f 0%, #351815 100%);
  border: 1px solid rgba(231,215,193,.22);
}

.catalog-hero-card strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.catalog-hero-card span {
  display: block;
  margin-top: 12px;
  color: #f0dfc8;
  font-weight: 720;
  line-height: 1.45;
}

.catalog-section {
  padding-top: 34px;
  background:
    linear-gradient(180deg, #d6bea4 0%, #e7d7c1 100%);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalog-card {
  display: grid;
  grid-template-rows: 310px 1fr;
  min-height: 570px;
  border-radius: 8px;
  overflow: hidden;
  background: #f4eadb;
  border: 1px solid rgba(115,87,81,.24);
}

.catalog-media {
  border: 0;
  width: 100%;
  height: 100%;
  padding: 22px;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 56%, rgba(140,28,19,.14), transparent 34%),
    linear-gradient(180deg, #fff4e6 0%, #ead8c1 100%);
}

.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0,0,0,.24));
  transition: transform .42s cubic-bezier(.2, .8, .2, 1), filter .42s ease;
}

.catalog-card:hover .catalog-media img {
  transform: translateY(-10px) scale(1.05);
  filter: drop-shadow(0 30px 28px rgba(0,0,0,.3));
}

.catalog-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.catalog-body span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 10px;
  background: var(--earth-red);
  color: #fff8ed;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.catalog-body h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.catalog-body p {
  margin: 0;
  color: #735751;
  font-weight: 700;
  line-height: 1.42;
}

.catalog-price {
  margin-top: auto;
  color: var(--earth-ink);
  font-size: 25px;
  font-weight: 950;
}

.package-preview {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.package-preview strong {
  color: var(--earth-brown);
  font-size: 13px;
  font-weight: 950;
}

.package-preview div {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.package-preview span,
.package-preview small {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(140,28,19,.1);
  color: var(--earth-red);
  font-size: 11px;
  font-weight: 950;
  text-transform: none;
  letter-spacing: 0;
}

.catalog-body .btn {
  width: 100%;
  margin-top: 4px;
}

.model-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}

.model-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23,16,15,.68);
}

.modal-card {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(86vh, 760px);
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
  overflow: auto;
  border-radius: 8px;
  color: #fff8ed;
  background:
    radial-gradient(circle at 20% 20%, rgba(191,67,66,.18), transparent 32%),
    linear-gradient(135deg, #17100f 0%, #281411 52%, #8c1c13 100%);
  border: 1px solid rgba(231,215,193,.22);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  color: #fff8ed;
  background: rgba(255,255,255,.12);
  font-size: 28px;
  line-height: 1;
}

.modal-image-wrap {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 58%, rgba(231,215,193,.22), transparent 38%),
    linear-gradient(180deg, rgba(255,248,237,.08), rgba(255,248,237,.02));
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 32px 28px rgba(0,0,0,.42));
}

.modal-copy {
  padding: 42px;
}

.modal-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 4vw, 64px);
  line-height: .94;
  color: #fff8ed;
}

.modal-price {
  margin: 16px 0 0;
  color: #ffd08f;
  font-size: 28px;
  font-weight: 950;
}

.modal-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.modal-specs span {
  display: grid;
  gap: 5px;
  border-radius: 8px;
  padding: 13px;
  background: rgba(231,215,193,.14);
  border: 1px solid rgba(231,215,193,.14);
  color: #f5e6d0;
  font-size: 12px;
  font-weight: 760;
}

.modal-specs strong {
  color: #fff8ed;
  font-size: 17px;
}

.modal-packages {
  margin-top: 22px;
}

.modal-packages h3 {
  margin: 0 0 12px;
  color: #fff8ed;
  font-size: 24px;
  line-height: 1.05;
}

.package-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  max-height: 280px;
  overflow: auto;
  padding-right: 4px;
}

.package-card {
  flex: 1 1 calc(50% - 10px);
  min-width: 240px;
  display: grid;
  gap: 8px;
  border-radius: 8px;
  padding: 13px;
  background: rgba(255,248,237,.92);
  color: var(--earth-ink);
}

.package-card div {
  display: grid;
  gap: 5px;
}

.package-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 8px;
  background: var(--earth-red);
  color: #fff8ed;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.package-card strong {
  font-size: 15px;
  line-height: 1.1;
}

.package-card small {
  color: var(--earth-red);
  font-size: 15px;
  font-weight: 950;
}

.package-card p {
  margin: 0;
  color: #735751;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
}

.package-details {
  border-top: 1px solid rgba(115,87,81,.18);
  padding-top: 8px;
}

.package-details summary {
  cursor: pointer;
  color: var(--earth-red);
  font-size: 12px;
  font-weight: 950;
}

.package-details ol {
  display: grid;
  gap: 5px;
  margin: 8px 0 0;
  padding-left: 18px;
  color: #513f3a;
  font-size: 11.5px;
  font-weight: 760;
  line-height: 1.32;
}

.modal-description {
  margin: 22px 0 0;
  color: #f0dfc8;
  font-size: 17px;
  font-weight: 720;
  line-height: 1.45;
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

body.modal-open {
  overflow: hidden;
}

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

.support-card {
  border-radius: 8px;
  padding: 20px;
  min-height: 150px;
  background: var(--earth-paper);
  border: 1px solid rgba(115,87,81,.24);
}

.support-card h3 {
  margin: 0 0 12px;
}

.support-card p {
  margin: 0;
  color: #735751;
  font-weight: 650;
  line-height: 1.4;
}

.theme-traeger .model-media {
  background: linear-gradient(145deg, var(--earth-paper), var(--earth-ivory));
}

.theme-traeger .tag,
.theme-traeger .quick span,
.theme-traeger .recipe-item {
  color: var(--earth-ink);
  background: #efc995;
}

.theme-traeger .recipe-band {
  background: linear-gradient(135deg, var(--earth-ink), var(--earth-brown) 52%, var(--earth-red));
  color: #fff8ed;
}

.theme-traeger .chat-head {
  background: var(--earth-ink);
  color: #fff8ed;
}

.theme-traeger .chat-launch,
.theme-traeger .chat-demo-head {
  background: var(--earth-ink);
  color: #fff8ed;
}

.theme-traeger .chat-dot {
  background: var(--earth-clay);
}

.theme-traeger .bubble {
  background: #ead9c4;
  color: #241713;
}

.theme-traeger .bubble.user {
  background: var(--earth-red);
  color: #fff8ed;
}

.theme-traeger .chat-input input {
  color: var(--earth-ink);
  background: #deccb4;
}

.section > .wrap,
.theme-traeger .hero > .wrap {
  position: relative;
  z-index: 2;
}

.theme-traeger .topbar {
  box-shadow: 0 14px 34px rgba(71, 45, 38, .08);
}

.theme-traeger .hero {
  overflow: hidden;
}

.theme-traeger .hero::before {
  content: "";
  position: absolute;
  inset: -24%;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 24%, rgba(191,67,66,.18), transparent 30%),
    radial-gradient(circle at 78% 28%, rgba(231,215,193,.28), transparent 34%),
    linear-gradient(115deg, transparent 20%, rgba(255,255,255,.12) 45%, transparent 62%);
  opacity: .82;
  transform: translate3d(var(--hero-bg-x, 0px), var(--hero-bg-y, 0px), 0);
  animation: heroAmberDrift 12s ease-in-out infinite;
}

.theme-traeger .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(231,215,193,0), #eadcc8 74%);
}

.links a {
  position: relative;
  padding: 10px 0;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease;
}

.links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -70%;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: translateX(0) skewX(-18deg);
  transition: transform .55s ease;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(140,28,19,.22);
}

.btn:hover::after {
  transform: translateX(360%) skewX(-18deg);
}

.icon-btn {
  transition: transform .24s ease, filter .24s ease;
}

.icon-btn:hover {
  transform: translateY(-2px) rotate(-3deg);
}

.js-ready .reveal {
  --reveal-y: 28px;
  --reveal-scale: .985;
  opacity: 0;
  filter: none;
  transform: translate3d(0, var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity .72s ease var(--stagger, 0ms),
    transform .72s cubic-bezier(.2, .8, .2, 1) var(--stagger, 0ms);
  will-change: opacity, transform;
}

.js-ready .reveal.is-visible {
  --reveal-y: 0px;
  --reveal-scale: 1;
  opacity: 1;
}

.tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  --hover-lift: 0px;
  position: relative;
  transform-style: preserve-3d;
  transform:
    translate3d(0, calc(var(--reveal-y, 0px) + var(--hover-lift)), 0)
    scale(var(--reveal-scale, 1))
    perspective(1000px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  transition:
    opacity .72s ease var(--stagger, 0ms),
    transform .22s ease,
    box-shadow .22s ease;
  will-change: transform;
}

.tilt-card:hover {
  --hover-lift: -6px;
  box-shadow: 0 28px 70px rgba(71, 45, 38, .24);
}

.lineup-card.tilt-card::before,
.catalog-card.tilt-card::before,
.food-card.tilt-card::before,
.use-card.tilt-card::before,
.decision-main.tilt-card::before,
.function-stack article.tilt-card::before,
.ai-box.tilt-card::before,
.recipe-band.tilt-card::before,
.support-card.tilt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,.34), transparent 34%);
  transition: opacity .22s ease;
}

.lineup-card.tilt-card:hover::before,
.catalog-card.tilt-card:hover::before,
.food-card.tilt-card:hover::before,
.use-card.tilt-card:hover::before,
.decision-main.tilt-card:hover::before,
.function-stack article.tilt-card:hover::before,
.ai-box.tilt-card:hover::before,
.recipe-band.tilt-card:hover::before,
.support-card.tilt-card:hover::before {
  opacity: .75;
}

.lineup-card.tilt-card > *,
.catalog-card.tilt-card > *,
.food-card.tilt-card > *,
.decision-main.tilt-card > *,
.function-stack article.tilt-card > *,
.ai-box.tilt-card > *,
.recipe-band.tilt-card > *,
.support-card.tilt-card > * {
  position: relative;
  z-index: 1;
}

.food-visual {
  transition: transform .55s cubic-bezier(.2, .8, .2, 1), filter .55s ease;
}

.food-card:hover .food-visual {
  transform: scale(1.045);
  filter: saturate(1.15) contrast(1.06);
}

.products-section {
  overflow: hidden;
}

.products-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(140,28,19,.16), transparent 30%),
    url("assets/new-food-smoking-chamber.png") center / cover no-repeat;
  opacity: .16;
  filter: saturate(1.15);
}

.lineup-card img {
  transform: translateY(0) scale(1);
}

.lineup-card:hover img {
  transform: translateY(-12px) scale(1.06);
}

.flavor-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,209,160,.24), transparent 26%),
    radial-gradient(circle at 62% 74%, rgba(191,67,66,.22), transparent 34%),
    linear-gradient(100deg, rgba(23,16,15,.28), transparent 62%);
  animation: flavorGlow 9s ease-in-out infinite;
}

.flavor-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23,16,15,.62), rgba(23,16,15,.18) 58%, rgba(23,16,15,.06)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 90px);
  mix-blend-mode: screen;
  opacity: .42;
}

.ai-chat-demo .bubble {
  opacity: .92;
  transform-origin: left bottom;
}

.js-ready .ai-chat-demo .bubble {
  opacity: 0;
  transform: translateY(12px) scale(.96);
  transition: opacity .42s ease, transform .42s cubic-bezier(.2, .8, .2, 1);
}

.js-ready .ai-chat-demo.is-visible .bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js-ready .ai-chat-demo.is-visible .bubble:nth-child(1) { transition-delay: .08s; }
.js-ready .ai-chat-demo.is-visible .bubble:nth-child(2) { transition-delay: .34s; }
.js-ready .ai-chat-demo.is-visible .bubble:nth-child(3) { transition-delay: .62s; }

.sticky-chat {
  border: 1px solid rgba(231,215,193,.24);
  transform-origin: 90% 100%;
  animation: none;
}

.sticky-chat:not(.is-collapsed) {
  animation: chatFloat 5.5s ease-in-out infinite;
}

.sticky-chat::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 88% 12%, rgba(191,67,66,.24), transparent 35%);
}

.sticky-chat.is-collapsed::before {
  display: none;
}

.sticky-chat > * {
  position: relative;
  z-index: 2;
}

.chat-dot {
  box-shadow: 0 0 0 0 rgba(191,67,66,.55);
  animation: dotPulse 1.7s ease-out infinite;
}

.quick span,
.chat-input button {
  transition: transform .22s ease, filter .22s ease, background .22s ease;
}

.quick span:hover,
.quick span.is-active {
  transform: translateY(-2px);
  filter: brightness(1.04);
  background: #f4be7d;
}

.chat-input button:hover {
  transform: translateX(2px);
  filter: brightness(1.08);
}

@keyframes smokeRise {
  0% { opacity: 0; transform: translate3d(0, 80px, 0) scale(.65); }
  18% { opacity: .72; }
  100% { opacity: 0; transform: translate3d(-44px, -360px, 0) scale(1.8); }
}

@keyframes productBreath {
  0%, 100% { transform: translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0) translateY(0) rotate(-1deg); }
  50% { transform: translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0) translateY(-14px) rotate(1deg); }
}

@keyframes meatFloatLine {
  0% {
    right: -340px;
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(var(--card-scale, 1)) rotate(var(--card-rotate, 0deg));
  }
  8% { opacity: 1; }
  88% { opacity: 1; }
  100% {
    right: 170%;
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(var(--card-scale, 1)) rotate(var(--card-rotate, 0deg));
  }
}

@keyframes ovenGlow {
  0%, 100% { opacity: .76; filter: saturate(1.08) brightness(1); }
  50% { opacity: 1; filter: saturate(1.3) brightness(1.16); }
}

@keyframes emberPulse {
  0%, 100% { transform: scaleX(.86); opacity: .62; }
  50% { transform: scaleX(1.16); opacity: 1; }
}

@keyframes steamInside {
  0% { opacity: 0; transform: translate3d(-6px, 28px, 0) scale(.75); }
  24% { opacity: .72; }
  100% { opacity: 0; transform: translate3d(8px, -32px, 0) scale(1.35); }
}

@keyframes haloPulse {
  0%, 100% { opacity: .78; }
  50% { opacity: .96; }
}

@keyframes heroAmberDrift {
  0%, 100% { transform: translate3d(-1%, 0, 0) rotate(0deg); }
  50% { transform: translate3d(1.5%, 1%, 0) rotate(1deg); }
}

@keyframes flavorGlow {
  0%, 100% { opacity: .66; transform: translate3d(0, 0, 0) scale(1); }
  50% { opacity: .95; transform: translate3d(-1%, 1%, 0) scale(1.03); }
}

@keyframes chatFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(191,67,66,.55); }
  78%, 100% { box-shadow: 0 0 0 12px rgba(191,67,66,0); }
}

@media (max-width: 980px) {
  .theme-traeger .hero {
    background:
      linear-gradient(180deg, var(--earth-ivory) 0%, #f0e4d2 58%, var(--earth-ink) 58%, var(--earth-ink) 100%);
  }

  .theme-traeger .hero-grid,
  .catalog-hero-grid,
  .ai-panel,
  .support-grid,
  .food-grid,
  .use-head,
  .use-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .use-grid {
    grid-template-rows: none;
  }

  .use-card:first-child {
    grid-row: auto;
  }

  .use-card {
    min-height: 360px;
  }

  .lineup-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .chat-promo {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .chat-promo-demo {
    min-height: 280px;
  }

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

  .modal-card {
    grid-template-columns: 1fr;
    max-height: 88vh;
  }

  .modal-image-wrap {
    min-height: 360px;
  }

  .decision-steps {
    grid-template-columns: 1fr;
  }

  .traeger-visual {
    min-height: 520px;
  }

  .smoker-wrap {
    width: min(84%, 430px);
    max-height: 500px;
  }

  .traeger-product {
    max-height: 500px;
  }

  .flavor-copy {
    padding: 30px;
  }

  .meat-orbit {
    left: 46%;
  }

  .food-card {
    min-height: 330px;
  }
}

@media (max-width: 620px) {
  .theme-traeger .metrics {
    display: none;
  }

  .traeger-visual {
    min-height: 430px;
  }

  .smoker-wrap {
    width: 88%;
    max-height: 400px;
  }

  .traeger-product {
    width: 100%;
    max-height: 400px;
  }

  .smoke-field {
    width: 300px;
    height: 300px;
  }

  .flavor-stage {
    min-height: 560px;
  }

  .meat-orbit {
    display: none;
  }

  .food-visual {
    height: 140px;
  }

  .lineup-card {
    flex-basis: 100%;
    min-height: 320px;
  }

  .chat-promo {
    padding: 22px;
  }

  .chat-promo-copy h2 {
    font-size: 38px;
  }

  .chat-promo-demo {
    min-height: 260px;
  }

  .chat-launch {
    min-height: 48px;
    padding: 9px 12px;
  }

  .catalog-hero {
    padding-top: 48px;
  }

  .catalog-hero h1 {
    font-size: 43px;
  }

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

  .catalog-card {
    grid-template-rows: 270px 1fr;
    min-height: 0;
  }

  .modal-card {
    max-height: 92vh;
  }

  .modal-copy {
    padding: 24px;
  }

  .modal-specs {
    grid-template-columns: 1fr;
  }

  .use-card {
    min-height: 320px;
  }

  .use-card-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .decision-main,
  .function-stack article {
    padding: 22px;
  }
}

/* Dynamic catalog, admin and chat */
.lineup-card[data-model-open],
.catalog-media,
.catalog-body [data-model-open],
.chat-product-card {
  cursor: pointer;
}

.catalog-page .catalog-card.reveal {
  --reveal-y: 0px;
  --reveal-scale: 1;
  opacity: 1;
}

.lineup-card:focus-visible,
.catalog-media:focus-visible,
.chat-product-card:focus-visible,
.admin-model-row:focus-visible,
.quick button:focus-visible {
  outline: 3px solid rgba(191, 67, 66, .45);
  outline-offset: 3px;
}

.chat-panel {
  display: flex;
  max-height: min(650px, 76vh);
  flex-direction: column;
}

.sticky-chat:not(.is-collapsed) {
  animation: none;
}

.sticky-chat.is-collapsed .chat-launch {
  animation: chatFloat 5.5s ease-in-out infinite;
}

.chat-body {
  display: flex;
  max-height: 390px;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.quick button {
  min-height: 26px;
  border: 0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  color: var(--earth-ink);
  background: #efc995;
  font-family: inherit;
  font-size: 11px;
  font-weight: 820;
  cursor: pointer;
}

.quick button,
.chat-product-card,
.chat-input button {
  transition: transform .22s ease, filter .22s ease, background .22s ease, box-shadow .22s ease;
}

.quick button:hover,
.quick button.is-active,
.chat-product-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.chat-products {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.chat-product-card {
  width: 100%;
  min-height: 88px;
  border: 1px solid rgba(115, 87, 81, .2);
  border-radius: 8px;
  padding: 8px;
  display: grid;
  grid-template-columns: 74px 1fr;
  grid-template-areas:
    "image tag"
    "image title"
    "image price";
  column-gap: 10px;
  align-items: center;
  color: var(--earth-ink);
  background:
    radial-gradient(circle at 16% 50%, rgba(191, 67, 66, .12), transparent 36%),
    #fff6e8;
  box-shadow: 0 10px 24px rgba(23, 16, 15, .1);
  font-family: inherit;
  text-align: left;
}

.chat-product-card img {
  grid-area: image;
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, .22));
}

.chat-product-card span {
  grid-area: tag;
  color: var(--earth-red);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.chat-product-card strong {
  grid-area: title;
  font-size: 13px;
  line-height: 1.05;
}

.chat-product-card small {
  grid-area: price;
  color: #735751;
  font-size: 11px;
  font-weight: 850;
}

.admin-login {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 75% 18%, rgba(191, 67, 66, .28), transparent 34%),
    linear-gradient(135deg, rgba(23, 16, 15, .92), rgba(53, 24, 21, .96));
}

.admin-login[hidden] {
  display: none;
}

.admin-login-card {
  width: min(440px, 100%);
  border-radius: 8px;
  padding: 30px;
  display: grid;
  gap: 14px;
  color: #fff8ed;
  background:
    radial-gradient(circle at 90% 10%, rgba(231, 215, 193, .18), transparent 32%),
    #17100f;
  border: 1px solid rgba(231, 215, 193, .22);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
}

.admin-login-card .brand-logo {
  width: 76px;
  height: 76px;
}

.admin-login-card h1 {
  margin: 0;
  font-size: 44px;
  line-height: .95;
  color: #fff8ed;
}

.admin-login-card p {
  margin: 0;
  color: #f0dfc8;
  font-weight: 720;
  line-height: 1.45;
}

.admin-login-card label {
  display: grid;
  gap: 8px;
  color: #f0dfc8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.admin-login-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(231, 215, 193, .28);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--earth-ink);
  background: #fffaf0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 760;
  outline: none;
}

.admin-login-card input:focus {
  border-color: rgba(191, 67, 66, .78);
  box-shadow: 0 0 0 3px rgba(191, 67, 66, .18);
}

.admin-login-card small {
  min-height: 18px;
  color: #ffd08f;
  font-weight: 850;
}

.admin-locked [data-admin-content] {
  display: none;
}

.admin-page {
  color: var(--earth-ink);
  background: #e7d7c1;
}

.admin-hero {
  min-height: auto;
  padding: 118px 0 48px;
  background:
    radial-gradient(circle at 80% 22%, rgba(140, 28, 19, .16), transparent 32%),
    linear-gradient(180deg, #f0e4d2 0%, #d9c6ad 100%);
}

.admin-section {
  padding-top: 42px;
  background:
    linear-gradient(180deg, #d9c6ad 0%, #e7d7c1 100%);
}

.admin-page .catalog-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.admin-page .catalog-hero h1 {
  max-width: 980px;
}

.admin-page .catalog-hero p {
  max-width: 760px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 18px;
  align-items: start;
}

.admin-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.admin-panel,
.settings-card {
  border-radius: 8px;
  background: #f4eadb;
  border: 1px solid rgba(115, 87, 81, .24);
  box-shadow: 0 22px 52px rgba(23, 16, 15, .14);
}

.admin-panel {
  padding: 18px;
}

.admin-panel-head,
.admin-actions,
.admin-form-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-panel h2,
.admin-form h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
}

.admin-model-list {
  display: grid;
  gap: 10px;
  max-height: 650px;
  margin: 18px 0;
  overflow-y: auto;
  padding-right: 2px;
}

.admin-model-row {
  width: 100%;
  border: 1px solid rgba(115, 87, 81, .22);
  border-radius: 8px;
  padding: 8px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--earth-ink);
  background: #fff6e8;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.admin-model-row:hover,
.admin-model-row.is-active {
  border-color: rgba(140, 28, 19, .52);
  background: #f7d8ad;
  transform: translateY(-1px);
}

.admin-model-row img {
  width: 72px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, .18));
}

.admin-model-row strong,
.admin-model-row small {
  display: block;
}

.admin-model-row strong {
  font-size: 14px;
  line-height: 1.1;
}

.admin-model-row small {
  margin-top: 5px;
  color: #735751;
  font-size: 11px;
  font-weight: 820;
}

.admin-reset {
  width: 100%;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-form-top img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 55%, rgba(140, 28, 19, .14), transparent 38%),
    #fff6e8;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, .22));
}

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

.admin-fields label,
.settings-card {
  display: grid;
  gap: 8px;
  color: #735751;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.admin-fields .wide {
  grid-column: 1 / -1;
}

.admin-fields input,
.admin-fields textarea,
.settings-card input {
  width: 100%;
  border: 1px solid rgba(115, 87, 81, .24);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--earth-ink);
  background: #fffaf0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 720;
  outline: none;
}

.admin-fields textarea {
  resize: vertical;
  line-height: 1.45;
}

.admin-fields input:focus,
.admin-fields textarea:focus,
.settings-card input:focus {
  border-color: rgba(140, 28, 19, .58);
  box-shadow: 0 0 0 3px rgba(191, 67, 66, .14);
}

.file-field input {
  padding: 10px;
}

.settings-card {
  padding: 22px;
  color: #f0dfc8;
  background:
    radial-gradient(circle at 92% 14%, rgba(191, 67, 66, .36), transparent 32%),
    linear-gradient(135deg, #17100f 0%, #351815 100%);
  border-color: rgba(231, 215, 193, .22);
}

.settings-card strong {
  color: #fff8ed;
}

.settings-card span {
  color: #f0dfc8;
  text-transform: none;
  letter-spacing: 0;
}

.settings-card label {
  display: grid;
  gap: 5px;
  color: #f0dfc8;
}

.settings-card input {
  margin-top: 4px;
  background: rgba(255, 250, 240, .96);
}

.admin-actions small,
.settings-card small {
  min-height: 18px;
  color: var(--earth-red);
  font-size: 12px;
  font-weight: 850;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .admin-grid,
  .admin-settings-grid {
    grid-template-columns: 1fr;
  }

  .admin-model-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }
}

@media (max-width: 620px) {
  .js-ready .reveal {
    --reveal-y: 0px;
    --reveal-scale: 1;
    opacity: 1;
    transform: none;
  }

  .theme-traeger .hero-grid {
    gap: 18px;
    padding-top: 26px;
  }

  .theme-traeger h1 {
    font-size: 38px;
    line-height: .96;
  }

  .theme-traeger .lead {
    font-size: 15px;
  }

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

  .hero-actions .btn {
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
  }

  .lineup {
    --lineup-gap: 10px;
  }

  .lineup-carousel {
    padding-bottom: 14px;
  }

  .lineup-card {
    flex-basis: calc((100% - var(--lineup-gap)) / 2);
    min-height: 246px;
    padding: 12px;
  }

  .lineup-card img {
    height: 128px;
  }

  .lineup-card h3 {
    margin: 8px 0 6px;
    font-size: 19px;
  }

  .lineup-card p {
    font-size: 10.5px;
    line-height: 1.28;
  }

  .catalog-hero {
    padding-top: 42px;
  }

  .catalog-hero h1 {
    font-size: 36px;
  }

  .catalog-hero p {
    font-size: 15px;
  }

  .catalog-hero-card {
    padding: 18px;
  }

  .catalog-hero-card strong {
    font-size: 22px;
  }

  .catalog-section {
    padding-top: 28px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .food-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .food-card {
    min-height: 258px;
    padding: 10px;
  }

  .food-visual {
    height: 94px;
    margin: -2px -2px 10px;
  }

  .food-card span {
    min-height: 22px;
    padding: 0 7px;
    font-size: 8.5px;
  }

  .food-card h3 {
    margin: 9px 0 6px;
    font-size: 18px;
  }

  .food-card p {
    font-size: 10.5px;
    line-height: 1.3;
  }

  .catalog-card {
    grid-template-rows: 148px 1fr;
    min-height: 0;
    border-radius: 8px;
  }

  .catalog-media {
    padding: 10px;
  }

  .catalog-body {
    gap: 8px;
    padding: 10px;
  }

  .catalog-body span {
    min-height: 22px;
    padding: 0 7px;
    font-size: 8.5px;
  }

  .catalog-body h2 {
    font-size: 18px;
    line-height: 1.02;
  }

  .catalog-body p {
    font-size: 10.5px;
    line-height: 1.28;
  }

  .catalog-price {
    font-size: 16px;
  }

  .package-preview {
    gap: 5px;
  }

  .package-preview strong {
    font-size: 10.5px;
  }

  .package-preview span,
  .package-preview small {
    min-height: 20px;
    padding: 0 6px;
    font-size: 8.5px;
  }

  .catalog-body .btn {
    min-height: 34px;
    padding: 0 10px;
    font-size: 10.5px;
  }

  .sticky-chat {
    width: min(310px, calc(100vw - 24px));
  }

  .chat-panel {
    max-height: min(560px, 74vh);
  }

  .chat-body {
    max-height: 330px;
  }

  .chat-product-card {
    min-height: 80px;
    grid-template-columns: 62px 1fr;
    padding: 7px;
  }

  .chat-product-card img {
    width: 62px;
    height: 62px;
  }

  .chat-product-card strong {
    font-size: 12px;
  }

  .model-modal {
    padding: 12px;
  }

  .modal-card {
    width: 100%;
    max-height: 92vh;
    grid-template-columns: 1fr;
  }

  .modal-image-wrap {
    min-height: 176px;
    max-height: 196px;
    padding: 14px 58px 6px;
  }

  .modal-image-wrap img {
    width: 100%;
    height: auto;
    max-height: 176px;
  }

  .modal-copy {
    padding: 16px;
  }

  .modal-copy h2 {
    margin-top: 10px;
    font-size: 29px;
    line-height: .96;
  }

  .modal-price {
    margin-top: 10px;
    font-size: 23px;
  }

  .modal-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .modal-specs span {
    padding: 9px;
    font-size: 10px;
  }

  .modal-specs strong {
    font-size: 13px;
    line-height: 1.22;
  }

  .modal-packages {
    margin-top: 14px;
  }

  .modal-packages h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .package-list {
    gap: 8px;
    max-height: 178px;
  }

  .package-card {
    flex-basis: 100%;
    min-width: 0;
    gap: 6px;
    padding: 9px;
  }

  .package-card strong,
  .package-card small {
    font-size: 12px;
  }

  .package-card p {
    font-size: 10.5px;
  }

  .package-details summary {
    font-size: 10.5px;
  }

  .package-details ol {
    font-size: 10px;
  }

  .modal-description {
    margin-top: 12px;
    font-size: 12.5px;
    line-height: 1.4;
  }

  .modal-actions {
    margin-top: 14px;
  }

  .modal-actions .btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .admin-hero {
    padding: 96px 0 34px;
  }

  .admin-grid {
    gap: 12px;
  }

  .admin-panel,
  .settings-card {
    padding: 14px;
  }

  .admin-panel-head,
  .admin-actions,
  .admin-form-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-form-top img {
    width: 118px;
    height: 118px;
  }

  .admin-model-list,
  .admin-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .theme-traeger h1,
  .catalog-hero h1 {
    font-size: 32px;
  }

  .lineup-card {
    min-height: 228px;
    padding: 10px;
  }

  .lineup-card img {
    height: 112px;
  }

  .catalog-card {
    grid-template-rows: 132px 1fr;
  }

  .catalog-body h2 {
    font-size: 16px;
  }

  .catalog-body p {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .js-ready .reveal,
  .tilt-card {
    --reveal-y: 0px;
    --reveal-scale: 1;
    --hover-lift: 0px;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}
