/* ============================================================
   REBEL SEASONING CO. — Main Stylesheet
   Vintage Texas BBQ / Smokehouse Americana aesthetic
   ============================================================ */

/* Google Fonts loaded in each HTML page via CDN link tag */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --charred-black: #0d0d0d;
  --bone-cream: #e8dcc4;
  --rebel-red: #c8201e;
  --ember-orange: #e85d23;
  --smoke-gray: #3a3a3a;
  --buckskin-tan: #a07a4a;
  --off-bone: #f4eedf;

  --font-display: 'Rye', 'Georgia', serif;
  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Lora', 'Georgia', serif;
  --font-special: 'Special Elite', 'Courier New', monospace;

  --nav-height: 70px;
  --max-width: 1200px;
  --section-padding: 80px 20px;
  --card-radius: 2px;

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--charred-black);
  color: var(--bone-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--rebel-red);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--off-bone);
}

a:focus-visible {
  outline: 2px solid var(--rebel-red);
  outline-offset: 3px;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.font-display { font-family: var(--font-display); }
.font-heading { font-family: var(--font-heading); }
.font-body    { font-family: var(--font-body); }
.font-special { font-family: var(--font-special); }

.text-red    { color: var(--rebel-red); }
.text-cream  { color: var(--bone-cream); }
.text-orange { color: var(--ember-orange); }
.text-tan    { color: var(--buckskin-tan); }
.text-muted  { color: rgba(232, 220, 196, 0.6); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
}

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

.section--gray {
  background-color: var(--smoke-gray);
}

.section--tan {
  background-color: #1a1208;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   DISTRESSED DIVIDER
   ============================================================ */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--rebel-red) 0px,
    var(--rebel-red) 3px,
    transparent 3px,
    transparent 6px
  );
  opacity: 0.6;
}

.divider span {
  color: var(--rebel-red);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ============================================================
   BADGE FRAME (distressed rectangular badge)
   ============================================================ */
.badge-frame {
  border: 2px solid var(--rebel-red);
  padding: 32px;
  position: relative;
}

.badge-frame::before,
.badge-frame::after {
  content: '';
  position: absolute;
  background: transparent;
}

.badge-frame::before {
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  border: 1px solid rgba(200, 32, 30, 0.3);
  pointer-events: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(13, 13, 13, 0.97);
  border-bottom: 1px solid rgba(200, 32, 30, 0.3);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  backdrop-filter: blur(4px);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bone-cream);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo:hover {
  color: var(--off-bone);
}

.nav__logo-star {
  color: var(--rebel-red);
  font-size: 1rem;
}

.nav__logo-img {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-cream);
  transition: color var(--transition-fast);
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--rebel-red);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--bone-cream);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: var(--charred-black);
    border-bottom: 2px solid var(--rebel-red);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 32px;
    gap: 0;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(232, 220, 196, 0.1);
    width: 100%;
    font-size: 1rem;
  }

  .nav__links a:last-child {
    border-bottom: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--charred-black);
  padding: 100px 20px 80px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero--tall {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--font-special);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--buckskin-tan);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--off-bone);
  margin-bottom: 16px;
  position: relative;
}

.hero__title .red {
  color: var(--rebel-red);
}

.hero__tagline {
  font-family: var(--font-special);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--buckskin-tan);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(232, 220, 196, 0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.about-hero .hero__tagline {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .about-hero {
    padding-bottom: 28px;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background-color: var(--rebel-red);
  color: var(--off-bone);
  border-color: var(--rebel-red);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--rebel-red);
}

.btn-outline {
  background-color: transparent;
  color: var(--bone-cream);
  border-color: var(--bone-cream);
}

.btn-outline:hover {
  background-color: var(--bone-cream);
  color: var(--charred-black);
}

.btn-gold {
  background-color: var(--buckskin-tan);
  color: var(--charred-black);
  border-color: var(--buckskin-tan);
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--buckskin-tan);
}

.btn-find-markets {
  background-color: var(--rebel-red);
  color: var(--off-bone);
  border-color: var(--rebel-red);
  font-size: 0.75rem;
  padding: 10px 20px;
}

.btn-find-markets:hover {
  background-color: transparent;
  color: var(--rebel-red);
}

