/* ==========================================================================
   Aesthetic Brew - Coffee Machine Review Website
   Redesigned Stylesheet - Matching Mockup Images
   ========================================================================== */

/* Fonts loaded via WordPress functions.php - Playfair Display + Inter */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --teal: #1a4d4d;
  --teal-light: #2a6b6b;
  --brown: #8a6540;
  --brown-light: #a67c52;
  --brown-gold: #c2884f;
  --cream: #F5F0E8;
  --white: #FAF9F6;
  --card-bg: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-body: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --star: #F59E0B;
  --star-empty: #D1D5DB;
  --accent: #F59E0B;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
  --container-pad: 1.5rem;
  --nav-h: 72px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--text-body); background: var(--cream); }
body.admin-bar .nav { top: 32px; }
body.admin-bar .hero-split { margin-top: calc(var(--nav-h) + 32px); }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--teal-light); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* Container */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--card-bg); box-shadow: 0 1px 3px rgba(0,0,0,.06); height: var(--nav-h);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad);
}
.nav__logo { display: flex; align-items: center; gap: .5rem; }
.nav__logo img { height: 40px; width: auto; border-radius: 50%; }
.nav__logo-text { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--teal); }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__link { font-size: .875rem; font-weight: 500; color: var(--text-body); position: relative; padding: .25rem 0; }
.nav__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--teal); transition: width .25s ease; }
.nav__link:hover, .nav__link.active { color: var(--teal); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: .25s ease; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem; font-size: .875rem; font-weight: 600;
  border-radius: 25px; transition: all .25s ease; cursor: pointer;
  border: 2px solid transparent; text-decoration: none; white-space: nowrap;
}
.btn--primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn--primary:hover { background: var(--teal-light); border-color: var(--teal-light); color: #fff; transform: translateY(-1px); }
.btn--secondary { background: var(--brown-gold); color: #fff; border-color: var(--brown-gold); }
.btn--secondary:hover { background: var(--brown-light); border-color: var(--brown-light); color: #fff; }
.btn--outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border-color: #fff; border-width: 1px; }
.btn--outline-white:hover { background: #fff; color: var(--teal); }
.btn--sm { padding: .5rem 1rem; font-size: .75rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ==========================================================================
   HOMEPAGE - SPLIT HERO
   ========================================================================== */
.hero-split {
  display: grid; grid-template-columns: 40% 60%;
  min-height: 520px; margin-top: var(--nav-h);
}
.hero-split__left {
  background: linear-gradient(135deg, #6b4423 0%, #8a6540 40%, #a67c52 100%);
  display: flex; align-items: center; padding: 4rem 3rem;
}
.hero-split__content { max-width: 420px; }
.hero-split__title {
  font-family: var(--font-heading); font-size: 2.75rem; font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 1.25rem;
}
.hero-split__subtitle {
  font-size: 1.125rem; color: rgba(255,255,255,.85);
  line-height: 1.6; margin-bottom: 2rem; font-weight: 300;
}
.hero-split__right {
  background-size: cover; background-position: center;
  min-height: 100%;
}

/* Trust bar overlapping hero */
.trust-bar-wrap {
  position: relative;
  z-index: 10;
  padding-top: 1rem;
}
.trust-bar {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  padding: 2rem 2.5rem;
  margin-top: -3.5rem;
  position: relative; z-index: 10;
}
.trust-bar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.trust-bar__item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.trust-bar__icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(26,77,77,.08); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-bar__icon svg { width: 24px; height: 24px; }
.trust-bar__title { font-size: .9375rem; font-weight: 700; color: var(--text-dark); margin-bottom: .25rem; }
.trust-bar__text { font-size: .8125rem; color: var(--text-muted); line-height: 1.5; }

/* ==========================================================================
   FEATURED REVIEWS - 4 CARDS WITH NUMBERED BADGES
   ========================================================================== */
.section { padding: 4rem 0; }
.section--white { background: var(--white); }
.section--white-padded { background: var(--white); padding: 3rem 0; }
.section--stats { background: var(--white); padding: 2.5rem 0; }
.section--cream { background: var(--cream); padding: 3rem 0; }
.section--latest { background: var(--white); }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header--mb { margin-bottom: 2rem; }
.section-header__title { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--text-dark); }
.section-header__subtitle { font-size: 1rem; color: var(--text-muted); margin-top: .5rem; }

/* Featured card with number badge */
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.featured-card {
  background: var(--card-bg); border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.1); }
.featured-card__img-wrap { position: relative; width: 100%; background: var(--card-bg); }
.featured-card__img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.featured-card:hover .featured-card__img { transform: scale(1.05); }
.featured-card__badge {
  position: absolute; top: .75rem; left: .75rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700;
}
.featured-card__body { padding: 1.25rem; }
.featured-card__cat { font-size: .6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--brown-gold); margin-bottom: .375rem; }
.featured-card__product-name { font-size: .8125rem; font-weight: 600; color: var(--text-body); margin-bottom: .375rem; }
.featured-card__title { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-bottom: .5rem; }
.featured-card__title a { color: inherit; }
.featured-card__title a:hover { color: var(--teal); }
.featured-card__rating { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.featured-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: .75rem; border-top: 1px solid var(--border-light); }
.featured-card__price { font-size: 1.125rem; font-weight: 700; color: var(--teal); }

/* ==========================================================================
   LATEST REVIEWS SECTION (Homepage right side style)
   ========================================================================== */
.latest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.latest-card {
  background: var(--card-bg); border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.latest-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.1); }
.latest-card__img-wrap { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.latest-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.latest-card:hover .latest-card__img { transform: scale(1.05); }
.latest-card__body { padding: 1.25rem; }
.latest-card__meta {
  display: flex; align-items: center; gap: 1rem;
  font-size: .75rem; color: var(--text-muted); margin-bottom: .75rem;
}
.latest-card__meta-item { display: flex; align-items: center; gap: .25rem; }
.latest-card__title { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; color: var(--text-dark); line-height: 1.35; margin-bottom: 1rem; }
.latest-card__title a { color: inherit; }
.latest-card__title a:hover { color: var(--teal); }

/* ==========================================================================
   STAR RATINGS
   ========================================================================== */
.stars { display: inline-flex; align-items: center; gap: 2px; }
.stars__icon { width: 16px; height: 16px; color: var(--star); }
.stars__icon--empty { color: var(--star-empty); }
.stars__count { font-size: .875rem; color: var(--text-muted); margin-left: .25rem; font-weight: 500; }

/* ==========================================================================
   REVIEWS LIST PAGE
   ========================================================================== */

/* Category filter bar -- deep teal with dot separators */
.category-filter-bar {
  background: var(--teal);
  padding: .875rem 0;
  margin-bottom: 1.5rem;
  border-radius: 12px;
}
.category-filter-bar__inner {
  display: flex; align-items: center; gap: 0;
  padding: 0 1.25rem;
}
.category-filter-bar__item {
  font-size: .8125rem; font-weight: 500;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: .375rem .625rem;
  border-radius: 6px;
  transition: all .15s;
  white-space: nowrap;
}
.category-filter-bar__item:hover { color: #fff; background: rgba(255,255,255,.1); }
.category-filter-bar__item.active { color: #fff; font-weight: 600; }
.category-filter-bar__sep {
  color: rgba(255,255,255,.3);
  font-size: .625rem;
  margin: 0 .25rem;
  user-select: none;
}
.category-filter-bar__actions {
  margin-left: auto;
  display: flex; align-items: center; gap: .5rem;
}
.category-filter-bar__search {
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(255,255,255,.1); border: none;
  color: rgba(255,255,255,.75);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s;
}
.category-filter-bar__search:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Grid article cards (v2) -- matches reference image */
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.review-card-v2 {
  display: flex; flex-direction: column;
  background: var(--card-bg); border-radius: 12px;
  border: 1px solid var(--border-light); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card-v2:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.08); }
.review-card-v2__img-wrap {
  position: relative; overflow: hidden;
  min-height: 200px;
}
.review-card-v2__img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; display: block; }
.review-card-v2:hover .review-card-v2__img { transform: scale(1.05); }
.review-card-v2__body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.review-card-v2__cat { font-size: .6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--brown-gold); margin-bottom: .25rem; }
.review-card-v2__product-name { font-size: .75rem; font-weight: 600; color: var(--text-body); margin-bottom: .25rem; }
.review-card-v2__title { font-family: var(--font-heading); font-size: .9375rem; font-weight: 700; color: var(--text-dark); margin-bottom: .5rem; line-height: 1.4; }
.review-card-v2__title a { color: inherit; }
.review-card-v2__title a:hover { color: var(--teal); }
.review-card-v2__rating { display: flex; align-items: center; gap: .375rem; margin-bottom: .625rem; }
.review-card-v2__excerpt { font-size: .8125rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.review-card-v2__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .75rem; border-top: 1px solid var(--border-light);
}
.review-card-v2__link { font-size: .8125rem; font-weight: 600; color: var(--teal); }
.review-card-v2__link:hover { text-decoration: underline; }
.review-card-v2__footer svg { color: var(--teal); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 2.5rem; }
.pagination__item {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  font-size: .875rem; font-weight: 500; color: var(--text-body);
  background: var(--card-bg); border: 1px solid var(--border);
  transition: all .15s; cursor: pointer;
}
.pagination__item:hover { border-color: var(--teal); color: var(--teal); }
.pagination__item.active { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ==========================================================================
   SIDEBAR (List page & Single page)
   ========================================================================== */
.sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); align-self: start; }
.sidebar__widget {
  background: var(--card-bg); border-radius: 12px;
  border: 1px solid var(--border-light); padding: 1.5rem; margin-bottom: 1.25rem;
}
.sidebar__widget-title {
  font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 1rem; padding-bottom: .75rem;
  border-bottom: 2px solid var(--cream);
}
.sidebar__widget-title--no-border {
  border-bottom: none;
  padding-bottom: 0;
}

/* Popular categories */
.cat-list__item { display: flex; align-items: center; gap: .75rem; padding: .5rem 0; }
.cat-list__dot { width: 6px; height: 6px; border-radius: 2px; background: var(--brown-gold); flex-shrink: 0; transform: rotate(45deg); }
.cat-list__item a { font-size: .875rem; color: var(--text-body); }
.cat-list__item a:hover { color: var(--teal); }

/* Top rated sidebar items */
.top-item { display: flex; align-items: center; gap: .875rem; padding: .75rem 0; }
.top-item__img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.top-item__title { font-size: .875rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; }
.top-item__stars { display: flex; align-items: center; gap: 2px; margin-top: .25rem; }
.top-item__stars svg { width: 12px; height: 12px; }
.top-item__score { font-size: .75rem; color: var(--text-muted); margin-left: .25rem; }

/* ==========================================================================
   SINGLE REVIEW PAGE
   ========================================================================== */

/* Clean header with breadcrumb tags */
.review-header {
  padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 1.5rem;
}
.review-header__tags { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.tag {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .375rem .875rem; font-size: .75rem; font-weight: 500;
  border-radius: 20px; background: var(--cream); color: var(--text-muted);
}
.tag svg { width: 12px; height: 12px; }
.tag--teal { background: var(--teal); color: #fff; }

.review-header__title { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 1.25rem; max-width: 800px; }

/* Author bar */
.author-bar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.author-bar__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.author-bar__info { display: flex; flex-direction: column; }
.author-bar__name { font-size: .9375rem; font-weight: 600; color: var(--text-dark); }
.author-bar__meta { font-size: .8125rem; color: var(--text-muted); }
.author-bar__meta span { margin-right: 1rem; }

/* Hero image */
.review-hero { position: relative; margin-bottom: 2.5rem; }
.review-hero__img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 12px;
}

/* Two column layout */
.content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }

/* Article content */
.article-content { line-height: 1.8; color: var(--text-body); }

/* WP entry-content wrapper -- all dynamic article content goes here */
.entry-content {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  margin-bottom: 1.5rem;
}
.entry-content > h2 {
  font-family: var(--font-heading); font-size: 1.375rem; font-weight: 700;
  color: var(--text-dark); margin-top: 2.25rem; margin-bottom: .875rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--cream);
}
.entry-content > h2:first-of-type { margin-top: 0; }
.entry-content > h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--text-dark); margin-top: 1.75rem; margin-bottom: .625rem; }
.entry-content > p { margin-bottom: 1.125rem; font-size: .9375rem; line-height: 1.8; color: var(--text-body); }
.entry-content > p:last-of-type { margin-bottom: 0; }
.entry-content > ul, .entry-content > ol { margin-bottom: 1.125rem; padding-left: 1.5rem; }
.entry-content > ul { list-style: disc; }
.entry-content > ol { list-style: decimal; }
.entry-content > li { margin-bottom: .5rem; font-size: .9375rem; }
.entry-content > blockquote {
  margin: 1.5rem 0; padding: 1.25rem 1.5rem;
  background: var(--cream); border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0; font-style: italic;
}
.entry-content > img { border-radius: 8px; margin: 1.5rem 0; max-width: 100%; }
.entry-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.entry-content .btn {
  color: #fff; text-decoration: none; transition: all .25s ease;
}
.entry-content .btn:hover {
  color: #fff; background: var(--teal-light); border-color: var(--teal-light); transform: translateY(-1px);
}
.entry-content .btn--secondary { color: #fff; background: var(--brown-gold); border-color: var(--brown-gold); }
.entry-content .btn--secondary:hover { color: #fff; background: var(--brown-light); border-color: var(--brown-light); transform: translateY(-1px); }
.entry-content .btn--outline { color: var(--teal); background: transparent; border-color: var(--teal); text-decoration: none; }
.entry-content .btn--outline:hover { color: #fff; background: var(--teal); border-color: var(--teal); transform: translateY(-1px); }

/* CTA button inside entry-content */
.entry-cta {
  text-align: center; margin: 2rem 0;
  padding: 1.5rem; background: var(--cream);
  border-radius: 12px; border: 1px dashed var(--border);
}

/* Specs table inside entry-content */
.entry-content .specs-table {
  border-radius: 10px; overflow: hidden;
  box-shadow: none; border: 1px solid var(--border-light);
}
.entry-content .specs-table td:first-child { background: rgba(26,77,77,.04); }

/* FAQ inside entry-content */
.entry-content .faq-item {
  border: 1px solid var(--border-light); border-radius: 10px;
}
.entry-content .faq-item summary { padding: 1rem 1.25rem; }
.entry-content .faq-item__content { padding: 1rem 1.25rem; }

/* Pros & Cons inside entry-content */
.entry-content .pros-cons { margin: 1.25rem 0; }
.entry-content .pros-cons__block { border-radius: 10px; }

/* Inline TOC */
.inline-toc {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem 1.5rem; margin-bottom: 2rem;
}
.inline-toc__title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: .75rem; }
.inline-toc__list { display: flex; flex-direction: column; gap: .375rem; }
.inline-toc__link {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; color: var(--text-body); padding: .25rem 0;
}
.inline-toc__link:hover { color: var(--teal); }
.inline-toc__num { font-weight: 600; color: var(--teal); }

/* At a Glance sidebar */
.at-glance, .at-glance-card { text-align: center; }
.at-glance__img, .at-glance-card__img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }
.at-glance__title, .at-glance-card__title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--text-dark); margin-bottom: .5rem; }
.at-glance__rating, .at-glance-card__rating { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-bottom: .75rem; }
.at-glance__price, .at-glance-card__price { font-size: 1.5rem; font-weight: 800; color: var(--teal); margin-bottom: 1rem; }
.at-glance__price-old, .at-glance-card__price-old { font-size: .875rem; color: var(--text-light); text-decoration: line-through; margin-left: .5rem; font-weight: 400; }
.at-glance__btn, .at-glance-card__btn { margin-bottom: 1rem; }
.at-glance__updated, .at-glance-card__updated { font-size: .6875rem; color: var(--text-light); }

