/* ============================================================
   Crownlore Design System
   Ported from the compiled React/Tailwind build.
   Brand tokens: forest #2F3A2C / #43543B, gold #B68A3E / #D8BE86,
   cream #F7F3EA, sand #ECE4D3, charcoal #23211C, stone #6B655A.
   Fonts: Playfair Display (headings) + Inter (body).
   ============================================================ */

/* --- CSS Custom Properties (design tokens) --- */
:root {
  --color-forest:       #2F3A2C;
  --color-forest-light: #43543B;
  --color-gold:         #B68A3E;
  --color-gold-light:   #D8BE86;
  --color-cream:        #F7F3EA;
  --color-sand:         #ECE4D3;
  --color-charcoal:     #23211C;
  --color-stone:        #6B655A;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  6px;
  --radius-lg:  8px;
  --radius-xl:  12px;
  --radius-2xl: 16px;

  --shadow-soft:   0 3px 10px rgba(10, 37, 64, 0.05);
  --shadow-medium: 0 4px 20px rgba(10, 37, 64, 0.08);
  --shadow-xs:     0 1px 2px rgba(0,0,0,0.05);

  --max-content: 1280px;
  --max-prose:   720px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  border-color: var(--color-sand);
}

html {
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem;
  max-width: var(--max-prose);
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--color-gold-light); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin: 0;
  padding-left: 1.5rem;
}

li { margin-bottom: 0.25rem; }

strong { font-weight: 600; }

/* --- Layout Utilities --- */
.content-max {
  max-width: var(--max-content);
  margin-left: auto;
  margin-right: auto;
}

.section-padding {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .section-padding { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .section-padding { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1280px) {
  .section-padding { padding-left: 3rem; padding-right: 3rem; }
}

/* --- Component: Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
  box-shadow: var(--shadow-soft);
  line-height: 1;
}
.btn-primary:hover {
  background-color: var(--color-gold-light);
  color: var(--color-charcoal);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--color-forest);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid var(--color-forest);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.btn-secondary:hover {
  background-color: var(--color-forest);
  color: var(--color-cream);
}

/* --- Component: Cards --- */
.card-crownlore {
  background-color: var(--color-cream);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(236, 228, 211, 0.6);
  overflow: hidden;
}

/* --- Component: Tag Pill --- */
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  background-color: var(--color-sand);
  color: var(--color-forest);
  border-radius: 9999px;
  text-decoration: none;
  line-height: 1.4;
}
.tag-pill:hover {
  background-color: var(--color-forest);
  color: var(--color-cream);
}

/* --- Component: Gold underline decoration --- */
.gold-underline {
  position: relative;
}
.gold-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Trust bar */
.trust-bar {
  background-color: var(--color-forest);
  color: var(--color-gold-light);
  font-size: 0.8125rem;
  padding: 0.375rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trust-bar-text { font-weight: 500; }
.trust-bar-social {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .trust-bar-social { display: flex; }
}
.trust-bar-social a {
  color: var(--color-gold-light);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: color 0.2s;
}
.trust-bar-social a:hover { color: var(--color-cream); }

/* Main nav bar */
.main-nav-bar {
  background-color: var(--color-cream);
  border-bottom: 1px solid rgba(236, 228, 211, 0.6);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  padding: 0.75rem 0;
}
.main-nav-bar.scrolled {
  box-shadow: var(--shadow-soft);
  padding: 0.5rem 0;
}
.main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo svg { color: var(--color-gold); }
.site-logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  transition: font-size 0.3s ease;
}
.scrolled .site-logo-text { font-size: 1.25rem; }

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-charcoal);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: color 0.2s ease;
}
.nav-link:hover,
.nav-link.current { color: var(--color-gold); }

.nav-link svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s ease;
}
.nav-item:hover .nav-link svg,
.nav-item.open .nav-link svg {
  transform: rotate(180deg);
}

/* Mega dropdown */
.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 420px;
  background-color: var(--color-cream);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(236, 228, 211, 0.6);
  padding: 1.25rem;
  z-index: 50;
}
.nav-item:hover .mega-menu { display: block; }

