/* ============================================================
   PaintReviews — v4 · 2026 light luxury
   Ivory canvas · Jet accents · Champagne gold
   ============================================================ */

:root {
  --pr-ink: #0c0b09;
  --pr-ink-deep: #070605;
  --pr-charcoal: #1c1914;
  --pr-graphite: #2a261f;
  --pr-brass: #d4af6a;
  --pr-gold: #b08d3e;
  --pr-gold-deep: #8f6f2e;
  --pr-gold-pale: #efdcaf;
  --pr-paper: #f6f2e9;
  --pr-white: #fdfbf6;
  --pr-mist: #ede8de;
  --pr-gray-pale: #e9e5dc;
  --pr-line: #e4ded0;
  --pr-slate: #5f594d;
  --pr-green: #3e5c46;
  --pr-amber: #8f6b2f;
  --pr-font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --pr-shadow: 0 1px 2px rgba(7, 6, 5, 0.05), 0 18px 44px rgba(7, 6, 5, 0.1);
  --pr-shadow-soft: 0 1px 2px rgba(7, 6, 5, 0.04), 0 6px 18px rgba(7, 6, 5, 0.05);
}

html { scroll-behavior: smooth; }

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Fine grain texture overlay (2026 tactile feel) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--pr-brass); color: var(--pr-ink-deep); }

a { text-underline-offset: 3px; transition: color 0.18s ease; }

/* ---------- Gold shimmer text ---------- */

.pr-gold-text {
  background: linear-gradient(110deg, #b08d3e 0%, #e4c489 25%, #b08d3e 50%, #e4c489 75%, #b08d3e 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: pr-shimmer 7s linear infinite;
}
@keyframes pr-shimmer {
  to { background-position: -220% center; }
}

.pr-italic { font-style: italic; }

/* ---------- Layout helpers ---------- */

.pr-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
}

.pr-split {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .pr-split { grid-template-columns: 1fr 1fr; }
  .pr-split.flip > :first-child { order: 2; }
}

.pr-kicker {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pr-gold-deep);
  margin: 0 0 0.75rem;
}

.pr-meta { color: var(--pr-slate); font-size: 0.9rem; }
.pr-narrow { max-width: 48rem; }

/* ---------- Paint chip strips ---------- */

.pr-chips { display: flex; gap: 0.4rem; align-items: stretch; }
.pr-chips i {
  display: block;
  width: 2.5rem;
  height: 3rem;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(12, 11, 9, 0.08);
}
.pr-chips i:nth-child(1) { background: #e4c489; }
.pr-chips i:nth-child(2) { background: #d4af6a; }
.pr-chips i:nth-child(3) { background: #b08d3e; }
.pr-chips i:nth-child(4) { background: #8f6f2e; }
.pr-chips i:nth-child(5) { background: #8d8372; }
.pr-chips i:nth-child(6) { background: #2a261f; }
.pr-chips i:nth-child(7) { background: #0c0b09; }

/* ---------- Marquee ribbon (gold) ---------- */

.pr-marquee {
  background: linear-gradient(90deg, #e4c489, #b08d3e, #e4c489);
  overflow: hidden;
  padding: 0.85rem 0;
}
.pr-marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: pr-marquee 38s linear infinite;
}
.pr-marquee span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #3d3118;
  white-space: nowrap;
}
.pr-marquee span b { color: var(--pr-ink-deep); }
@keyframes pr-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Header (light glass) ---------- */

.pr-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 251, 246, 0.82);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(12, 11, 9, 0.08);
}

.pr-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.8rem 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}

.pr-brand { display: flex; align-items: center; text-decoration: none; color: inherit; min-width: 0; }
.pr-brand .pr-brand-mark { display: block; height: 36px; width: auto; }
.pr-footer .pr-brand-mark { height: 34px; width: auto; }

.pr-nav-toggle { display: none; }
.pr-nav-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--pr-ink);
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--pr-line);
  border-radius: 2px;
  background: transparent;
}

