@font-face {
  font-family: "Harvey Sans";
  src: url("./assets/HarveySans.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Harvey Serif";
  src: url("./assets/HarveySerif-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Harvey Serif";
  src: url("./assets/HarveySerif-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #0f0e0d;
  --brown-900: #1f1d1a;
  --brown-800: #33312c;
  --brown-700: #524f49;
  --gray-600: #706d66;
  --gray-500: #8f8b85;
  --gray-300: #cccac6;
  --gray-200: #e5e5e3;
  --ivory: #fafaf9;
  --nav-height: 72px;
  --page-gutter: 32px;
  --section-pad: 144px;
  --ease: cubic-bezier(0, 0.7, 0.3, 1);
}

* {
  box-sizing: border-box;
}

.i18n-pending body {
  visibility: hidden;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  font-family: "Harvey Sans", Arial, sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
}

main {
  padding-top: var(--nav-height);
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--ivory);
  color: var(--ink);
  transform: translateY(0);
  transition: transform 300ms cubic-bezier(0.3, 0.3, 0.3, 1), color 300ms cubic-bezier(0.3, 0.3, 0.3, 1);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.nav-shell {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  height: var(--nav-height);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  background: var(--ivory);
}

.wordmark {
  width: max-content;
  font-family: "Harvey Serif", Georgia, serif;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0;
  margin-right: auto;
  margin-left: 16px;
}

.nav-trigger,
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 0 16px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: color 300ms cubic-bezier(0.3, 0.3, 0.3, 1);
}

.desktop-nav:has(> :is(.nav-trigger, .nav-link):hover) > :is(.nav-trigger, .nav-link):not(:hover),
.desktop-nav:has(> :is(.nav-trigger, .nav-link):focus-visible) > :is(.nav-trigger, .nav-link):not(:focus-visible),
.site-header.menu-open .desktop-nav > .nav-link,
.site-header.menu-open .desktop-nav > .nav-trigger:not([aria-expanded="true"]) {
  color: var(--gray-600);
}

.desktop-nav > :is(.nav-trigger, .nav-link):hover,
.desktop-nav > :is(.nav-trigger, .nav-link):focus-visible,
.site-header.menu-open .desktop-nav > .nav-trigger[aria-expanded="true"] {
  color: var(--ink);
}

.nav-trigger::after {
  position: absolute;
  right: 16px;
  bottom: -1px;
  left: 16px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-trigger[aria-expanded="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-trigger svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.2;
  transition: transform 200ms ease;
}

.login-button svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.2;
  transition: transform 200ms ease;
}

.nav-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-button,
.demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.login-button {
  gap: 7px;
  min-width: 78px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
}

.login-button:hover {
  background: var(--gray-200);
}

.demo-button {
  padding: 0 12px;
  background: var(--ink);
  color: var(--ivory);
}

.demo-button:hover {
  background: var(--gray-500);
}

.mobile-menu-button {
  display: none;
}

.mega-menu {
  position: absolute;
  top: var(--nav-height);
  left: 0;
  z-index: 2;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: var(--ivory);
  border-top: 1px solid var(--gray-200);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: height 300ms cubic-bezier(0.3, 0.3, 0.3, 1), opacity 220ms cubic-bezier(0.3, 0.3, 0.3, 1), visibility 0s linear 300ms;
}

.site-header.menu-open .mega-menu {
  height: var(--menu-height, 565px);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: height 300ms cubic-bezier(0.3, 0.3, 0.3, 1), opacity 220ms cubic-bezier(0.3, 0.3, 0.3, 1);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 452px;
  column-gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px var(--page-gutter);
}

.mega-list {
  display: grid;
  align-content: start;
  justify-items: stretch;
  gap: 0;
  text-align: left;
}

.mega-item {
  display: block;
  width: 100%;
  padding: 16px 0;
  text-align: left;
}

.mega-item-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  transition: color 300ms cubic-bezier(0.3, 0.3, 0.3, 1);
}

.mega-item-title span:last-child {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mega-item:hover .mega-item-title span:last-child,
.mega-item:focus-visible .mega-item-title span:last-child {
  opacity: 1;
  transform: translateX(0);
}

.mega-menu-grid:has(.mega-item:hover) .mega-item:not(:hover) .mega-item-title,
.mega-menu-grid:has(.mega-item:focus-visible) .mega-item:not(:focus-visible) .mega-item-title {
  color: var(--gray-600);
}

.mega-menu-grid:has(.mega-item:hover) .mega-item:hover .mega-item-title,
.mega-menu-grid:has(.mega-item:focus-visible) .mega-item:focus-visible .mega-item-title {
  color: var(--ink);
}

.mega-item-copy {
  display: block;
  max-width: 420px;
  margin: 8px 0 0;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.3;
  text-align: left;
  transition: color 300ms cubic-bezier(0.3, 0.3, 0.3, 1);
}

.mega-item:hover .mega-item-copy,
.mega-item:focus-visible .mega-item-copy {
  color: var(--ink);
}

.mega-feature {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 420px;
  margin-left: 32px;
  padding-top: 0;
}

.mega-feature-art {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--brown-900);
}

.mega-feature-art img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.mega-feature:hover .mega-feature-art img,
.mega-feature:focus-visible .mega-feature-art img {
  transform: scale(1.02);
}

.mega-feature.mega-item {
  padding: 0;
}

.mega-feature-text {
  display: block;
}

.mobile-drawer {
  display: none;
}

.testimonials {
  background: var(--ink);
  color: var(--ivory);
}

.section-shell,
.testimonial-shell {
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.testimonials {
  border-top: 1px solid var(--brown-800);
  border-bottom: 1px solid var(--brown-800);
}

.testimonial-shell {
  display: flex;
  flex-direction: column;
  min-height: 996px;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.testimonial-stage {
  flex: 1;
}

.testimonial-slide {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 9.5%;
  align-items: center;
  width: 82%;
  max-width: 1130px;
  margin: 0 auto;
  animation: testimonial-in 460ms var(--ease) both;
}

.testimonial-image {
  aspect-ratio: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.testimonial-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  min-width: 0;
}

.testimonial-quote {
  margin: 0;
  font-family: "Harvey Serif", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.testimonial-meta p {
  margin: 0;
  line-height: 1.3;
}

.testimonial-author {
  font-size: 20px;
  font-weight: 500;
}

.testimonial-role,
.testimonial-company {
  font-size: 16px;
}

.customer-story {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  margin-top: 26px;
  font-size: 16px;
  font-weight: 500;
}

.customer-story span:last-child {
  font-size: 23px;
  line-height: 0;
}

.slide-controls {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-top: 56px;
}

.slide-control {
  flex: 1;
  height: 24px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.slide-track {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: var(--brown-700);
}

.slide-progress {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--ivory);
  transform: translateX(-100%);
}

.slide-control.is-complete .slide-progress {
  transform: translateX(0);
}

.slide-control[aria-current="true"] .slide-progress {
  animation: slide-progress 8s linear forwards;
}

.people-gallery {
  overflow: hidden;
  padding: 112px 0 128px;
  background: var(--ivory);
  color: var(--ink);
}

.people-carousel {
  width: 100%;
}

.people-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.people-viewport.is-dragging {
  cursor: grabbing;
}

.people-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  will-change: transform;
  transition: transform 560ms var(--ease);
}

.people-viewport.is-dragging .people-track {
  transition: none;
}

.people-slide {
  position: relative;
  flex: 0 0 66%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  background: var(--gray-200);
  cursor: pointer;
}

.people-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.people-controls {
  display: flex;
  gap: 16px;
  width: 66%;
  margin: 44px auto 0;
}

.people-control {
  flex: 1;
  height: 24px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.people-control-track {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: var(--gray-300);
}

.people-progress {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-100%);
}

.people-control.is-complete .people-progress {
  transform: translateX(0);
}

.people-control[aria-current="true"] .people-progress {
  animation: people-progress 8s linear forwards;
}

.site-footer {
  background: var(--ink);
  color: var(--ivory);
}

.footer-shell {
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  padding: 64px var(--page-gutter);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--brown-800);
}

.footer-cta h2 {
  width: 100%;
  margin: 0;
  font-family: "Harvey Serif", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.05;
}

.footer-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  flex-shrink: 0;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 200ms ease;
}

.footer-demo:hover {
  background: var(--gray-500);
}

.footer-main {
  display: flex;
  margin-top: 64px;
}

.footer-brand {
  display: flex;
  flex: 0 0 31.12716%;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360.15px;
  padding-right: 32px;
}

.footer-mark {
  display: block;
  fill: currentColor;
}

.footer-nav {
  display: grid;
  flex: 1 1 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column h3 {
  margin: 0;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  color: var(--ivory);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  transition: color 300ms cubic-bezier(0.7, 0, 0.3, 1);
}

.footer-column a::after {
  width: 12px;
  margin-left: 4px;
  content: "→";
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-nav:has(.footer-column a:hover) .footer-column a:not(:hover),
.footer-nav:has(.footer-column a:focus-visible) .footer-column a:not(:focus-visible) {
  color: var(--gray-600);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gray-300);
}

.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.footer-copyright {
  max-width: 224px;
  margin: 0;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.3;
}

.footer-address-link {
  display: inline-block;
  transition: color 180ms ease;
}

.footer-address-link:hover,
.footer-address-link:focus-visible {
  color: var(--ivory);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-column li {
  display: flex;
}

.footer-copyright-mobile {
  display: none;
}

@keyframes slide-progress {
  to { transform: translateX(0); }
}

@keyframes people-progress {
  to { transform: translateX(0); }
}

@keyframes testimonial-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1445px) {
  .nav-shell {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  .desktop-nav {
    margin-right: 0;
    margin-left: 0;
  }

  .nav-actions {
    justify-self: end;
  }
}

@media (min-width: 1730px) {
  :root {
    --page-gutter: 40px;
    --section-pad: 160px;
  }

  .testimonial-quote {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  :root {
    --page-gutter: 28px;
    --section-pad: 112px;
  }

  .desktop-nav,
  .nav-actions,
  .mega-menu {
    display: none;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
  }

  .mobile-menu-button {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-button span {
    position: absolute;
    left: 2px;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, top 220ms ease;
  }

  .mobile-menu-button span:first-child { top: 8px; }
  .mobile-menu-button span:last-child { top: 15px; }

  .mobile-menu-button[aria-expanded="true"] span:first-child {
    top: 11px;
    transform: rotate(45deg);
  }

  .mobile-menu-button[aria-expanded="true"] span:last-child {
    top: 11px;
    transform: rotate(-45deg);
  }

  .mobile-drawer {
    position: fixed;
    inset: var(--nav-height) 0 0;
    z-index: 2;
    display: block;
    overflow: auto;
    background: var(--ivory);
    opacity: 0;
    transform: translateY(-16px);
    visibility: hidden;
    transition: opacity 260ms ease, transform 460ms var(--ease), visibility 0s linear 460ms;
  }

  .site-header.mobile-open .mobile-drawer {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: opacity 260ms ease, transform 460ms var(--ease);
  }

  .mobile-drawer-inner {
    min-height: calc(100vh - var(--nav-height));
    padding: 22px var(--page-gutter) 40px;
  }

  .mobile-nav-group,
  .mobile-simple-link {
    display: block;
    border-bottom: 1px solid var(--gray-200);
  }

  .mobile-nav-heading,
  .mobile-simple-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 59px;
    padding: 0;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
  }

  .mobile-nav-heading::after {
    content: "+";
    font-size: 22px;
    font-weight: 300;
  }

  .mobile-nav-group.is-open .mobile-nav-heading::after {
    content: "−";
  }

  .mobile-nav-items {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 300ms var(--ease);
  }

  .mobile-nav-group.is-open .mobile-nav-items {
    grid-template-rows: 1fr;
  }

  .mobile-nav-items-inner {
    overflow: hidden;
  }

  .mobile-nav-items a {
    display: block;
    padding: 10px 0 12px 14px;
    color: var(--gray-600);
    font-size: 15px;
  }

  .mobile-drawer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .mobile-drawer-actions .login-button,
  .mobile-drawer-actions .demo-button {
    width: 100%;
    height: 48px;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  .testimonial-slide {
    width: 100%;
  }

  .people-track {
    gap: 12px;
  }

  .people-slide {
    flex-basis: 85%;
    border-radius: 4px;
  }

  .people-controls {
    gap: 14px;
    width: 85%;
    margin-top: 20px;
  }

  .footer-shell {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .footer-main {
    display: block;
    margin-top: 52px;
  }

  .footer-brand {
    min-height: 0;
    padding: 0;
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 52px;
  }

  .footer-copyright-desktop {
    display: none;
  }

  .footer-copyright-mobile {
    display: block;
    margin-top: 52px;
  }
}

@media (max-width: 700px) {
  .wordmark {
    font-size: 28px;
  }

  .testimonial-shell {
    min-height: 1180px;
    padding-top: 111px;
    padding-bottom: 88px;
  }

  .testimonial-stage {
    flex: 0 0 auto;
  }

  .testimonial-slide {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 56px;
    width: 100%;
  }

  .testimonial-image {
    width: 100%;
    border-radius: 4px;
  }

  .testimonial-copy {
    gap: 40px;
  }

  .testimonial-quote {
    font-size: 28px;
    line-height: 1.05;
  }

  .testimonial-author {
    font-size: 18px;
  }

  .testimonial-role,
  .testimonial-company {
    font-size: 16px;
  }

  .customer-story {
    display: none;
  }

  .slide-controls {
    gap: 14px;
    margin-top: auto;
  }

  .people-gallery {
    padding: 96px 0 112px;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 56px;
  }

  .footer-cta h2 {
    width: 100%;
    max-width: none;
    font-size: 24px;
  }

  .footer-demo {
    font-size: 16px;
  }

  .footer-main {
    margin-top: 56px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 28px;
    margin-top: 56px;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-column h3 {
    margin: 0;
  }

  .footer-column h3,
  .footer-column a,
  .footer-copyright {
    font-size: 14px;
    line-height: 1.3;
  }

  .footer-column ul {
    gap: 14px;
  }

  .footer-column a::after {
    display: none;
  }

  .footer-column li {
    display: flex;
  }

  .footer-copyright-mobile {
    margin-top: 84px;
  }
}

/* ——— Chain | Cohn | Clark sections (composed from Harvey patterns) ——— */
.wordmark-logo {
  display: block;
  height: 33px;
  width: auto;
}

/* The CCC nav carries more items than Harvey's — compress and trim the two
   secondary links on narrow desktops so the bar never overflows or wraps. */
@media (min-width: 1025px) and (max-width: 1359px) {
  .wordmark-logo {
    height: 26px;
  }

  .nav-trigger,
  .nav-link {
    padding: 0 11px;
    font-size: 13px;
  }

  .desktop-nav {
    margin-left: 8px;
  }

  .nav-actions {
    gap: 10px;
  }

  .login-button {
    min-width: 0;
  }

  .desktop-nav .nav-link[href*="community-involvement"],
  .desktop-nav .nav-link[href*="areas-we-serve"] {
    display: none;
  }
}

.people-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 110px 36px 30px;
  background: linear-gradient(180deg, rgba(15, 14, 13, 0) 0%, rgba(15, 14, 13, 0.62) 100%);
  color: var(--ivory);
  pointer-events: none;
}

.people-caption-kicker {
  margin: 0 0 6px;
  color: var(--gray-300);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.people-caption-title {
  margin: 0;
  font-family: "Harvey Serif", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.review-item {
  display: flex;
  flex-direction: column;
  padding-top: 22px;
  border-top: 2px solid var(--gray-300);
}

.review-stars {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 3px;
}

.review-text {
  margin: 0 0 18px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.5;
}

.review-name {
  margin: auto 0 0;
  font-size: 15px;
  font-weight: 500;
}

.review-meta {
  margin: 2px 0 0;
  color: var(--gray-500);
  font-size: 13px;
}

.announcement-bar {
  display: block;
  padding: 12px var(--page-gutter);
  background: var(--brown-900);
  color: var(--ivory);
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  transition: background-color 200ms ease;
}

.announcement-bar:hover {
  background: var(--brown-800);
}

.announcement-bar strong {
  font-weight: 500;
}

.ink-section {
  background: var(--ink);
  color: var(--ivory);
}

.ccc-pad {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.ccc-heading {
  margin: 0 0 66px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.ccc-split {
  display: grid;
  grid-template-columns: 40% 50%;
  justify-content: space-between;
  align-items: center;
}

.ccc-split .ccc-heading {
  margin: 0 0 24px;
}

.ccc-copy p {
  margin: 0 0 20px;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.45;
}

.ccc-copy p:last-child {
  margin-bottom: 0;
}

.ccc-copy strong {
  color: var(--ink);
  font-weight: 500;
}

.ink-section .ccc-copy p {
  color: var(--gray-300);
}

.ink-section .ccc-copy strong {
  color: var(--ivory);
}

.ccc-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  font-size: 16px;
  font-weight: 500;
}

.ccc-arrow-link span:last-child {
  font-size: 23px;
  line-height: 0;
  transition: transform 180ms ease;
}

.ccc-arrow-link:hover span:last-child {
  transform: translateX(4px);
}

.ccc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.ccc-button:hover {
  background: var(--gray-500);
}

.ccc-hero h1 {
  margin: 0 0 28px;
  font-family: "Harvey Serif", Georgia, serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.ccc-hero-copy {
  max-width: 480px;
}

.ccc-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.ccc-visual {
  position: relative;
  aspect-ratio: 1.33201581;
  overflow: hidden;
  border-radius: 8px;
  background: var(--brown-900);
}

.ccc-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ccc-section-lede {
  width: 50%;
  margin: -42px 0 66px auto;
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.45;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 48px;
  margin-bottom: 56px;
}

.result-item {
  padding-top: 22px;
  border-top: 2px solid var(--gray-300);
}

.result-amount {
  margin: 0 0 10px;
  font-family: "Harvey Serif", Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}

.result-type {
  margin: 0;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.3;
}

.attorneys-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 32px;
  margin-top: 88px;
}

.attorney-photo {
  aspect-ratio: 5 / 7;
  overflow: hidden;
  border-radius: 8px;
  background: var(--gray-200);
  margin-bottom: 18px;
}

.attorney-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attorney-card h3 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.attorney-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.3;
}

.footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-subscribe h3 {
  margin: 0;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-subscribe p {
  margin: 0;
  max-width: 280px;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.3;
}

.footer-subscribe-form {
  display: flex;
  gap: 8px;
  max-width: 320px;
}

.footer-subscribe-form input {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid var(--brown-700);
  border-radius: 4px;
  color: var(--ivory);
  font: inherit;
  font-size: 14px;
}

.footer-subscribe-form input::placeholder {
  color: var(--gray-500);
}

.footer-subscribe-form button {
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 4px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.footer-subscribe-form button:hover {
  background: var(--gray-500);
}

@media (min-width: 1730px) {
  .ccc-heading {
    font-size: 40px;
  }

  .ccc-hero h1 {
    font-size: 68px;
  }

  .result-amount {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .ccc-hero h1 {
    font-size: 48px;
  }

  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .attorneys-grid {
    gap: 40px 24px;
  }
}

@media (max-width: 700px) {
  .ccc-hero-copy {
    width: 100%;
    min-width: 0;
  }

  .ccc-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .ccc-split {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .ccc-heading {
    margin-bottom: 48px;
    font-size: 28px;
    line-height: 1.12;
  }

  .ccc-hero h1 {
    font-size: 40px;
  }

  .ccc-section-lede {
    width: 100%;
    margin: -32px 0 56px;
  }

  .results-grid {
    column-gap: 20px;
    row-gap: 36px;
    margin-bottom: 40px;
  }

  .result-amount {
    font-size: 32px;
  }

  .attorneys-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
    margin-top: 64px;
  }

  .attorney-card h3 {
    font-size: 18px;
  }

  .people-caption {
    padding: 70px 20px 18px;
  }

  .people-caption-title {
    font-size: 21px;
  }

  .people-caption-kicker {
    font-size: 11px;
    margin-bottom: 4px;
  }

}

/* ——— Free consultation modal (multi-step) ——— */
body.consult-open {
  overflow: hidden;
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.consult-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.consult-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 13, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.consult-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(460px, 1.32fr);
  width: min(1100px, 100%);
  height: min(730px, calc(100svh - 40px));
  overflow: hidden;
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 40px 90px rgba(15, 14, 13, 0.45);
  transform: translateY(14px) scale(0.985);
  transition: transform 260ms var(--ease);
}

.consult-modal.is-open .consult-dialog {
  transform: none;
}

.consult-rail {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 26px;
  overflow: hidden;
  padding: 36px 32px;
  background: var(--ink);
  color: var(--ivory);
}

.consult-rail-photo {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.consult-rail::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 14, 13, 0.95) 0%, rgba(15, 14, 13, 0.92) 52%, rgba(15, 14, 13, 0.55) 100%);
}

.consult-rail-logo {
  display: block;
  height: 22px;
  width: auto;
  margin-bottom: 26px;
}

.consult-kicker {
  margin: 0 0 12px;
  color: var(--gray-300);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consult-rail h2 {
  margin: 0;
  font-family: "Harvey Serif", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.consult-rail-sub {
  margin: 14px 0 0;
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.5;
}

.consult-summary {
  display: grid;
  margin: 0;
  padding: 0;
}

.consult-summary div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(250, 250, 249, 0.14);
}

.consult-summary div:first-child {
  border-top: 1px solid rgba(250, 250, 249, 0.14);
}

.consult-summary dt {
  color: var(--gray-500);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.consult-summary dd {
  margin: 0;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.consult-summary dd.is-set {
  color: var(--ivory);
}

.consult-foot {
  display: grid;
  gap: 16px;
  margin-top: auto;
}

.consult-assure {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--gray-300);
  font-size: 13px;
}

.consult-assure li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.consult-assure svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--ivory);
  stroke-width: 2.2;
  stroke-linecap: square;
}

.consult-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-top: 15px;
  border-top: 1px solid rgba(250, 250, 249, 0.14);
  color: var(--ivory);
  font-size: 14px;
  font-weight: 500;
  transition: color 200ms ease;
}

.consult-call:hover {
  color: var(--gray-300);
}

.consult-call-ink {
  padding-top: 0;
  border-top: 0;
  color: var(--ink);
}

.consult-call-ink:hover {
  color: var(--gray-600);
}

.consult-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.consult-close:hover {
  border-color: var(--ink);
  background: var(--gray-200);
  color: var(--ink);
}

.consult-close-mobile {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: none;
  border-color: rgba(250, 250, 249, 0.35);
  color: var(--ivory);
}

.consult-close-mobile:hover {
  border-color: var(--ivory);
  background: rgba(250, 250, 249, 0.12);
  color: var(--ivory);
}

.consult-content {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  background: var(--ivory);
  color: var(--ink);
}

.consult-embed .consult-content {
  border: 1px solid var(--brown-800);
  border-radius: 8px;
  overflow: hidden;
}

.consult-embed .consult-scroll {
  flex: none;
  height: 540px;
  overflow: auto;
}

.consult-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--gray-200);
}

.consult-progress {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consult-progress li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 500;
  transition: color 250ms ease;
}

.consult-progress li:has(i.is-active) {
  color: var(--ink);
}

.consult-progress i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: background-color 250ms ease, box-shadow 250ms ease;
}

.consult-progress i.is-active {
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(15, 14, 13, 0.1);
}

.consult-topbar-end {
  display: flex;
  align-items: center;
  gap: 14px;
}

.consult-step-label {
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.consult-form {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
}

.consult-scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 30px 26px;
}

.consult-eyebrow {
  margin: 0 0 10px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consult-step h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.consult-intro {
  margin: 0 0 24px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.45;
}

.consult-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.consult-choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.consult-choice:hover {
  border-color: var(--gray-600);
  transform: translateY(-1px);
}

.consult-choice.is-selected {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.consult-choice strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.consult-choice small {
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.35;
}

.consult-choice-grid.consult-choice-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.consult-choice-compact {
  padding: 14px 16px;
}

.consult-choice-compact strong {
  font-size: 15px;
}

.consult-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 500;
}

.consult-field input,
.consult-field select,
.consult-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.consult-field input:focus-visible,
.consult-field select:focus-visible,
.consult-field textarea:focus-visible {
  outline: 1px solid var(--ink);
}

.consult-field textarea {
  min-height: 132px;
  resize: vertical;
}

.consult-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consult-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consult-pill {
  padding: 10px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.consult-pill:hover {
  border-color: var(--gray-600);
}

.consult-pill.is-selected {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.consult-when-row {
  display: flex;
  gap: 10px;
}

.consult-when-row input {
  flex: 1;
  min-width: 0;
}

.consult-when-row .consult-pill {
  flex: 0 0 auto;
}

.consult-error {
  min-height: 18px;
  margin: 14px 0 0;
  color: #9c3a2f;
  font-size: 13px;
  font-weight: 500;
}

.consult-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consult-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 26px;
  border-top: 1px solid var(--gray-200);
}

.consult-back {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color 180ms ease;
}

.consult-back:hover {
  color: var(--ink);
}

.consult-privacy {
  margin: 0 auto;
  color: var(--gray-500);
  font-size: 12px;
  text-align: center;
}

.consult-success-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--ink);
}

.consult-success-mark svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--ivory);
  stroke-width: 2.2;
  stroke-linecap: square;
}

.consult-next {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.consult-next li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.consult-next i {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.consult-next strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

.consult-next span {
  display: block;
  margin-top: 2px;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.4;
}

.consult-success-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 860px) {
  .consult-modal {
    padding: 12px;
  }

  .consult-dialog {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: min(calc(100svh - 24px), 780px);
  }

  .consult-rail {
    gap: 0;
    padding: 22px 20px 18px;
  }

  .consult-rail h2 {
    font-size: 24px;
  }

  .consult-rail-sub {
    margin-top: 8px;
    font-size: 13px;
  }

  .consult-summary,
  .consult-foot {
    display: none;
  }

  .consult-close-mobile {
    display: grid;
  }

  .consult-topbar .consult-close {
    display: none;
  }

  .consult-progress span {
    display: none;
  }

  .consult-scroll {
    padding: 22px 20px;
  }

  .consult-step h2 {
    font-size: 23px;
  }

  .consult-choice-grid {
    grid-template-columns: 1fr;
  }

  .consult-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .consult-actions {
    padding: 14px 20px;
  }

  .consult-privacy {
    display: none;
  }

  .consult-success-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Full-frame hero */
.ccc-hero-media {
  position: relative;
}

.ccc-hero-picture {
  display: block;
}

.ccc-hero-picture > img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 540px;
  max-height: calc(100svh - 118px);
  object-fit: cover;
  object-position: center top;
}

.ccc-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(15, 14, 13, 0.85) 0%, rgba(15, 14, 13, 0.38) 36%, rgba(15, 14, 13, 0) 62%);
}

.ccc-hero-frame {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 60px;
}

.ccc-hero-frame h1 {
  margin: 0 0 20px;
  font-size: clamp(48px, 6.4vw, 110px);
  line-height: 0.98;
}

.ccc-hero-frame .ccc-hero-copy {
  max-width: 620px;
}

@media (max-width: 700px) {
  .ccc-hero-frame {
    padding-bottom: 36px;
  }

  .ccc-hero-picture > img {
    min-height: 560px;
    object-position: center top;
  }
}

/* Site-specific design system */
.section-shell,
.testimonial-shell {
  max-width: 1440px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  color: var(--gray-500);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.ccc-heading {
  font-family: "Harvey Serif", Georgia, serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.012em;
}

.ccc-statement {
  max-width: 620px;
}

.ccc-hero-frame h1 {
  font-size: 92px;
}

.ccc-hero-eyebrow {
  margin: 0 0 18px;
  color: var(--gray-300);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ccc-hero-sub {
  margin: 0;
  max-width: 500px;
  color: var(--gray-300);
  font-size: 17px;
  line-height: 1.5;
}

.ccc-hero-sub strong {
  color: var(--ivory);
  font-weight: 500;
}

.ccc-hero-frame .ccc-hero-actions {
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.ccc-hero-call {
  color: var(--ivory);
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(250, 250, 249, 0.4);
  text-underline-offset: 4px;
  transition: text-decoration-color 200ms ease;
}

.ccc-hero-call:hover {
  text-decoration-color: var(--ivory);
}

.ccc-hero-overlay {
  background: linear-gradient(to top, rgba(15, 14, 13, 0.94) 0%, rgba(15, 14, 13, 0.7) 24%, rgba(15, 14, 13, 0.34) 50%, rgba(15, 14, 13, 0.08) 68%, rgba(15, 14, 13, 0) 80%);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 96px;
}

.stat-item {
  padding-top: 24px;
  border-top: 1px solid rgba(15, 14, 13, 0.2);
}

.stat-value {
  margin: 0 0 10px;
  font-family: "Harvey Serif", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat-label {
  margin: 0;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.4;
}

.practice-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  margin-bottom: 56px;
}

.practice-col {
  margin: 0;
  padding: 0;
  list-style: none;
}

.practice-row a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 23px 4px 21px;
  border-top: 1px solid rgba(15, 14, 13, 0.2);
  color: var(--ink);
  transition: color 220ms ease;
}

.practice-col .practice-row:last-child a {
  border-bottom: 1px solid rgba(15, 14, 13, 0.2);
}

.p-name {
  flex: 1;
  font-family: "Harvey Serif", Georgia, serif;
  font-size: 28px;
  line-height: 1.15;
}

.p-arrow {
  font-size: 22px;
  line-height: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.practice-row a:hover .p-arrow,
.practice-row a:focus-visible .p-arrow {
  opacity: 1;
  transform: translateX(0);
}

.practice-index:has(a:hover) .practice-row a:not(:hover) {
  color: var(--gray-500);
}

.ink-section .result-item,
.ink-section .stat-item {
  border-top-color: rgba(250, 250, 249, 0.22);
}

.ink-section .result-type {
  color: var(--gray-500);
}

.result-item {
  border-top-width: 1px;
}

.result-amount {
  font-size: 60px;
}

.chapter-joined {
  padding-top: 96px;
  border-top: 1px solid rgba(250, 250, 249, 0.14);
}

/* Treat Results and Why Choose Us as one chapter. The divider now sits
   exactly between equal bands of space instead of below a full section gap. */
.results-section {
  padding-bottom: 80px;
}

.why-section {
  padding-top: 0;
}

.why-section .chapter-joined {
  padding-top: 80px;
}

.why-layout {
  display: grid;
  grid-template-columns: 40% 50%;
  justify-content: space-between;
  align-items: center;
}

.why-tabs {
  display: flex;
  flex-direction: column;
  align-self: center;
  min-height: 540px;
  justify-content: center;
}

.why-tab {
  width: 100%;
  min-height: 92px;
  padding: 20px 0 18px;
  background: transparent;
  border-top: 1px solid rgba(250, 250, 249, 0.22);
  color: var(--gray-500);
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease;
}

.why-tab:hover {
  color: var(--gray-300);
}

.why-tab[aria-selected="true"] {
  border-top-color: var(--ivory);
  color: var(--ivory);
}

.why-tab-title {
  display: block;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
}

.why-tab-copy {
  display: none;
}

.why-tab-copy > span {
  display: block;
  max-width: 450px;
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.45;
}

.why-tab[aria-selected="true"] .why-tab-copy {
  display: block;
  margin-top: 12px;
}

.why-visual {
  position: relative;
  aspect-ratio: 1.33201581;
  overflow: hidden;
  border-radius: 8px;
  background: var(--brown-900);
}

.why-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 420ms ease;
}

.why-img.is-active {
  opacity: 1;
}

.attorney-photo img {
  transition: transform 500ms ease;
}

.attorney-card:hover .attorney-photo img {
  transform: scale(1.03);
}

.areas-cols {
  display: block;
}

.areas-cols ul {
  margin: 6px 0 0;
  padding: 0;
  column-count: 3;
  column-gap: 32px;
  column-fill: balance;
  list-style: none;
}

.areas-cols li {
  break-inside: avoid;
  padding: 5px 0;
  color: var(--gray-300);
  font-size: 15px;
  line-height: 1.4;
}

.footer-cta h2 {
  max-width: 760px;
  font-size: 36px;
}

.demo-button:hover,
.ccc-button:hover {
  background: var(--brown-700);
}

.footer-demo:hover,
.footer-subscribe-form button:hover {
  background: var(--gray-300);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

@media (min-width: 1730px) {
  .ccc-heading {
    font-size: 50px;
  }

  .ccc-hero-frame h1 {
    font-size: 108px;
  }
}

@media (max-width: 1360px) {
  .ccc-hero-frame h1 {
    font-size: 76px;
  }
}

@media (max-width: 1024px) {
  .ccc-heading {
    font-size: 38px;
  }

  .ccc-hero-frame h1 {
    font-size: 60px;
  }

  .p-name {
    font-size: 23px;
  }

  .result-amount {
    font-size: 46px;
  }

  .why-tab-title {
    font-size: 20px;
  }

  .practice-index {
    column-gap: 40px;
  }
}

@media (max-width: 700px) {
  .ccc-heading {
    font-size: 31px;
  }

  .ccc-hero-frame h1 {
    font-size: 42px;
  }

  .ccc-hero-sub {
    font-size: 16px;
  }

  .stat-row {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 64px;
  }

  .stat-value {
    font-size: 38px;
  }

  .practice-index {
    grid-template-columns: 1fr;
  }

  .practice-col + .practice-col .practice-row:first-child a {
    border-top: 0;
  }

  .p-name {
    font-size: 21px;
  }

  .result-amount {
    font-size: 34px;
  }

  .chapter-joined {
    padding-top: 72px;
  }

  .results-section {
    padding-bottom: 56px;
  }

  .why-section {
    padding-top: 0;
  }

  .why-section .chapter-joined {
    padding-top: 56px;
  }

  .why-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .why-tabs {
    min-height: 0;
  }

  .areas-cols {
    display: block;
  }

  .areas-cols ul {
    column-count: 2;
    column-gap: 24px;
  }

  .footer-cta h2 {
    font-size: 28px;
  }
}

/* Areas We Serve — full-bleed scene */
.areas-scene {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.areas-scene-photo {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.areas-scene::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 14, 13, 0.9) 0%, rgba(15, 14, 13, 0.56) 45%, rgba(15, 14, 13, 0.84) 100%);
}

/* Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms var(--ease), transform 750ms var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Local, reviews, and recognition sections. */
.v3-display {
  margin: 0;
  font-family: "Harvey Serif", Georgia, serif;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.v3-section {
  padding-block: clamp(88px, 8vw, 132px);
}

.v3-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 58px;
}

.v3-section-head > div > p {
  margin: 18px 0 0;
  color: #60656a;
  font-size: 17px;
}

.v3-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  font-size: 15px;
  font-weight: 620;
  line-height: 1;
}

.v3-text-link span {
  font-size: 20px;
  transition: transform 180ms ease;
}

.v3-text-link:hover span {
  transform: translateX(4px);
}

.v3-text-link-light {
  color: #fff;
}

.v3-local {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(460px, .88fr);
  max-width: 1600px;
  min-height: 570px;
  margin-inline: auto;
  background: #0b0d0e;
  color: #fff;
}

.v3-local-media {
  overflow: hidden;
}

.v3-local-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.v3-local-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 7vw, 112px);
}

.v3-local-copy .v3-display {
  font-size: clamp(42px, 4vw, 60px);
}

.v3-local-copy > p {
  max-width: 480px;
  margin: 0 0 28px;
  color: #c4c9cc;
  font-size: 17px;
  line-height: 1.55;
}

.v3-local-copy .v3-address {
  margin: 26px 0 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.26);
  color: #fff;
  line-height: 1.5;
}

