/* ==============================================
   激辛高菜先生 共通スタイルシート
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Shippori+Mincho:wght@400;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --red:       #c0392b;
  --red-dark:  #8e1a0e;
  --red-light: #e74c3c;
  --gold:      #c9932a;
  --gold-light:#e8b84b;
  --black:     #1a1008;
  --charcoal:  #2d1f0f;
  --ink:       #3d2b18;
  --paper:     #faf6ef;
  --paper2:    #f2ebe0;
  --paper3:    #e8ddd0;
  --white:     #ffffff;
  --gray:      #7a6a5a;
  --gray-light:#c8bfb0;
  --border:    #d8cfc0;

  --font-body:    'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-heading: 'Shippori Mincho', 'Hiragino Mincho ProN', serif;

  --max-w: 1080px;
  --radius: 4px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow:    0 4px 20px rgba(0,0,0,0.12);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--black);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--red); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  line-height: 1.3;
}

/* --- Utility --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  background: var(--black);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.25;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: .08em;
  font-weight: 400;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
}
.nav-list a {
  display: block;
  color: var(--paper2);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
  transition: background .18s, color .18s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-list a:hover,
.nav-list a.active {
  background: var(--red);
  color: var(--white);
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* mobile nav */
@media (max-width: 820px) {
  .hamburger { display: flex; }
  .nav-list {
    display: none;
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: var(--charcoal);
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    border-bottom: 3px solid var(--red);
    z-index: 300;
  }
  .nav-list.open { display: flex; }
  .nav-list a { font-size: 1rem; padding: 0.75rem 1rem; }
}

/* ============================================
   HERO (top page)
   ============================================ */
.hero {
  background: var(--black);
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      transparent 0px, transparent 60px,
      rgba(192,57,43,.06) 60px, rgba(192,57,43,.06) 61px);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .8rem;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub {
  color: var(--paper3);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.hero-features {
  list-style: none;
  margin-bottom: 1.8rem;
}
.hero-features li {
  color: #b8a898;
  font-size: 0.88rem;
  padding: .2rem 0 .2rem 1.2rem;
  position: relative;
}
.hero-features li::before {
  content: '|';
  position: absolute; left: 0;
  color: var(--red);
  font-weight: 900;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.hero-image {
  text-align: center;
}
.hero-image img {
  max-height: 340px;
  margin: 0 auto;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.5));
}
.hero-image figcaption {
  color: var(--gold-light);
  font-size: .8rem;
  font-style: italic;
  margin-top: .6rem;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  padding: 3rem 1.25rem 2.5rem;
  text-align: center;
  border-bottom: 4px solid var(--red);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: .5rem;
}
.page-hero h1 em { color: var(--gold-light); font-style: normal; }
.page-hero p {
  color: var(--paper3);
  font-size: .95rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   MARQUEE TICKER
   ============================================ */
.ticker {
  background: var(--red);
  padding: .5rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}
@keyframes ticker {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--charcoal);
  padding: 1.5rem 1.25rem;
}
.stats-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: var(--paper3);
  margin-top: .25rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 3.5rem 1.25rem;
}
.section-alt { background: var(--paper2); }
.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .4rem;
}
.section-label-gold { color: var(--gold-light); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.section-title em { color: var(--red); font-style: normal; }
.section-title-white { color: var(--white); }
.section-title-white em { color: var(--gold-light); }

.section-lead {
  font-size: .95rem;
  color: var(--ink);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.section-lead-white { color: var(--paper3); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, opacity .2s;
  line-height: 1.3;
}
.btn:hover { opacity: .88; text-decoration: none; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); opacity: 1; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); opacity: 1; }

.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-img-wrap { position: relative; }
.card-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.card-badge {
  position: absolute;
  top: .6rem; left: .6rem;
  background: var(--red);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 2px;
}
.card-badge-gold { background: var(--gold); color: var(--black); }

