/* Brivolo — Variant B Warm Editorial */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #faf6f0;
  --ink: #2c1810;
  --red: #c0392b;
  --red-dark: #992d22;
  --warm-bg: #f0e8dc;
  --muted: #7a6a5e;
  --border: #ddd4c8;
  --white: #ffffff;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.8;
}

/* ── HEADER ── */
.site-top {
  background: var(--white);
  border-bottom: 3px solid var(--red);
}

.brand-wrap {
  text-align: center;
  padding: 1.5rem 1rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -1px;
  display: block;
}

.brand-name:hover { color: var(--red); }

.brand-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.nav-bar {
  background: var(--white);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0;
}

.nav-links a {
  font-family: 'Source Serif 4', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  display: block;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover { color: var(--red); border-bottom-color: var(--red); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  width: 100%;
  text-align: left;
  font-family: 'Source Serif 4', serif;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
}

/* ── HERO BANNER (Homepage) ── */
.hero-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: var(--ink);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 3rem;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Source Serif 4', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.read-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-family: 'Source Serif 4', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.read-btn:hover { background: var(--red-dark); }

/* ── MAIN CONTENT ZONES ── */
.zone-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.zone-label {
  font-family: 'Source Serif 4', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.zone-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

/* ── POST CARDS ── */
.post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
}

.card-thumb {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.card-body { padding: 1.25rem 1.25rem 1.5rem; }

.topic-tag {
  font-family: 'Source Serif 4', serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: block;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.card-blurb {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.more-link {
  font-family: 'Source Serif 4', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 1px;
}

.more-link:hover { color: var(--red-dark); border-bottom-color: var(--red-dark); }

/* ── TWO-COLUMN ARTICLE LAYOUT ── */
.content-zone {
  background: var(--cream);
  padding: 3rem 1.5rem 4rem;
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

/* ── ARTICLE POST HEADER ── */
.post-hero {
  width: 100%;
  height: 340px;
  overflow: hidden;
}

.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-header {
  background: var(--white);
  padding: 2rem 2rem 1.25rem;
  border-bottom: 3px solid var(--red);
  margin-bottom: 0;
}

.entry-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.byline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.topic-pill {
  background: var(--warm-bg);
  color: var(--red-dark);
  padding: 0.2rem 0.65rem;
  font-family: 'Source Serif 4', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── ARTICLE BODY ── */
.entry-body {
  background: var(--white);
  padding: 1.75rem 2rem 2.5rem;
}

.notice-box {
  background: var(--warm-bg);
  border-left: 4px solid var(--red);
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.75rem;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gold-stars { color: #d4a017; font-size: 1.15rem; letter-spacing: 2px; }
.score-num { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.score-label { font-size: 0.82rem; color: var(--muted); }

.entry-body p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.85;
  color: #3a2a20;
}

.entry-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2.25rem 0 0.9rem;
}

.entry-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.75rem 0 0.6rem;
}

.photo-block {
  margin: 2rem 0;
}

.photo-block img {
  width: 100%;
  border: 1px solid var(--border);
  display: block;
}

.photo-caption {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  padding: 0.5rem 0.75rem;
  background: var(--warm-bg);
  border-left: 3px solid var(--border);
}

.pullout {
  border-left: 4px solid var(--red);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--warm-bg);
}

.pullout p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.55;
}

/* ── VERDICT GRID (Pros/Cons) ── */
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.verdict-pros, .verdict-cons {
  padding: 1.25rem;
}

.verdict-pros { background: #edf7f0; border: 1px solid #b5dcbe; }
.verdict-cons { background: #fdf2f2; border: 1px solid #e8b8b8; }

.verdict-pros h4, .verdict-cons h4 {
  font-family: 'Source Serif 4', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.verdict-pros h4 { color: #1e6b36; }
.verdict-cons h4 { color: var(--red-dark); }

.verdict-pros ul, .verdict-cons ul {
  list-style: none;
  padding: 0;
}

.verdict-pros li, .verdict-cons li {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.4rem;
  padding-left: 1.4rem;
  position: relative;
  color: var(--ink);
}

.verdict-pros li::before { content: "✓"; position: absolute; left: 0; color: #1e6b36; font-weight: 700; }
.verdict-cons li::before { content: "–"; position: absolute; left: 0; color: var(--red-dark); font-weight: 700; }

/* ── ACTION BOX ── */
.action-box {
  background: var(--ink);
  padding: 2rem 2.25rem;
  text-align: center;
  margin: 2.5rem 0;
}

.action-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.action-box p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.25rem;
}

.action-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.8rem 2.25rem;
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.action-btn:hover { background: var(--red-dark); }

/* ── SIDEBAR ── */
.sidebar-col {
  position: sticky;
  top: 1.5rem;
}

.widget {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 1.75rem;
}

.widget-title {
  font-family: 'Source Serif 4', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 0.6rem 1rem;
}

.widget-body { padding: 1.1rem 1rem; }

.widget-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.widget-body ul {
  list-style: none;
  padding: 0;
}

.widget-body li {
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
}

.widget-body li:last-child { border-bottom: none; }

.widget-body li a {
  font-size: 0.875rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.5;
}

.widget-body li a:hover { color: var(--red); }

.widget-body li span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 0.75rem;
  border: 3px solid var(--warm-bg);
}

.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
}

/* ── SIGNUP STRIP ── */
.signup-strip {
  background: var(--warm-bg);
  border-top: 3px double var(--border);
  border-bottom: 3px double var(--border);
  text-align: center;
  padding: 2.75rem 1.5rem;
}

.signup-strip h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.signup-strip p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.signup-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}

.signup-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 2px solid var(--border);
  border-right: none;
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.signup-form input:focus { border-color: var(--red); }

.signup-form button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.25rem;
  font-family: 'Source Serif 4', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.signup-form button:hover { background: var(--red-dark); }

/* ── FOOTER ── */
.site-footer {
  background: #1a0f0a;
  color: #c5b5a8;
  padding: 2.75rem 1.5rem 1.25rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.25rem;
}

.footer-about .brand-name {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  display: block;
}

.footer-about p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #9a8880;
}

.footer-nav h4 {
  font-family: 'Source Serif 4', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.45rem; }
.footer-nav a { color: #9a8880; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--red); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: #6a5a52;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ── STATIC PAGES (privacy/terms/about) ── */
.static-wrap {
  max-width: 820px;
  margin: 3rem auto;
  padding: 0 1.5rem 4rem;
}

.static-wrap h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.static-wrap .static-date {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
  display: block;
}

.static-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 0.6rem;
}

.static-wrap p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #3a2a20;
  margin-bottom: 1rem;
}

.static-wrap ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.static-wrap ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #3a2a20;
  margin-bottom: 0.25rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .page-wrap { grid-template-columns: 1fr; }
  .sidebar-col { position: static; }
  .post-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1/-1; }
  .verdict-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    border-top: 1px solid var(--border);
    background: var(--white);
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; border-bottom: 1px solid var(--border); border-bottom-color: var(--border); }
  .hero-banner { height: 400px; }
  .hero-text h1 { font-size: 1.6rem; }
  .hero-inner { padding: 1.5rem; }
  .post-list { grid-template-columns: 1fr; }
  .brand-name { font-size: 1.8rem; }
  .entry-title { font-size: 1.5rem; }
  .post-hero { height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