.mega-menu-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-decoration: none;
  margin-bottom: 0.25rem;
  display: block;
  transition: color 0.2s;
}
.mega-menu-title:hover { color: var(--color-gold); }
.mega-menu-desc {
  font-size: 0.875rem;
  color: var(--color-stone);
  margin-bottom: 0.75rem;
}
.mega-menu-links { list-style: none; padding: 0; margin: 0; }
.mega-menu-links li { margin-bottom: 0.375rem; }
.mega-menu-links a {
  display: block;
  font-size: 0.875rem;
  color: var(--color-charcoal);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.mega-menu-links a:hover { color: var(--color-gold); }
.mega-menu-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(236, 228, 211, 0.6);
}
.mega-menu-footer a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.2s;
}
.mega-menu-footer a:hover { color: var(--color-gold-light); }

/* Nav right actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Search toggle */
.search-toggle {
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-charcoal);
  border-radius: var(--radius-md);
  transition: color 0.2s;
  line-height: 0;
}
.search-toggle:hover { color: var(--color-gold); }
.search-toggle svg { width: 1.25rem; height: 1.25rem; }

/* Search dropdown */
.search-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 288px;
  background-color: var(--color-cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(236, 228, 211, 0.6);
  padding: 0.75rem;
  z-index: 50;
}
.search-wrapper { position: relative; }
.search-wrapper.open .search-dropdown { display: block; }

.search-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: rgba(236, 228, 211, 0.5);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--color-charcoal);
  outline: none;
  font-family: var(--font-sans);
}
.search-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(182, 138, 62, 0.2);
}
.search-input::placeholder { color: var(--color-stone); }

/* Hamburger */
.hamburger {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-charcoal);
  border-radius: var(--radius-md);
  transition: color 0.2s;
  line-height: 0;
}
.hamburger:hover { color: var(--color-gold); }
.hamburger svg { width: 1.5rem; height: 1.5rem; }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* CTA button in nav */
.nav-cta {
  display: none;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  background-color: var(--color-cream);
  border-bottom: 1px solid rgba(236, 228, 211, 0.6);
  box-shadow: var(--shadow-medium);
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

.mobile-nav {
  padding: 1rem 0;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.mobile-nav li { margin-bottom: 0; }
.mobile-nav a {
  display: block;
  padding: 0.625rem 0.75rem;
  color: var(--color-charcoal);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: color 0.2s, background-color 0.2s;
}
.mobile-nav a:hover {
  color: var(--color-gold);
  background-color: rgba(236, 228, 211, 0.5);
}
.mobile-menu-footer {
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(236, 228, 211, 0.6);
}
.mobile-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-stone);
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.mobile-social a {
  color: var(--color-stone);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-social a:hover { color: var(--color-gold); }

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
  background: linear-gradient(to bottom, var(--color-cream), rgba(236,228,211,0.3));
  padding: 3rem 0;
}
@media (min-width: 768px) { .hero-section { padding: 5rem 0; } }

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

.hero-content { }
.hero-content .space-y-6 > * + * { margin-top: 1.5rem; }

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.15;
  margin-bottom: 0;
}

.hero-subhead {
  font-size: 1.125rem;
  color: var(--color-stone);
  line-height: 1.65;
  max-width: 32rem;
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.hero-image-box {
  position: relative;
}
.hero-image-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, rgba(47,58,44,0.2), rgba(182,138,62,0.2), rgba(236,228,211,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-image-inner { text-align: center; padding: 2rem; }
.hero-icon-circle {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(182,138,62,0.4), rgba(216,190,134,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-icon-circle svg { width: 3rem; height: 3rem; color: var(--color-forest); }
.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-forest);
  font-style: italic;
}

/* ============================================================
   START HERE STRIP
   ============================================================ */

.start-here-section {
  padding: 2.5rem 0;
}
@media (min-width: 768px) { .start-here-section { padding: 3.5rem 0; } }

.section-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

.card-grid-3 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .card-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .card-grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

.start-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease;
}
.start-card:hover { box-shadow: var(--shadow-medium); }

.start-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background-color: rgba(47, 58, 44, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background-color 0.2s, color 0.2s;
}
.start-card-icon svg { width: 1.5rem; height: 1.5rem; }
.start-card:hover .start-card-icon {
  background-color: var(--color-forest);
  color: var(--color-gold-light);
}

.start-card-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.start-card:hover .start-card-title { color: var(--color-gold); }

.start-card-desc {
  font-size: 0.875rem;
  color: var(--color-stone);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   FEATURED GUIDE SECTION
   ============================================================ */

.featured-guide-section {
  padding: 2.5rem 0;
  background-color: rgba(236, 228, 211, 0.3);
}
@media (min-width: 768px) { .featured-guide-section { padding: 3.5rem 0; } }

.featured-guide-card {
  padding: 1.5rem;
}
@media (min-width: 768px) { .featured-guide-card { padding: 2.5rem; } }

.featured-guide-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .featured-guide-grid { grid-template-columns: 1fr 1fr; }
}

.featured-guide-content .space-y-4 > * + * { margin-top: 1rem; }
.featured-guide-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.featured-guide-image {
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(47,58,44,0.15), rgba(182,138,62,0.25));
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-guide-image-inner { text-align: center; padding: 1.5rem; }
.featured-guide-image svg { width: 4rem; height: 4rem; color: var(--color-gold); margin: 0 auto 0.75rem; }
.featured-guide-image-label {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--color-forest);
}
.featured-guide-image-sub {
  font-size: 0.875rem;
  color: var(--color-stone);
  margin-top: 0.25rem;
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */

.category-section { padding: 2.5rem 0; }
@media (min-width: 768px) { .category-section { padding: 3.5rem 0; } }

.category-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .category-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(5, 1fr); } }