/* Product Carousel in Sidebar */
.at-glance-carousel { text-align: center; position: relative; }
.carousel-track { position: relative; min-height: 380px; }
.carousel-slide {
  position: absolute; top: 0; left: 0; width: 100%;
  opacity: 0; visibility: hidden;
  transform: translateX(20px);
  transition: opacity .5s ease, transform .5s ease, visibility .5s ease;
}
.carousel-slide.active {
  opacity: 1; visibility: visible;
  transform: translateX(0);
  position: relative;
}
.carousel-dots {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; margin-top: 1rem;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none;
  cursor: pointer; transition: background .25s ease, transform .25s ease;
  padding: 0;
}
.carousel-dot.active {
  background: var(--teal); transform: scale(1.2);
}
.carousel-dot:hover {
  background: var(--teal-light);
}

/* Pros & Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.pros-cons__block { padding: 1.25rem; border-radius: 10px; }
.pros-cons__block--pros { background: rgba(26,77,77,.05); border: 1px solid rgba(26,77,77,.12); }
.pros-cons__block--cons { background: rgba(220,38,38,.03); border: 1px solid rgba(220,38,38,.1); }
.pros-cons__title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: .75rem; display: flex; align-items: center; gap: .375rem; }
.pros-cons__title--pros { color: var(--teal); }
.pros-cons__title--cons { color: #DC2626; }
.pros-cons__list li { padding: .375rem 0 .375rem 1.25rem; position: relative; font-size: .875rem; }
.pros-cons__block--pros .pros-cons__list li::before { content: '\2713'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.pros-cons__block--cons .pros-cons__list li::before { content: '\2717'; position: absolute; left: 0; color: #DC2626; font-weight: 700; }

/* Specs table */
.specs-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background: var(--card-bg); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.specs-table tr:nth-child(even) { background: var(--white); }
.specs-table td { padding: .75rem 1.25rem; font-size: .875rem; border-bottom: 1px solid var(--border-light); }
.specs-table td:first-child { font-weight: 600; color: var(--text-dark); width: 40%; background: var(--cream); }

