/* ================================================
   RAWBARSOAP — style.css v3
   Mobile-first | Whisky & Premium Leather palette
   Bg: #F2EBDD · Dark: #241A12 · Accent: #B5742D
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* ---- Rugged Outdoorsman Palette ---- */
  --bg:            #E8E4DC;
  --bg-alt:        #DEDAD0;
  --bg-dark:       #1C2620;
  --bg-dark-2:     #131A17;
  --text:          #1E1E1A;
  --text-muted:    #5A4030;
  --text-on-dark:  #E4E0D8;
  --text-dim:      #8A7A6A;
  --accent:        #BF5A2A;
  --accent-hover:  #A04820;
  --secondary:     #2E4034;
  --card-bg:       #D2CEC8;
  --border:        #C2BDB5;
  --white:         #FFFFFF;

  /* ---- Typography ---- */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font:       'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* ---- Layout ---- */
  --max-w:  1140px;
  --radius: 8px;
  --ease:   0.28s cubic-bezier(0.4, 0, 0.2, 1);

  /* ---- Shadows ---- */
  --shadow-card:  0 2px 10px rgba(28,38,32,0.12), 0 1px 3px rgba(28,38,32,0.08);
  --shadow-hover: 0 12px 32px rgba(28,38,32,0.20), 0 4px 10px rgba(28,38,32,0.12);
  --shadow-btn:   0 3px 14px rgba(191,90,42,0.38);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
section { padding: 4.5rem 0; }

/* ---- Scroll fade-in ---- */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text-on-dark);
  line-height: 1;
  transition: opacity var(--ease);
}
.logo span { color: var(--accent); }
.logo:hover { color: var(--text-on-dark); opacity: 0.85; }

/* Nav links — desktop */
.nav-links {
  display: none;
  gap: 2.25rem;
}
.nav-links a {
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--ease);
  position: relative;
  padding-bottom: 3px;
}
/* Animated underline on nav links */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover { color: var(--text-on-dark); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Hamburger */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 1px;
  transition: background var(--ease);
}
.nav-toggle:active span { background: var(--accent); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 1rem 1.25rem;
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--ease), background var(--ease), padding-left var(--ease);
  min-height: 52px;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover,
.mobile-nav a:active {
  color: var(--text-on-dark);
  background: rgba(191,90,42,0.08);
  padding-left: 1.6rem;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  min-height: 48px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition:
    background var(--ease),
    color var(--ease),
    border-color var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(191,90,42,0.45);
}
.btn-primary:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px rgba(191,90,42,0.30);
}
.btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  background: rgba(191,90,42,0.06);
}
.btn-outline:active {
  transform: translateY(0) scale(0.97);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.035) 1px, transparent 0),
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(191,90,42,0.13) 0%, transparent 65%),
    linear-gradient(rgba(19,26,23,0.72) 0%, rgba(28,38,32,0.82) 100%),
    url('https://images.pexels.com/photos/8688565/pexels-photo-8688565.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: 28px 28px, 100% 100%, 100% 100%, cover;
  background-position: 0 0, 0 0, 0 0, center center;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  color: var(--text-on-dark);
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(191,90,42,0.14);
  border: 1px solid rgba(191,90,42,0.32);
  padding: 0.38rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 0;
  font-weight: 800;
  line-height: 1.1;
}
.hero-rule {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(191,90,42,0.4));
  margin: 1.5rem auto 1.75rem;
  border-radius: 2px;
}
.hero p {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   SECTION HEADER
   ================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.section-header::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(191,90,42,0.35));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ================================================
   CARDS GRID
   ================================================ */
.cards-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

/* ================================================
   PRODUCT CARDS (homepage)
   ================================================ */