.cat-card {
  padding: 1.25rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.3s ease;
}
.cat-card:hover { box-shadow: var(--shadow-medium); }

.cat-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.75rem;
  border-radius: var(--radius-xl);
  background-color: rgba(47, 58, 44, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
}
.cat-card-icon svg { width: 1.75rem; height: 1.75rem; }
.cat-card:hover .cat-card-icon {
  background-color: var(--color-forest);
  color: var(--color-gold-light);
}

.cat-card-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.cat-card:hover .cat-card-name { color: var(--color-gold); }

.cat-card-desc {
  font-size: 0.75rem;
  color: var(--color-stone);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   REVIEW CARD GRID
   ============================================================ */

.reviews-section {
  padding: 2.5rem 0;
  background-color: rgba(236, 228, 211, 0.3);
}
@media (min-width: 768px) { .reviews-section { padding: 3.5rem 0; } }

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.reviews-view-all {
  font-size: 0.875rem;
  color: var(--color-gold);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.reviews-view-all:hover { color: var(--color-gold-light); }

.review-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}
.review-card:hover { box-shadow: var(--shadow-medium); }

.review-card-thumb {
  height: 10rem;
  background: linear-gradient(135deg, rgba(47,58,44,0.1), rgba(182,138,62,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.review-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.review-card-thumb-placeholder {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(247,243,234,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-card-thumb-placeholder span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-forest);
}

.review-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.review-card-tag { margin-bottom: 0.5rem; }
.review-card-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  transition: color 0.2s;
}
.review-card:hover .review-card-title { color: var(--color-gold); }

.review-card-excerpt {
  font-size: 0.875rem;
  color: var(--color-stone);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0.75rem;
}
.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(236, 228, 211, 0.4);
}
.review-card-date { font-size: 0.75rem; color: var(--color-stone); }

/* ============================================================
   STAR RATING
   ============================================================ */

.star-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.star {
  display: inline-block;
  line-height: 0;
}
.star svg { vertical-align: middle; }
.star-value {
  font-size: 0.875rem;
  color: var(--color-stone);
  margin-left: 0.25rem;
}

/* ============================================================
   HOW WE TEST STRIP
   ============================================================ */

.how-we-test-section { padding: 2.5rem 0; }
@media (min-width: 768px) { .how-we-test-section { padding: 3.5rem 0; } }

.section-heading-center {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subhead-center {
  color: var(--color-stone);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.card-grid-4 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .card-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .card-grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.test-step-card {
  padding: 1.5rem;
  text-align: center;
}
.test-step-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: rgba(47, 58, 44, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.test-step-icon svg { width: 1.5rem; height: 1.5rem; }
.test-step-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}
.test-step-desc {
  font-size: 0.875rem;
  color: var(--color-stone);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   EMAIL CAPTURE
   ============================================================ */

.email-capture-section {
  background-color: var(--color-forest);
  color: var(--color-cream);
  padding: 3rem 0;
}
@media (min-width: 768px) { .email-capture-section { padding: 4rem 0; } }

.email-capture-inner {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}
.email-capture-icon {
  margin: 0 auto 1rem;
  width: 2rem;
  height: 2rem;
  color: var(--color-gold);
}
.email-capture-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
}
.email-capture-desc {
  color: rgba(247, 243, 234, 0.8);
  margin-bottom: 1.5rem;
  max-width: 100%;
}
.email-capture-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .email-capture-form { flex-direction: row; }
}
.email-capture-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background-color: rgba(247, 243, 234, 0.1);
  border: 1px solid rgba(247, 243, 234, 0.2);
  border-radius: var(--radius-lg);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  outline: none;
}
.email-capture-input::placeholder { color: rgba(247, 243, 234, 0.4); }
.email-capture-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(182, 138, 62, 0.2);
}
.email-capture-privacy {
  font-size: 0.75rem;
  color: rgba(247, 243, 234, 0.5);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--color-forest);
  color: var(--color-cream);
}

