/* ==========================================================================
   About Us page — spill-zoom-42465894.figma.site/about-us (mobile comp, 395px)
   Loads after styles.css and reuses its tokens, buttons, nav, banner,
   locations accordion, and footer.
   ========================================================================== */

:root {
  --ink-body: #3c4443;
  --ab-pad: 20px;
}

/* ---------- Hero ---------- */
.ab-hero {
  position: relative;
  min-height: 812px;
  padding: 64px var(--ab-pad) 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(12 14 16 / .55) 0%, rgba(12 14 16 / .35) 38%, rgba(12 14 16 / .92) 78%, #0c0e10 100%),
    url("../assets/img/about/hero-team.png") center 28% / cover no-repeat;
}
.ab-breadcrumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100vw - 40px);
  gap: 8px;
  background: var(--dark);
  border-radius: 2px;
  padding: 8px 16px;
  font-size: 15px;
  line-height: 18px;
}
.ab-breadcrumbs a:hover { text-decoration: underline; }
.ab-breadcrumbs span { font-weight: 700; }
.ab-breadcrumbs img { width: 7px; height: 12px; }
.ab-hero-top { display: grid; gap: 48px; justify-items: start; }
.ab-hero-bottom { display: grid; gap: 24px; justify-items: start; }
.ab-hero h1 em { font-style: italic; }
.ab-hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 40.32px;
}
.ab-hero p {
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
}
.btn-outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  min-height: 34px;
  padding: 8px 20px;
}
.btn-outline:hover { background: rgba(255 255 255 / .14); }

/* ---------- Stats ---------- */
.ab-stats {
  padding: 64px var(--ab-pad);
  display: grid;
  gap: 24px;
  min-height: 1048px;
}
.ab-stats h2 { font-size: 30px; line-height: 35.4px; color: var(--dark); }
.stat { padding: 32px; display: grid; gap: 8px; }
.stat-light { border: 1px solid var(--line); }
.stat-dark { background: var(--red); color: #fff; }
.stat-gray { background: var(--gray-200); }
.stat-num {
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.1;
  color: inherit;
}
.stat-light .stat-num, .stat-gray .stat-num { color: var(--dark); }
.stat-num .plus { color: var(--accent); }
.stat-dark .stat-num .plus { color: #fff; }   /* review: white on the dark stat */
.stat-sub {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.5;
}
.stat-num .stat-sub { font-size: inherit; line-height: inherit; }
.stat-label { font-size: 18px; line-height: 1.5; color: var(--ink-body); }
.stat-dark .stat-label { color: var(--line); }
.stat-img { width: 100%; height: 237px; object-fit: cover; }

/* ---------- Mission / Vision / Values ---------- */
.ab-values { padding: 32px var(--ab-pad) 30px; display: grid;   min-height: 1389px;
}
.value-item { display: grid; gap: 12px; justify-items: start; padding-block: 24px; }
.value-icon {
  width: 26px;
  height: 26px;
  background: var(--red);
  border-radius: 2px;
  transform: rotate(45deg);
  margin: 11px 0 19px 11px;
}
.ab-values h2 { font-size: 30px; line-height: 35.4px; }
.value-lead {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 26px;
  color: var(--ink-body);
}
.value-divider { border: 0; border-top: 1px solid var(--line); margin: 0; width: 100%; }
.value-accordion { width: 100%; }
.value-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
  color: var(--red);
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: left;
}
.value-chev { width: 15px; height: 9px; transform: rotate(180deg); transition: transform .25s; }
.value-toggle[aria-expanded="true"] .value-chev { transform: rotate(0deg); }
.value-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.value-item.open .value-answer { grid-template-rows: 1fr; }
.value-answer-inner { min-height: 0; overflow: hidden; }
.value-answer p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--ink-body);
  padding-bottom: 20px;
}
.value-quote {
  position: relative;
  margin-top: 24px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: url("../assets/img/desktop/testimonial-large.png") center top / cover no-repeat;
  border-radius: 2px;
}
.value-quote::before {
  content: "";
  position: absolute;
  inset: 24px 0;                 /* the photo is clipped to the content box here */
  background: linear-gradient(to bottom, rgba(34, 34, 34, 0) 21%, rgba(34, 34, 34, 1) 64%);
  pointer-events: none;
}
.value-quote > * { position: relative; z-index: 1; }

.value-quote blockquote {
  background: var(--dark);
  color: #fff;
  border-radius: 2px;
  padding: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 31px;
}

/* ---------- Marquee band ---------- */
.ab-marquee {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.ab-marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: ab-scroll 40s linear infinite;
}
.ab-marquee-track span {
  flex: none;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
}
.ab-marquee .dmd {
  flex: none;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 1px;
  transform: rotate(45deg);
}
@keyframes ab-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .ab-marquee-track { animation: none; } }

.tl-year-desktop { display: none; }

