/* ═══════════════════════════════════════════════════════
   Hoastly — Editorial / Magazine Style Theme
   Warm paper backgrounds, serif headings, newspaper feel
   ═══════════════════════════════════════════════════════ */

/* === 1. Global Reset & Variables === */
:root {
  --ink: #121212;
  --muted: #555;
  --soft: #fbf6ed;
  --soft-strong: #f2e7d8;
  --gold: #d7942b;
  --line: #ded9d0;
  --accent: #b43320;
  --accent-dark: #872414;
  --paper: #ffffff;
  --green: #166534;
  --max: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.08);
  --radius: 6px;
  --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--sans); line-height: 1.6; color: var(--ink); background: var(--soft); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; color: var(--ink); font-weight: 700; }

/* === Wrap (container) === */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* === 2. Topbar / Header === */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--paper);
  border-top: 4px solid var(--accent);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 3px solid var(--ink);
}
.brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.brand:hover { color: var(--ink); opacity: 0.8; }

.nav { display: flex; gap: 6px; align-items: center; }
.nav a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all var(--transition);
}
.nav a:hover { color: var(--ink); background: var(--soft); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 4px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 1px; transition: transform .3s; }

/* === 3. Masthead / Hero === */
.masthead {
  background: linear-gradient(180deg, var(--soft) 0%, #fffaf3 100%);
  padding: 72px 0 56px;
  text-align: center;
}
.masthead h1 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.masthead h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 16px auto 0;
}
.masthead .lede {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === 4. Lead Grid (featured + side list) === */
.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr);
  gap: 34px;
  padding: 48px 0;
}
.feature-card {
  display: block;
  color: inherit;
}
.feature-card:hover { color: inherit; }
.feature-card-img {
  height: 360px;
  overflow: hidden;
  background: var(--soft-strong);
  margin-bottom: 20px;
}
.feature-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.feature-card:hover .feature-card-img img { transform: scale(1.02); }
.feature-card-body { padding: 0; }
.feature-card-body .eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.feature-card-body h2 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.feature-card-body p {
  font-family: var(--serif);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.feature-card-body .read-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}
.feature-card-body .read-link:hover { color: var(--accent-dark); }

.side-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 3px solid var(--ink);
  padding-top: 16px;
}
.side-list-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}
.side-list-item:last-child { border-bottom: none; }
.side-list-thumb {
  width: 90px;
  height: 70px;
  overflow: hidden;
  background: var(--soft-strong);
  border-radius: 3px;
  flex-shrink: 0;
}
.side-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.side-list-text { min-width: 0; }
.side-list-text .eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 4px;
  display: block;
}
.side-list-item h3 {
  font-family: var(--serif);
  font-size: 0.95rem;
  margin-bottom: 4px;
  line-height: 1.3;
  color: var(--ink);
}
.side-list-item p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}
.side-list-item:hover h3 { color: var(--accent); }

/* === 5. Section Blocks & Card Grids === */
.section-block { padding: 56px 0; }
.section-block-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* === Review Card === */
.review-card {
  background: var(--paper);
  border-top: 3px solid var(--ink);
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.review-card a { display: flex; flex-direction: column; color: inherit; height: 100%; }
.review-card-img { height: 180px; overflow: hidden; background: var(--soft-strong); }
.review-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.review-card:hover .review-card-img img { transform: scale(1.04); }
.review-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.review-card-body .eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--accent);
  margin-bottom: 6px;
}
.review-card-body h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.review-card-body p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: auto;
}

/* === 6. Category Image Grid === */
.category-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 48px 0;
}
.category-image-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  display: block;
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-image-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: #fff; }
.category-image-card img { width: 100%; height: 100%; object-fit: cover; }
.category-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 60%);
}
.category-image-card span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}

/* === 7. Product Pick Cards === */
.product-pick {
  background: var(--paper);
  border-top: 4px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.product-pick-body { display: flex; flex-direction: column; gap: 8px; }
.pick-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  background: rgba(180, 51, 32, 0.08);
  padding: 4px 10px;
  border-radius: 3px;
  width: fit-content;
}
.product-pick-body h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 4px 0;
}
.product-pick-body .pick-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.product-pick-body .pick-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.buy-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 4px;
  transition: all var(--transition);
  width: fit-content;
  margin-top: 8px;
}
.buy-button:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }

/* === 8. Article Layout === */
.article-layout {
  display: block;
  padding: 48px 0 72px;
}
/* === Article Hero Image === */
.article-hero {
  margin: 28px 0 32px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft-strong);
  max-height: 480px;
}
.article-hero img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.article-single {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0 72px;
}
.article-header { margin-bottom: 32px; }
.article-header .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
}
.article-header h1 {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 4px; }