/* Comparison table */
.comparison-table { width: 100%; border-collapse: collapse; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.06); background: var(--card-bg); margin: 1.5rem 0; }
.comparison-table thead { background: var(--teal); }
.comparison-table th { padding: .875rem 1rem; text-align: left; font-size: .8125rem; font-weight: 600; color: #fff; }
.comparison-table td { padding: .875rem 1rem; font-size: .8125rem; color: var(--text-body); border-bottom: 1px solid var(--border-light); }
.comparison-table tbody tr:hover { background: var(--cream); }
.comparison-table__highlight { background: rgba(26,77,77,.04); }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: .75rem; overflow: hidden; }
.faq-item summary {
  padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; color: var(--text-dark);
  background: var(--card-bg); list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { transition: transform .25s ease; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item__content { padding: 1rem 1.25rem; background: var(--white); border-top: 1px solid var(--border-light); font-size: .875rem; line-height: 1.7; }

/* Affiliate notice */
.affiliate-notice {
  background: rgba(26,77,77,.05); border: 1px solid rgba(26,77,77,.12);
  border-radius: 8px; padding: 1rem 1.25rem; font-size: .75rem; color: var(--text-muted);
  line-height: 1.7; margin-top: 2rem; display: flex; align-items: flex-start; gap: .75rem;
}
.affiliate-notice svg { flex-shrink: 0; color: var(--teal); }

/* Related reviews in sidebar */
.related-item { display: flex; gap: .75rem; padding: .75rem 0; text-decoration: none; color: inherit; }
.related-item__img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.related-item__title { font-size: .875rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; margin-bottom: .25rem; }
.related-item:hover .related-item__title { color: var(--teal); }

/* ==========================================================================
   NEWSLETTER / CTA
   ========================================================================== */
.newsletter {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  padding: 4rem 0; text-align: center;
}
.newsletter__title { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: #fff; margin-bottom: .75rem; }
.newsletter__text { font-size: 1rem; color: rgba(255,255,255,.85); max-width: 480px; margin: 0 auto 1.5rem; }
.newsletter__form { display: flex; align-items: center; justify-content: center; gap: .75rem; max-width: 480px; margin: 0 auto; }
.newsletter__input {
  flex: 1; padding: .875rem 1.25rem; font-size: 1rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  border-radius: 25px; color: #fff;
}
.newsletter__input::placeholder { color: rgba(255,255,255,.5); }
.newsletter__input:focus { outline: none; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.2); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--teal); color: #fff; padding: 3.5rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer__brand { max-width: 300px; }
.footer__logo { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.footer__logo img { height: 36px; width: auto; border-radius: 50%; }
.footer__logo-text { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: #fff; }
.footer__tagline { font-size: .875rem; line-height: 1.7; opacity: .8; margin-bottom: 1.25rem; }
.footer__social { display: flex; align-items: center; gap: .75rem; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.footer__social a:hover { background: rgba(255,255,255,.25); }
.footer__col-title { font-family: var(--font-heading); font-size: .9375rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.footer__links li { margin-bottom: .625rem; }
.footer__links a { font-size: .875rem; color: rgba(255,255,255,.75); transition: color .15s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; font-size: .8125rem; opacity: .7; }
.footer__bottom a { color: rgba(255,255,255,.7); margin-left: 1.5rem; }
.footer__bottom a:hover { color: #fff; }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal); color: #fff; border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,.15); z-index: 999;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s ease; cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--teal-light); transform: translateY(-2px); }

/* ==========================================================================
   READING PROGRESS
   ========================================================================== */
.reading-progress { position: fixed; top: 0; left: 0; width: 0; height: 3px; background: var(--teal); z-index: 9999; transition: width .1s linear; }

/* ==========================================================================
   PAGE HERO (About, Contact)
   ========================================================================== */
.page-hero {
  position: relative; width: 100%; height: 340px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: var(--nav-h);
}
.page-hero__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.page-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.page-hero__content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 1.5rem; }
.page-hero__title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; margin-bottom: .5rem; }
.page-hero__subtitle { font-size: 1.0625rem; opacity: .9; max-width: 560px; margin: 0 auto; }

/* Breadcrumb on page hero */
.breadcrumb {
  position: absolute; bottom: 1rem; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: center;
}
.breadcrumb__list {
  display: flex; align-items: center; gap: .5rem;
  list-style: none; padding: 0; margin: 0;
  font-size: .875rem; color: #6B7280;
}
.breadcrumb__item { display: flex; align-items: center; gap: .5rem; }
.breadcrumb__item:not(:last-child)::after {
  content: '/'; color: #6B7280; margin-left: .5rem;
}
.breadcrumb__item a { color: #6B7280; transition: color .15s; }
.breadcrumb__item a:hover { color: #4B5563; }
.breadcrumb__item[aria-current="page"] { color: #9CA3AF; }

/* ==========================================================================
   LEGAL CONTENT (Affiliate Disclosure, Privacy Policy)
   ========================================================================== */
.legal-page { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 4rem; }
.legal-page .container { max-width: 760px; }
.legal-page h1 {
  font-family: var(--font-heading); font-size: 2.25rem; font-weight: 800;
  color: var(--text-dark); margin-bottom: .5rem;
}
.legal-page .legal-updated { font-size: .875rem; color: var(--text-muted); margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--cream); }
.legal-page h2 {
  font-family: var(--font-heading); font-size: 1.375rem; font-weight: 700;
  color: var(--text-dark); margin-top: 2.5rem; margin-bottom: .75rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--cream);
}
.legal-page h3 { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; color: var(--text-dark); margin-top: 1.5rem; margin-bottom: .5rem; }
.legal-page p { margin-bottom: 1rem; line-height: 1.8; }
.legal-page ul, .legal-page ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.legal-page ul { list-style: disc; }
.legal-page ol { list-style: decimal; }
.legal-page li { margin-bottom: .5rem; line-height: 1.7; }
.legal-page a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.legal-page a:hover { color: var(--teal-light); }
.legal-page__header { margin-bottom: 0; }
.legal-page__title { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 800; color: var(--text-dark); margin-bottom: .5rem; }
.legal-page__content { background: transparent; border: none; border-radius: 0; padding: 0; margin-bottom: 0; }
.legal-page__content h2 { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 700; color: var(--text-dark); margin-top: 2.5rem; margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--cream); }
.legal-page__content h3 { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; color: var(--text-dark); margin-top: 1.5rem; margin-bottom: .5rem; }
.legal-page__content p { margin-bottom: 1rem; line-height: 1.8; }
.legal-page__content ul, .legal-page__content ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.legal-page__content ul { list-style: disc; }
.legal-page__content ol { list-style: decimal; }
.legal-page__content li { margin-bottom: .5rem; line-height: 1.7; }
.legal-page__content a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.legal-page__content a:hover { color: var(--teal-light); }

/* ==========================================================================
   ABOUT PAGE - Steps / Team / Stats
   ========================================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; max-width: 960px; margin: 0 auto; }
.step-card {
  background: var(--card-bg); border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06); padding: 1.75rem 1.25rem; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.1); }
.step-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(26,77,77,.08); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-card__icon svg { width: 28px; height: 28px; }
.step-card__num { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: var(--teal); margin-bottom: .5rem; }
.step-card__title { font-family: var(--font-heading); font-size: .9375rem; font-weight: 700; color: var(--text-dark); margin-bottom: .5rem; }
.step-card__text { font-size: .8125rem; color: var(--text-muted); line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 960px; margin: 0 auto; }
.team-card { background: var(--card-bg); border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,.06); overflow: hidden; text-align: center; }
.team-card__img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-card__body { padding: 1.25rem; }
.team-card__name { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; color: var(--text-dark); }
.team-card__role { font-size: .8125rem; color: var(--text-muted); margin-top: .25rem; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.stat-card { text-align: center; padding: 1.5rem; }
.stat-card__num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--teal); }
.stat-card__label { font-size: .875rem; color: var(--text-muted); margin-top: .25rem; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 1.5rem; align-items: start; }
.contact-layout > .sidebar__widget { margin-bottom: 0; }
.contact-form label { display: block; font-size: .875rem; font-weight: 600; color: var(--text-dark); margin-bottom: .375rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: .75rem 1rem; font-size: .9375rem; font-family: var(--font-body);
  border: 1px solid var(--border); border-radius: 8px; background: var(--white);
  color: var(--text-body); transition: border-color .15s; margin-bottom: 1.25rem;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,77,77,.1); }
.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.contact-info-card {
  background: var(--white); border-radius: 10px;
  border: 1px solid var(--border-light); padding: 1rem;
  display: flex; align-items: flex-start; gap: .875rem;
}
.contact-info-card__icon {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  background: rgba(26,77,77,.06); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-card__icon svg { width: 20px; height: 20px; }
.contact-info-card__label { font-size: .6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: .2rem; }
.contact-info-card__value { font-size: .875rem; color: var(--text-dark); font-weight: 500; }
.contact-info-card__value a { color: var(--teal); }

/* Review request sidebar widget on contact */
.review-request { margin-top: 0; }
.review-request li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .875rem; color: var(--text-body); padding: .375rem 0; line-height: 1.6;
}
.review-request li svg { flex-shrink: 0; color: var(--teal); margin-top: 2px; }

/* ==========================================================================
   BUYING GUIDE CTA
   ========================================================================== */
.guide-cta {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.guide-cta__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.guide-cta__text { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-gold) 100%);
  padding: 3.5rem 0; text-align: center;
}
.cta-banner__title { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.cta-banner__text { font-size: 1rem; color: rgba(255,255,255,.85); max-width: 480px; margin: 0 auto 1.5rem; }

/* ==========================================================================
   POST NAVIGATION (Previous / Next)
   ========================================================================== */
.post-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  margin-top: 2.5rem;
}
.post-nav__link {
  display: flex; flex-direction: column; gap: .375rem;
  padding: 1.25rem; border-radius: 12px;
  background: var(--card-bg); border: 1px solid var(--border-light);
  text-decoration: none; transition: border-color .2s, box-shadow .2s;
}
.post-nav__link:hover {
  border-color: var(--teal); box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.post-nav__link--next { text-align: right; }
.post-nav__label {
  display: flex; align-items: center; gap: .375rem;
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; color: var(--text-muted);
}
.post-nav__link--next .post-nav__label { justify-content: flex-end; }
.post-nav__title {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: var(--text-dark); line-height: 1.4;
}

/* ==========================================================================
   RELATED REVIEWS SECTION (Full Width Cards)
   ========================================================================== */
.related-reviews-section {
  margin-top: 2.5rem;
}
.related-reviews-section__title {
  font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 1.25rem;
}
.related-reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.related-review-card {
  display: flex; flex-direction: column;
  background: var(--card-bg); border-radius: 12px;
  border: 1px solid var(--border-light); overflow: hidden;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.related-review-card:hover {
  transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.related-review-card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.related-review-card__body {
  padding: 1.25rem; display: flex; flex-direction: column; flex: 1;
}
.related-review-card__title {
  font-family: var(--font-heading); font-size: .9375rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: .5rem; line-height: 1.4;
}
.related-review-card__rating {
  display: flex; align-items: center; gap: .375rem; margin-bottom: .625rem;
}
.related-review-card__excerpt {
  font-size: .8125rem; color: var(--text-muted); line-height: 1.65;
  margin-bottom: 1rem; flex: 1;
}
.related-review-card__link {
  font-size: .8125rem; font-weight: 600; color: var(--teal);
  display: flex; align-items: center; gap: .375rem;
}
.related-review-card:hover .related-review-card__link { text-decoration: underline; }
.related-review-card__link svg { flex-shrink: 0; }

/* ==========================================================================
   CATEGORIES GRID (Homepage)
   ========================================================================== */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.category-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--card-bg); border-radius: 12px;
  border: 1px solid var(--border-light); padding: 1.75rem 1.25rem;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.category-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,.08); }
.category-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(26,77,77,.06); color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.category-card__icon svg { width: 28px; height: 28px; }
.category-card__title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: .25rem; }
.category-card__count { font-size: .8125rem; color: var(--text-muted); }

/* ==========================================================================
   RESPONSIVE - Tablet (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --nav-h: 64px; }
  .hero-split { grid-template-columns: 45% 55%; min-height: 420px; }
  .hero-split__left { padding: 3rem 2rem; }
  .hero-split__title { font-size: 2.25rem; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr 280px; gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; max-width: 100%; }
  .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 480px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .related-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   RESPONSIVE - Mobile (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  :root { --container-pad: 1rem; --nav-h: 60px; }

  /* Nav */
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--card-bg); flex-direction: column; align-items: center;
    justify-content: flex-start; padding-top: 3rem; gap: 1.5rem;
    transform: translateX(100%); transition: transform .3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link { font-size: 1.125rem; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }

  /* Hero */
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split__left { padding: 2.5rem 1.5rem; }
  .hero-split__right { min-height: 240px; }
  .hero-split__title { font-size: 2rem; }
  .hero-split__subtitle { font-size: 1rem; }

  /* Trust bar */
  .trust-bar { margin-top: -2rem; padding: 1.5rem; }
  .trust-bar__grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Featured */
  .featured-grid { grid-template-columns: 1fr; }
  .latest-grid { grid-template-columns: 1fr; }

  /* Content layout */
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }

  /* Single review */
  .review-header__title { font-size: 1.5rem; }
  .review-hero__img { height: 100%; }
  .pros-cons { grid-template-columns: 1fr; }
  .comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .newsletter__form { flex-direction: column; }

  /* Pagination */
  .pagination { flex-wrap: wrap; }

  /* Page hero */
  .page-hero { height: 280px; }
  .page-hero__title { font-size: 2rem; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Grids */
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav__link--next { text-align: left; }
  .post-nav__link--next .post-nav__label { justify-content: flex-start; }
  .related-reviews-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .category-filter-bar { border-radius: 0; margin-bottom: 1rem; }
  .category-filter-bar__inner { overflow-x: auto; padding-bottom: .25rem; }
}

