:root {
  --accent: #f32836;
  --bg: #f7f5f3;
  --bg-elev: #ebe7e4;
  --card: #ffffff;
  --border: #e7e5e4;
  --border-strong: #d4d4d4;
  --text: #0f0f10;
  --text-soft: #404040;
  --muted: #737373;
  --gold: #f5b400;
  --link: #0f0f10;
  --link-hover: #f32836;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --radius-pill: 9999px;
  --radius-card: 14px;
  --radius-sm: 8px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
a { color: var(--link); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--link-hover); text-decoration: none; }

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: saturate(180%) blur(6px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { display: inline-flex; align-items: baseline; gap: 8px; color: var(--text); font-size: 18px; line-height: 1; }
.brand-star { flex-shrink: 0; align-self: center; }
.brand-word { font-weight: 400; letter-spacing: -0.01em; color: var(--text); }
.brand-word strong { font-weight: 700; }
.brand-sub { font-family: var(--serif); font-style: italic; color: var(--muted); font-weight: 400; font-size: 17px; margin-left: 4px; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  display: inline-block;
  padding: 8px 16px;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.site-nav a:hover { background: var(--bg-elev); color: var(--text); }

/* Main / Footer */
.site-main { padding: 40px 24px 80px; }
.site-footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 80px;
  color: var(--muted);
  font-size: 14px;
}
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer-text { display: flex; flex-direction: column; gap: 8px; }
.bbb-badge { display: inline-flex; align-items: center; line-height: 0; border-radius: 8px; text-decoration: none; transition: transform 120ms ease, box-shadow 120ms ease; }
.bbb-badge img { display: block; height: auto; max-width: 100%; }
.bbb-badge:hover, .bbb-badge:focus-visible { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(6, 55, 97, 0.18); outline: none; }
.bbb-badge--hero { margin-top: 20px; align-self: flex-start; }
.bbb-badge--hero img { width: 56px; height: 79px; }
.bbb-badge--footer img { width: 40px; height: 56px; }
@media (max-width: 720px) {
  .bbb-badge--hero { margin-top: 16px; }
  .bbb-badge--hero img { width: 48px; height: 68px; }
}

/* Headings & display type */
h1, h2, h3 { color: var(--text); letter-spacing: -0.015em; }
.display, h1.page-title, .hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.section-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* Hero */
.hero { padding: 56px 0 40px; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero-text { max-width: 680px; }
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 16px;
}
.hero h1 { font-size: 64px; margin: 0 0 20px; }
.hero p.lead {
  font-size: 20px;
  color: var(--text-soft);
  margin: 0 0 28px;
  max-width: 680px;
  line-height: 1.5;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.avatar-stack { display: inline-flex; }
.avatar-stack .avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--bg);
  background: var(--bg-elev);
  margin-left: -10px;
  box-shadow: 0 1px 2px rgba(15,15,16,.12);
}
.avatar-stack .avatar:first-child { margin-left: 0; }
.hero-social-text { font-size: 14px; color: var(--text-soft); }
.hero-social-text strong { color: var(--text); font-weight: 600; }
.hero-google-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.hero-google-link:hover { text-decoration: underline; }

/* Video testimonials */
.video-section { margin: 8px 0 40px; }
.video-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 36px 0 14px;
}
.video-section-head .section-title { margin: 0; }
.video-section-head .see-all {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}
.video-section-head .see-all:hover { color: var(--text); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.video-card {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #0f0f10;
  border: 1px solid var(--border);
  cursor: pointer;
  isolation: isolate;
}
.video-card .video-poster,
.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,16,.78) 0%, rgba(15,15,16,.25) 45%, rgba(15,15,16,0) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: #fff;
  transition: background .2s ease;
}
.video-card:hover .video-overlay { background: linear-gradient(to top, rgba(15,15,16,.85) 0%, rgba(15,15,16,.35) 50%, rgba(15,15,16,.08) 80%); }
.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #0f0f10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  transition: transform .15s ease, background .15s ease;
}
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.06); background: #fff; }
.video-card.is-playing .play-btn,
.video-card.is-playing .video-overlay { display: none; }
.video-card .video-title { font-weight: 600; font-size: 16px; line-height: 1.3; }
.video-card .video-byline { font-size: 13px; color: rgba(255,255,255,.78); margin-top: 4px; }
@media (max-width: 720px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .video-card .play-btn { width: 44px; height: 44px; }
  .video-card .video-title { font-size: 14px; }
}

