/* ============================================
   BOURBON & SMOKE — Main Stylesheet
   ============================================ */

:root {
  --amber:     #C8720A;
  --amber-lt:  #E8A040;
  --amber-dk:  #8B4F06;
  --amber-glow:#F5B942;
  --dark:      #1A1208;
  --dark-2:    #2A1E10;
  --dark-3:    #3D2B14;
  --tan:       #F5ECD8;
  --tan-2:     #EAD9BB;
  --tan-3:     #DFC9A0;
  --smoke:     #6B6055;
  --light-txt: #9E8E7A;
  --white:     #FFFFFF;
  --max-w:     1180px;
  --radius:    8px;
  --shadow-sm: 0 2px 8px rgba(26,18,8,0.10);
  --shadow-md: 0 6px 24px rgba(26,18,8,0.14);
  --shadow-lg: 0 12px 48px rgba(26,18,8,0.20);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--tan);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(200,114,10,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(139,79,6,0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%23F5ECD8'/%3E%3Crect width='1' height='1' fill='%23E8D5B0' opacity='0.4'/%3E%3C/svg%3E");
  color: var(--dark);
  line-height: 1.6;
}

a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--amber-dk); }

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

/* ---- TOP BAR ---- */
.topbar {
  background: var(--dark);
  color: var(--amber-lt);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 7px 0;
  text-transform: uppercase;
  border-bottom: 1px solid var(--dark-3);
}

/* ---- HEADER ---- */
.site-header {
  background: linear-gradient(180deg, #1F1509 0%, var(--dark-2) 100%);
  border-bottom: 3px solid var(--amber);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
}

/* ---- WORDMARK TEXT COLUMN ---- */
.logo-vr {
  width: 0.5px;
  height: 46px;
  background: linear-gradient(180deg, transparent, #C9A84C, transparent);
  flex-shrink: 0;
}

.logo-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-rule-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.logo-rule-row:last-of-type {
  margin-bottom: 0;
  margin-top: 4px;
}

.logo-rule-line {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}

.logo-diamond {
  width: 5px;
  height: 5px;
  background: #C9A84C;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.logo-main-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.logo-primary {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #C9A84C;
  letter-spacing: 0.12em;
  line-height: 1;
}

.logo-amp {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #8B6914;
}

.logo-sub { margin-top: 1px; }

.logo-reviews {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #C9A84C;
  letter-spacing: 0.18em;
}

.logo-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.38rem;
  letter-spacing: 0.38em;
  color: #6B5010;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Footer brand (simpler version) */
.logo-primary.small {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: #C9A84C;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  color: var(--tan-2);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.main-nav a:hover {
  color: var(--amber-glow);
  background: rgba(200,114,10,0.12);
}

.nav-cta {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dk) 100%) !important;
  color: var(--white) !important;
  padding: 7px 18px !important;
  box-shadow: 0 2px 10px rgba(200,114,10,0.4);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--amber-glow) 0%, var(--amber) 100%) !important;
  box-shadow: 0 4px 16px rgba(200,114,10,0.5) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, #0F0A04 0%, #1A1005 40%, #2A1A08 70%, #3A2210 100%);
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(200,114,10,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(139,79,6,0.15) 0%, transparent 40%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 52%;
  background:
    linear-gradient(90deg, #0F0A04 0%, rgba(15,10,4,0.3) 35%, transparent 60%),
    url('https://images.unsplash.com/photo-1569529465841-dfecdab7503b?w=900&q=85&fit=crop') center/cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 72px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-glow);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--amber-glow);
  opacity: 0.7;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(242,232,213,0.85);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.75;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-glow) 0%, var(--amber) 60%, var(--amber-dk) 100%);
  color: var(--white);
  box-shadow: 0 3px 14px rgba(200,114,10,0.45);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #F5C855 0%, var(--amber-glow) 60%, var(--amber) 100%);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(200,114,10,0.55);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: rgba(242,232,213,0.9);
  border: 1.5px solid rgba(232,160,64,0.45);
}
.btn-ghost:hover {
  border-color: var(--amber-glow);
  color: var(--amber-glow);
  background: rgba(200,114,10,0.08);
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber-glow) 0%, var(--amber) 100%);
  color: var(--white);
  box-shadow: 0 3px 14px rgba(200,114,10,0.4);
}
.btn-amber:hover {
  background: linear-gradient(135deg, #F5C855 0%, var(--amber-glow) 100%);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(200,114,10,0.5);
  transform: translateY(-1px);
}

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

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tan-3), transparent);
}