.top-picks {
  background: var(--bg-alt);
  background-image:
    linear-gradient(rgba(232,228,220,0.93) 0%, rgba(210,206,200,0.93) 100%),
    url('https://images.pexels.com/photos/6621497/pexels-photo-6621497.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: 100% 100%, cover;
  background-position: 0 0, center center;
  background-repeat: no-repeat, no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guides {
  background: var(--bg);
  background-image:
    linear-gradient(rgba(240,236,228,0.94) 0%, rgba(232,228,220,0.92) 100%),
    url('https://images.pexels.com/photos/4041392/pexels-photo-4041392.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: 100% 100%, cover;
  background-position: 0 0, center 40%;
  background-repeat: no-repeat, no-repeat;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.card:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

/* Image zoom on card hover */
.card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover .card-img img { transform: scale(1.05); }

.card-body {
  padding: 1.4rem 1.4rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-label {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--accent);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.card-body h3 { font-size: 1.05rem; margin-bottom: 0.55rem; line-height: 1.3; }
.card-body p {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.65;
  flex: 1;
}
.card-footer {
  padding: 0.9rem 1.4rem 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--bg-alt);
}
.card-price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}
.card-footer .btn { font-size: 0.72rem; padding: 0.55rem 1.1rem; min-height: 42px; }

/* ================================================
   GUIDE CARDS
   ================================================ */
.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease), border-top-color var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--accent);
}
.guide-card:active {
  transform: translateY(-2px);
}
.guide-tag {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.guide-card h3 { font-size: 1.1rem; line-height: 1.3; }
.guide-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.65; }
.read-more {
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: auto;
  padding-top: 0.65rem;
  position: relative;
  display: inline-block;
}
.read-more::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.guide-card:hover .read-more::after { width: 100%; }
.read-more:hover { color: var(--accent-hover); }

/* ================================================
   WHY SECTION
   ================================================ */
.why {
  background: var(--secondary);
  background-image:
    linear-gradient(rgba(28,38,32,0.88) 0%, rgba(19,26,23,0.92) 100%),
    url('https://images.pexels.com/photos/1108572/pexels-photo-1108572.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: 100% 100%, cover;
  background-position: 0 0, center center;
  background-repeat: no-repeat, no-repeat;
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(191,90,42,0.08);
  pointer-events: none;
}
.why::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(28,38,32,0.2);
  pointer-events: none;
}
.why .section-header h2 { color: var(--white); }
.why .section-header p  { color: rgba(228,224,216,0.72); }
.why .section-header::after { background: var(--accent); }
.why-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}
.why-item { text-align: center; }
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(191,90,42,0.15);
  border: 1px solid rgba(191,90,42,0.35);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  transition: background var(--ease);
}
.why-item:hover .why-icon { background: rgba(191,90,42,0.25); }
.why-icon::after {
  content: '';
  display: block;
  width: 20px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.why-item h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.1rem; }
.why-item p  { color: rgba(228,224,216,0.72); font-size: 0.93rem; }

/* ================================================
   FIND YOUR BAR QUIZ
   ================================================ */
.quiz-section {
  background: var(--bg-dark);
  background-image:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(191,90,42,0.10) 0%, transparent 70%);
  padding: 5rem 0;
  text-align: center;
}
.quiz-section .section-header h2 { color: var(--white); }
.quiz-section .section-header p  { color: var(--text-dim); }
.quiz-section .section-header::after { background: var(--accent); }

.quiz-box {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; }

.quiz-question {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--white);
  margin-bottom: 1.75rem;
  line-height: 1.4;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  min-height: 58px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text-dim);
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  width: 100%;
}
.quiz-option:hover {
  background: rgba(191,90,42,0.12);
  border-color: var(--accent);
  color: var(--text-on-dark);
  transform: translateX(4px);
}
.quiz-option:active {
  transform: translateX(2px) scale(0.98);
}
.quiz-option.selected {
  background: rgba(191,90,42,0.18);
  border-color: var(--accent);
  color: var(--white);
}
.quiz-option-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}
.quiz-option-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-on-dark);
  margin-bottom: 0.15rem;
}
.quiz-option-text span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.quiz-progress {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.quiz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background var(--ease);
}
.quiz-dot.active { background: var(--accent); }
.quiz-dot.done   { background: rgba(191,90,42,0.45); }