/* Hero carousel */
.hero-carousel { width: 100%; max-width: 440px; justify-self: end; }
.hero-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-elev);
  box-shadow: 0 24px 60px -20px rgba(15,15,16,.35), 0 8px 20px -8px rgba(15,15,16,.18);
  transform: rotate(-1.2deg);
  transition: transform .3s ease;
}
.hero-stack:hover { transform: rotate(0deg); }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero-img.is-active { opacity: 1; }
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: var(--border-strong);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.hero-dot:hover { background: var(--muted); }
.hero-dot.is-active { background: var(--accent); transform: scale(1.25); }
@media (prefers-reduced-motion: reduce) {
  .hero-img { transition: none; }
  .hero-stack { transform: none; }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all .15s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: #0f0f10; color: #fff; }
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--text); color: #fff; border-color: var(--text); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0 40px; }
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px;
}
.stat .num { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 36px; line-height: 1; color: var(--text); }
.stat .lbl { color: var(--muted); font-size: 13px; margin-top: 8px; letter-spacing: 0.02em; }
@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; gap: 32px; }
  .hero-carousel { justify-self: center; max-width: 360px; }
}
@media (max-width: 720px) {
  .header-inner { height: 64px; }
  .brand-sub { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 32px 0 24px; }
  .hero h1 { font-size: 40px; }
  .hero p.lead { font-size: 17px; }
  .section-title { font-size: 26px; margin: 40px 0 16px; }
  .hero-carousel { max-width: 320px; }
}

/* Category cards (compact chips) */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px; }
.cat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text);
  min-height: 40px;
  transition: border-color .15s ease, background .15s ease;
}
.cat-card:hover {
  border-color: var(--text);
  background: var(--bg-elev);
  color: var(--text);
}
.cat-card .name {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1;
}
.cat-card .meta {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Reviews */
.review-list { display: flex; flex-direction: column; gap: 14px; }
.review {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: border-color .15s ease;
}
.review:hover { border-color: var(--border-strong); }
.review-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-elev);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 16px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.author { font-weight: 600; font-size: 15px; }
.review-meta { color: var(--muted); font-size: 13px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.review-text { margin: 10px 0 0; white-space: pre-wrap; color: var(--text-soft); }
.review-text.snippet { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* Tags */
.tag-row { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: var(--bg-elev);
  color: var(--text-soft);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.tag.link { color: var(--text); }
.tag.link:hover { background: var(--text); color: #fff; }
.tag.roi { background: #ecfdf5; color: #065f46; }
.badge-verified {
  background: #ecfdf5;
  color: #065f46;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

/* Pager */
.pager { display: flex; justify-content: space-between; align-items: center; margin: 32px 0 0; color: var(--muted); font-size: 14px; }
.pager a {
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  color: var(--text);
  background: transparent;
  font-weight: 500;
  font-size: 14px;
}
.pager a:hover { background: var(--text); color: #fff; border-color: var(--text); }
.pager .disabled { color: #c0c0c0; padding: 10px 18px; }

/* Breadcrumbs / page header */
.crumbs { color: var(--muted); font-size: 13px; margin-bottom: 18px; letter-spacing: 0.01em; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--text); }
h1.page-title { font-size: 48px; margin: 0 0 12px; }
.page-lede { color: var(--muted); margin: 0 0 32px; font-size: 16px; }

/* Detail page */
.detail-stars { font-size: 18px; letter-spacing: 2px; }
.detail-review-text {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  white-space: pre-wrap;
  margin: 24px 0;
  color: var(--text);
}

/* Facet bar */
.facet-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 32px; }
.facet-bar a {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.facet-bar a:hover { background: var(--text); color: #fff; border-color: var(--text); }

.empty {
  background: var(--card);
  border: 1px dashed var(--border-strong);
  padding: 48px;
  text-align: center;
  color: var(--muted);
  border-radius: var(--radius-card);
}