/* ============================================================
   PRIMEPATH - THE OBSIDIAN STANDARD
   about-us.css
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: transparent; }
:focus-visible { outline: 1px solid var(--champagne); outline-offset: 3px; }

/* ── DESIGN TOKENS are centralized in design-tokens.css ─────── */

.container {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--champagne);
  opacity: 0.7;
  display: block;
  flex-shrink: 0;
}
.eyebrow-green { color: var(--champagne); }

.section-h2 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-top: 22px;
}
.section-h2 em,
.section-h2--green-em em {
  font-style: italic;
  color: var(--champagne-2);
}
.section-sub,
.leadership-sub {
  max-width: 480px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-40);
}

.btn-cta-gold,
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-cta-gold {
  background: var(--champagne);
  border: 1px solid var(--champagne);
  color: var(--ink);
}
.btn-cta-gold:hover {
  background: var(--champagne-2);
  border-color: var(--champagne-2);
  transform: translateY(-2px);
}
.btn-cta-outline {
  background: transparent;
  border: 1px solid var(--white-40);
  color: var(--white);
}
.btn-cta-outline:hover {
  border-color: var(--white);
  background: var(--white-08);
  transform: translateY(-2px);
}

.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
.js .reveal.in-view,
.js .reveal.visible { opacity: 1; transform: translateY(0); }

.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal-stagger.in-view > *,
.js .reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.js .reveal-stagger.in-view > *:nth-child(1),
.js .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.04s; }
.js .reveal-stagger.in-view > *:nth-child(2),
.js .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.js .reveal-stagger.in-view > *:nth-child(3),
.js .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.20s; }
.js .reveal-stagger.in-view > *:nth-child(4),
.js .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.28s; }
.js .reveal-stagger.in-view > *:nth-child(5),
.js .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.36s; }
.js .reveal-stagger.in-view > *:nth-child(6),
.js .reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.44s; }

/* Hero */
.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 var(--pad) 96px;
}
.hero-bg {
  position: absolute;
  inset: -4%;
  background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=2400&q=85');
  background-position: center;
  background-size: cover;
  filter: brightness(0.42) saturate(0.70);
  transform: scale(1.04);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(34,34,34,0.96) 0%, rgba(34,34,34,0.60) 52%, rgba(34,34,34,0.14) 100%),
    linear-gradient(to top, rgba(34,34,34,0.98) 0%, rgba(34,34,34,0.00) 45%);
  z-index: 1;
}
.hero-glow { display: none; }
.hero .container {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
}
.hero-inner {
  max-width: 900px;
  padding: 120px 0 0;
}
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-40);
}
.hero-breadcrumb a {
  color: var(--white-72);
  transition: color 0.3s var(--ease);
}
.hero-breadcrumb a:hover { color: var(--champagne); }
.hero-breadcrumb-sep { color: var(--champagne); }
.hero h1,
.hero-h1 {
  margin-top: 34px;
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: -0.025em;
  color: var(--white);
}
.hero h1 em,
.hero-h1 em {
  font-style: italic;
  color: var(--champagne-2);
}
.hero-sub {
  max-width: 570px;
  margin-top: 38px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-72);
}

/* Shared Sections */
.mission-section,
.story-section,
.values-section,
.leadership-section,
.sustain-section,
.press-section,
.cta-section {
  position: relative;
  padding: 120px var(--pad);
  color: var(--white);
}
.mission-section,
.values-section,
.sustain-section { background: var(--ink); }
.story-section,
.leadership-section {
  background: var(--ink-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-section { background: var(--ink); border-top: 1px solid var(--line); }

/* Mission */
.mission-grid,
.sustain-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 100px;
  align-items: center;
}
.mission-h2 { margin-bottom: 30px; }
.mission-text,
.sustain-text {
  max-width: 500px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-40);
}
.mission-quote {
  margin-top: 34px;
  padding: 26px 0 0 28px;
  border-left: 1px solid var(--champagne);
}
.mission-quote p {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--white-72);
}
.mission-quote footer {
  margin-top: 16px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
}
.mission-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.mission-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.72);
}
.mission-stat-card {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 220px;
  padding: 28px 32px;
  background: rgba(34,34,34,0.88);
  border-top: 1px solid var(--champagne-line);
  border-right: 1px solid var(--champagne-line);
}
.msc-val {
  font-family: var(--display);
  font-size: 54px;
  font-weight: 300;
  line-height: 1;
  color: var(--champagne-2);
}
.msc-label {
  margin-top: 8px;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-50);
}
.mission-gold-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 120px;
  background: var(--champagne);
}