.v3-reviews {
  background: #fff;
  color: #0b0d0e;
}

.v3-reviews > .section-shell {
  max-width: 1440px;
}

.v3-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 46px;
}

.v3-reviews .review-item {
  min-height: 300px;
  padding: 26px 0 0;
  border-top: 1px solid #d9dadd;
}

.v3-reviews .review-stars {
  color: #b57c13;
  font-size: 17px;
  letter-spacing: 4px;
}

.v3-reviews .review-text {
  margin: 26px 0 34px;
  color: #0b0d0e;
  font-family: "Harvey Serif", Georgia, serif;
  font-size: 24px;
  line-height: 1.35;
}

.v3-reviews .review-name {
  font-size: 15px;
}

.v3-reviews .review-meta {
  margin-top: 4px;
  font-size: 13px;
}

.v3-recognition {
  padding-block: 90px;
  text-align: center;
}

.v3-recognition > .section-shell {
  max-width: 1440px;
}

.v3-recognition .v3-display {
  font-size: clamp(34px, 3vw, 46px);
}

.v3-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-top: 58px;
}

.v3-badges img {
  width: auto;
  max-width: 96px;
  height: 66px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .6;
  mix-blend-mode: multiply;
}

.v3-badges .wide {
  max-width: 190px;
}

@media (max-width: 1180px) {
  .v3-local {
    grid-template-columns: 1.05fr .95fr;
  }

  .v3-local-copy {
    padding: 72px 56px;
  }
}