/* V2 stub classes — styled but unused in V1 */
.btn-order {
  background-color: var(--rebel-red);
  color: var(--off-bone);
  border-color: var(--rebel-red);
  font-size: 0.75rem;
  padding: 10px 20px;
}

.btn-order:hover {
  background-color: transparent;
  color: var(--rebel-red);
}

.btn-cart {
  background-color: var(--rebel-red);
  color: var(--off-bone);
  border-color: var(--rebel-red);
  font-size: 0.75rem;
  padding: 10px 20px;
}

.btn-cart:hover {
  background-color: transparent;
  color: var(--rebel-red);
}

/* ============================================================
   HEAT INDICATOR (ember flame icons)
   ============================================================ */
.heat-indicator {
  display: flex;
  align-items: center;
  gap: 3px;
}

.heat-indicator__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.5);
  margin-right: 6px;
}

.flame {
  display: inline-block;
  width: 14px;
  height: 16px;
  font-size: 14px;
  line-height: 1;
}

.flame--lit {
  color: var(--ember-orange);
}

.flame--dim {
  color: rgba(232, 220, 196, 0.15);
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background-color: var(--smoke-gray);
  border: 1px solid rgba(232, 220, 196, 0.08);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-base), transform var(--transition-base);
  position: relative;
}

.product-card:hover {
  border-color: rgba(200, 32, 30, 0.4);
  transform: translateY(-2px);
}

.product-card__image-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #1e1e1e;
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.04);
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e1a14 0%, #2a2418 100%);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(232, 220, 196, 0.25);
  text-align: center;
  padding: 16px;
}

.product-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card__category {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--buckskin-tan);
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--off-bone);
  line-height: 1.3;
}

.product-card__tagline {
  font-family: var(--font-special);
  font-size: 0.8rem;
  color: rgba(232, 220, 196, 0.7);
  line-height: 1.4;
}

.product-card__footer {
  padding: 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   CATEGORY SECTION HEADERS
   ============================================================ */
.category-header {
  margin: 56px 0 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.category-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200, 32, 30, 0.3);
}

.category-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bone-cream);
  white-space: nowrap;
}

.category-header h2 .red {
  color: var(--rebel-red);
}

/* ============================================================
   CATEGORY FILTER TABS
   ============================================================ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(232, 220, 196, 0.25);
  color: rgba(232, 220, 196, 0.7);
  background: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab:hover,
.filter-tab.is-active {
  border-color: var(--rebel-red);
  color: var(--rebel-red);
  background-color: rgba(200, 32, 30, 0.08);
}

/* ============================================================
   RECIPE CARDS
   ============================================================ */
.recipe-card {
  background-color: var(--smoke-gray);
  border: 1px solid rgba(232, 220, 196, 0.08);
  overflow: hidden;
  transition: border-color var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  border-color: rgba(200, 32, 30, 0.4);
  transform: translateY(-2px);
}

.recipe-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #1e1e1e;
}

.recipe-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.recipe-card:hover .recipe-card__image img {
  transform: scale(1.04);
}

.recipe-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e1a14 0%, #2a2418 100%);
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: rgba(232, 220, 196, 0.2);
}

.recipe-card__body {
  padding: 24px;
  flex: 1;
}

.recipe-card__product-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember-orange);
  margin-bottom: 10px;
}

.recipe-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--off-bone);
  margin-bottom: 12px;
  line-height: 1.3;
}

.recipe-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.recipe-card__meta-item {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.5);
}

.recipe-card__meta-item strong {
  color: var(--bone-cream);
}

.recipe-card__link {
  display: block;
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rebel-red);
}

.recipe-card__link:hover {
  color: var(--off-bone);
}

/* ============================================================
   MARKET CARDS
   ============================================================ */
.market-card {
  background-color: var(--smoke-gray);
  border: 1px solid rgba(232, 220, 196, 0.08);
  border-left: 4px solid var(--rebel-red);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.market-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--off-bone);
}

.market-card__city {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--buckskin-tan);
}

.market-card__detail {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(232, 220, 196, 0.8);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.market-card__detail strong {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-cream);
  min-width: 80px;
}