.footer-main {
  padding: 3rem 0;
}
@media (min-width: 768px) { .footer-main { padding: 4rem 0; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem; } }

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-brand-logo svg { color: var(--color-gold); }
.footer-brand-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-cream);
}
.footer-mission {
  font-size: 0.875rem;
  color: rgba(247, 243, 234, 0.8);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 100%;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-social a {
  font-size: 0.875rem;
  color: rgba(247, 243, 234, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--color-gold); }

.footer-col-heading {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(247, 243, 234, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-gold); }

/* Footer email */
.footer-email-desc {
  font-size: 0.875rem;
  color: rgba(247, 243, 234, 0.8);
  margin-bottom: 1rem;
}
.footer-email-form { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-email-input-wrap {
  display: flex;
  align-items: center;
  background-color: rgba(67, 84, 59, 0.3);
  border: 1px solid rgba(247, 243, 234, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0 0.75rem;
  gap: 0.5rem;
}
.footer-email-input-wrap svg { color: rgba(247,243,234,0.5); width:1rem; height:1rem; flex-shrink:0; }
.footer-email-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  color: var(--color-cream);
  font-family: var(--font-sans);
  outline: none;
}
.footer-email-input::placeholder { color: rgba(247, 243, 234, 0.4); }
.footer-email-btn {
  width: 100%;
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  border: none;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background-color 0.2s;
}
.footer-email-btn:hover { background-color: var(--color-gold-light); }
.footer-email-privacy {
  font-size: 0.75rem;
  color: rgba(247, 243, 234, 0.5);
  margin: 0;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(247, 243, 234, 0.1);
}
.footer-bottom-inner {
  padding: 1rem 0;
}
.footer-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer-bottom-row {
    flex-direction: row;
  }
}
.footer-disclosure {
  font-size: 0.75rem;
  color: rgba(247, 243, 234, 0.6);
  text-align: center;
  margin: 0;
  max-width: 100%;
}
@media (min-width: 768px) { .footer-disclosure { text-align: left; } }
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-legal-links a {
  font-size: 0.75rem;
  color: rgba(247, 243, 234, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--color-gold); }
.footer-copyright {
  font-size: 0.75rem;
  color: rgba(247, 243, 234, 0.4);
  text-align: center;
  margin: 0.75rem 0 0;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.sidebar-widget + .sidebar-widget { margin-top: 1.5rem; }
.sidebar-widget { }
.sidebar-widget-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

/* Tester card */
.tester-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.tester-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tester-avatar svg { width: 1.5rem; height: 1.5rem; color: var(--color-gold); }
.tester-name {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0;
  font-size: 1rem;
}
.tester-since {
  font-size: 0.75rem;
  color: var(--color-stone);
  margin-top: 0.125rem;
  display: block;
}
.tester-bio {
  font-size: 0.875rem;
  color: var(--color-stone);
  line-height: 1.6;
  margin-bottom: 0;
}
.tester-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-gold);
  font-weight: 500;
  margin-top: 0.75rem;
  text-decoration: none;
  transition: color 0.2s;
}
.tester-link:hover { color: var(--color-gold-light); }
.tester-link svg { width: 0.875rem; height: 0.875rem; }

/* Start here box */
.start-here-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.start-here-links li { margin-bottom: 0; }
.start-here-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-charcoal);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.start-here-links a:hover { color: var(--color-gold); }
.start-here-links svg { width: 0.875rem; height: 0.875rem; color: var(--color-gold); flex-shrink: 0; }

/* Featured guide promo */
.featured-promo { border: 1px solid rgba(182, 138, 62, 0.3); }
.featured-promo-title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.featured-promo-score {
  font-size: 0.75rem;
  color: var(--color-stone);
  margin-top: 0.125rem;
  margin-bottom: 0.75rem;
}
.featured-promo-desc {
  font-size: 0.875rem;
  color: var(--color-stone);
  margin-bottom: 0.75rem;
}

