/* =========================================================
   TrailReviews — MTB Shorts Review Page
   MOBILE-FIRST CSS, mirroring ecomreviews.org structure
   - Ranking grid: 3-up + 2-down on mobile (#1,#2,#3 row 1; #4,#5 row 2)
   - Author block: photo float-left, text wraps
   - Single 5-across grid at desktop
   ========================================================= */

:root {
  --green-deep: #4f6b3e;
  --green-mid: #6b8a55;
  --green-soft: #e6efde;
  --green-soft-2: #d6e4ca;
  --gold-1: #f4cf5e;
  --gold-2: #d4a52a;
  --silver-1: #e3e3e3;
  --silver-2: #b6b6b6;
  --orange: #d97c2e;
  --green-badge: #4f8a3f;
  --red-badge: #c45a52;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --bg: #ffffff;
  --bg-soft: #faf8f3;
  --star: #f1b53b;
  --star-empty: #e3e3e3;
  --border: #ececec;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-lift: 0 6px 20px rgba(0,0,0,0.08);
  --tap: 44px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  padding-bottom: 80px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============== TOP BAR ============== */
.top-bar {
  background: #f3f3f3;
  color: var(--text-muted);
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}

/* ============== HEADER ============== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  position: relative;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.4px;
  /* Center the logo on mobile */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger {
  margin-left: auto;
  background: none;
  border: 1px solid var(--border);
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--text);
}

/* ============== AUTHOR BLOCK ============== */
.author-block {
  background: var(--green-soft);
  padding: 24px 0;
}
.author-row {
  display: block; /* float-based wrap on mobile */
}
.author-photo {
  float: left;
  margin: 4px 16px 8px 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
  background: var(--green-soft-2);
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-text { overflow: visible; }
.author-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.author-text p {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.55;
}
/* Clear the float so following sections start clean */
.author-row::after {
  content: "";
  display: block;
  clear: both;
}

/* ============== TITLE BLOCK ============== */
.title-block {
  text-align: center;
  padding: 28px 0 18px;
}
.title-block h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.meta-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f4f1ea;
  color: var(--text-muted);
  font-size: 12.5px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* =================================================================
   RANKING GRID — mobile: 3-up + 2-down (matches reference site)
   Uses a 6-column grid with column spans:
     #1, #2, #3 → span 2 cols each (top row)
     #4, #5    → span 3 cols each (bottom row)
   At >=1100px breakpoint we switch to 5 equal columns.
   ================================================================= */
.ranking-section { padding: 18px 0 36px; }
.ranking-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: end;
}
.rank-card.rank-1,
.rank-card.rank-2,
.rank-card.rank-3 { grid-column: span 2; }
.rank-card.rank-4,
.rank-card.rank-5 { grid-column: span 3; }

.rank-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.rank-card:hover { box-shadow: var(--shadow-lift); }

.banner {
  text-align: center;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3px;
  padding: 5px 4px;
  color: #2a2a2a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.banner-gold { background: linear-gradient(180deg, var(--gold-1), var(--gold-2)); }
.banner-silver { background: linear-gradient(180deg, var(--silver-1), var(--silver-2)); }

.card-body {
  padding: 10px 6px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.product-photo {
  width: 100%;
  background: #f6f5f2;
  border-radius: 6px;
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  overflow: hidden;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  box-shadow: var(--shadow);
  z-index: 2;
}
.badge-gold   { background: var(--gold-2);    color: #2a2a2a; }
.badge-silver { background: var(--silver-2);  color: #2a2a2a; }
.badge-orange { background: var(--orange); }
.badge-green  { background: var(--green-badge); }
.badge-red    { background: var(--red-badge); }

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  text-align: center;
  line-height: 1.15;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stars {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--star);
  margin-bottom: 2px;
}
.stars .empty { color: var(--star-empty); }
.stars .half {
  background: linear-gradient(90deg, var(--star) 50%, var(--star-empty) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.score {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

/* ============== BUTTONS ============== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-deep);
  color: #fff !important;
  padding: 10px 14px;
  min-height: 38px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: background .15s ease, transform .1s ease;
  text-align: center;
  width: 100%;
  max-width: 200px;
}
.btn-primary:hover { background: var(--green-mid); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary.btn-large {
  padding: 14px 32px;
  font-size: 16px;
  min-height: 52px;
  width: auto;
}

.rank-card .btn-primary,
.rank-card .btn-link {
  font-size: 11.5px;
  padding: 6px 8px;
  min-height: 30px;
  width: auto;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted) !important;
  font-size: 11.5px;
  text-decoration: underline;
  padding: 4px 6px;
}

/* ============== EDUCATION SECTION ============== */
.education-section { padding: 16px 0 36px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 22px;
  line-height: 1.25;
  color: var(--text);
  padding: 0 8px;
}
.education-card {
  background: var(--green-soft);
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.education-text p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
}
.education-text p:last-child { margin-bottom: 0; }
.education-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.education-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  background: #fff;
}

/* ============== TEST CONDITIONS STAT STRIP ============== */
.test-conditions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: 600px;
  margin: 18px auto 0;
}
.stat {
  text-align: center;
  padding: 10px 4px;
  background: var(--green-soft);
  border-radius: 8px;
  border: 1px solid rgba(79, 107, 62, 0.12);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-label {
  font-size: 9.5px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ============== METHODOLOGY (4-STEP) ============== */
.methodology-section { padding: 16px 0 36px; }
.methodology-intro {
  text-align: center;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 22px;
  padding: 0 8px;
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.method-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.step-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #f6f5f2;
  overflow: hidden;
}
.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step-number {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-deep);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  letter-spacing: 0.5px;
}
/* Second image inside a method-step (e.g. "exhibit A" follow-up) */
.step-image-after {
  border-top: 1px solid var(--border);
}
.step-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  text-align: center;
  line-height: 1.3;
}
.step-body { padding: 18px 16px; }
.step-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-soft);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.step-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
  color: var(--text);
}
.step-body p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: var(--text);
}
.step-data {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
  border-top: 1px dashed var(--border);
}
.step-data li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
  padding-left: 0;
}
.step-data li:last-child { margin-bottom: 0; }
.step-data li::before { content: none; }
.step-data strong {
  color: var(--text);
  font-weight: 600;
}