.market-card__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.market-card__date-chip {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: rgba(200, 32, 30, 0.15);
  color: var(--rebel-red);
  padding: 4px 10px;
  border: 1px solid rgba(200, 32, 30, 0.3);
}

.market-card__notes {
  font-family: var(--font-special);
  font-size: 0.85rem;
  color: rgba(232, 220, 196, 0.6);
  margin-top: 4px;
  font-style: italic;
}

.market-card__map-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rebel-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-cream);
}

.form-input,
.form-textarea,
.form-select {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 220, 196, 0.2);
  color: var(--bone-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition-fast);
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--rebel-red);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(232, 220, 196, 0.3);
}

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

.form-hint {
  font-family: var(--font-special);
  font-size: 0.8rem;
  color: rgba(232, 220, 196, 0.5);
  margin-top: 4px;
}

.form-hint a {
  color: var(--buckskin-tan);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Newsletter inline form */
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 420px;
}

.newsletter-form .form-input {
  border-right: none;
  flex: 1;
}

.newsletter-form .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form .form-input { border-right: 1px solid rgba(232, 220, 196, 0.2); }
}

/* ============================================================
   SUCCESS / ERROR MESSAGES
   ============================================================ */
.form-message {
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  display: none;
}

.form-message.is-success {
  display: block;
  background-color: rgba(0, 150, 60, 0.15);
  border: 1px solid rgba(0, 150, 60, 0.4);
  color: #5ef090;
}

.form-message.is-error {
  display: block;
  background-color: rgba(200, 32, 30, 0.15);
  border: 1px solid rgba(200, 32, 30, 0.4);
  color: var(--rebel-red);
}

/* ============================================================
   HOME PAGE SECTIONS
   ============================================================ */

/* Brand teaser */
.brand-teaser {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.brand-teaser p {
  font-size: 1.15rem;
  color: rgba(232, 220, 196, 0.85);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Category tiles */
.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

@media (max-width: 900px) {
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .category-tiles { grid-template-columns: 1fr; }
}

.category-tile {
  aspect-ratio: 1;
  background-color: var(--smoke-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 220, 196, 0.05);
  transition: background-color var(--transition-base);
}

.category-tile:hover {
  background-color: #2e2e2e;
}

.category-tile__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.category-tile__name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--off-bone);
  margin-bottom: 6px;
}

.category-tile__count {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--buckskin-tan);
}

.category-tile__link {
  position: absolute;
  inset: 0;
}

/* Markets callout */
.markets-callout {
  background-color: var(--rebel-red);
  padding: 64px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.markets-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.markets-callout h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--off-bone);
  margin-bottom: 12px;
}

.markets-callout p {
  font-family: var(--font-special);
  font-size: 1rem;
  color: rgba(244, 238, 223, 0.85);
  max-width: 480px;
  margin: 0 auto 28px;
  letter-spacing: 0.06em;
}

.markets-callout .btn-outline {
  border-color: var(--off-bone);
  color: var(--off-bone);
}

.markets-callout .btn-outline:hover {
  background-color: var(--off-bone);
  color: var(--rebel-red);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.product-detail__breadcrumb {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.4);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-detail__breadcrumb a {
  color: rgba(232, 220, 196, 0.4);
}

.product-detail__breadcrumb a:hover {
  color: var(--bone-cream);
}

.product-detail__breadcrumb span {
  color: rgba(232, 220, 196, 0.25);
}

.product-detail__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: start;
}

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

.product-detail__image-wrap {
  aspect-ratio: 1;
  background-color: var(--smoke-gray);
  overflow: hidden;
  border: 1px solid rgba(232, 220, 196, 0.08);
}

.product-detail__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e1a14 0%, #2a2418 100%);
  font-family: var(--font-display);
  color: rgba(232, 220, 196, 0.15);
  font-size: 1.1rem;
  text-align: center;
  padding: 24px;
}

.product-detail__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-detail__category {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--buckskin-tan);
}

.product-detail__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--off-bone);
  line-height: 1.1;
}

.product-detail__tagline {
  font-family: var(--font-special);
  font-size: 1.05rem;
  color: rgba(232, 220, 196, 0.7);
  line-height: 1.5;
}

.product-detail__description {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(232, 220, 196, 0.85);
  line-height: 1.8;
  margin-top: 8px;
}