@media (max-width: 1024px) {
  .v3-local {
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
  }

  .v3-local-copy {
    padding: 60px 40px;
  }

  .v3-badges {
    gap: 26px;
    overflow: hidden;
  }
}

@media (max-width: 760px) {
  .v3-display {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1;
  }

  .v3-section {
    padding-block: 72px;
  }

  .v3-section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  .v3-local {
    display: block;
    min-height: 0;
  }

  .v3-local-media {
    height: 250px;
  }

  .v3-local-copy {
    padding: 54px 20px 62px;
  }

  .v3-local-copy > p {
    font-size: 16px;
  }

  .v3-reviews-grid {
    display: flex;
    gap: 20px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .v3-reviews .review-item {
    flex: 0 0 84%;
    min-height: 330px;
    scroll-snap-align: start;
  }

  .v3-reviews .review-text {
    font-size: 23px;
  }

  .v3-recognition {
    padding-block: 68px;
    overflow: hidden;
  }

  .v3-recognition .v3-display {
    font-size: 34px;
  }

  .v3-badges {
    justify-content: flex-start;
    gap: 30px;
    margin: 44px -20px 0;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .v3-badges img {
    flex: 0 0 auto;
  }
}

/* Mobile navigation. */
@media (max-width: 1024px) {
  .mobile-nav-groups > *,
  .mobile-drawer-foot {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 280ms ease, transform 440ms cubic-bezier(.22,.8,.22,1);
  }

  .site-header.mobile-open .mobile-nav-groups > *,
  .site-header.mobile-open .mobile-drawer-foot {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.mobile-open .mobile-nav-groups > *:nth-child(1) { transition-delay: 120ms; }
  .site-header.mobile-open .mobile-nav-groups > *:nth-child(2) { transition-delay: 150ms; }
  .site-header.mobile-open .mobile-nav-groups > *:nth-child(3) { transition-delay: 180ms; }
  .site-header.mobile-open .mobile-nav-groups > *:nth-child(4) { transition-delay: 210ms; }
  .site-header.mobile-open .mobile-nav-groups > *:nth-child(5) { transition-delay: 240ms; }
  .site-header.mobile-open .mobile-nav-groups > *:nth-child(6) { transition-delay: 270ms; }
  .site-header.mobile-open .mobile-nav-groups > *:nth-child(7) { transition-delay: 300ms; }
  .site-header.mobile-open .mobile-nav-groups > *:nth-child(8) { transition-delay: 330ms; }
  .site-header.mobile-open .mobile-drawer-foot { transition-delay: 370ms; }

  .mobile-menu-button span {
    transform-origin: 50% 50%;
    transition: top 420ms cubic-bezier(.22,.8,.22,1), transform 420ms cubic-bezier(.22,.8,.22,1), width 260ms ease;
  }

  .mobile-drawer {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    overflow: hidden auto;
    background: #fff;
    clip-path: inset(0 0 100% 0);
    opacity: 1;
    pointer-events: none;
    transform: none;
    visibility: hidden;
    transition: clip-path 560ms cubic-bezier(.76,0,.24,1), visibility 0s linear 560ms;
  }

  .site-header.mobile-open .mobile-drawer {
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
    visibility: visible;
    transition: clip-path 560ms cubic-bezier(.76,0,.24,1);
  }

  .mobile-drawer-inner {
    display: flex;
    min-height: calc(100dvh - var(--nav-height));
    flex-direction: column;
    padding: clamp(28px, 6vh, 58px) var(--page-gutter) 34px;
  }

  .mobile-drawer-inner > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 300ms ease, transform 440ms cubic-bezier(.22,.8,.22,1);
  }

  .site-header.mobile-open .mobile-drawer-inner > * {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.mobile-open .mobile-nav-groups { transition-delay: 150ms; }
  .site-header.mobile-open .mobile-drawer-foot { transition-delay: 330ms; }

  .mobile-nav-heading,
  .mobile-simple-link {
    min-height: 64px;
    font-family: "Harvey Serif", Georgia, serif;
    font-size: clamp(25px, 7vw, 34px);
    letter-spacing: -.02em;
  }

  .mobile-nav-heading::after {
    width: 18px;
    height: 18px;
    color: transparent;
    background: linear-gradient(currentColor,currentColor) center/18px 1px no-repeat,
                linear-gradient(currentColor,currentColor) center/1px 18px no-repeat;
    content: "";
    filter: invert(1);
    transition: transform 360ms cubic-bezier(.22,.8,.22,1);
  }

  .mobile-nav-group.is-open .mobile-nav-heading::after {
    content: "";
    transform: rotate(45deg);
  }

  .mobile-nav-items {
    opacity: 0;
    transition: grid-template-rows 420ms cubic-bezier(.22,.8,.22,1), opacity 260ms ease;
  }

  .mobile-nav-group.is-open .mobile-nav-items {
    opacity: 1;
  }

  .mobile-nav-items a {
    padding: 11px 0 12px;
    font-size: 16px;
  }

  .mobile-drawer-foot {
    margin-top: auto;
    padding-top: 32px;
  }

  .mobile-drawer-actions {
    margin-top: auto;
    padding-top: 34px;
  }

  .mobile-drawer-call {
    display: block;
    margin-top: 16px;
    color: var(--gray-600);
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .mobile-drawer {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100svh - var(--nav-height));
  }
}