/* ============== REVIEWS ============== */
.reviews-section { padding: 16px 0 36px; }
.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.review-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  text-align: center;
}
.review-image {
  position: relative;
  background: #f6f5f2;
  border-radius: 10px;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-image .rank-badge {
  top: 8px;
  left: 8px;
  width: 36px;
  height: 36px;
  font-size: 13px;
}
.review-headline { width: 100%; }
.review-headline h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.review-headline .stars { font-size: 18px; }
.review-headline .score { margin-bottom: 14px; font-size: 16px; }
.review-headline .btn-primary {
  width: auto;
  font-size: 14px;
  padding: 12px 22px;
  min-height: var(--tap);
}

.pros-cons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pros h4, .cons h4, .description h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pros h4 { color: var(--green-deep); }
.cons h4 { color: var(--red-badge); }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li, .cons li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14.5px;
  line-height: 1.5;
}
.pros li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--green-deep); font-weight: 700;
}
.cons li::before {
  content: "✕";
  position: absolute; left: 0; top: 0;
  color: var(--red-badge); font-weight: 700;
}

.description {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.description p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
}

/* ============== WHY WE CHOSE ============== */
.why-chose-section {
  background: var(--green-soft);
  padding: 36px 0;
}
.why-intro {
  text-align: center;
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 820px;
  margin: 0 auto 22px;
  color: var(--text);
}
.why-list {
  max-width: 820px;
  margin: 0 auto 26px;
}
.why-list p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}
.why-list p:last-child { margin-bottom: 0; }
.cta-row { text-align: center; }