.product-detail__weight {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.4);
}

.product-detail__cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.product-detail__wholesale-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.5);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-detail__wholesale-link:hover {
  color: var(--bone-cream);
}

/* Ingredients / Allergens section */
.product-detail__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid rgba(232, 220, 196, 0.1);
  border-bottom: 1px solid rgba(232, 220, 196, 0.1);
  margin-bottom: 48px;
}

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

.spec-block__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--buckskin-tan);
  margin-bottom: 10px;
}

.spec-block__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(232, 220, 196, 0.75);
  line-height: 1.7;
}

/* Related products */
.related-products {
  margin-top: 56px;
}

.related-products h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--off-bone);
  margin-bottom: 28px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-story__statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--off-bone);
  line-height: 1.3;
  margin-bottom: 40px;
}

.about-story__statement .red {
  color: var(--rebel-red);
}

.about-story__body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(232, 220, 196, 0.85);
}

.about-story__body p {
  margin-bottom: 24px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
}

@media (max-width: 700px) {
  .about-pillars { grid-template-columns: 1fr; }
}

.about-pillar {
  background-color: var(--smoke-gray);
  padding: 40px 32px;
  text-align: center;
}

.about-pillar__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.about-pillar__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--off-bone);
  margin-bottom: 12px;
}

.about-pillar__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(232, 220, 196, 0.7);
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--off-bone);
  margin-bottom: 24px;
}

.contact-info__item {
  margin-bottom: 20px;
}

.contact-info__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--buckskin-tan);
  margin-bottom: 6px;
}

.contact-info__value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(232, 220, 196, 0.8);
}

.contact-info__value a {
  color: rgba(232, 220, 196, 0.8);
}

.contact-info__value a:hover {
  color: var(--rebel-red);
}

/* ============================================================
   RECIPE DETAIL PAGE
   ============================================================ */
.recipe-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.recipe-detail__header {
  margin-bottom: 48px;
}

.recipe-detail__meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 20px 0 32px;
}

.recipe-detail__meta-item {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.5);
}

.recipe-detail__meta-item strong {
  color: var(--bone-cream);
  display: block;
  font-size: 1rem;
  margin-top: 2px;
}

.recipe-detail__image {
  aspect-ratio: 16/9;
  background-color: var(--smoke-gray);
  overflow: hidden;
  margin-bottom: 48px;
}

.recipe-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--off-bone);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 220, 196, 0.1);
}

.recipe-ingredients {
  list-style: none;
  margin-bottom: 48px;
}

.recipe-ingredients li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(232, 220, 196, 0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 220, 196, 0.08);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.recipe-ingredients li::before {
  content: '—';
  color: var(--rebel-red);
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.recipe-steps {
  list-style: none;
  margin-bottom: 48px;
}

.recipe-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.recipe-step__number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--rebel-red);
  flex-shrink: 0;
  line-height: 1;
  min-width: 48px;
}

.recipe-step__content {
  flex: 1;
}

.recipe-step__content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(232, 220, 196, 0.85);
  line-height: 1.7;
}

.recipe-step__photo-slot {
  margin-top: 16px;
  aspect-ratio: 16/9;
  background-color: var(--smoke-gray);
  border: 1px dashed rgba(232, 220, 196, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-special);
  font-size: 0.8rem;
  color: rgba(232, 220, 196, 0.25);
  overflow: hidden;
}

.recipe-step__photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-product-callout {
  background-color: var(--smoke-gray);
  border-left: 4px solid var(--rebel-red);
  padding: 24px 28px;
  margin: 48px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.recipe-product-callout__text {
  flex: 1;
}

.recipe-product-callout__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember-orange);
  margin-bottom: 6px;
}

.recipe-product-callout__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--off-bone);
}

/* ============================================================
   ORDER PLACEHOLDER PAGE
   ============================================================ */
.order-placeholder {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.order-placeholder__icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  display: block;
}

.order-placeholder__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--off-bone);
  margin-bottom: 16px;
}

.order-placeholder__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(232, 220, 196, 0.7);
  max-width: 400px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: #080808;
  border-top: 1px solid rgba(232, 220, 196, 0.08);
  padding: 64px 20px 32px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

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

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

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--off-bone);
}