/* ==========================================================================
   RESPONSIVE - Small Mobile (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
  .review-grid { grid-template-columns: 1fr; }
  .hero-split__left { padding: 2rem 1.25rem; }
  .hero-split__title { font-size: 1.75rem; }
  .review-header__title { font-size: 1.25rem; }
  .entry-content { padding: 1.25rem 1rem; }
  .newsletter__input { font-size: .875rem; }
}

/* ==========================================================================
   RESPONSIVE - Extra Small (max-width: 375px)
   ========================================================================== */
@media (max-width: 375px) {
  .hero-split__title { font-size: 1.5rem; }
  .hero-split__subtitle { font-size: .875rem; }
  .section-header__title { font-size: 1.5rem; }
  .trust-bar { padding: 1.25rem; }
  .featured-card__body, .latest-card__body, .review-card-v2__body { padding: 1rem; }
  .featured-card__title, .latest-card__title, .review-card-v2__title { font-size: .875rem; }
  .review-header__title { font-size: 1.125rem; }
  .page-hero__title { font-size: 1.5rem; }
  .content-layout { gap: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   RESPONSIVE - Minimum (max-width: 320px)
   ========================================================================== */
@media (max-width: 320px) {
  .hero-split__title { font-size: 1.375rem; }
  .hero-split__left { padding: 1.5rem 1rem; }
  .section-header__title { font-size: 1.25rem; }
  .section-header__subtitle { font-size: .875rem; }
  .btn { padding: .625rem 1rem; font-size: .8125rem; }
  .btn--sm { padding: .375rem .75rem; font-size: .6875rem; }
  .featured-card__body, .latest-card__body, .review-card-v2__body { padding: .875rem; }
  .featured-card__title, .latest-card__title, .review-card-v2__title { font-size: .8125rem; }
  .review-header__title { font-size: 1rem; }
  .page-hero__title { font-size: 1.25rem; }
  .page-hero { height: 220px; }
  .newsletter__form { gap: .5rem; }
  .newsletter__input { padding: .75rem 1rem; font-size: .8125rem; }
  .trust-bar { padding: 1rem; }
}