.divider-icon {
  color: var(--amber);
  font-size: 1rem;
  opacity: 0.7;
}

/* ---- LAYOUT ---- */
.layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 44px;
  padding-top: 52px;
  padding-bottom: 52px;
}

/* ---- SECTION TITLE ---- */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 14px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-glow));
  border-radius: 2px;
}

/* ---- POSTS GRID ---- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(200,114,10,0.08);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,114,10,0.2);
}

.post-img-link { display: block; overflow: hidden; position: relative; }

.post-img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/* Color-tinted overlay on each card image */
.post-img-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,18,8,0.55) 100%);
  pointer-events: none;
}

.post-card > .post-meta,
.post-card > h3,
.post-card > p,
.post-card > .read-more { padding: 0 20px; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px !important;
  padding-bottom: 8px !important;
}

.tag {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dk) 100%);
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
}

.tag-pairing { background: linear-gradient(135deg, #7B3FAA, #5A2080); }
.tag-guide   { background: linear-gradient(135deg, #2A7B4F, #1A5535); }
.tag-local   { background: linear-gradient(135deg, #1A5B8B, #0F3A5C); }

.date {
  font-size: 0.75rem;
  color: var(--light-txt);
}

.post-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.38;
  margin-bottom: 10px;
  color: var(--dark);
}

.post-card h3 a { color: var(--dark); }
.post-card h3 a:hover { color: var(--amber); }

.post-card p {
  font-size: 0.875rem;
  color: var(--smoke);
  line-height: 1.65;
  margin-bottom: 16px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding-bottom: 18px !important;
  transition: gap 0.2s;
}
.read-more:hover { color: var(--amber-dk); gap: 8px; }

/* ---- SIDEBAR ---- */
.sidebar { display: flex; flex-direction: column; gap: 22px; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,114,10,0.08);
}

.sidebar-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--tan-2);
  color: var(--dark);
  position: relative;
}

.sidebar-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--amber);
}