/* Stats */
.stats-strip {
  background: var(--ink-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0 var(--pad);
}
.stats-strip-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--white-08);
}
.ss-item {
  min-height: 170px;
  padding: 34px 30px;
  background: var(--ink-1);
  text-align: right;
}
.ss-val {
  display: block;
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
}
.ss-label {
  margin-top: 10px;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-40);
}

/* Story */
.story-header,
.leadership-section .container > .reveal,
.press-header,
.values-section .container > .reveal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}
.story-sub,
.leadership-sub { text-align: right; max-width: 340px; }

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

.tl-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease);
}
.tl-item:first-child { border-top: 1px solid var(--line); }
.tl-item:hover { background: var(--ink-2); }

.tl-year {
  padding: 32px 24px 32px 0;
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 300;
  line-height: 1;
  color: var(--champagne);
  text-align: right;
  border-right: 1px solid var(--line);
}

.tl-body {
  padding: 32px 0 32px 32px;
}
.tl-title,
.val-title,
.press-headline {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--white);
  overflow-wrap: break-word;
  word-break: break-word;
}
.tl-text,
.val-text,
.team-bio {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--white-40);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Values */
.values-grid,
.press-grid {
  display: grid;
  gap: 1px;
  background: var(--white-08);
  border: 1px solid var(--white-08);
  overflow: hidden;
}
.values-grid,
.press-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.val-card,
.press-card {
  min-height: 300px;
  padding: 34px 30px;
  background: var(--ink-1);
  transition: background 0.35s var(--ease);
  overflow: hidden;
  word-break: break-word;
}
.val-card:hover,
.press-card:hover { background: var(--ink-2); }
.val-num {
  display: block;
  margin-bottom: 52px;
  font-family: var(--display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--champagne);
  opacity: 0.62;
}

/* Leadership */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.team-card {
  background: var(--ink-1);
  border: 1px solid var(--white-08);
  border-radius: 3px;
  overflow: hidden;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.team-card:hover {
  background: var(--ink-2);
  border-color: var(--champagne-dim);
}
.team-photo-wrap {
  aspect-ratio: 1.16;
  overflow: hidden;
  background: var(--ink-2);
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.70);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}
.team-card:hover .team-photo {
  transform: scale(1.035);
  filter: brightness(0.84) saturate(0.82);
}
.team-body { padding: 24px 22px 28px; overflow: hidden; }
.team-name { font-size: clamp(22px, 2.4vw, 34px); line-height: 1.15; overflow-wrap: break-word; }
.team-role {
  margin-top: 8px;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  overflow-wrap: break-word;
}

/* Sustainability */
.sustain-grid { align-items: start; }

.sustain-left {
  position: sticky;
  top: 120px;
}

.sustain-divider {
  width: 32px;
  height: 1px;
  background: var(--champagne);
  opacity: 0.5;
  margin: 28px 0;
}

.sustain-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 560px;
  margin-top: 32px;
}
.sustain-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--ink-2);
  border: 1px solid var(--white-08);
  border-radius: 3px;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-50);
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.sustain-pill:hover { border-color: var(--champagne-dim); color: var(--white-72); }
.sustain-pill-dot {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  background: var(--champagne);
}

.sustain-right {
  display: flex;
  flex-direction: column;
}

.sv-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease);
}
.sv-row:first-child { border-top: 1px solid var(--line); }
.sv-row:hover { background: var(--ink-2); }

.sv-num {
  width: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 36px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 300;
  color: var(--champagne-dim);
  border-right: 1px solid var(--line);
}

.sv-content {
  flex: 1;
  padding: 36px 32px;
}

.sv-val {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--champagne-2);
  overflow-wrap: break-word;
  word-break: break-word;
  margin-bottom: 10px;
}
.sv-label {
  font-size: var(--fs-label-md);
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white-40);
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Press */
.press-all-link {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  transition: color 0.3s var(--ease);
}
.press-all-link:hover { color: var(--champagne-2); }
.press-pub {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--champagne);
}
.press-headline {
  margin-top: 22px;
  font-style: italic;
}
.press-date {
  margin-top: 30px;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-40);
}