.footer__logo .red {
  color: var(--rebel-red);
}

.footer__tagline {
  font-family: var(--font-special);
  font-size: 0.8rem;
  color: rgba(232, 220, 196, 0.4);
  letter-spacing: 0.08em;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232, 220, 196, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 220, 196, 0.5);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  border-color: var(--rebel-red);
  color: var(--rebel-red);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--buckskin-tan);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(232, 220, 196, 0.65);
}

.footer__links a:hover {
  color: var(--bone-cream);
}

.footer__email-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(232, 220, 196, 0.5);
  display: block;
  margin-bottom: 8px;
}

.footer__email-link:hover {
  color: var(--rebel-red);
}

.footer__bottom {
  border-top: 1px solid rgba(232, 220, 196, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.3);
}

.footer__legal a:hover {
  color: rgba(232, 220, 196, 0.7);
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background-color: var(--smoke-gray);
  padding: 64px 20px;
  text-align: center;
}

.newsletter-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--off-bone);
  margin-bottom: 10px;
}

.newsletter-section__subtitle {
  font-family: var(--font-special);
  font-size: 0.9rem;
  color: rgba(232, 220, 196, 0.6);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

.newsletter-section .newsletter-form {
  margin: 0 auto;
}

/* ============================================================
   WHOLESALE SECTION
   ============================================================ */
.wholesale-section {
  background-color: #0f0c08;
  padding: 80px 20px;
}

.wholesale-section__inner {
  max-width: 700px;
  margin: 0 auto;
}

.wholesale-section__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rebel-red);
  margin-bottom: 12px;
}

.wholesale-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--off-bone);
  margin-bottom: 16px;
}

.wholesale-section__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(232, 220, 196, 0.7);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ============================================================
   PRINT STYLES (recipe pages)
   ============================================================ */
@media print {
  .nav,
  .footer,
  .recipe-product-callout .btn,
  .btn {
    display: none !important;
  }

  body {
    background-color: #fff;
    color: #000;
    font-size: 12pt;
  }

  .recipe-detail {
    max-width: 100%;
    padding: 0;
  }

  h1, h2, h3 {
    color: #000;
  }

  .recipe-step__photo-slot {
    page-break-inside: avoid;
  }

  a::after {
    content: none;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-0  { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.hidden { display: none; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 64px 20px;
  color: rgba(232, 220, 196, 0.4);
  font-family: var(--font-special);
  font-size: 0.9rem;
}

/* ============================================================
   RECIPE PAGES — HERO IMAGE
   ============================================================ */
.recipe-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-bottom: 0;
}
@media (max-width: 680px) { .recipe-hero-img { height: 280px; } }

/* ============================================================
   RECIPE PAGES — COOKING METHOD TABS
   ============================================================ */
.method-switcher { margin: 48px 0; }

.method-switcher__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--buckskin-tan);
  margin-bottom: 14px;
}

.method-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(200,32,30,0.25);
  margin-bottom: 0;
  flex-wrap: wrap;
}

.method-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: rgba(232,220,196,0.45);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  text-align: left;
}
.method-tab:hover { color: var(--bone-cream); background: rgba(232,220,196,0.04); }
.method-tab.is-active { color: var(--bone-cream); border-bottom-color: var(--rebel-red); }
.method-tab__emoji { font-size: 1.15rem; line-height: 1; }
.method-tab__name { display: block; font-weight: 700; }
.method-tab__badge {
  display: block;
  font-family: var(--font-special);
  font-size: 0.6rem;
  color: var(--buckskin-tan);
  text-transform: none;
  letter-spacing: 0;
  font-weight: normal;
  margin-top: 1px;
}

.method-panel { display: none; padding: 36px 0 24px; }
.method-panel.is-active { display: block; }

.method-panel__tip {
  display: inline-block;
  background: rgba(200,32,30,0.1);
  border: 1px solid rgba(200,32,30,0.2);
  border-radius: 2px;
  padding: 10px 16px;
  font-family: var(--font-special);
  font-size: 0.78rem;
  color: rgba(232,220,196,0.65);
  line-height: 1.5;
  margin-bottom: 28px;
}

/* ============================================================
   RECIPE PAGES — SEASONING RECOMMENDATION CARDS
   ============================================================ */