.pr-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 0.15rem; }
.pr-nav a {
  display: block;
  padding: 0.55rem 0.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--pr-ink);
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}
.pr-nav a:hover { background: rgba(176, 141, 62, 0.09); color: var(--pr-gold-deep); }
.pr-nav .current-menu-item > a,
.pr-nav a[aria-current="page"] { color: var(--pr-gold-deep); }

.pr-nav li { position: relative; }
.pr-nav li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: rgba(253, 251, 246, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--pr-line);
  border-radius: 4px;
  box-shadow: var(--pr-shadow);
  padding: 0.45rem;
  flex-direction: column;
  align-items: stretch;
  display: none;
}
.pr-nav li:hover > ul { display: flex; }
.pr-nav li ul a { white-space: normal; }
.pr-nav .has-children > a::after { content: " ▾"; font-size: 0.7em; color: var(--pr-gold); }

.pr-header-cta {
  display: inline-block;
  background: var(--pr-ink);
  color: var(--pr-brass) !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.15rem;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--pr-ink);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.pr-header-cta:hover { background: var(--pr-ink-deep); color: var(--pr-gold-pale) !important; transform: translateY(-1px); }

@media (max-width: 1023px) {
  .pr-nav-toggle-label { display: inline-flex; }
  .pr-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(253, 251, 246, 0.98);
    border-bottom: 1px solid var(--pr-line);
    box-shadow: var(--pr-shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .pr-nav-toggle:checked ~ .pr-nav { max-height: 70vh; overflow-y: auto; }
  .pr-nav ul { flex-direction: column; align-items: stretch; padding: 0.5rem 1rem 1rem; gap: 0.1rem; }
  .pr-nav li ul { position: static; display: flex; box-shadow: none; border: none; padding: 0 0 0 0.75rem; }
  .pr-nav li:hover > ul { display: flex; }
}

/* ---------- Hero (ivory + cursor spotlight) ---------- */

.pr-hero {
  --mx: 50%;
  --my: 20%;
  background:
    radial-gradient(760px 520px at var(--mx) var(--my), rgba(212, 175, 106, 0.16), transparent 65%),
    radial-gradient(900px 500px at 88% -10%, rgba(212, 175, 106, 0.12), transparent 60%),
    var(--pr-paper);
  color: var(--pr-ink);
  padding: 6rem 1.25rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.pr-hero::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 62, 0.45), transparent);
}
.pr-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .pr-hero-inner { grid-template-columns: 1.2fr 0.8fr; }
}
.pr-hero .pr-kicker {
  display: inline-block;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(176, 141, 62, 0.5);
  margin-bottom: 1.6rem;
}
.pr-hero h1 {
  color: var(--pr-ink);
  margin: 0 0 1.15rem;
  font-size: clamp(2.7rem, 6.4vw, 4.4rem);
}
.pr-hero-lead {
  font-size: 1.13rem;
  color: var(--pr-slate);
  max-width: 42rem;
  margin: 0 0 2rem;
  line-height: 1.85;
}
.pr-hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.pr-btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.pr-btn:hover { transform: translateY(-1px); }
.pr-btn-accent { background: var(--pr-ink); color: var(--pr-brass); border: 1px solid var(--pr-ink); }
.pr-btn-accent:hover { background: var(--pr-ink-deep); color: var(--pr-gold-pale); }
.pr-btn-ghost { background: transparent; color: var(--pr-gold-deep); border: 1px solid var(--pr-gold); }
.pr-btn-ghost:hover { background: rgba(176, 141, 62, 0.08); }

.pr-hero-card {
  background: rgba(253, 251, 246, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(12, 11, 9, 0.1);
  border-radius: 4px;
  padding: 2rem 2.1rem;
  position: relative;
  box-shadow: var(--pr-shadow-soft);
}
.pr-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #e4c489, rgba(212, 175, 106, 0));
}
.pr-hero-card h2 {
  font-family: var(--wp--preset--font-family--sans, sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pr-gold-deep);
  margin: 0 0 1.2rem;
}
.pr-hero-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.pr-hero-card li {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  color: #4c4437;
  font-size: 0.99rem;
  line-height: 1.6;
}
.pr-hero-card li::before { content: "◆"; font-size: 0.55rem; color: var(--pr-gold); position: relative; top: -0.15rem; }