.card-body {
  padding: 1.1rem 1.2rem 1.4rem;
}
.card-level {
  font-size: .72rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .05em;
  margin-bottom: .3rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.lv-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lv-1  { background: #2ecc71; }
.lv-2  { background: #f39c12; }
.lv-4  { background: #e67e22; }
.lv-8  { background: var(--red); }
.lv-10 { background: #6c1a1a; }

.card-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  margin-bottom: .4rem;
  line-height: 1.3;
}
.card-desc {
  font-size: .88rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: .9rem;
}
.card-price {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: .8rem;
  font-family: var(--font-heading);
}

/* ============================================
   HEAT LEVEL TABLE
   ============================================ */
.heat-table-wrap { overflow-x: auto; }
.heat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.heat-table th {
  background: var(--black);
  color: var(--white);
  padding: .8rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: .85rem;
}
.heat-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.heat-table tr:nth-child(even) td { background: var(--paper2); }
.heat-table tr:hover td { background: #eeddc8; }

.lv-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.lv-circle.lv-1-bg  { background: #2ecc71; }
.lv-circle.lv-2-bg  { background: #f39c12; }
.lv-circle.lv-4-bg  { background: #e67e22; }
.lv-circle.lv-8-bg  { background: var(--red); }
.lv-circle.lv-10-bg { background: #6c1a1a; }

.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}
.chip {
  background: var(--paper3);
  color: var(--ink);
  font-size: .75rem;
  padding: .2rem .55rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  font-weight: 700;
}
.chip-red { background: var(--red); color: var(--white); border-color: var(--red); }

/* ============================================
   CHILI CARDS
   ============================================ */
.chili-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.4rem;
}
.chili-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.chili-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.chili-card-body { padding: 1rem 1rem 1.2rem; }
.chili-num {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 2px;
  margin-bottom: .5rem;
}
.chili-card h3 {
  font-size: .95rem;
  margin-bottom: .3rem;
}
.chili-scoville {
  font-size: .8rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: .4rem;
}
.chili-usage {
  font-size: .75rem;
  color: var(--gray);
  margin-bottom: .5rem;
}
.chili-card p {
  font-size: .83rem;
  color: var(--ink);
  line-height: 1.65;
}

/* ============================================
   FEATURE BLOCKS
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}
.feature-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1.3rem;
}
.feature-item h3 {
  font-size: .98rem;
  margin-bottom: .4rem;
}
.feature-item p {
  font-size: .88rem;
  color: var(--ink);
  line-height: 1.7;
}

/* ============================================
   INFO / ACCESS TABLE
   ============================================ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.info-table th {
  background: var(--paper2);
  width: 32%;
  padding: .75rem 1rem;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.info-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

/* ============================================
   STEP LIST
   ============================================ */
.step-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.step-item { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 40px; height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-body h3 { font-size: .98rem; margin-bottom: .25rem; }
.step-body p  { font-size: .88rem; color: var(--ink); line-height: 1.7; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: .7rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  background: var(--paper2);
  padding: 1.1rem 1.2rem;
  font-weight: 700;
  font-size: .98rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .2s;
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 1rem 1.2rem;
  font-size: .92rem;
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--border);
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ============================================
   NEWS LIST
   ============================================ */
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.news-date {
  font-size: .78rem;
  color: var(--gray);
  white-space: nowrap;
  padding-top: .2rem;
  min-width: 70px;
}
.news-title { font-weight: 700; font-size: .95rem; margin-bottom: .2rem; }
.news-excerpt { font-size: .88rem; color: var(--ink); }

/* ============================================
   STORE CARDS
   ============================================ */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}
.store-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.store-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.store-card-body { padding: 1.2rem; }
.store-tag {
  font-size: .7rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.store-card h3 {
  font-size: 1.1rem;
  margin-bottom: .8rem;
}

/* ============================================
   QUANTITY SELL TAGS
   ============================================ */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.5rem;
}
.product-tag {
  background: var(--paper3);
  color: var(--charcoal);
  font-size: .82rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}

/* ============================================
   MEDIA LIST
   ============================================ */
.media-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.media-list li {
  font-size: .92rem;
  padding: .55rem .9rem;
  background: var(--paper2);
  border-left: 3px solid var(--red);
}

/* ============================================
   CONTACT BLOCKS
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
}
.contact-block h2 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
}
.contact-block p {
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.tel-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: .4rem;
  line-height: 1.2;
}
.required-items {
  margin-top: 1.2rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.required-items h4 {
  font-size: .88rem;
  color: var(--gray);
  margin-bottom: .5rem;
}
.required-items ol {
  padding-left: 1.4rem;
  font-size: .88rem;
  color: var(--ink);
  line-height: 1.9;
}

/* ============================================
   NOTICE BOX
   ============================================ */
.notice {
  background: #fff8e8;
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.2rem;
  font-size: .9rem;
  color: var(--charcoal);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.notice a { color: var(--red); }

/* ============================================
   EXPERIENCE STEPS (taiken page)
   ============================================ */
.exp-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.exp-step {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.exp-step:last-child { border-bottom: none; }
.exp-step img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius);
}
.exp-step-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.exp-step h3 { font-size: 1rem; margin-bottom: .4rem; }
.exp-step p  { font-size: .9rem; color: var(--ink); line-height: 1.75; }

/* ============================================
   PRICE TABLE (taiken page)
   ============================================ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.price-table th {
  background: var(--black);
  color: var(--white);
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 700;
}
.price-table td {
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.price-table tr:nth-child(even) td { background: var(--paper2); }
.strike { text-decoration: line-through; color: var(--gray); }
.price-highlight { font-weight: 900; color: var(--red); font-size: 1.05rem; }

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: var(--charcoal);
  padding: 3rem 1.25rem;
  text-align: center;
  border-top: 4px solid var(--red);
}
.cta-strip h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--white);
  margin-bottom: .5rem;
}
.cta-strip p {
  color: var(--paper3);
  font-size: .92rem;
  margin-bottom: 1.5rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  color: var(--paper3);
  padding: 3.5rem 1.25rem 1.5rem;
  border-top: 4px solid var(--red);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .6rem;
}
.footer-brand p {
  font-size: .83rem;
  color: #8a7a6a;
  line-height: 1.75;
}
.footer-col-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .8rem;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.footer-nav a {
  font-size: .88rem;
  color: #b8a898;
  text-decoration: none;
}
.footer-nav a:hover { color: var(--white); opacity: 1; }
.footer-bottom {
  border-top: 1px solid #2a1f14;
  padding-top: 1.2rem;
  text-align: center;
  font-size: .78rem;
  color: #5a4a3a;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  background: var(--paper2);
  border-bottom: 1px solid var(--border);
  padding: .5rem 1.25rem;
  font-size: .8rem;
  color: var(--gray);
}
.breadcrumb-inner { max-width: var(--max-w); margin: 0 auto; }
.breadcrumb a { color: var(--red); }

/* ============================================
   TWO-COL LAYOUT
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.two-col-img img {
  width: 100%;
  border-radius: var(--radius);
}

/* ============================================
   REVIEW PHOTOS
   ============================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .6rem;
}
.review-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 820px) {
  html { font-size: 16px; }

  .hero-inner { grid-template-columns: 1fr; padding: 2.5rem 1.25rem; gap: 2rem; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 200px; }

  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }

  .two-col { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }

  .exp-step { grid-template-columns: 1fr; }
  .exp-step img { max-width: 280px; }
}

@media (max-width: 560px) {
  html { font-size: 15px; }

  .section { padding: 2.5rem 1rem; }
  .page-hero { padding: 2rem 1rem 1.8rem; }

  .card-grid { grid-template-columns: 1fr 1fr; }
  .chili-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .store-grid { grid-template-columns: 1fr; }

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

  .heat-table { font-size: .82rem; }
  .heat-table th, .heat-table td { padding: .6rem .75rem; }

  .btn { font-size: .9rem; padding: .7rem 1.4rem; }
  .btn-lg { padding: .8rem 1.6rem; font-size: .95rem; }
}

@media (max-width: 380px) {
  .card-grid { grid-template-columns: 1fr; }
  .chili-grid { grid-template-columns: 1fr; }
}