.recipe-seasoning {
  background: rgba(232,220,196,0.03);
  border: 1px solid rgba(232,220,196,0.09);
  border-radius: 2px;
  padding: 28px;
  margin: 40px 0;
}
.recipe-seasoning__title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,220,196,0.78);
  margin-bottom: 18px;
}
.seasoning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 720px) { .seasoning-grid { grid-template-columns: 1fr; } }

.seasoning-card {
  padding: 18px;
  border-radius: 2px;
  border-top: 3px solid;
}
.seasoning-card--mild   { background: rgba(160,122,74,0.08);  border-top-color: var(--buckskin-tan); }
.seasoning-card--spicy  { background: rgba(200,32,30,0.07);   border-top-color: var(--rebel-red); }
.seasoning-card--side   { background: rgba(232,93,35,0.07);   border-top-color: var(--ember-orange); }

.seasoning-card__label {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.seasoning-card--mild  .seasoning-card__label { color: var(--buckskin-tan); }
.seasoning-card--spicy .seasoning-card__label { color: var(--rebel-red); }
.seasoning-card--side  .seasoning-card__label { color: var(--ember-orange); }

.seasoning-card__rub {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--off-bone);
  margin-bottom: 5px;
}
.seasoning-card__sauce {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(232,220,196,0.76);
  line-height: 1.5;
  margin-bottom: 3px;
}
.seasoning-card__tip {
  font-family: var(--font-special);
  font-size: 0.72rem;
  color: rgba(232,220,196,0.62);
  line-height: 1.5;
  margin-top: 8px;
}
.seasoning-card__links { display: flex; flex-direction: column; gap: 5px; margin-top: 10px; }
.seasoning-card__links a {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rebel-red);
  padding: 5px 0;
  border-bottom: 1px solid rgba(200,32,30,0.15);
  transition: color var(--transition-fast);
}
.seasoning-card__links a:hover { color: var(--off-bone); }

/* ============================================================
   RECIPE PAGES — CREATIVE USES SECTION
   ============================================================ */
.creative-uses {
  border-top: 1px solid rgba(232,220,196,0.08);
  padding-top: 40px;
  margin-top: 40px;
}
.creative-uses__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--off-bone);
  margin-bottom: 6px;
}
.creative-uses__sub {
  font-family: var(--font-special);
  font-size: 0.78rem;
  color: var(--buckskin-tan);
  margin-bottom: 24px;
}
.creative-uses__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 600px) { .creative-uses__grid { grid-template-columns: 1fr; } }
.creative-use-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin: 28px 0;
  padding: 20px;
  border: 1px solid rgba(232,220,196,0.14);
  background: rgba(0,0,0,0.18);
}
.creative-use-feature__img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}
@media (max-width: 720px) { .creative-use-feature { grid-template-columns: 1fr; } }
.creative-use-item {
  background: rgba(232,220,196,0.03);
  border-left: 3px solid var(--rebel-red);
  padding: 14px 16px;
}
.creative-use-item__name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--off-bone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.creative-use-item__desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(232,220,196,0.6);
  line-height: 1.5;
}

/* ============================================================
   RECIPE INDEX PAGE — Recipe Card Grid
   ============================================================ */
.recipe-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 900px) { .recipe-grid-v2 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .recipe-grid-v2 { grid-template-columns: 1fr; } }

.rcv2 {
  display: block;
  background: rgba(232,220,196,0.03);
  border: 1px solid rgba(232,220,196,0.08);
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--transition-base), transform var(--transition-base);
}
.rcv2:hover { border-color: rgba(200,32,30,0.35); transform: translateY(-2px); }
.rcv2:focus-visible {
  outline: 2px solid var(--ember-orange);
  outline-offset: 4px;
}
.rcv2__img { width:100%; height:210px; object-fit:cover; display:block; }
.rcv2__img-ph {
  width:100%; height:210px;
  background: linear-gradient(135deg,#1e1a14,#2a2418);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-special); color:rgba(232,220,196,0.12); font-size:0.8rem;
}
.rcv2__body { padding: 18px 20px 20px; }
.rcv2__tag {
  font-family: var(--font-heading); font-size:0.62rem; letter-spacing:0.15em;
  text-transform:uppercase; color:var(--ember-orange); margin-bottom:6px;
}
.rcv2__title {
  font-family: var(--font-display); font-size:1rem; color:var(--off-bone);
  line-height:1.35; margin-bottom:10px;
}
.rcv2__meta {
  display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px;
}
.rcv2__meta span {
  font-family:var(--font-special); font-size:0.68rem; color:rgba(232,220,196,0.4);
}
.rcv2__link {
  font-family:var(--font-heading); font-size:0.72rem; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--rebel-red);
  transition: color var(--transition-fast);
}
.rcv2__link:hover { color:var(--off-bone); }