/* Newsletter card */
.newsletter-card {
  background:
    linear-gradient(135deg, #1A1005 0%, #2A1A08 60%, #3A2210 100%);
  border-color: rgba(200,114,10,0.25);
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(200,114,10,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--amber-glow);
  margin-bottom: 8px;
  position: relative;
}

.newsletter-card p {
  font-size: 0.875rem;
  color: rgba(242,232,213,0.8);
  margin-bottom: 18px;
  position: relative;
}

.newsletter-form { display: flex; flex-direction: column; gap: 8px; position: relative; }

.newsletter-form input {
  padding: 11px 14px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(200,114,10,0.3);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input:focus { border-color: var(--amber-glow); }
.newsletter-form input::placeholder { color: rgba(158,142,122,0.8); }

.newsletter-form button {
  padding: 11px;
  background: linear-gradient(135deg, var(--amber-glow) 0%, var(--amber) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(200,114,10,0.4);
  letter-spacing: 0.04em;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #F5C855 0%, var(--amber-glow) 100%);
  box-shadow: 0 4px 18px rgba(200,114,10,0.55);
}

.form-note {
  font-size: 0.7rem !important;
  color: rgba(158,142,122,0.7) !important;
  margin-top: 6px;
  margin-bottom: 0 !important;
  position: relative;
}

/* Picks list */
.pick-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.pick-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--tan);
  transition: background 0.2s;
  cursor: pointer;
}

.pick-list li:hover { background: var(--tan-2); }

.pick-img {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.pick-img-color {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.pick-bourbon { background: linear-gradient(135deg, #6B3A06, #C8720A, #E8A040); }
.pick-cigar   { background: linear-gradient(135deg, #3A1A08, #8B5030, #C8906A); }
.pick-humidor { background: linear-gradient(135deg, #2A1A08, #5C3A1A, #8B6040); }

.pick-list strong { display: block; font-size: 0.85rem; color: var(--dark); line-height: 1.3; }
.pick-list span { font-size: 0.72rem; color: var(--amber); font-weight: 500; }

.affiliate-note {
  font-size: 0.7rem;
  color: var(--light-txt);
  margin-top: 14px;
  font-style: italic;
  padding-top: 10px;
  border-top: 1px solid var(--tan-2);
}

/* Category list */
.cat-list { list-style: none; }

.cat-list li { border-bottom: 1px solid var(--tan-2); }
.cat-list li:last-child { border-bottom: none; }

.cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--dark);
  transition: color 0.2s, padding-left 0.2s;
}

.cat-list a:hover { color: var(--amber); padding-left: 4px; }

.cat-list span {
  background: linear-gradient(135deg, var(--tan-2), var(--tan-3));
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  color: var(--smoke);
}

/* ---- PROMO BAND ---- */
.promo-band {
  background:
    linear-gradient(135deg, #120C04 0%, #1E1208 40%, #2A1A0A 70%, #3A2210 100%);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--amber), var(--amber-glow), var(--amber), transparent) 1;
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}

.promo-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,114,10,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(245,185,66,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.promo-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.promo-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.promo-inner p {
  font-size: 0.9rem;
  color: rgba(242,232,213,0.8);
  max-width: 540px;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
  background: linear-gradient(180deg, #150E06 0%, #0F0A04 100%);
  padding: 52px 0 0;
  border-top: 3px solid var(--dark-3);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--dark-3);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--light-txt);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-glow);
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.875rem; color: var(--light-txt); transition: color 0.2s; }
.footer-links a:hover { color: var(--amber-lt); }

.footer-bottom {
  text-align: center;
  padding: 16px 0;
  font-size: 0.72rem;
  color: var(--smoke);
  letter-spacing: 0.03em;
}

/* ---- ARTICLE PAGE ---- */
.article-hero {
  background:
    linear-gradient(135deg, #0F0A04 0%, #1A1005 40%, #2A1A08 70%, #3A2210 100%);
  padding: 64px 0 44px;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(200,114,10,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(139,79,6,0.12) 0%, transparent 40%);
}

.article-hero .category-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dk) 100%);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 18px;
  position: relative;
  box-shadow: 0 2px 10px rgba(200,114,10,0.4);
}

.article-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  max-width: 740px;
  margin-bottom: 18px;
  position: relative;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--light-txt);
  position: relative;
}

/* Article layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  padding-top: 44px;
  padding-bottom: 64px;
}

.article-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 52px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,114,10,0.07);
}

.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--dark);
  margin: 40px 0 16px;
  padding-top: 10px;
  border-top: 1px solid var(--tan-2);
  position: relative;
}

.article-content h2::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-glow));
}

.article-content h2:first-child { margin-top: 0; border-top: none; }
.article-content h2:first-child::before { display: none; }

.article-content p {
  font-size: 1.01rem;
  line-height: 1.82;
  color: #2A1E10;
  margin-bottom: 18px;
}

.article-content ul, .article-content ol {
  margin: 0 0 18px 24px;
  font-size: 1.01rem;
  line-height: 1.82;
  color: #2A1E10;
}

.article-content li { margin-bottom: 6px; }

/* Tasting notes box */
.tasting-box {
  background: linear-gradient(135deg, #FDF7EE 0%, #FAF0DE 100%);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
}

.tasting-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--amber-dk);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.tasting-row {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  align-items: baseline;
}

.tasting-label {
  font-weight: 700;
  color: var(--amber-dk);
  min-width: 62px;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
}

/* Rating widget */
.rating-card {
  background: linear-gradient(135deg, #1A1005 0%, #2A1A08 60%, #3A2210 100%);
  border-radius: var(--radius);
  padding: 26px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,114,10,0.2);
}

.rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--amber-glow);
  line-height: 1;
  flex-shrink: 0;
  text-shadow: 0 0 20px rgba(245,185,66,0.4);
}

.rating-score span { font-size: 1.2rem; color: var(--smoke); }

.rating-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.rating-sub { font-size: 0.82rem; color: var(--light-txt); line-height: 1.5; }

/* Affiliate CTA in article */
.affiliate-cta {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF3DC 100%);
  border: 1.5px solid rgba(200,114,10,0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 0;
  box-shadow: 0 2px 10px rgba(200,114,10,0.08);
}

.affiliate-cta p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.5;
}

.affiliate-cta strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--dark);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .layout, .article-layout { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 2rem; }
  .hero-overlay { opacity: 0.5; }
  .promo-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .footer-inner { grid-template-columns: 1fr; }
  .article-content { padding: 28px 22px; }
  .hero-content h1 { font-size: 1.75rem; }
}