/* Quiz result */
.quiz-result { display: none; }
.quiz-result.active { display: block; }
.quiz-result-inner {
  background: rgba(191,90,42,0.08);
  border: 1px solid rgba(191,90,42,0.25);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  margin-top: 0.5rem;
}
.quiz-result-label {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.quiz-result-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.quiz-result-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.quiz-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.quiz-restart {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 0.76rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}
.quiz-restart:hover { color: var(--accent); }

/* ================================================
   DISCLOSURE BANNER
   ================================================ */
.disclosure-banner {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.disclosure-banner a { color: var(--text-muted); text-decoration: underline; }
.disclosure-banner a:hover { color: var(--accent); }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-dim);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text-on-dark);
  text-decoration: none;
  transition: opacity var(--ease);
}
.footer-logo:hover { opacity: 0.8; color: var(--text-on-dark); }
.footer-logo span { color: var(--accent); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.footer-nav a {
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  transition: color var(--ease);
  padding: 0.25rem 0;
}
.footer-nav a:hover { color: var(--text-on-dark); }
.footer-copy { font-size: 0.73rem; color: rgba(138,122,106,0.6); }

/* ================================================
   DISCLOSURE PAGE
   ================================================ */
.disclosure-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.25rem 6rem;
}
.disclosure-page h1 { margin-bottom: 0.5rem; }
.disclosure-page .last-updated {
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.85rem;
  margin-bottom: 3rem;
}
.disclosure-page h2 {
  font-size: 1.2rem;
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.disclosure-page p  { color: var(--text-muted); }
.disclosure-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-muted);
}
.disclosure-page ul li { margin-bottom: 0.45rem; }

/* ================================================
   ARTICLE / GUIDE PAGES
   ================================================ */
.breadcrumb {
  padding: 1rem 0;
  font-family: var(--font);
  font-size: 0.78rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--text-muted); text-decoration: underline; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 0.4rem; }

.article-header {
  padding: 3rem 0 0;
  max-width: 800px;
}
.article-header h1 { margin-bottom: 1rem; }
.article-meta {
  font-family: var(--font);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.article-meta strong { color: var(--text); }
.article-intro {
  font-size: 1.03rem;
  color: var(--text-muted);
  max-width: 800px;
  line-height: 1.85;
  border-left: 4px solid var(--accent);
  padding: 0.9rem 0 0.9rem 1.5rem;
  margin: 1.5rem 0 2.5rem;
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-disclosure {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.8rem 1.25rem;
  font-family: var(--font);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 1.25rem 0 2rem;
  line-height: 1.55;
}
.article-disclosure a { color: var(--accent); text-decoration: underline; }

.related-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 3rem 0;
}
.related-box p {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.related-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.related-box ul li a { font-size: 0.92rem; font-weight: 600; color: var(--accent); }
.related-box ul li a:hover { color: var(--accent-hover); }

.article-wrap { padding: 2.5rem 0 6rem; }
.article-body { max-width: 800px; }
.article-body h2 {
  font-family: var(--font-serif);
  margin: 3.5rem 0 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--bg-alt);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  margin: 2rem 0 0.65rem;
  color: var(--text);
}
.article-body p  { color: var(--text-muted); line-height: 1.85; }
.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.4rem; }