/* ============================================================
   ABOUT PAGE — Person section
   ============================================================ */
.about-person {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 760px) { .about-person { grid-template-columns: 1fr; gap: 32px; } }
.about-bio-section {
  padding-top: 64px;
}
@media (max-width: 760px) {
  .about-bio-section {
    padding-top: 22px;
  }
}
.about-person__img-wrap {
  position: relative;
  isolation: isolate;
  overflow: visible;
}
.about-person__reel {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 2px solid rgba(200,32,30,0.3);
  background: linear-gradient(160deg,#1e1a14,#2a2418);
}
.about-person__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(200,32,30,0.3);
}
.about-person__img--reel {
  position: absolute;
  inset: 0;
  height: 100%;
  border: 0;
  opacity: 0;
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: about-food-reel 20s infinite;
  -webkit-animation: about-food-reel 20s infinite;
}
.about-person__img--reel:nth-child(1) { animation-delay: 0s; -webkit-animation-delay: 0s; }
.about-person__img--reel:nth-child(2) { animation-delay: 4s; -webkit-animation-delay: 4s; }
.about-person__img--reel:nth-child(3) { animation-delay: 8s; -webkit-animation-delay: 8s; }
.about-person__img--reel:nth-child(4) { animation-delay: 12s; -webkit-animation-delay: 12s; }
.about-person__img--reel:nth-child(5) { animation-delay: 16s; -webkit-animation-delay: 16s; }

@keyframes about-food-reel {
  0%, 14% { opacity: 1; transform: scale(1); }
  26%, 95% { opacity: 0; transform: scale(1.03); }
  100% { opacity: 0; transform: scale(1); }
}

@-webkit-keyframes about-food-reel {
  0%, 14% { opacity: 1; -webkit-transform: scale(1); }
  26%, 95% { opacity: 0; -webkit-transform: scale(1.03); }
  100% { opacity: 0; -webkit-transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .about-person__img--reel {
    animation: none;
    -webkit-animation: none;
  }
  .about-person__img--reel:first-child {
    opacity: 1;
  }
}
.about-person__reel.is-js .about-person__img--reel {
  animation: none;
  -webkit-animation: none;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.4s ease, transform 4.5s ease;
  z-index: 1;
}
.about-person__reel.is-js .about-person__img--reel.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.about-person__reel.is-reduced-motion .about-person__img--reel {
  transition: opacity 0.2s ease;
  transform: none;
}
.about-person__reel.is-reduced-motion .about-person__img--reel.is-active {
  transform: none;
}
.about-person__img-ph {
  width:100%; aspect-ratio:3/4;
  background: linear-gradient(160deg,#1e1a14,#2a2418);
  border: 2px solid rgba(200,32,30,0.3);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); color:rgba(232,220,196,0.15); font-size:0.9rem;
  text-align:center; padding:20px;
}
.about-person__stamp {
  position: absolute;
  bottom: -14px; right: -14px;
  z-index: 20;
  pointer-events: none;
  background: var(--rebel-red);
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-8deg);
  font-family: var(--font-special); font-size: 0.65rem;
  color: var(--off-bone); text-align: center; line-height: 1.4;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 8px;
}
.about-person__name {
  font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem);
  color: var(--off-bone); margin-bottom: 6px;
}
.about-person__title {
  font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ember-orange); margin-bottom: 28px;
}
.about-person__bio p {
  font-family: var(--font-body); font-size: 1rem; line-height: 1.85;
  color: rgba(232,220,196,0.82); margin-bottom: 18px;
}
.about-person__bio p:last-child { margin-bottom: 0; }