/* ---------- Trust strip ---------- */

.pr-trust { background: var(--pr-white); border-bottom: 1px solid var(--pr-line); }
.pr-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.4rem 1.25rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}
.pr-trust-item { display: flex; gap: 1rem; align-items: flex-start; }
.pr-trust-ico {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 2px;
  background: var(--pr-mist);
  border: 1px solid var(--pr-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.pr-trust-item strong { display: block; font-size: 0.98rem; color: var(--pr-ink); letter-spacing: 0.01em; }
.pr-trust-item span { display: block; font-size: 0.87rem; color: var(--pr-slate); line-height: 1.5; }

/* ---------- Bento hub grid ---------- */

.pr-bento {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .pr-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .pr-bento { grid-template-columns: 1fr; }
}
.pr-bento .pr-hub-feature { grid-column: span 2; grid-row: span 2; }
@media (max-width: 560px) {
  .pr-bento .pr-hub-feature { grid-column: span 1; grid-row: span 1; }
}

.pr-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: rgba(253, 251, 246, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--pr-line);
  border-radius: 4px;
  padding: 1.6rem 1.5rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--pr-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.pr-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pr-shadow);
  border-color: #d5c9ae;
  color: inherit;
}
.pr-hub-num {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  font-family: var(--pr-font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(143, 111, 46, 0.55);
}
.pr-hub-feature .pr-hub-num { font-size: 1.4rem; }
.pr-hub-icon {
  width: 46px;
  height: 46px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: var(--pr-mist);
  border: 1px solid var(--pr-line);
  margin-bottom: 0.4rem;
}
.pr-hub-card h3 { margin: 0; font-size: 1.24rem; }
.pr-hub-feature h3 { font-size: 1.9rem; line-height: 1.15; }
.pr-hub-card p { margin: 0; color: var(--pr-slate); font-size: 0.94rem; line-height: 1.6; flex-grow: 1; }
.pr-hub-feature p { font-size: 1.02rem; max-width: 34rem; }
.pr-hub-card .pr-card-link {
  color: var(--pr-gold-deep);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pr-hub-feature .pr-chips { margin-top: 0.8rem; }

/* ---------- Content boxes ---------- */

.pr-quick-answer,
.pr-verdict,
.pr-note {
  background: var(--pr-white);
  border: 1px solid var(--pr-line);
  border-left: 2px solid var(--pr-gold);
  border-radius: 0 2px 2px 0;
  padding: 1.4rem 1.7rem;
  margin: 2rem 0;
  box-shadow: var(--pr-shadow-soft);
}
.pr-verdict { border-left-color: var(--pr-green); }
.pr-note { border-left-color: var(--pr-amber); background: #fbf7ee; }
.pr-quick-answer > :last-child,
.pr-verdict > :last-child,
.pr-note > :last-child { margin-bottom: 0; }

.pr-qa-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pr-gold-deep);
  margin: 0 0 0.5rem;
}
.pr-verdict .pr-qa-label { color: var(--pr-green); }
.pr-note .pr-qa-label { color: var(--pr-amber); }

.pr-disclosure {
  background: var(--pr-mist);
  border-radius: 2px;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--pr-slate);
  margin: 2.25rem 0 0;
}

.pr-proscons { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin: 1.75rem 0; }
@media (min-width: 700px) { .pr-proscons { grid-template-columns: 1fr 1fr; } }
.pr-pros, .pr-cons {
  padding: 1.4rem 1.6rem;
  border-radius: 2px;
  border: 1px solid var(--pr-line);
  background: var(--pr-white);
}
.pr-pros { border-top: 2px solid var(--pr-green); }
.pr-cons { border-top: 2px solid var(--pr-gold); }
.pr-pros .pr-qa-label { color: var(--pr-green); }
.pr-cons .pr-qa-label { color: var(--pr-gold-deep); }

/* ---------- Steps ---------- */