/* Popular posts */
.popular-posts { list-style: none; margin: 0; padding: 0; }
.popular-posts li { margin-bottom: 0.75rem; }
.popular-post-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
}
.popular-post-thumb {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  background-color: var(--color-sand);
  overflow: hidden;
  flex-shrink: 0;
}
.popular-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.popular-post-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47,58,44,0.2), rgba(182,138,62,0.2));
}
.popular-post-title {
  font-size: 0.875rem;
  color: var(--color-charcoal);
  line-height: 1.4;
  padding-top: 0.125rem;
  transition: color 0.2s;
}
.popular-post-link:hover .popular-post-title { color: var(--color-gold); }

/* Sidebar email capture */
.sidebar-email { background-color: var(--color-forest) !important; color: var(--color-cream); }
.sidebar-email .sidebar-widget-title { color: var(--color-gold-light); }
.sidebar-email-desc {
  font-size: 0.875rem;
  color: rgba(247,243,234,0.8);
  margin-bottom: 0.75rem;
}
.sidebar-email-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: rgba(247,243,234,0.1);
  border: 1px solid rgba(247,243,234,0.2);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--color-cream);
  font-family: var(--font-sans);
  outline: none;
  margin-bottom: 0.5rem;
}
.sidebar-email-input::placeholder { color: rgba(247,243,234,0.4); }
.sidebar-email-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(182,138,62,0.2);
}
.sidebar-email-btn {
  width: 100%;
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  border: none;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background-color 0.2s;
}
.sidebar-email-btn:hover { background-color: var(--color-gold-light); }

/* Tag cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.breadcrumbs {
  padding: 0.75rem 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-stone);
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb-list a {
  color: var(--color-stone);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-list a:hover { color: var(--color-gold); }
.breadcrumb-sep {
  color: var(--color-sand);
  font-size: 0.75rem;
  margin: 0 0.125rem;
}
.breadcrumb-current { color: var(--color-charcoal); font-weight: 500; }
.breadcrumb-home svg { width: 0.875rem; height: 0.875rem; vertical-align: middle; }

/* ============================================================
   QUICK ANSWER
   ============================================================ */

.quick-answer {
  background-color: rgba(47, 58, 44, 0.05);
  border-left: 4px solid var(--color-gold);
  padding: 1.25rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-bottom: 2rem;
}
.quick-answer p {
  color: var(--color-charcoal);
  line-height: 1.65;
  margin: 0;
  max-width: 100%;
}
.quick-answer strong { font-weight: 600; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-section {
  padding: 1.5rem;
}
@media (min-width: 768px) { .faq-section { padding: 2rem; } }

.faq-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

.faq-list { }
.faq-item {
  border: 1px solid rgba(236, 228, 211, 0.6);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: var(--font-sans);
}
.faq-question:hover { background-color: rgba(236, 228, 211, 0.3); }
.faq-question-text {
  font-weight: 500;
  color: var(--color-charcoal);
  font-size: 0.9375rem;
  padding-right: 1rem;
}
.faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-gold);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: var(--color-stone);
  line-height: 1.65;
}
.faq-answer p { max-width: 100%; margin-bottom: 0; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   SINGLE POST / ARTICLE LAYOUT
   ============================================================ */

.single-layout {
  padding: 1.5rem 0;
}
@media (min-width: 768px) { .single-layout { padding: 2.5rem 0; } }

.single-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .single-grid { grid-template-columns: 1fr 340px; }
}

.single-article {}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-stone);
  margin-bottom: 1.5rem;
}
.article-meta-sep { color: var(--color-sand); }

.article-featured-image {
  margin-bottom: 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.article-featured-image img { width: 100%; height: auto; display: block; }
.article-featured-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(47,58,44,0.1), rgba(182,138,62,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  margin-bottom: 2rem;
}
.article-featured-placeholder svg { width: 4rem; height: 4rem; color: var(--color-gold); }

.article-content {
  max-width: var(--max-prose);
}
.article-content p { margin-bottom: 1.25rem; }
.article-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.article-content ul,
.article-content ol {
  margin-bottom: 1.25rem;
  color: var(--color-charcoal);
}
.article-content li { margin-bottom: 0.5rem; }
.article-content a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-content a:hover { color: var(--color-gold-light); }
.article-content blockquote {
  border-left: 3px solid var(--color-gold);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background-color: rgba(47,58,44,0.04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--color-stone);
  font-style: italic;
}
.article-content img { border-radius: var(--radius-lg); margin: 1.5rem 0; }
.article-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.article-content th {
  background-color: var(--color-forest);
  color: var(--color-cream);
  padding: 0.625rem 0.875rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
}
.article-content td {
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid var(--color-sand);
  color: var(--color-charcoal);
}
.article-content tr:nth-child(even) td { background-color: rgba(236,228,211,0.3); }

/* ============================================================
   ARCHIVE / CATEGORY LAYOUT
   ============================================================ */

.archive-layout {
  padding: 1.5rem 0;
}
@media (min-width: 768px) { .archive-layout { padding: 2.5rem 0; } }

.archive-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .archive-grid { grid-template-columns: 1fr 340px; }
}