/* ============== FOOTER ============== */
.site-footer {
  background: #f3f3f3;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.footer-disclosure {
  text-align: center;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 10px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.footer-copy {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ============== STICKY BOTTOM CTA ============== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.10);
  padding: 8px 0;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  z-index: 50;
  transform: translateY(0);
  transition: transform .25s ease;
}
.sticky-cta.hidden { transform: translateY(120%); }
.sticky-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sticky-product {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.sticky-thumb {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  background: #f6f5f2;
  border-radius: 6px;
  object-fit: cover;
}
.sticky-meta { min-width: 0; flex: 1; }
.sticky-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-muted);
  background: #f4f1ea;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 2px;
  white-space: nowrap;
}
.sticky-name {
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.sticky-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.sticky-actions .btn-primary {
  width: auto;
  padding: 9px 14px;
  min-height: 38px;
  font-size: 13px;
}
.sticky-close {
  background: none;
  border: 1px solid var(--border);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

/* ============== BACK TO TOP ============== */
.back-to-top {
  position: fixed;
  bottom: 88px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-lift);
  display: none;
  z-index: 40;
}
.back-to-top.visible { display: flex; align-items: center; justify-content: center; }


/* =========================================================
   BREAKPOINT: 600px+ (large phones / small tablets)
   - Slightly larger type and tighter container padding
   - Pros/cons side by side
   ========================================================= */
@media (min-width: 600px) {
  .container { padding: 0 22px; }
  .top-bar { font-size: 13px; }
  .header-row { padding: 14px 22px; }
  .logo { position: static; transform: none; }

  .author-block { padding: 32px 0; }
  .author-photo { width: 120px; height: 120px; margin-right: 22px; }
  .author-text h2 { font-size: 26px; }
  .author-text p { font-size: 15.5px; }

  .title-block { padding: 36px 0 22px; }
  .title-block h1 { font-size: 34px; }
  .meta-pill { font-size: 13px; padding: 6px 12px; }

  .ranking-grid { gap: 12px; }
  .banner { font-size: 12px; padding: 7px 6px; }
  .card-body { padding: 14px 10px 16px; }
  .product-name { font-size: 15px; min-height: 36px; }
  .stars { font-size: 14px; }
  .score { font-size: 15px; }
  .rank-card .btn-primary, .rank-card .btn-link { font-size: 13px; }
  .rank-badge { width: 32px; height: 32px; font-size: 12px; top: 6px; left: 6px; }

  .section-title { font-size: 26px; margin-bottom: 26px; }

  .review { padding: 26px 22px; }
  .pros-cons { flex-direction: row; gap: 26px; }
  .pros, .cons { flex: 1; }

  .education-card { padding: 28px 22px; }

  .test-conditions { gap: 12px; }
  .stat { padding: 14px 8px; }
  .stat-num { font-size: 30px; }
  .stat-label { font-size: 11px; }

  .methodology-intro { font-size: 15.5px; margin-bottom: 26px; }
  .step-body { padding: 22px 20px; }
  .step-body h3 { font-size: 21px; }
  .step-body p { font-size: 15px; }
}


/* =========================================================
   BREAKPOINT: 900px+ (tablets, small desktops)
   - Author switches to flex row with bigger photo
   - Education card splits 2-col
   - Review header splits image + text side-by-side
   ========================================================= */
@media (min-width: 900px) {
  .author-block { padding: 36px 0; }
  .author-row { display: flex; align-items: center; gap: 28px; }
  .author-photo {
    float: none;
    width: 160px;
    height: 160px;
    margin: 0;
    flex: 0 0 160px;
  }
  .author-row::after { display: none; }
  .author-text h2 { font-size: 32px; }
  .author-text p { font-size: 16px; line-height: 1.6; }

  .title-block { padding: 44px 0 24px; }
  .title-block h1 { font-size: 40px; max-width: none; }

  .ranking-section { padding: 24px 0 56px; }
  .ranking-grid { gap: 16px; }
  .banner { font-size: 13px; padding: 9px 8px; }
  .card-body { padding: 18px 14px 20px; }
  .product-name { font-size: 17px; min-height: 42px; }
  .stars { font-size: 16px; }
  .score { font-size: 17px; margin-bottom: 14px; }
  .rank-card .btn-primary { font-size: 14px; min-height: 38px; padding: 9px 16px; }
  .rank-badge { width: 38px; height: 38px; font-size: 13.5px; top: 10px; left: 10px; }

  .education-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
    padding: 36px;
  }
  .education-images { grid-template-columns: 1fr; }

  .section-title { font-size: 30px; }

  .review { padding: 32px; margin-bottom: 28px; }
  .review-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    align-items: center;
    text-align: left;
  }
  .review-image { width: 200px; max-width: 200px; }
  .review-headline h3 { font-size: 26px; }

  .why-chose-section { padding: 56px 0; }
  .why-intro { font-size: 17px; }

  .sticky-name { font-size: 14.5px; }
  .sticky-tag { font-size: 11.5px; }

  .test-conditions { max-width: 720px; gap: 16px; }
  .stat { padding: 18px 10px; }
  .stat-num { font-size: 38px; }
  .stat-label { font-size: 12px; }

  .method-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .step-body { padding: 26px 24px; }
  .step-body h3 { font-size: 22px; }
  .step-body p { font-size: 15.5px; }
  .methodology-intro { font-size: 16.5px; }
}


/* =========================================================
   BREAKPOINT: 1100px+ (full desktop)
   - All 5 ranking cards in one row
   - Largest title
   ========================================================= */
@media (min-width: 1100px) {
  .ranking-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .rank-card.rank-1,
  .rank-card.rank-2,
  .rank-card.rank-3,
  .rank-card.rank-4,
  .rank-card.rank-5 { grid-column: auto; }

  .title-block h1 { font-size: 44px; }
  .section-title { font-size: 32px; }
}


/* ============== ACCESSIBILITY ============== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