.pr-steps { list-style: none; counter-reset: pr-step; margin: 1.75rem 0; padding: 0; display: grid; gap: 1.1rem; }
.pr-step,
.pr-steps > li {
  counter-increment: pr-step;
  display: flex;
  gap: 1.1rem;
  background: var(--pr-white);
  border: 1px solid var(--pr-line);
  border-radius: 2px;
  padding: 1.25rem 1.4rem;
}
.pr-step::before,
.pr-steps > li::before {
  content: counter(pr-step);
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: var(--pr-ink);
  color: var(--pr-brass);
  font-weight: 600;
  font-family: var(--pr-font-serif);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 106, 0.4);
}
.pr-step h3,
.pr-steps > li h3 { margin: 0 0 0.3rem; font-size: 1.12rem; }
.pr-step p,
.pr-steps > li p { margin: 0; }

/* ---------- Tables ---------- */

.pr-table-wrap { overflow-x: auto; margin: 1.75rem 0; }
.pr-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--pr-white);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--pr-line);
  font-size: 0.95rem;
}
.pr-table th {
  background: var(--pr-ink);
  color: var(--pr-gold-pale);
  text-align: left;
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pr-table td { padding: 0.75rem 1rem; border-top: 1px solid var(--pr-line); vertical-align: top; }
.pr-table tr:nth-child(even) td { background: #f9f6ee; }
.pr-table .pr-best { background: #f5edd9 !important; font-weight: 600; }
.pr-table .pr-best::after { content: " ★"; color: var(--pr-gold); }

/* ---------- FAQ ---------- */

.pr-faq { margin: 2.25rem 0; display: grid; gap: 0.7rem; }
.pr-faq details {
  background: var(--pr-white);
  border: 1px solid var(--pr-line);
  border-radius: 2px;
  padding: 0;
  overflow: hidden;
}
.pr-faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1.1rem 1.4rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.02rem;
}
.pr-faq summary::-webkit-details-marker { display: none; }
.pr-faq summary::after { content: "+"; font-size: 1.35rem; color: var(--pr-gold); font-weight: 300; }
.pr-faq details[open] summary::after { content: "−"; }
.pr-faq details > div { padding: 0 1.4rem 1.25rem; color: #423c30; }

/* ---------- TOC / breadcrumb ---------- */

.pr-toc {
  background: var(--pr-white);
  border: 1px solid var(--pr-line);
  border-radius: 2px;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-size: 0.95rem;
}
.pr-toc strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pr-gold-deep);
}
.pr-toc ul { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
@media (max-width: 640px) { .pr-toc ul { columns: 1; } }
.pr-toc li { margin: 0.25rem 0; break-inside: avoid; }

.pr-breadcrumb { font-size: 0.85rem; color: var(--pr-slate); margin: 1rem 0 0; }
.pr-breadcrumb a { color: var(--pr-slate); }

/* ---------- CTA band (gold) ---------- */

.pr-cta {
  background:
    radial-gradient(700px 320px at 90% 0%, rgba(255, 251, 240, 0.35), transparent 60%),
    linear-gradient(135deg, #e4c489 0%, #b08d3e 55%, #8f6f2e 100%);
  border-radius: 4px;
  color: var(--pr-ink-deep);
  padding: 2.5rem;
  margin: 3.25rem 0;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}
@media (min-width: 800px) { .pr-cta { grid-template-columns: 1fr auto; padding: 2.75rem 3rem; } }
.pr-cta h2 { color: var(--pr-ink-deep); font-family: var(--pr-font-serif); margin: 0 0 0.5rem; }
.pr-cta p { margin: 0; color: #45371c; }
.pr-btn-light { background: var(--pr-ink); color: var(--pr-brass); }
.pr-btn-light:hover { background: var(--pr-ink-deep); color: var(--pr-gold-pale); }

/* ---------- Section scaffolding ---------- */

.pr-section { padding: 4.25rem 1.25rem; }
.pr-section.alt { background: var(--pr-white); border-top: 1px solid var(--pr-line); border-bottom: 1px solid var(--pr-line); }
.pr-section-inner { max-width: 1280px; margin: 0 auto; }
.pr-section-head { max-width: 48rem; margin-bottom: 2.4rem; }
.pr-section-head p { color: var(--pr-slate); font-size: 1.05rem; }

/* ---------- Article body ---------- */

.pr-article-body { max-width: 820px; margin: 0 auto; padding: 2.75rem 1.25rem 3.75rem; }
.pr-article-body h2 { margin-top: 2.75rem; padding-top: 1.5rem; border-top: 1px solid var(--pr-line); }
.pr-article-body h3 { margin-top: 1.9rem; }
.pr-article-body img { border-radius: 2px; height: auto; }
.pr-article-body figcaption { font-size: 0.85rem; color: var(--pr-slate); margin-top: 0.5rem; }
.pr-article-body ul, .pr-article-body ol { padding-left: 1.4rem; }
.pr-article-body li { margin: 0.35rem 0; }
.pr-article-body blockquote { margin: 1.5rem 0; }

.pr-author-box {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  background: var(--pr-white);
  border: 1px solid var(--pr-line);
  border-radius: 2px;
  padding: 1.25rem 1.5rem;
  margin: 2.25rem 0 0;
  font-size: 0.92rem;
}
.pr-avatar {
  width: 54px;
  height: 54px;
  border-radius: 2px;
  background: var(--pr-ink);
  color: var(--pr-brass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--pr-font-serif);
  font-size: 1.3rem;
  flex: 0 0 auto;
  border: 1px solid rgba(212, 175, 106, 0.4);
}
.pr-author-box strong { display: block; font-size: 0.98rem; }
.pr-author-box span { color: var(--pr-slate); }

/* ---------- Homepage latest tests ---------- */

.pr-latest { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.pr-latest .wp-block-post {
  background: var(--pr-white);
  border: 1px solid var(--pr-line);
  border-radius: 2px;
  padding: 1.5rem;
  box-shadow: var(--pr-shadow-soft);
}
.pr-latest .wp-block-post h3 { margin: 0 0 0.4rem; font-size: 1.12rem; }
.pr-latest .wp-block-post h3 a { color: var(--pr-ink); text-decoration: none; }
.pr-latest .wp-block-post h3 a:hover { color: var(--pr-gold-deep); }
.pr-latest .wp-block-post-date { font-size: 0.82rem; color: var(--pr-slate); }
.pr-latest .wp-block-post-excerpt p { margin: 0.4rem 0 0; color: #423c30; font-size: 0.95rem; }

/* ---------- Footer (the only dark anchor) ---------- */

.pr-footer {
  background:
    radial-gradient(900px 380px at 12% -8%, rgba(212, 175, 106, 0.1), transparent 60%),
    linear-gradient(160deg, #1a1712 0%, #070605 100%);
  color: #b6ad9c;
  padding: 4rem 1.25rem 2.25rem;
  font-size: 0.95rem;
}
.pr-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .pr-footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.pr-footer h2 {
  color: var(--pr-brass);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-family: var(--wp--preset--font-family--sans, sans-serif);
}
.pr-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.pr-footer a { color: #b6ad9c; text-decoration: none; }
.pr-footer a:hover { color: var(--pr-brass); text-decoration: underline; }
.pr-footer .pr-footer-brand { max-width: 22rem; }
.pr-footer .pr-footer-brand p { margin: 0.9rem 0 0; font-size: 0.9rem; }
.pr-footer .pr-footer-bottom {
  max-width: 1280px;
  margin: 2.75rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(212, 175, 106, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #8d8271;
}

/* ---------- Scroll reveal ---------- */

@media (prefers-reduced-motion: no-preference) {
  .pr-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .pr-reveal.is-visible { opacity: 1; transform: translateY(0); }
}

/* ---------- Utility ---------- */

.pr-chip {
  display: inline-block;
  background: var(--pr-mist);
  color: var(--pr-ink);
  border-radius: 2px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.pr-chip.accent { background: #f2e7cb; color: var(--pr-gold-deep); }
.pr-center { text-align: center; }
.pr-mt-0 { margin-top: 0; }
.pr-mb-0 { margin-bottom: 0; }
.pr-small { font-size: 0.88rem; color: var(--pr-slate); }
.pr-source { font-size: 0.85rem; color: var(--pr-slate); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