/* ---------- Timeline ---------- */
.ab-timeline {
  padding: 64px var(--ab-pad);
  color: #fff;
  background:
    linear-gradient(rgba(20 26 28 / .88), rgba(20 26 28 / .92)),
    url("../assets/img/about/timeline-bg.png") center / cover no-repeat;
  display: grid;
  gap: 20px;
  min-height: 1416px;
}
.ab-timeline h2 { color: #fff; font-size: 30px; line-height: 35.4px; }
.tl-intro { font-size: 16px; line-height: 24px; font-weight: 400; }
.tl-progress {
  display: flex;
  margin-top: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tl-progress::-webkit-scrollbar { display: none; }
.tl-year {
  flex: 1 0 67px;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding-block: 8px;
}
.tl-year span {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 26px;
  color: #aaa;
}
.tl-year.is-active span { color: #fff; }
.tl-track { display: flex; align-items: center; gap: 8px; width: 100%; justify-content: center; }
.tl-track .line { width: 16px; height: 3px; background: #ccc; }
.tl-track .line.on { background: var(--red); }
.tl-track .dot { width: 13px; height: 13px; background: var(--red); border-radius: 1px; }
.tl-track .dot.off { background: var(--ink-body); }
.tl-arrows { display: flex; justify-content: flex-end; gap: 12px; }
.tl-pane { display: grid; gap: 20px; margin-top: 20px; }
.tl-date {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 35.4px;
}
.tl-rule { width: 3px; height: 28px; background: var(--red); }
.ab-timeline h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
}
.tl-pane p:not(.tl-date) { font-size: 16px; line-height: 24px; font-weight: 400; }
.tl-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; margin-top: 8px; }

.ab-ins-block { display: contents; }
.ab-ins-quote { display: none; }

/* ---------- Insurance copy ---------- */



.ab-insurance strong { font-weight: 700; }

/* ---------- Poster (insurance section) ---------- */





/* ---------- Video (future section) ---------- */
.ab-future-video { position: relative; width: 100%; margin-top: 8px; }
.ab-future-video video {
  width: 100%;
  height: 198px;
  object-fit: cover;
  display: block;
  background: #000;
  border-radius: 2px;
}
.ab-video-play { position: absolute; inset: 0; display: grid; place-items: center; }
.ab-video-play img { width: 64px; height: 64px; }
.playing .ab-video-play { display: none; }

/* ---------- Logo slider ---------- */




.ab-logo {
  flex: none;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  padding: 24px 15px;
}
.ab-logo img { max-height: 72px; max-width: 100%; width: auto; }

/* ---------- Attorneys ---------- */
.ab-team { padding: 60px var(--ab-pad) 40px; display: grid; gap: 20px; justify-items: start;   min-height: 840px;
}
.ab-team h2 { font-size: 30px; line-height: 35.4px; color: var(--ink); }
.ab-team > p { font-size: 16px; line-height: 24px; font-weight: 400; color: var(--ink); }
.ab-team-carousel { width: 100%; gap: 16px; margin-top: 4px; }
.ab-team-card { width: min(335px, 86vw); display: grid; gap: 12px; }
.ab-team-card img { width: 100%; height: 250px; object-fit: cover; object-position: top; border-radius: 2px; }
.ab-team-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: var(--ink);
  padding-inline: 16px;
}
.ab-team-role { font-size: 16px; line-height: 24px; color: var(--ink-body); padding-inline: 16px; }
.ab-team-card .link-more { margin-left: 16px; }
.pager-sm { width: 100%; }
/* comp shows 6 dots at mobile, 9 at desktop */
.ab-testimonials .pager-sm .dash:nth-of-type(n+7) { display: none; }

/* ---------- Future ---------- */
.ab-future { padding: 17px var(--ab-pad) 0; display: grid; gap: 20px; justify-items: start;   min-height: 821px;
}
.ab-future h2 { font-size: 30px; line-height: 35.4px; color: var(--ink); }
.ab-future p { font-size: 16px; line-height: 24px; font-weight: 400; color: var(--ink); }


/* ---------- Community tabs ---------- */
.ab-community { padding: 34px var(--ab-pad) 0; display: grid; gap: 20px;   min-height: 1197px;
}
.ab-community h2 { font-size: 30px; line-height: 35.4px; }
.ab-community-intro { font-size: 16px; line-height: 24px; font-weight: 400; }
.ab-tabs { margin-top: 12px; }
.ab-tab { padding-left: 0; }
/* the rule hangs off the marker: centred under it, starting below it */
.ab-tab.open .ab-tab-body {
  margin-left: 11.5px;
  border-left: 3px solid var(--red);
  padding-left: 29.5px;
}
.ab-tab-head {
  width: 100%;
  text-align: left;
  padding-block: 16px;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 26px;
  color: var(--ink);
}
.ab-tab.open .ab-tab-head { font-size: 24px; line-height: 29.76px; }
.ab-tab-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.ab-tab.open .ab-tab-body { grid-template-rows: 1fr; }
.ab-tab-inner { min-height: 0; overflow: hidden; display: grid; gap: 16px; }
.ab-tab-inner p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--ink);
}
.ab-tab-inner strong { font-weight: 700; }
.ab-tab-inner img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; margin-bottom: 8px; }

/* mobile only — desktop re-sets .ab-vt padding in the 1440 block */
.ab-vt { padding-top: 40px; }