/* Quick picks table */
.quick-picks {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  margin: 1.75rem 0 2.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.quick-picks th {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 0.9rem 1.1rem;
  text-align: left;
  font-family: var(--font);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.quick-picks td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: middle;
  background: var(--white);
}
.quick-picks tr:last-child td  { border-bottom: none; }
.quick-picks tr:nth-child(even) td { background: var(--bg); }
.quick-picks td:first-child    { color: var(--text); font-weight: 600; }
.quick-picks .pick-label {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.61rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--accent);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  white-space: nowrap;
}
.quick-picks .btn { font-size: 0.71rem; padding: 0.4rem 0.85rem; min-height: 38px; white-space: nowrap; }
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* Product review block */
.product-reviews { margin: 0.5rem 0; }
.product-review {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
.product-review:last-child { border-bottom: none; }

.review-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.review-heading {
  display: flex;
  align-items: center;
  margin-bottom: 0.65rem;
}
.review-heading h2 {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  font-size: clamp(1rem, 2.5vw, 1.25rem) !important;
}
.review-sublabel {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.review-text p { color: var(--text-muted); margin-bottom: 0.85rem; line-height: 1.85; }

/* Pros / Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.pros, .cons {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.pros { border-top: 3px solid #4a7c59; }
.cons { border-top: 3px solid #8b3a3a; }
.pros h4, .cons h4 {
  font-family: var(--font);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.pros h4 { color: #4a7c59; }
.cons h4 { color: #8b3a3a; }
.pros ul, .cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pros ul li::before { content: "✓  "; color: #4a7c59; font-weight: 700; }
.cons ul li::before { content: "✗  "; color: #8b3a3a; font-weight: 700; }
.pros ul li, .cons ul li { margin-bottom: 0.35rem; }

/* Buy box */
.buy-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-self: start;
  box-shadow: var(--shadow-card);
}
.buy-box-name {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--text);
}
.buy-box-price {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.buy-box .btn { width: 100%; text-align: center; }
.buy-box-note {
  font-family: var(--font);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* FAQ */
.faq { margin: 0.5rem 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item:last-child  { border-bottom: none; }
.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  line-height: 1.4;
}
.faq-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.85;
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 1.25rem 6rem;
}
.about-page h1 { margin-bottom: 0.75rem; }
.about-page .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  display: block;
}
.about-page h2 {
  margin: 2.75rem 0 0.85rem;
  font-size: 1.3rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.about-page p { color: var(--text-muted); line-height: 1.85; }

/* ================================================
   RESPONSIVE — Tablet 768px+
   ================================================ */
@media (min-width: 768px) {
  .nav-links  { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid   { grid-template-columns: repeat(3, 1fr); }

  .product-review {
    grid-template-columns: 1fr 240px;
    align-items: start;
  }
  .buy-box { position: sticky; top: 80px; }

  .why-item { text-align: left; }
  .why-icon { margin: 0 0 1.25rem; }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
  .footer-nav { justify-content: flex-start; }

  .quiz-options { flex-direction: column; }
  .quiz-actions { flex-direction: row; justify-content: center; }
}

/* ================================================
   RESPONSIVE — Desktop 1024px+
   ================================================ */
@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .hero       { padding: 8rem 0 7rem; }
}

/* ================================================
   FEATURE BAND
   ================================================ */
.feature-band {
  background: var(--bg-dark-2);
  background-image:
    linear-gradient(rgba(19,26,23,0.78) 0%, rgba(19,26,23,0.82) 100%),
    url('https://images.pexels.com/photos/7500227/pexels-photo-7500227.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: 100% 100%, cover;
  background-position: 0 0, center 40%;
  background-repeat: no-repeat, no-repeat;
  border-top: 1px solid rgba(191,90,42,0.18);
  border-bottom: 1px solid rgba(191,90,42,0.18);
  padding: 2.5rem 0;
}
.feature-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.feature-stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-family: var(--font);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.feature-divider {
  width: 1px;
  height: 44px;
  background: rgba(191,90,42,0.22);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .feature-divider { display: none; }
  .feature-band-inner { gap: 2rem; }
}

/* ================================================
   INGREDIENTS SECTION
   ================================================ */
.ingredients {
  background: var(--bg-dark);
  background-image:
    linear-gradient(rgba(19,26,23,0.85) 0%, rgba(28,38,32,0.90) 100%),
    url('https://images.pexels.com/photos/4041392/pexels-photo-4041392.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: 100% 100%, cover;
  background-position: 0 0, center 30%;
  background-repeat: no-repeat, no-repeat;
  padding: 5rem 0;
}
.ingredients .section-header h2 { color: var(--white); }
.ingredients .section-header p  { color: var(--text-dim); }
.ingredients .section-header::after { background: var(--accent); }
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.ingredient-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.ingredient-card:hover {
  background: rgba(191,90,42,0.09);
  border-color: rgba(191,90,42,0.28);
  transform: translateY(-4px);
}
.ingredient-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(191,90,42,0.13);
  border: 1.5px solid rgba(191,90,42,0.30);
  margin: 0 auto 1rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 800;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
}
.ingredient-card h3 {
  color: var(--white);
  font-size: 0.97rem;
  margin-bottom: 0.45rem;
}
.ingredient-card p {
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
}
@media (min-width: 768px) {
  .ingredient-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

/* Card star ratings */
.card-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

/* ================================================
   GUIDE CARD IMAGE THUMBNAILS
   ================================================ */
.guide-card-img {
  margin: -1.75rem -1.75rem 1.25rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}
.guide-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.guide-card:hover .guide-card-img img { transform: scale(1.05); }

/* ================================================
   ARTICLE HERO IMAGE (inner guide pages)
   ================================================ */
.article-hero-img {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.75rem 0 2.5rem;
}

/* ================================================
   STAR RATINGS
   ================================================ */
.stars {
  display: inline-block;
  color: #C8922A;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.stars-count {
  font-family: var(--font);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: 0.35rem;
}

/* ================================================
   REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}