.archive-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}
.archive-description {
  color: var(--color-stone);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 56rem;
}

.post-card-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .post-card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .post-card-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   SEARCH PAGE
   ============================================================ */

.search-layout { padding: 2rem 0; }
.search-results-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}
.search-no-results { color: var(--color-stone); }

/* ============================================================
   404 PAGE
   ============================================================ */

.error-404-section {
  padding: 5rem 0;
  text-align: center;
}
.error-404-number {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.error-404-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}
.error-404-desc { color: var(--color-stone); margin-bottom: 2rem; }
.error-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.error-404-search { max-width: 28rem; margin: 0 auto; }
.error-404-search-form { display: flex; gap: 0.5rem; }
.error-404-search-input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  outline: none;
}
.error-404-search-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(182,138,62,0.2);
}

/* ============================================================
   VERDICT BOX (brand review)
   ============================================================ */

.verdict-box {
  border: 2px solid rgba(182, 138, 62, 0.3);
  margin-bottom: 2rem;
}
.verdict-box-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .verdict-box-inner { flex-direction: row; align-items: center; }
}
.verdict-score-block { text-align: center; }
@media (min-width: 768px) { .verdict-score-block { text-align: left; } }
.verdict-score-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.verdict-score-label { font-size: 0.875rem; color: var(--color-stone); margin-top: 0.25rem; }
.verdict-breakdown { flex: 1; }
.verdict-breakdown-heading {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}
.verdict-rating-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.verdict-rating-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(236,228,211,0.3);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
}
.verdict-rating-label {
  font-size: 0.875rem;
  color: var(--color-stone);
  text-transform: capitalize;
}

/* Pros / Cons grid */
.pros-cons-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .pros-cons-grid { grid-template-columns: 1fr 1fr; } }

.pros-card, .cons-card { padding: 1.5rem; }
.pros-heading, .cons-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.icon-check { color: #16a34a; }
.icon-x { color: #ef4444; }
.icon-check svg, .icon-x svg { width: 1rem; height: 1rem; }
.pros-list, .cons-list { list-style: none; padding: 0; margin: 0; }
.pros-list li, .cons-list li {
  font-size: 0.875rem;
  color: var(--color-stone);
  margin-bottom: 0.5rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-methods { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.contact-method { margin-bottom: 0.75rem; }
.contact-method-label { font-weight: 600; color: var(--color-charcoal); font-size: 0.875rem; }
.contact-method-value {
  color: var(--color-gold);
  text-decoration: none;
  font-size: 0.9375rem;
}
.contact-method-value:hover { color: var(--color-gold-light); }

/* ============================================================
   PAGE LAYOUT (generic)
   ============================================================ */

.page-layout { padding: 2rem 0; }
.page-content-max { max-width: 800px; }
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

/* ============================================================
   PAGINATION
   ============================================================ */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  text-decoration: none;
  border: 1px solid var(--color-sand);
  transition: all 0.2s;
}
.pagination .page-numbers.current {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  border-color: var(--color-gold);
  font-weight: 600;
}
.pagination .page-numbers:hover:not(.current) {
  background-color: var(--color-sand);
  color: var(--color-forest);
}

/* ============================================================
   WP COMMENT FORM
   ============================================================ */

.comments-area { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--color-sand); }
.comments-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 1.25rem;
}
.comment-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.comment { margin-bottom: 1.5rem; padding: 1.25rem; background: var(--color-cream); border-radius: var(--radius-lg); border: 1px solid var(--color-sand); }
.comment-meta { font-size: 0.8125rem; color: var(--color-stone); margin-bottom: 0.5rem; }
.comment-author-name { font-weight: 600; color: var(--color-charcoal); }
.comment-content p { font-size: 0.9375rem; color: var(--color-charcoal); margin: 0; max-width: 100%; }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  outline: none;
  margin-bottom: 1rem;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(182,138,62,0.2);
}
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  font-weight: 500;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: background-color 0.2s;
}
.comment-form input[type="submit"]:hover { background-color: var(--color-gold-light); }

/* ============================================================
   UTILITY
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