/* CTA */
.cta-section {
  overflow: hidden;
  padding: 150px var(--pad);
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--ink);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: -4%;
  background-image: url('https://images.unsplash.com/photo-1516738901171-8eb4fc13bd20?auto=format&fit=crop&w=2200&q=80');
  background-position: center;
  background-size: cover;
  filter: brightness(0.25) saturate(0.50);
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, rgba(34,34,34,0.18) 0%, rgba(34,34,34,0.95) 100%);
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
.cta-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
}
.cta-logo::before,
.cta-logo::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(201,168,76,0.5);
}
.cta-h2 {
  max-width: 920px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: var(--white);
}
.cta-sub {
  max-width: 560px;
  margin: 36px auto 48px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--white-40);
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  :root { --pad: 40px; }

  .mission-grid,
  .sustain-grid { gap: 60px; }
  .values-grid,
  .press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --pad: 28px; }

  .hero { min-height: 78svh; padding-bottom: 72px; }
  .hero h1,
  .hero-h1 { font-size: clamp(58px, 13vw, 92px); }

  .mission-grid,
  .sustain-grid { grid-template-columns: 1fr; }
  .sustain-left { position: static; }
  .sustain-pills { max-width: 100%; }
  .stats-strip-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-header,
  .leadership-section .container > .reveal,
  .press-header,
  .values-section .container > .reveal {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .story-sub,
  .leadership-sub { text-align: left; }
}

@media (max-width: 640px) {
  .hero { padding-left: var(--pad); padding-right: var(--pad); }
  .hero h1,
  .hero-h1 { font-size: clamp(48px, 16vw, 68px); }
  .hero-sub { font-size: 13px; }

  .mission-section,
  .story-section,
  .values-section,
  .leadership-section,
  .sustain-section,
  .press-section,
  .cta-section {
    padding: 82px var(--pad);
  }

  .section-h2 { font-size: clamp(42px, 13vw, 64px); }
  .stats-strip { padding: 0 var(--pad); }
  .stats-strip-inner,
  .values-grid,
  .press-grid { grid-template-columns: 1fr; }
  .team-grid { max-width: 100%; }
  .team-body { padding: 20px 18px 24px; }
  .team-name { font-size: clamp(20px, 5vw, 28px); }
  .team-role { font-size: 8px; letter-spacing: 0.14em; }
  .team-bio { font-size: 11px; line-height: 1.6; }
  .sustain-pills { max-width: 100%; }
  .sustain-pill { font-size: 7px; padding: 10px 12px; }
  .sv-content { padding: 28px 20px; }
  .sv-num { width: 48px; padding-top: 28px; font-size: 12px; }
  .sv-val { font-size: clamp(36px, 8vw, 60px); }

  .mission-visual,
  .mission-img { min-height: 360px; }
  .tl-item { grid-template-columns: 1fr; }
  .tl-year { text-align: left; border-right: none; border-bottom: 1px solid var(--line); padding: 20px 0 8px; font-size: 32px; }
  .tl-body { padding: 8px 0 24px; }
  .cta-btns { flex-direction: column; }
  .btn-cta-gold,
  .btn-cta-outline { width: 100%; }
}

/* ── GOOGLE REVIEWS ────────────────────────────────────────── */
.reviews-section {
  padding: 120px 0;
  background: var(--ink);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 56px;
}

.reviews-summary-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-avg {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.reviews-stars {
  display: flex;
  gap: 3px;
}

.star-icon {
  width: 18px;
  height: 18px;
}

.star-icon path {
  fill: var(--champagne);
}

.star-icon.half path {
  fill: url(#hg);
}

.star-icon.empty path {
  fill: rgba(255,255,255,.15);
}

.reviews-summary-meta {
  font-family: var(--body);
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.04em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.rev-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 2px;
  padding: 28px 24px;
  transition: border-color .3s, transform .3s;
}

.rev-card:hover {
  border-color: rgba(201,168,76,.35);
  transform: translateY(-4px);
}

.rev-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rev-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rev-avatar-init {
  font-family: var(--nav);
  font-size: 13px;
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: 0.05em;
}

.rev-meta {
  flex: 1;
  min-width: 0;
}

.rev-author {
  font-family: var(--nav);
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rev-card .rev-stars {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.rev-card .star-icon {
  width: 12px;
  height: 12px;
}

.rev-time {
  font-family: var(--body);
  font-size: 10px;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.rev-text {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
}

.reviews-loading,
.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,.4);
  padding: 48px 0;
}

.reviews-cta {
  text-align: center;
}

@media (max-width: 980px) {
  .reviews-section { padding: 80px 0; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 600px) {
  .reviews-section { padding: 60px 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-avg { font-size: 36px; }
  .rev-card { padding: 20px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