/* === 9. Article Body === */
.article-body {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink);
}
.article-body > p:first-of-type {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--muted);
}
.article-body h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 28px 0 12px;
}
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin-bottom: 18px; padding-left: 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--accent-dark); }

/* === 10. Stats Bar === */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
}
.stat-item {
  background: var(--paper);
  padding: 20px 16px;
  text-align: center;
}
.stat-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* === 11. Trust Strip === */
.trust-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item h4 {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.trust-item p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

/* === 12. Tables (mini-table) === */
.mini-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.88rem;
}
.mini-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--soft);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--muted);
  border-bottom: 2px solid var(--line);
}
.mini-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mini-table tr:last-child td { border-bottom: none; }
.mini-table tr:hover td { background: var(--soft); }
.mini-table .btn-table {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 3px;
  white-space: nowrap;
}
.mini-table .btn-table:hover { background: var(--accent-dark); color: #fff; }

/* === 13. Newsletter Section === */
.newsletter {
  background: var(--ink);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.newsletter h2 {
  font-family: var(--serif);
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.newsletter p {
  color: rgba(255,255,255,.65);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button {
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--accent-dark); }

/* === 14. Footer === */
.footer {
  background: var(--soft-strong);
  padding: 56px 0 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand { font-size: 1.4rem; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); margin-top: 10px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 14px;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.85rem; color: var(--muted); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  padding: 20px 0;
  font-size: 0.75rem;
  color: var(--muted);
}

/* === 15. Responsive === */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 16px 24px;
    border-bottom: 2px solid var(--ink);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav.active { display: flex; }
  .nav a { padding: 12px 16px; font-size: 0.88rem; width: 100%; }
  .lead-grid { grid-template-columns: 1fr; }
  .article-layout { display: block; }
  .sidebar { display: none; }
}

@media (max-width: 768px) {
  .masthead h1 { font-size: 2.2rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .category-image-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .product-pick { padding: 20px; }
  .article-header h1 { font-size: 1.8rem; }
  .feature-card-img { height: 220px; }
}

@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .category-image-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .masthead h1 { font-size: 1.8rem; }
  .masthead { padding: 48px 0 36px; }
}

/* === 16. Review Card Styles (category pages) === */
.review-card-link { display: flex; flex-direction: column; color: inherit; height: 100%; text-decoration: none; }
.review-card-cat {
  font-size: 0.68rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
}
.review-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink);
}
.review-card-excerpt { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-top: 8px; }
.review-card-rating { display: flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 12px; }
.rating-num { font-weight: 700; color: var(--gold); font-size: 0.88rem; }

/* === 17. Breadcrumbs === */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--ink); }

/* === 18. Disclosure & Testing Boxes === */
.disclosure {
  background: var(--soft);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.testing-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.testing-box h4 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--green);
  margin-bottom: 8px;
}
.testing-box p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* === Methodology Band === */
.methodology-band {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  text-align: center;
}
.methodology-band h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.methodology-band p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === Sidebar === */
.sidebar { position: sticky; top: 88px; }
.toc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.toc h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.toc ul { list-style: none; }
.toc li { margin-bottom: 8px; }
.toc a {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
  display: block;
  padding: 4px 0;
}
.toc a:hover { color: var(--accent); }

.sidebar-popular {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.sidebar-popular h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.sidebar-popular li { margin-bottom: 10px; }
.sidebar-popular a {
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.4;
}
.sidebar-popular a:hover { color: var(--accent); }

/* === Pros/Cons Boxes === */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.pros-box, .cons-box { padding: 24px; border-radius: var(--radius); }
.pros-box { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons-box { background: #fef2f2; border: 1px solid #fecaca; }
.pros-box h4 { color: var(--green); font-family: var(--sans); font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; }
.cons-box h4 { color: #b91c1c; font-family: var(--sans); font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; }
.pros-box li, .cons-box li { padding: 5px 0; font-size: 0.9rem; line-height: 1.5; list-style: none; }
.pros-box li::before { content: '\2713 '; color: var(--green); font-weight: 700; }
.cons-box li::before { content: '\2717 '; color: #b91c1c; font-weight: 700; }

@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

/* === Article Tags === */
.article-tags {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.article-tags h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  background: var(--soft-strong);
  border-radius: 3px;
  color: var(--muted);
  transition: all var(--transition);
}
.tag:hover {
  color: var(--accent);
  background: rgba(180,51,32,0.08);
}

/* === Eyebrow tag === */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
}

/* === Utility === */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