/* ---------- Testimonials ---------- */
.ab-testimonials { padding: 8px 0 24px; display: grid; gap: 16px;   min-height: 705px;
}
.ab-testimonials h2 { font-size: 30px; line-height: 35.2px; padding-inline: var(--pad); }
.ab-testimonials .reviews-badge { margin-inline: var(--pad); border: 1px solid var(--line); align-self: start; }
.ab-testimonials .badge-google { width: 54px; }
.ab-testimonials .badge-text { font-size: 19px; padding: 13px; }
.ab-testimonial-img {
  width: calc(100% - 2 * var(--pad));
  margin-inline: var(--pad);
  height: 335px;
  object-fit: cover;
  border-radius: 2px;
}
.ab-reviews { padding-left: var(--pad); gap: 20px; margin-top: 10px; }
.ab-reviews .review-card {
  width: min(321px, 86vw);
  min-height: 0;
  padding: 44px 18px;
  gap: 23px;
  border-radius: 2px;
}
.ab-reviews .review-card p { line-height: 24px; font-weight: 400; }
/* comp: Libre Caslon SemiBold 18 + Lato 16, same as desktop. The previous rules
   named "Inter" (never loaded here, so it fell back to Arial) at half the size */
.ab-reviews .review-card footer { font-family: var(--font-body); gap: 0; }
.ab-reviews .review-card footer strong {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 18px; line-height: 26.1px; color: var(--ink);
}
.ab-reviews .review-card footer span { font-size: 16px; line-height: 24px; color: #505050; }

/* CTA heading override for this page */
.ab-testimonials + .cta .cta-copy h2 { line-height: 36px; }

/* ---------- Locations: this comp uses 20px side padding (homepage uses 48) ---------- */
.ab-testimonials ~ .locations .locations-text { padding-inline: var(--ab-pad); }
.ab-testimonials ~ .locations h2 { line-height: 36px; }


/* ---------- 500px parity corrections ---------- */
/* About-page buttons use the 16px/19.2px label with 24px side padding */
.ab-team .btn-red, .ab-future .btn-red { font-size: 16px; line-height: 19.2px; padding: 12px 24px; }
/* Community intro is 18/27 on this page */
.ab-community-intro { font-size: 18px; line-height: 27px; }
/* Reviews badge label metrics */
.ab-testimonials .badge-text { font-size: 19.36px; line-height: 27.45px; }
/* CTA heading is 30px here (32px on the homepage) */
.ab-testimonials + .cta .cta-copy h2 { font-size: 30px; line-height: 36px; max-width: 342px; }
.ab-testimonials + .cta .cta-copy { min-height: 290px; align-content: start; }
/* Locations section already carries 20px padding from styles.css */
.ab-testimonials ~ .locations .locations-text { padding-inline: 0; }

/* Testimonials block: comp metrics (14px gutter, 54px badge, flush image) */
.ab-testimonials { gap: 0; }
.ab-testimonials h2 { padding: 0 var(--pad) 0; }
.ab-testimonials .reviews-badge { margin: 0 0 0 14px; padding-left: 18px; align-self: start; }
.ab-testimonials .badge-google { width: 54px; }
.ab-testimonials .badge-text { padding: 12.88px; }
.ab-testimonial-img { width: calc(100% - 28px); margin: 0 14px; }
.ab-reviews { padding-inline: 14px; margin-top: 0; }
.ab-reviews .review-card { height: 559px; }

/* ============================================================
   500px parity round 2 — stats, values, marquee, timeline
   ============================================================ */

/* --- Stats: cards are centre-aligned; photo is 309 tall --- */
.ab-stats .stat { text-align: center; justify-items: center; }
.ab-stats .stat-img { height: 309px; }

/* --- Mission / Vision / Values: rules above the first and below the last --- */
.ab-values > .value-item:first-child { border-top: 1px solid var(--line); }
.ab-values .value-quote { border-top: 1px solid var(--line); }

/* red diamond with a hollow centre, like the comp icon */
.value-icon { position: relative; }
.value-icon::after {
  content: "";
  position: absolute;
  inset: 9px;
  background: #fff;
}

/* quote card: full-bleed inside the content column, box flush to the photo */
.value-quote {
  min-height: 468px;
  padding: 24px 0;
  background-size: cover;
  background-origin: content-box;
  background-clip: content-box;
}
.value-quote blockquote { width: 100%; }

/* --- Marquee: items are ~177px wide and wrap, centred --- */
.ab-marquee-track span {
  width: 177px;
  white-space: normal;
  text-align: center;
}

/* --- Timeline: show the building photo through a lighter scrim --- */
.ab-timeline {
  background:
    linear-gradient(rgba(20 26 28 / .58), rgba(20 26 28 / .62)),
    url("../assets/img/about/timeline-bg.png") center / cover no-repeat;
}
/* progress rail: full-width connectors, diamonds on their side */
.tl-track { gap: 8px; }
.tl-track .line { flex: 1; width: auto; height: 3px; background: #cccccc; }
.tl-track .line.on { flex: 1; background: var(--red); }
.tl-year:last-child .tl-track .line:last-child {
  background: linear-gradient(to right, rgba(204 204 204 / .65), rgba(204 204 204 / 0));
}
.tl-track .dot {
  width: 14px;
  height: 14px;
  flex: none;
  border-radius: 0;
  transform: rotate(45deg);
  background: var(--red);
}
.tl-track .dot.off {
  background: #3c4443;
  border: 2px solid rgba(186 12 47 / .5);
}
/* back arrow points left */
.tl-arrows img:first-of-type { transform: scaleX(-1); }

/* ---- round 3 parity fixes ---- */
/* "Rutter Mills is." is 18px on this page */


/* Careers block: 8px between paragraphs, 21px under the heading, 24px above the button */
.ab-future { gap: 8px; }
.ab-future h2 { margin-bottom: 13px; }
.ab-future .btn-red { margin-top: 16px; }

/* Buttons match the comp box (43px tall, 24px side padding) */
.ab-team .btn-red, .ab-future .btn-red {
  font-size: 16px;
  line-height: 19.2px;
  padding: 12px 24px;
  min-height: 43px;
}

/* Attorney slider: one full-width card per view */
.ab-team-card { width: 100%; flex: 0 0 100%; }

/* Careers video autoplays inline, 258 tall, full content width */
.ab-future-video video { height: 258px; }
.ab-future-video .ab-video-play { display: none; }

/* Google mark in the reviews badge is 54px */
.ab-testimonials .badge-google img { width: 54px; height: 54px; }

/* "No fee unless we win" is 152px in the comp; the rest are 177px */
.ab-marquee-track span.mq-narrow { width: 152px; }

/* ==========================================================================
   About Us — desktop (1440 comp). Section ORDER differs from mobile and the
   community-tabs block is desktop-hidden, so .page becomes a flex column and
   sections are re-ordered explicitly.
   ========================================================================== */
@media (min-width: 1440px) {


  /* ---- hero: heading left, copy right, 900 tall ---- */
  .ab-hero {
    min-height: 900px;
    padding: 112px 48px;
    display: grid;
    grid-template-columns: 680px 600px;
    justify-content: space-between;
    align-content: end;
    gap: 0;
    background:
      linear-gradient(180deg, rgba(12 14 16 / .45) 0%, rgba(12 14 16 / .25) 45%, rgba(12 14 16 / .8) 100%),
      url("../assets/img/about/hero-desktop.png") center / cover no-repeat;
  }
  .ab-hero-top { grid-column: 1; grid-row: 1; gap: 0; align-content: end; }
  .ab-breadcrumbs {
    position: absolute; top: 110px; left: 80px;
    gap: 16px; font-size: 16px; line-height: 19.2px; padding: 10px 18px;
  }
  .ab-hero h1 { font-size: 56px; line-height: 60.48px; max-width: 560px; }
  .ab-hero-bottom { grid-column: 2; grid-row: 1; align-content: end; gap: 36px; }
  .ab-hero p { font-size: 20px; line-height: 31px; font-weight: 400; }
  .btn-outline { font-size: 16px; line-height: 19.2px; padding: 12px 24px; min-height: 43px; }

  /* ---- stats: three tiles + photo ---- */
  .ab-stats {
    min-height: 478px;
    padding: 63px 48px 36px;
    display: grid;
    grid-template-columns: 416px 298px 518px;
    grid-template-rows: auto 125px 32px 125px;
    column-gap: 24px;
    row-gap: 0;
  }
  .ab-stats h2 { grid-column: 1 / -1; font-size: 42px; line-height: 47.88px; margin-bottom: 48px; color: var(--ink); }
  .ab-stats .stat { display: block; text-align: center; align-content: center; }
  .ab-stats .stat-num, .ab-stats .stat-sub { display: inline; }
  .ab-stats .stat-label { display: block; margin-top: 10px; }
  .stat-light { grid-column: 1; grid-row: 2; background: var(--gray-200); border: 0; padding: 24px 32px; }
  .stat-gray  { grid-column: 1; grid-row: 4; padding: 24px 32px; }
  .stat-dark  { grid-column: 2; grid-row: 2 / 5; background: var(--red); color: #fff; padding: 32px; align-content: center; }
  .ab-stats .stat-dark .stat-label { color: var(--gray-200); }
  .ab-stats .stat-num { white-space: nowrap; font-size: 32px; line-height: 38.4px; }
  .ab-stats .stat-sub { font-size: 32px; line-height: 38.4px; }
  .ab-stats .stat-label { font-size: 18px; line-height: 27px; }
  .ab-stats .stat-img { grid-column: 3; grid-row: 2 / 5; height: 283px; align-self: start; }

  /* ---- careers: heading left, copy right, full-width video ---- */
  .ab-future {
    min-height: 1265px;
    padding: 36px 48px 26px;
    display: grid;
    grid-template-columns: 567px 692px;
    justify-content: space-between;
    align-content: start;
    gap: 0;
  }
  .ab-future h2 { grid-column: 1; font-size: 42px; line-height: 47.88px; margin: 0; }
  .ab-future p { grid-column: 2; font-size: 18px; line-height: 27.9px; margin-bottom: 18px; }
  .ab-future p:first-of-type { grid-row: 1; }
  .ab-future .btn-red { grid-column: 2; justify-self: start; margin-top: 6px; }
  .ab-future-video { grid-column: 1 / -1; margin-top: 60px; }
  .ab-future-video video { width: 100%; height: 810px; }   /* comp video block */

  /* ---- mission / vision / values: three columns + quote card ---- */
  .ab-values {
    min-height: 548px;
    padding: 64px 48px;
    display: grid;
    grid-template-columns: repeat(3, 248px) 344px;
    justify-content: space-between;
    align-content: start;
    border-top: 0;
  }
  .ab-values > .value-item:first-child { border-top: 0; }
  .value-item { padding: 0; gap: 0; }
  .value-item:nth-of-type(1) { grid-column: 1; }
  .value-item:nth-of-type(2) { grid-column: 2; }
  .value-item:nth-of-type(3) { grid-column: 3; }
  .value-divider { display: none; }
  .value-item { position: relative; }
  .value-item:nth-of-type(2)::before,
  .value-item:nth-of-type(3)::before {
    content: "";
    position: absolute;
    left: -32px; top: 0; bottom: 0;
    width: 1px;
    background: var(--line);
  }
  .value-icon { display: block; margin: 0 0 28px; }
  .ab-values h2 { font-size: 42px; line-height: 47.88px; margin-bottom: 8px; }
  .value-lead { font-size: 24px; line-height: 30.72px; color: var(--ink); margin-bottom: 20px; }
  /* review: the lead row takes the slack so every Read More lands on one line */
  .value-item { grid-template-rows: auto auto 1fr auto; }
  .value-toggle { padding: 0; }
  .value-chev { display: block; }
  .value-answer { display: none; }
  .value-quote {
    grid-column: 4; grid-row: 1;
    min-height: 420px; height: 420px;
    margin: 0; padding: 0;
    align-items: flex-end;
    background-image: url("../assets/img/desktop/testimonial-large.png");
    background-clip: border-box; background-origin: padding-box;
    border-top: 0;
  }
  .value-quote::before { inset: 0; }
  .value-quote blockquote { padding: 16px 20px; font-size: 20px; line-height: 24px; }

  /* ---- marquee: desktop switches to Lato Bold at 210px ---- */
  .ab-marquee { min-height: 206px; }
  .ab-marquee-track { gap: 56px; }
  .ab-marquee-track span {
    width: 210px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
  }
  .ab-marquee-track span.mq-narrow { width: 210px; }

  /* ---- timeline ---- */
  .ab-timeline { min-height: 1232px; padding: 112px 64px; gap: 0; }
  .ab-timeline h2 { font-size: 80px; line-height: 91.2px; max-width: 900px; }
  .tl-intro { font-size: 20px; line-height: 31px; max-width: 900px; margin-top: 24px; }
  .tl-progress { margin-top: 56px; }
  .tl-year { flex: 1 0 142px; }
  .tl-year-desktop { display: grid; }
  .tl-year span { font-size: 24px; line-height: 30.72px; }
  .tl-arrows { margin-top: 24px; }
  .tl-pane {
    margin-top: 36px;
    background: rgba(34 34 34 / .57);
    display: grid;
    grid-template-columns: 1fr 586px;
    align-items: start;
    gap: 0;
    padding: 65px 0 0 66px;
    min-height: 586px;
  }
  .tl-date { grid-column: 1; font-size: 42px; line-height: 47.88px; }
  .ab-timeline h3 { grid-column: 1; font-size: 24px; line-height: 30.72px; max-width: 451px; margin-top: -46px; margin-left: 115px; }
  .tl-pane p:not(.tl-date) { grid-column: 1; font-size: 18px; line-height: 27.9px; max-width: 566px; margin-top: 18px; }
  .tl-img { grid-column: 2; grid-row: 1 / 8; width: 586px; height: 586px; margin: -65px 0 0; border-radius: 0; }

  /* ---- insurance block: video left, copy right, logo band ---- */
  .ab-ins-block {
    display: block;
    position: relative;
    min-height: 900px;
    background: var(--gray-200);
  }
  .ab-ins-quote {
    display: block;
    position: absolute; top: 0; left: 756px;
    width: 667px; min-height: 189px;
    background: var(--dark); color: #fff;
    padding: 27px 64px 27px 64px;
    font-family: var(--font-serif); font-style: italic;
    font-size: 18px; line-height: 28.8px;
  }
  .ab-ins-quote cite {
    display: flex; align-items: center; gap: 16px;
    margin-top: 26px;
    font-style: normal; font-size: 16px; line-height: 20px;
    text-transform: uppercase;
  }
  .ab-ins-quote cite::before {
    content: ""; width: 3px; height: 24px; background: var(--red); flex: none;
  }







  .ab-logo { width: auto; padding: 0 12px; }
  .ab-logo img { max-height: 72px; }

  /* ---- attorneys ---- */
  .ab-team {
    min-height: 1007px;
    padding: 63px 48px;
    display: grid;
    grid-template-columns: 567px 685px;
    justify-content: space-between;
    align-content: start;
    gap: 0;
  }
  .ab-team h2 { grid-column: 1; font-size: 42px; line-height: 47.88px; }
  .ab-team > p { grid-column: 2; grid-row: 1; font-size: 20px; line-height: 31px; }
  .ab-team .btn-red { grid-column: 2; justify-self: start; margin-top: 24px; }
  .ab-team-carousel { grid-column: 1 / -1; margin-top: 60px; gap: 48px; padding: 0; }
  .ab-team-card { width: 400px; flex: 0 0 400px; gap: 0; }
  .ab-team-card img { height: 400px; border-radius: 0; }
  .ab-team-card h3 { padding: 0 16px; margin-top: 24px; font-size: 24px; line-height: 30.72px; color: var(--dark); }
  .ab-team-role { padding: 0 16px; margin-top: 6px; font-size: 18px; }
  .ab-team-card .link-more { margin: 30px 0 0 16px; font-size: 16px; line-height: 19.2px; }
  .ab-team .pager-sm { grid-column: 1 / -1; }

  /* ---- video testimonials (desktop only) ---- */
  .ab-vt {
    min-height: 686px;
    padding: 36px 48px;
    display: grid;
    grid-template-columns: 800px auto;
    justify-content: space-between;
    align-content: start;
  }
  .ab-vt-head { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 32px; }
  .ab-vt h2 { font-size: 42px; line-height: 47.88px; max-width: 800px; }
  .ab-vt-badge {
    display: grid; justify-items: start; gap: 12px;
    border: 1px solid var(--line); padding: 12px 18px; margin: 0;
  }
  .ab-vt-badge .badge-text { padding: 0; font-size: 19.36px; line-height: 27.45px; background: none; }
  .ab-vt-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 405px); justify-content: space-between; margin-top: 36px; }
  .ab-vt-card { position: relative; width: 405px; height: 405px; }
  .ab-vt-card img { width: 405px; height: 405px; object-fit: cover; }
  .ab-vt-play { position: absolute; inset: auto auto 24px 15px; }
  .ab-vt .pager-sm { grid-column: 1 / -1; justify-content: center; padding-block: 40px 0; }
  .ab-vt-play img { width: 48px; height: 44px; }

  /* ---- review testimonials: 3 across ---- */
  .ab-testimonials { min-height: 767px; padding: 36px 48px 63px; gap: 0; }

  .ab-testimonials .pager-sm { display: flex; justify-content: center; padding-block: 36px 0; }
  .ab-testimonials .pager-sm .dash:nth-of-type(n+7) { display: block; }
  .ab-reviews { display: grid; grid-template-columns: repeat(3, 405px); justify-content: space-between; padding: 0; margin: 0; overflow: visible; }
  .ab-reviews .review-card { width: 405px; height: 587px; max-width: none; padding: 40px 32px; gap: 24px; }
  .ab-reviews .review-card .stars { width: 116px; height: 19px; }
  .ab-reviews .review-card p { font-size: 18px; line-height: 27.9px; }
  .ab-reviews .review-card footer { gap: 0; font-family: var(--font-body); }
  .ab-reviews .review-card footer strong { font-family: var(--font-serif); font-size: 18px; line-height: 26.1px; font-weight: 600; color: var(--ink); }
  .ab-reviews .review-card footer span { font-size: 16px; line-height: 24px; color: var(--ink-body); }

  /* ---- CTA / trust / locations inherit the homepage desktop rules ---- */
  .ab-testimonials + .cta { padding: 0 48px 0 0; min-height: 400px; align-items: center; }
  .ab-testimonials + .cta .cta-image { width: 680px; height: 400px; object-fit: cover; }
  .ab-testimonials + .cta .cta-copy h2 { font-size: 42px; line-height: 47.88px; max-width: 632px; }
  .ab-testimonials + .cta .cta-copy { min-height: 0; }
  .ab-testimonials ~ .locations .locations-text { padding-inline: 0; }
  .ab-testimonials ~ .locations h2 { line-height: 38.4px; }
}


/* ================= About — Round 2 design update ================= */

/* ---- Insurance: video + copy ---- */
.ab-insurance { padding: 64px 0 0; display: grid; gap: 0; min-height: 992px; align-content: start; }
.ab-ins-copy { order: 1; }
.ab-ins-video { order: 2; margin-top: 44px; }
.ab-ins-video { position: relative; }
.ab-ins-video > img { width: 100%; display: block; }
.ab-ins-play { position: absolute; left: 14px; bottom: 14px; background: none; border: 0; padding: 0; cursor: pointer; }
.ab-ins-play img { width: 52px; height: 48px; }
.ab-ins-copy { padding: 0 var(--ab-pad); display: grid; gap: 0; }
.ab-ins-copy h2 { font-size: 36px; line-height: 40.32px; color: var(--ink); }
.ab-ins-copy p { font-size: 16px; line-height: 24px; color: var(--ink-body); margin-top: 22px; }
.ab-ins-copy strong { font-size: 18px; line-height: 27.9px; font-weight: 700; }
.ab-ins-video > img { height: 356px; object-fit: cover; }

/* ---- Logo slider ---- */
.ab-logos {
  padding: 0 0 0 24px; background: #efefef; min-height: 198px;
  display: grid; grid-template-columns: 120px minmax(0, 1fr); align-items: center; gap: 0;
}
.ab-logos-title { font-family: var(--font-display); font-size: 24px; line-height: 29.76px; color: var(--ink); width: 110px; }
.ab-logos-title .dot { color: var(--red); }
.ab-logos-row { display: flex; align-items: center; gap: 45px; overflow-x: auto; scrollbar-width: none; padding-left: 24px; }
.ab-logos-row::-webkit-scrollbar { display: none; }
.ab-logo { flex: none; display: grid; place-items: center; }
.ab-logo img { max-height: 62px; width: auto; }

/* ---- Large quote ---- */
.ab-lquote {
  position: relative; overflow: hidden; background: #222222;
  padding: 58px var(--ab-pad) 64px; display: grid; gap: 0; align-content: start;
}
.ab-lquote blockquote {
  font-family: var(--font-display); font-size: 26px; line-height: 36.4px; color: #fff; margin: 0;
}
.ab-lquote-attrib { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.ab-lquote-bar { width: 3px; align-self: stretch; min-height: 42px; background: var(--red); flex: none; }
.ab-lquote-attrib p {
  font-family: var(--font-display); font-weight: 400; font-size: 18px; line-height: 27px;
  letter-spacing: normal; text-transform: none; color: #fff;
}
/* the name stays bold/uppercase at desktop; the job title reads as plain text */
.ab-lquote-role { font-weight: 400; text-transform: none; letter-spacing: normal; }

.ab-lquote-art { display: none; }

/* ---- Video testimonial: single ---- */
.ab-community-photo { display: none; }
.ab-vt-single { position: relative; display: block; margin-top: 40px; }
.ab-vt-single > img { width: 100%; height: 340px; object-fit: cover; display: block; }
.ab-vt-single .ab-vt-play img { width: 26px; height: 24px; }
.ab-vt-single .ab-vt-play { position: absolute; left: 35px; bottom: 36px; }
.ab-vt { min-height: 672px; align-content: start; }
.ab-vt h2 { font-size: 30px; line-height: 35.4px; }
.ab-google { width: 34px; height: 32px; flex: none; }
.ab-vt-badge {
  width: 334px; min-height: 82px; box-sizing: border-box;
  display: grid; grid-template-columns: 34px 1fr; align-items: center;
  column-gap: 28px; row-gap: 0; padding: 12px 16px;
}
.ab-vt-badge .ab-google { grid-row: 1 / 3; align-self: center; }
.ab-vt-badge .ab-vt-stars { grid-column: 2; align-self: end; }
.ab-vt-badge .badge-text { grid-column: 2; padding: 0; background: none; font-size: 19.36px; line-height: 27.45px; }

@media (min-width: 1440px) {
  /* ---- Insurance: 775px video left, copy right (comp 1440x695) ---- */
  .ab-insurance {
    min-height: 695px; padding: 0; gap: 0;
    grid-template-columns: 775px minmax(0, 1fr); align-items: center;
  }
  .ab-ins-copy { order: 0; }
  .ab-ins-video { order: 0; margin-top: 0; }
  .ab-ins-copy h2 { margin-bottom: 0; }
  .ab-ins-video img { height: 695px; }
  .ab-ins-video { height: 695px; }
  .ab-ins-video > img { height: 695px; object-fit: cover; }
  .ab-ins-play { left: 20px; bottom: 26px; }
  .ab-ins-play img { width: 70px; height: 65px; }
  .ab-ins-copy { padding: 0 90px 0 62px; gap: 22px; max-width: 600px; }
  .ab-ins-copy h2 { font-size: 42px; line-height: 47.88px; }
  .ab-ins-copy p { font-size: 16px; line-height: 28px; }

  /* ---- Logo slider (comp 1440x182) ---- */
  .ab-logos {
    min-height: 182px; padding: 0 48px; background: #efefef;
    grid-template-columns: max-content 1fr; align-items: center; gap: 0;
  }
  .ab-logos-title {
    font-size: 30px; line-height: 38px; width: 250px;
    border-right: 1px solid #c9c9c9; padding-right: 32px; margin-right: 40px;
  }
  .ab-logos-row { gap: 44px; justify-content: space-between; overflow: visible; padding-left: 0; }
  .ab-logo img { max-height: 72px; }

  /* ---- Large quote (comp 1440x344) ---- */
  .ab-lquote {
    min-height: 386px; padding: 0 48px; gap: 26px;
    align-content: center; justify-content: start;
  }
  .ab-lquote blockquote { font-size: 32px; line-height: 44.8px; max-width: 760px; margin-left: 285px; }
  .ab-lquote-attrib { margin-left: 390px; }
  .ab-lquote-attrib p { font-size: 15px; line-height: 21px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; }
  .ab-lquote-art {
    display: block; position: absolute; right: -150px; top: -110px;
    width: 560px; height: 560px; pointer-events: none; z-index: 0;
    background: url(../assets/img/about/lquote-art.svg) no-repeat 0 0 / 560px 560px;
  }
  .ab-lquote blockquote, .ab-lquote-attrib { position: relative; z-index: 1; }

  /* ---- Community: copy + accordion left, photo right (comp 1440x958) ---- */
  .ab-community {
    display: grid; min-height: 958px; padding: 100px 48px;
    grid-template-columns: minmax(0, 680px) 600px;
    justify-content: space-between; align-content: start; gap: 0 64px;
  }
  .ab-community h2 { grid-column: 1; font-size: 42px; line-height: 47.88px; max-width: 600px; }
  .ab-community-intro { grid-column: 1; margin-top: 18px; font-size: 16px; line-height: 26px; max-width: 580px; }
  .ab-community .ab-tabs { grid-column: 1; margin-top: 6px; }
  .ab-community-photo { display: block; grid-column: 2; grid-row: 1 / span 3; align-self: start; }
  .ab-community .ab-tab-inner img { display: none; }   /* photo shows alongside at desktop */
  .ab-community-photo img { width: 600px; height: 734px; object-fit: cover; display: block; }

  /* ---- Video testimonial: single 1344x672 ---- */
  .ab-vt { min-height: 919px; align-content: start; }
  .ab-vt-single { grid-column: 1 / -1; width: 1344px; height: 672px; margin-top: 36px; }
  .ab-vt h2 { font-size: 42px; line-height: 47.88px; }
  .ab-vt-single > img { width: 1344px; height: 672px; object-fit: cover; }
  .ab-vt-single .ab-vt-play { left: 26px; bottom: 26px; }
  .ab-vt-single .ab-vt-play img { width: 38px; height: 35px; }
  .ab-google { width: 34px; height: 32px; }
}

/* ---- Stats: mobile order per updated comp (65+ | 140+, then $1B) ---- */
@media (max-width: 1439px) {
  /* comp mobile: 65+ | 140+ paired, $1B full width, all light (375x742) */
  .ab-stats {
    min-height: 742px; padding: 63px 20px 0; gap: 13px;
    grid-template-columns: 1fr 1fr; align-content: start;
  }
  .ab-stats h2 { grid-column: 1 / -1; grid-row: 1; font-size: 30px; line-height: 35.4px; margin-bottom: 24px; }
  .ab-stats .stat { min-height: 0; }
  .ab-stats .stat-light { grid-column: 1; grid-row: 2; }
  .ab-stats .stat-gray  { grid-column: 2; grid-row: 2; }
  .ab-stats .stat-light, .ab-stats .stat-gray {
    height: 164px; padding: 24px 14px; display: grid; align-content: center; justify-items: center;
    text-align: center; gap: 8px; background: #efefef;
  }
  .ab-stats .stat-dark {
    grid-column: 1 / -1; grid-row: 3; height: 127px; margin-top: 16px; padding: 20px;
    display: grid; align-content: center; justify-items: center; text-align: center; gap: 6px;
    background: var(--red);
  }
  .ab-stats .stat-dark .stat-num,
  .ab-stats .stat-dark .stat-sub { color: #fff; }
  .ab-stats .stat-dark .stat-label { color: var(--gray-200); }
  .ab-stats .stat-num { font-size: 22px; line-height: 27px; }
  .ab-stats .stat-sub { font-size: 22px; line-height: 27px; }
  .ab-stats .stat-dark .stat-num, .ab-stats .stat-dark .stat-sub { display: inline; font-size: 32px; line-height: 39px; }
  .ab-stats .stat-label { font-size: 16px; line-height: 24px; }
  .ab-stats .stat-dark .stat-label { font-size: 18px; line-height: 29px; }
  .ab-stats .stat-img { grid-column: 1 / -1; grid-row: 4; margin-top: 16px; width: 100%; height: auto; aspect-ratio: 335 / 225; object-fit: cover; }
}

/* ---- Values quote: attribution strip (comp) ---- */
.value-quote-attrib {
  width: 100%; background: var(--dark); color: #fff;
  display: flex; align-items: center; gap: 12px;
  padding: 0 14px 16px;
}
.value-quote-bar { width: 3px; align-self: stretch; min-height: 38px; background: var(--red); flex: none; }
.value-quote-attrib .attrib-name {
  font-family: var(--font-display); font-weight: 700; font-size: 14px; line-height: 20px;
  letter-spacing: .5px; text-transform: uppercase;
}
.value-quote-attrib .attrib-role { font-family: var(--font-display); font-size: 14px; line-height: 20px; }
.value-quote blockquote { width: 100%; }

/* ---- Mobile-only fixes (desktop card/section keep the comp's own framing) ---- */
@media (max-width: 1439px) {
  /* the photo is portrait (853x1280) but the mobile card is landscape, so
     `center top` cropped to the wall above the subject */
  .value-quote { background-position: center 30%; }

  /* .ab-vt is a desktop-comp block, so it never got mobile side padding and its
     heading + badge sat flush against the viewport edge */
  .ab-vt h2,
  .ab-vt .ab-vt-badge { margin-inline: var(--ab-pad); }
}

/* Section order now follows the DOM at every breakpoint — the comp's mobile
   order matches its desktop order, and there are two trust banners, so
   per-class `order` values would collide. */
.page { display: flex; flex-direction: column; }

/* ---- Testimonials: comp shows cards + pager only ---- */
.ab-testimonials h2,
.ab-testimonials .reviews-badge,
.ab-testimonial-img { display: none; }

/* ---- Mobile section floors from the updated comp ---- */
@media (max-width: 1439px) {
  .ab-timeline { min-height: 1489px; }
  .site-footer { min-height: 1186px; }
}

/* ---- CTA: match updated comp at mobile (630px; image inset, copy tighter) ---- */
@media (max-width: 1439px) {
  .ab-testimonials + .cta { min-height: 630px; padding-top: 36px; }
  .ab-testimonials + .cta .cta-copy { min-height: 0; padding-top: 0; }
  .ab-testimonials + .cta .cta-copy h2 { padding-inline: 20px; max-width: none; }
  .ab-testimonials + .cta .cta-copy p { padding-inline: 20px; max-width: none; font-size: 16px; line-height: 24px; }
  .ab-testimonials + .cta .cta-copy .btn { margin-left: 20px; }

}
@media (min-width: 1440px) { .site-footer { min-height: 591px; } }

/* ---- Community tabs: comp markers (red diamond open, grey square closed) ---- */
.ab-tab-head { display: flex; align-items: flex-start; gap: 18px; }
.ab-tab-marker { flex: none; width: 26px; height: 26px; position: relative; margin-top: 3px; }
.ab-tab-marker::before {
  content: ""; position: absolute; inset: 0;
  background: #d9d9d9;
  border-radius: 2px;
}
/* solid grey square with a square white centre, not a hairline ring */
.ab-tab-marker::after {
  content: ""; position: absolute;
  width: 9px; height: 9px; left: 8.5px; top: 8.5px;
  background: #fff;
}
.ab-tab.open .ab-tab-marker::before {
  background: none; box-shadow: none;
  width: 24px; height: 24px; left: 1px; top: 1px;
  background-color: var(--red);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
/* comp's open marker is a red diamond with a white centre */
.ab-tab.open .ab-tab-marker::after {
  content: ""; position: absolute;
  width: 9px; height: 9px; left: 8.5px; top: 8.5px;
  background: #fff;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
