.lrr-root { font-family: 'Georgia', serif; }

:root {
  --wine:       #6b1a2c;
  --wine-light: #8b2a3c;
  --plum:       #2d1433;
  --gold:       #c9a84c;
  --text:       #2a1f2e;
  --muted:      #7a6d7e;
  --border:     #d9cfe0;
  --parchment:  #f7f3ee;
  --accent-2:  #1a4d6b;
  --accent-3:  #2e6b1a;
  --accent-4:  #6b4e1a;
  --accent-5:  #4e1a6b;
  --accent-6:  #1a6b5a;
  --accent-7:  #6b1a52;
  --accent-8:  #1a396b;
  --accent-9:  #5a6b1a;
  --accent-10: #6b2e1a;
}

.lrr-hero {
  background: linear-gradient(160deg, var(--plum) 0%, var(--wine) 60%, #3a0a18 100%);
  padding: 4rem 2rem 5rem;
  text-align: center;
  margin-bottom: -2rem;
}
.lrr-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.lrr-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  border: none;
}
.lrr-hero h1 em { color: var(--gold); font-style: italic; }
.lrr-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 1rem;
  line-height: 1.8;
}
.lrr-hero-meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Featured card */
.lrr-featured-wrap {
  max-width: 860px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}
.lrr-featured {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 8px 40px rgba(14,8,16,0.18);
  display: grid;
  grid-template-columns: 6px 1fr;
  overflow: hidden;
}
.lrr-featured .lrr-bar { background: var(--wine); }
.lrr-featured-body { padding: 2.2rem 2rem; }
.lrr-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  border: 1px solid var(--wine);
  padding: 0.2rem 0.6rem;
  margin-bottom: 1rem;
}
.lrr-featured-body h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--plum);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.lrr-author {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.lrr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.lrr-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--plum);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.lrr-tag.light {
  background: transparent;
  color: var(--plum);
  border: 1px solid var(--border);
}
.lrr-review {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.lrr-verdict {
  font-style: italic;
  font-size: 0.98rem;
  color: var(--wine);
  border-left: 2px solid var(--wine);
  padding-left: 1rem;
  margin-bottom: 1.4rem;
}
.lrr-cta {
  display: inline-block;
  background: var(--wine);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
}
.lrr-cta:hover { background: var(--wine-light); }

/* Section divider */
.lrr-divider {
  max-width: 860px;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
}
.lrr-divider-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lrr-divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Reviews grid */
.lrr-grid {
  max-width: 860px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(360px, 100%), 1fr));
  gap: 1.4rem;
}
.lrr-card {
  background: #fff;
  display: grid;
  grid-template-columns: 5px 1fr;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(14,8,16,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.lrr-card:hover {
  box-shadow: 0 6px 24px rgba(14,8,16,0.13);
  transform: translateY(-2px);
}
.lrr-card .lrr-bar { border-radius: 2px 0 0 2px; }
.lrr-card-body { padding: 1.6rem 1.4rem; }
.lrr-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.lrr-card-body .lrr-author { margin-bottom: 0.7rem; }
.lrr-card-body .lrr-tags  { margin-bottom: 0.8rem; }
.lrr-card-body .lrr-review { font-size: 0.94rem; margin-bottom: 0.9rem; }
.lrr-card-body .lrr-verdict { font-size: 0.88rem; margin-bottom: 0; }

/* FAQ */
.lrr-faq {
  background: var(--plum);
  color: #fff;
  padding: 3.5rem 2rem;
  margin-top: 1rem;
}
.lrr-faq-inner { max-width: 740px; margin: 0 auto; }
.lrr-faq h2 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  border: none;
}
.lrr-faq-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}
.lrr-faq details {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}
.lrr-faq summary {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.lrr-faq summary::-webkit-details-marker { display: none; }
.lrr-faq summary::after { content: '+'; color: var(--gold); font-size: 1.2rem; }
.lrr-faq details[open] summary::after { content: '−'; }
.lrr-faq details p {
  margin-top: 0.8rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 600px) {
  .lrr-grid { grid-template-columns: 1fr; }
  .lrr-featured-body { padding: 1.4rem 1rem; }
}
