/* Homepage-specific styling layer (front page only)
 * Slice 1: parser-rendered Hero + Intro sections.
 */

.home {
  --home-surface: #eef1e8;
  --home-surface-soft: #eef4f2;
  --home-text-strong: #20231f;
  --home-text-display: #4f554a;
  --home-text-muted: #5f6758;
  --home-border-soft: #a9b99a;
  --home-ink-dot: #a9b99a;
  --home-hero-team-image: url("/wp-content/uploads/2026/07/hero-image-scaled.webp");
  --home-hero-fallback-image: url("/wp-content/uploads/2026/07/bookshelf-hero-image.png");
  --home-hero-radius: clamp(1.625rem, 3.5vw, 2.5rem);
  --home-display-font: var(--font-display);
  --home-body-font: var(--font-body);
}

.home body,
body.home {
  background: #000;
}

.home #main-content {
  background: #000;
}

.home-figma-hero,
.home .home-figma-hero {
  --hero-frame-left: 7.2703%;
  --hero-frame-width: 85.4593%;
  --hero-frame-top: 16.2936%;
  --hero-frame-height: 83.7064%;
  --hero-card-width: clamp(38rem, 56vw, 61rem);
  --hero-card-safe-top-ratio: 0.22;
  --hero-card-inset-x: clamp(1.25rem, 3.6vw, 6.25rem);
  --hero-card-inset-top: clamp(0.75rem, 1.8vw, 1.5rem);
  --hero-card-inset-bottom: clamp(0.75rem, 2vw, 1.5rem);
  --hero-content-safe-nudge-y: clamp(0.55rem, 1.05vw, 0.9rem);
  --hero-card-render-width: min(
    var(--hero-card-width),
    calc(100% - (var(--hero-frame-left) * 2))
  );
  --hero-card-height: calc(var(--hero-card-render-width) * 461 / 1045);
  --hero-card-bottom: calc(100% - (var(--hero-frame-top) + var(--hero-frame-height)));
  --hero-card-surface: #fafaf6;
  background: var(--hero-card-surface);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(42rem, 58.6vw, 69.8125rem);
}

.home-figma-hero__surface {
  position: relative;
  width: var(--hero-frame-width);
  height: var(--hero-frame-height);
  left: var(--hero-frame-left);
  top: var(--hero-frame-top);
  border-radius: clamp(1.5rem, 4.5vw, 6rem);
  background: #eef4f2;
  overflow: hidden;
}

.home-figma-hero__bg-image {
  position: absolute;
  width: 250%;
  height: 119.4652%;
  left: -1%;
  top: -19.4652%;
  object-fit: cover;
  transform: translateX(1%) scale(1.08);
  transform-origin: 58% 48%;
  animation: home-hero-kenburns 6s ease-in-out infinite alternate;
  will-change: transform;
  opacity: 1;
  z-index: 0;
}

@keyframes home-hero-kenburns {
  0% {
    transform: translateX(1%) scale(1.08);
  }
  100% {
    transform: translateX(1%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-figma-hero__bg-image {
    animation: none;
    transform: translateX(1%) scale(1);
  }
}

.home-figma-hero__team-image {
  position: absolute;
  width: 65.3018%;
  height: 92.4799%;
  left: 20.9186%;
  top: 7.5201%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

.home-figma-hero__card-wrap {
  position: absolute;
  width: var(--hero-card-render-width);
  aspect-ratio: 1045 / 461;
  left: var(--hero-frame-left);
  top: auto;
  bottom: var(--hero-card-bottom);
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.home-figma-hero__card-shape {
  display: block;
  width: calc(100% + 8px);
  height: calc(100% + 14px);
  transform: translate(-4px, -4px);
}

.home-figma-hero__content {
  position: absolute;
  width: calc(var(--hero-card-render-width) - (var(--hero-card-inset-x) * 2));
  max-width: calc(var(--hero-card-width) - (var(--hero-card-inset-x) * 2));
  left: calc(var(--hero-frame-left) + var(--hero-card-inset-x));
  top: auto;
  bottom: calc(var(--hero-card-bottom) + var(--hero-card-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.75rem, 1.2vw, 1.25rem);
  transform: translateY(var(--hero-content-safe-nudge-y));
  z-index: 3;
}

.home-figma-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.0625rem;
  padding: 0.5rem;
  border: 1px solid #a9b99a;
  border-radius: 0.5rem;
  color: #20231f;
  font-family: var(--home-body-font);
  font-size: 0.875rem;
  line-height: 1.1;
  font-weight: 500;
  width: fit-content;
}

.home-figma-hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  background: #a9b99a;
  flex-shrink: 0;
}

.home-figma-hero__title {
  margin: 0;
  width: 100%;
  color: #4f554a;
  font-family: var(--home-display-font);
  font-size: clamp(1.95rem, 3.2vw, 3.8rem);
  line-height: 1.08;
  font-weight: 400;
  text-wrap: balance;
}

.home-figma-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  max-width: 100%;
  gap: 0.625rem;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background: #5f7f2e;
  color: #fff;
  text-decoration: none;
  font-family: var(--home-body-font);
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: 0.0625rem;
  font-weight: 500;
  box-sizing: border-box;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    background-color 0.26s ease;
}

.home-figma-hero__cta:hover {
  background: #4f6c27;
}

.home-figma-hero__cta-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
}

.home-figma-hero__cta-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) {
  .home-figma-hero__team-image {
    top: 9%;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .home-figma-hero__team-image {
    width: 72%;
    height: 92%;
    left: 50%;
    top: 8%;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: center top;
  }
}

@media (max-width: 1360px) {
  .home-figma-hero,
  .home .home-figma-hero {
    --hero-content-safe-nudge-y: clamp(0.45rem, 0.9vw, 0.8rem);
  }

  .home-figma-hero__content {
    bottom: calc(var(--hero-card-bottom) + 0.1rem);
  }

  .home-figma-hero__cta {
    padding: 1.2rem 1.45rem;
    font-size: 1rem;
    letter-spacing: 0.035rem;
  }
}

@media (max-width: 1120px) {
  .home-figma-hero,
  .home .home-figma-hero {
    --hero-content-safe-nudge-y: clamp(0.55rem, 1.1vw, 0.95rem);
    --hero-card-inset-x: clamp(1rem, 2.8vw, 2.6rem);
  }

  .home-figma-hero__content {
    bottom: calc(var(--hero-card-bottom) + 0.28rem);
  }

  .home-figma-hero__title {
    font-size: clamp(1.8rem, 3.3vw, 2.9rem);
  }

  .home-figma-hero__cta {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    letter-spacing: 0.02rem;
  }
}

@media (min-width: 992px) and (max-width: 1376px) {
  .home-figma-hero,
  .home .home-figma-hero {
    --hero-content-safe-nudge-y: 0;
    --hero-card-inset-bottom: clamp(0.95rem, 1.8vw, 1.35rem);
  }

  .home-figma-hero__content {
    bottom: calc(var(--hero-card-bottom) + var(--hero-card-inset-bottom));
    transform: none;
  }

  .home-figma-hero__cta {
    padding: 0.95rem 1.35rem;
    min-height: 0;
    font-size: 0.95rem;
    line-height: 1.2;
    letter-spacing: 0.02rem;
    border-radius: 0.875rem;
  }
}

@media (min-width: 880px) and (max-width: 1000px) {
  .home-figma-hero,
  .home .home-figma-hero {
    --hero-content-safe-nudge-y: 0;
    --hero-card-inset-bottom: clamp(1rem, 2vw, 1.4rem);
  }

  .home-figma-hero__content {
    bottom: calc(var(--hero-card-bottom) + var(--hero-card-inset-bottom));
    transform: none;
    gap: 0.875rem;
  }

  .home-figma-hero__cta {
    padding: 0.85rem 1.2rem;
    font-size: 0.92rem;
    line-height: 1.15;
    letter-spacing: 0.01rem;
  }
}

@media (min-width: 1001px) and (max-width: 1176px) {
  .home-figma-hero,
  .home .home-figma-hero {
    --hero-content-safe-nudge-y: 0;
    --hero-card-inset-bottom: clamp(0.68rem, 1.1vw, 0.95rem);
  }

  .home-figma-hero__content {
    bottom: calc(var(--hero-card-bottom) + var(--hero-card-inset-bottom));
    transform: none;
    gap: 0.75rem;
  }

  .home-figma-hero__badge {
    min-height: 1.9rem;
    padding: 0.38rem 0.48rem;
    font-size: 0.8rem;
  }

  .home-figma-hero__title {
    font-size: clamp(2rem, 3vw, 2.55rem);
    line-height: 1.02;
  }

  .home-figma-hero__cta {
    padding: 0.88rem 1.22rem;
    font-size: 0.92rem;
    line-height: 1.15;
    letter-spacing: 0.01rem;
  }
}

.home-figma-intro,
.home .home-figma-intro {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fafaf6;
}

.home-figma-intro__content {
  width: min(1290px, calc(100% - 2rem));
  margin: 0 auto;
  padding-top: clamp(4rem, 7vw, 9rem);
  padding-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.home-figma-intro__stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.home-figma-intro__title-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.home-figma-intro__badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  outline: 1px #a9b99a solid;
  outline-offset: -1px;
  color: #20231f;
  font-family: var(--home-body-font);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1;
}

.home-figma-intro__badge-dot {
  width: 8px;
  height: 8px;
  background: #a9b99a;
  border-radius: 9999px;
}

.home-figma-intro__title {
  width: min(740px, 100%);
  margin: 0;
  text-align: center;
  color: #4f554a;
  font-family: var(--home-display-font);
  font-size: clamp(2rem, 3.6vw, 3.583rem);
  font-weight: 400;
  line-height: 1;
  text-wrap: pretty;
}

.home-figma-intro__text {
  width: min(740px, 100%);
  margin: 0;
  text-align: center;
  color: #20231f;
  font-family: var(--home-body-font);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
}

.home-figma-intro__video-stage {
  height: clamp(26rem, 37vw, 41.875rem);
  position: relative;
  overflow: hidden;
}

.home-figma-intro__video-shell {
  width: min(1362px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 3rem) 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: flex-start;
}

.home-figma-intro__video {
  align-self: stretch;
  height: clamp(20rem, 32vw, 35.875rem);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  background: #000;
  transform-origin: center center;
  will-change: transform, border-radius;
}

.home-figma-intro__video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.03) contrast(1.06) saturate(1.05);
  transform: translateZ(0);
  transition: transform 0.7s ease;
}

.home .home-section-show-more,
.home .home-band-read-more,
.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .home-final-cta-phone,
.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .accordion__item,
.home #services-our-experienced-family-law-lawyers-in-dekalb-county-offer .accordion__item,
.home #areas-across-georgia-our-experienced-family-law-lawyers-in-dekalb-county-serve .accordion__item,
.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__item {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .home-final-cta-phone {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-figma-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(52, 74, 22, 0.24);
  }

  .home-figma-intro__video:hover .home-figma-intro__video-media {
    transform: scale(1.03);
  }

  .home .home-section-show-more:hover,
  .home .home-band-read-more:hover {
    transform: translateY(-1px);
  }

  .home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .accordion__item:hover,
  .home #services-our-experienced-family-law-lawyers-in-dekalb-county-offer .accordion__item:hover,
  .home #areas-across-georgia-our-experienced-family-law-lawyers-in-dekalb-county-serve .accordion__item:hover,
  .home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(20, 26, 19, 0.12);
  }

  .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .home-final-cta-phone:hover {
    transform: translateY(-2px);
    background: rgba(221, 235, 203, 0.08);
    border-color: #ffffff;
    box-shadow: 0 12px 20px rgba(4, 10, 17, 0.2);
    color: #ffffff;
  }
}

.home .content-page-h1-section {
  position: relative;
  overflow: visible;
  padding: 0;
  min-height: 0;
  isolation: auto;
  background: #000;
}

.home .content-page-h1-section > .home-hero {
  width: 100%;
  max-width: none;
  margin: 0;
}

.home .content-page-h1-section::before {
  content: none;
}

.home .content-page-h1-section::after {
  content: none;
}

.home .content-page-h1-section > .content-block {
  width: min(1901px, 100%);
  max-width: 1901px;
  padding: 0;
  margin: 0 auto;
  background: transparent;
}

.home .content-page-h1-section .content-block__inner {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(360px, 1.02fr) minmax(320px, 1fr);
  column-gap: clamp(1rem, 2.5vw, 2.25rem);
  row-gap: 0;
  align-items: start;
  align-content: start;
  margin: 0;
  padding: 0;
}

.home .content-page-h1-section .content-block__inner::before {
  content: none;
}

.home .content-page-h1-section .content-block__inner::after {
  content: none;
}

.home .content-page-h1-section .content-block__divider,
.home .content-page-h1-section .content-block__divider-rule,
.home .content-page-h1-section .content-block__raw {
  display: none;
}

.home .content-page-h1-section .home-h1-copy-col {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 56px;
}

.home .content-page-h1-section .content-block__h2.h1 {
  margin: 0;
  display: block;
  color: #ffffff;
  font-family: var(--home-display-font);
  font-size: 57.33px;
  font-weight: 400;
  line-height: 57.33px;
  letter-spacing: -1px;
  width: 100%;
  max-width: 100%;
  text-wrap: wrap;
}

.home .content-page-h1-section .content-block__h2.h1::before {
  content: "Trusted Guidance";
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 1.25rem;
  border: 1px solid #eef1e8;
  border-radius: 0.5rem;
  color: #ffffff;
  font-family: var(--home-body-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  background-image: radial-gradient(circle at 0.75rem 50%, #d8dcd2 0.25rem, transparent 0.28rem);
  background-repeat: no-repeat;
}

.home .content-page-h1-section .content-block__text {
  display: block;
  margin: 12px 0 0;
  width: 100%;
  max-width: 100%;
  padding: 0;
  color: #d8dcd2;
  font-family: var(--home-body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  position: relative;
  overflow: hidden;
  transition: max-height 360ms ease;
}

.home .content-page-h1-section .content-block__text.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.35rem;
  background: linear-gradient(180deg, rgba(32, 35, 31, 0) 0%, rgba(32, 35, 31, 1) 100%);
  pointer-events: none;
}

.home .content-page-h1-section .content-block__text p {
  margin: 0;
}

.home .content-page-h1-section .content-block__text a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  color: #d8dcd2;
  font-family: var(--home-body-font);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
  transition: color 220ms var(--ease-out-expo);
}

.home .content-page-h1-section .content-block__text a:hover {
  color: #eef1e8;
}

.home .content-page-h1-section .content-block__image {
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: 96px;
  width: 100%;
  max-width: none;
  margin: -20px 0 0;
  border-radius: 2rem;
  height: 645px;
  object-fit: cover;
  object-position: center;
}

.home .content-page-h1-section .home-h1-show-more {
  margin: 8px 0 0;
  width: fit-content;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5f7f2e;
  font-family: var(--home-body-font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 23.4px;
  text-align: left;
  cursor: pointer;
}

.home .content-page-h1-section .home-h1-show-more::after {
  content: "⌄";
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  transform-origin: center;
  transition: transform 220ms var(--ease-out-expo);
}

.home .content-page-h1-section .home-h1-show-more.is-expanded::after {
  transform: rotate(180deg);
}

.home .content-page-h1-section + .content-block.content-block--home {
  max-width: 100%;
  margin: 0;
  padding: 0 1rem;
  background: var(--home-surface);
}

.home .content-page-h1-section + .content-block.content-block--home .content-block__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 84px 40px;
  display: grid;
  justify-items: center;
  gap: 0;
  text-align: center;
}

.home .content-page-h1-section + .content-block.content-block--home .content-block__inner::before {
  content: "For When Life Changes";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 14px 6px 28px;
  border: 1px solid var(--home-border-soft);
  border-radius: 0.5rem;
  color: #4f554a;
  font-family: var(--home-body-font);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 auto;
  position: relative;
  background-image: radial-gradient(circle at 14px 50%, #5f7f2e 3px, transparent 3px);
  background-repeat: no-repeat;
}

.home .content-page-h1-section + .content-block.content-block--home .content-block__inner::after {
  content: none;
}

.home .content-page-h1-section + .content-block.content-block--home .content-block__divider,
.home .content-page-h1-section + .content-block.content-block--home .content-block__divider-rule,
.home .content-page-h1-section + .content-block.content-block--home .content-block__raw,
.home .content-page-h1-section + .content-block.content-block--home .content-block__image {
  display: none;
}

.home .content-page-h1-section + .content-block.content-block--home .content-block__h2 {
  width: min(680px, 100%);
  margin: 20px auto 0;
  color: #20231f;
  font-family: var(--home-display-font);
  font-size: 36px;
  font-weight: 500;
  line-height: 43.2px;
  text-wrap: balance;
}

.home .content-page-h1-section + .content-block.content-block--home .content-block__text {
  width: min(600px, 100%);
  margin: 18px auto 0;
  color: #4f554a;
  font-family: var(--home-body-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 25.5px;
}

.home .content-page-h1-section + .content-block.content-block--home .content-block__text p {
  margin: 0;
}

.home-band-read-more {
  margin-top: 30px;
  width: 128px;
  height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid #a9b99a;
  background: transparent;
  color: #5f7f2e;
  font-family: var(--home-body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0;
  cursor: pointer;
}

.home-band-read-more::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
}

.home-band-read-more:hover {
  background: rgba(95, 127, 46, 0.08);
}

.home-band-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483000 !important;
  display: none;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-band-modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.home-band-modal.is-open {
  display: block;
}

html.is-locked,
body.is-locked {
  overflow: hidden;
}

.home-band-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 11, 0.5);
  backdrop-filter: blur(4px);
}

.home-band-modal__dialog {
  position: relative;
  width: min(92vw, 1070px);
  max-height: calc(100dvh - 2rem);
  margin: clamp(1rem, 4.5vh, 6rem) auto 1rem;
  background: #fafaf6;
  border-radius: 8px 8px 0 0;
  overflow: auto;
  padding: 0;
}

.home-band-modal__dialog {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-band-modal__dialog::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.home-band-modal__close {
  position: absolute;
  top: 32px;
  right: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #20231f;
  background: transparent;
  color: #20231f;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
}

.home-band-modal__close svg {
  width: 24px;
  height: 24px;
}

.home-band-modal__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 96px 110px 0;
}

.home-band-modal__intro {
  display: grid;
  grid-template-columns: 409px 410px;
  column-gap: 31px;
  align-items: start;
  width: min(850px, 100%);
}

.home-band-modal__media {
  position: sticky;
  top: 24px;
  width: 409px;
  max-width: 100%;
  max-height: calc(100dvh - 140px);
  padding: 0;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-band-modal__media::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.home-band-modal__media-image {
  display: block;
  width: 409px;
  max-width: 100%;
  height: auto;
  min-height: 436px;
  object-fit: cover;
  border-radius: 8px;
}

.home-band-modal__accordions {
  width: min(850px, 100%);
}

.home-band-modal__content {
  width: 410px;
  max-width: 100%;
  overflow: visible;
  padding: 0;
}

.home-band-modal__title {
  margin: 0;
  color: #20231f;
  font-family: var(--home-display-font);
  font-size: clamp(2rem, 2.8vw, 2.98625rem);
  font-weight: 500;
  line-height: 1.1;
}

.home-band-modal__body {
  color: #20231f;
  font-family: var(--home-body-font);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
  width: 100%;
}

.home-band-modal__body > * {
  margin: 0 0 1rem;
}

.home-band-modal__body .content-block__text {
  margin: 0;
}

.home-band-modal__body .content-block__text p {
  margin: 0;
}

.home-band-modal__body .content-block__text p + p {
  margin-top: 16px;
}

.home-band-modal__accordions .content-block__accordions {
  margin-top: 0;
  width: 100%;
}

.home-band-modal__accordions .content-block__accordions .accordion__item {
  width: 100%;
  border-bottom: 1px solid rgba(107, 119, 116, 0.3);
  background: #eef1e8;
}

.home-band-modal__accordions .content-block__accordions .accordion__question {
  padding: 38px 24px;
  gap: 18px;
}

.home-band-modal__accordions .content-block__accordions .accordion__question-text {
  margin: 0;
  color: #20231f;
  font-family: var(--home-display-font);
  font-size: clamp(1.3rem, 1.8vw, 1.728125rem);
  font-weight: 400;
  line-height: 1.1;
}

.home-band-modal__accordions .content-block__accordions .accordion__icon {
  width: 40px;
  height: 40px;
  color: #2e7777;
  transform: rotate(90deg);
}

.home-band-modal__accordions .content-block__accordions .accordion__item.is-open .accordion__icon,
.home-band-modal__accordions .content-block__accordions [aria-expanded="true"] .accordion__icon {
  transform: rotate(0deg);
}

.home-band-modal__accordions .content-block__accordions .accordion__answer-text {
  padding: 0 24px 36px;
}

.home-band-modal__body .h3,
.home-band-modal__body .h4,
.home-band-modal__body h3,
.home-band-modal__body h4 {
  color: #20231f;
  font-family: var(--home-display-font);
  line-height: 1.25;
}

.home-band-modal {
  --home-band-h3: clamp(1.65rem, 2.4vw, 2.15rem);
  --home-band-h4: clamp(1.3rem, 1.8vw, 1.73rem);
  --home-band-h5: clamp(1.12rem, 1.4vw, 1.35rem);
  --home-band-h6: 1rem;
}

.home-band-modal__body :is(h3, .h3, .accordion__question-text) {
  font-size: var(--home-band-h3);
  line-height: 1.2;
  font-weight: 400;
}

.home-band-modal__body :is(h4, .h4) {
  font-size: var(--home-band-h4);
  line-height: 1.25;
  font-weight: 400;
}

.home-band-modal__body :is(h5, .h5) {
  font-size: var(--home-band-h5);
  line-height: 1.3;
  font-weight: 500;
}

.home-band-modal__body :is(h6, .h6) {
  font-size: var(--home-band-h6);
  line-height: 1.35;
  font-weight: 600;
}

/* Fallback: if content is authored with repeated H3/H4 only, step down subsequent ones visually. */
.home-band-modal__body .accordion__answer-text h3:not(:first-of-type),
.home-band-modal__body .accordion__answer-text .h3:not(:first-of-type) {
  font-size: var(--home-band-h4);
  line-height: 1.25;
}

.home-band-modal__body .accordion__answer-text h4:not(:first-of-type),
.home-band-modal__body .accordion__answer-text .h4:not(:first-of-type) {
  font-size: var(--home-band-h5);
  line-height: 1.3;
}

.home-band-modal__body p {
  margin: 0 0 1rem;
}



@media (max-width: 920px) {
  .home-band-modal__dialog {
    width: 96vw;
    margin: 0.5rem auto;
    max-height: calc(100dvh - 1rem);
  }

  .home-band-modal__layout {
    padding: 56px 16px 0;
    gap: 16px;
  }

  .home-band-modal__intro {
    grid-template-columns: 1fr;
    row-gap: 20px;
    width: 100%;
  }

  .home-band-modal__media {
    position: static;
    width: 100%;
    max-height: none;
    overflow: visible;
  }

  .home-band-modal__media-image {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 280px;
  }

  .home-band-modal__accordions {
    width: 100%;
  }

  .home-band-modal__content {
    width: 100%;
    padding-bottom: 12px;
  }

  .home-band-modal__title {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
  }

  .home-band-modal__accordions .content-block__accordions .accordion__question {
    padding: 22px 16px;
  }

  .home-band-modal__accordions .content-block__accordions .accordion__answer-text {
    padding: 0 16px 20px;
  }

  .home-band-modal__close {
    top: 12px;
    right: 12px;
  }
}

/* Section 2: media band */
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(2) {
  max-width: 100%;
  margin: 0;
  padding: 0 clamp(1rem, 5vw, 11.4375rem) clamp(4rem, 8vw, 7.5rem);
  background: var(--home-surface);
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(2) .content-block__inner {
  width: min(85.125rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(2) .content-block__divider,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(2) .content-block__divider-rule,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(2) .content-block__h2,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(2) .content-block__text,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(2) .content-block__raw,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(2) .content-block__accordions {
  display: none;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(2) .content-block__image {
  width: 100%;
  margin: 0;
  border-radius: 2rem;
  height: clamp(24rem, 44vw, 35.875rem);
  object-fit: cover;
  box-shadow: 0 24px 65px rgba(20, 20, 42, 0.16);
}

/* Section 3: dark narrative split */
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) {
  max-width: 100%;
  margin: 0;
  padding: clamp(4rem, 8vw, 9rem) clamp(1rem, 7vw, 13.6875rem);
  background: #20231f;
  color: #d8dcd2;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__inner {
  width: min(80.625rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(1.5rem, 2.5vw, 1.875rem);
  row-gap: 1.5rem;
  align-items: center;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__divider,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__divider-rule,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__raw,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__accordions {
  display: none;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__image {
  order: 1;
  width: 100%;
  margin: 0;
  border-radius: 2rem;
  height: clamp(22rem, 38vw, 40.3125rem);
  object-fit: cover;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__h2,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .h3,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .h4,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__text {
  order: 2;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--home-display-font);
  font-size: clamp(2rem, 3.8vw, 3.58rem);
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .h3,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .h4 {
  margin: 0;
  color: #eef1e8;
  font-family: var(--home-body-font);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .h3 {
  font-size: 1rem;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .h4 {
  font-size: 0.875rem;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__text {
  margin: 0;
  color: #d8dcd2;
  font-family: var(--home-body-font);
  font-size: 1rem;
  line-height: 1.6;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__text p {
  margin: 0;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__text a {
  color: #d8dcd2;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

@media (max-width: 1500px) {
  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) {
    padding-inline: clamp(1rem, 4vw, 3rem);
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__inner {
    grid-template-columns: 1fr;
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__image {
    order: 0;
    height: clamp(20rem, 58vw, 29rem);
  }
}

/* Section 4: trust band */
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4) {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: clamp(4.5rem, 7.8vw, 6rem) clamp(1rem, 7vw, 13.6875rem) clamp(7rem, 11vw, 9.5rem);
  background: #20231f;
  overflow: hidden;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4)::after {
  content: none;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4) .content-block__inner {
  position: relative;
  z-index: 1;
  width: min(80.625rem, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.5rem;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4) .content-block__divider,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4) .content-block__divider-rule,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4) .content-block__image,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4) .content-block__raw,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4) .content-block__accordions {
  display: none;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4) .content-block__h2 {
  width: min(39.375rem, 100%);
  margin: 0;
  color: #eef1e8;
  font-family: var(--home-display-font);
  font-size: clamp(1.9rem, 3.4vw, 2.99rem);
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4) .content-block__text {
  width: min(39.375rem, 100%);
  margin: 0;
  color: #d8dcd2;
  font-family: var(--home-body-font);
  font-size: 1rem;
  line-height: 1.6;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4) .content-block__text a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  border: 1px solid #5f7f2e;
  border-radius: 1rem;
  color: #5f7f2e;
  font-family: var(--home-body-font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color 220ms var(--ease-out-expo), color 220ms var(--ease-out-expo);
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4) .content-block__text a:hover {
  background: #5f7f2e;
  color: #fff;
}

/* Section 5: service strip */
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) {
  max-width: 100%;
  margin: 0;
  padding: clamp(4.5rem, 8vw, 9rem) 0;
  background: #20231f;
  color: #eef1e8;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .content-block__inner {
  width: 100%;
  max-width: 108rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .content-block__divider,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .content-block__divider-rule,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .content-block__h2,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .content-block__text,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .content-block__raw,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .content-block__image {
  display: none;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .content-block__accordions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .accordion__item {
  min-height: clamp(20rem, 36vw, 28rem);
  border: 0;
  background: linear-gradient(180deg, rgba(32, 35, 31, 0.05) 0%, rgba(32, 35, 31, 0.76) 78%), #343a31;
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  align-items: flex-end;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .accordion__question {
  padding: 0;
  align-items: flex-end;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .accordion__question-text {
  margin: 0;
  color: #eef1e8;
  font-family: var(--home-display-font);
  font-size: clamp(1.5rem, 2.5vw, 2.48rem);
  font-weight: 400;
  line-height: 1.1;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .accordion__icon,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .accordion__answer {
  display: none;
}

/* Section 6: horizontal card rail */
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) {
  max-width: 100%;
  margin: 0;
  padding: clamp(4.5rem, 8vw, 9rem) clamp(1rem, 7vw, 13.6875rem);
  background: #eef1e8;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) .content-block__inner {
  width: min(96rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) .content-block__h2 {
  width: min(39.375rem, 100%);
  margin: 0;
  color: var(--home-text-display);
  font-family: var(--home-display-font);
  font-size: clamp(1.9rem, 3.4vw, 2.99rem);
  font-weight: 400;
  line-height: 1.1;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) .content-block__text {
  width: min(39.375rem, 100%);
  margin: 0;
  color: var(--home-text-strong);
  font-family: var(--home-body-font);
  font-size: 1rem;
  line-height: 1.6;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) .content-block__accordions {
  margin-top: 1.5rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(17rem, 20.5rem);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) .accordion__item {
  border: 0;
  border-radius: 2rem;
  min-height: 26rem;
  background: linear-gradient(180deg, rgba(32, 35, 31, 0.1) 0%, rgba(32, 35, 31, 0.86) 82%), #4a5347;
  padding: 1.75rem;
  display: flex;
  align-items: flex-end;
  scroll-snap-align: start;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) .accordion__question {
  padding: 0;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) .accordion__question-text {
  margin: 0;
  color: #fff;
  font-family: var(--home-display-font);
  font-size: clamp(1.8rem, 2.8vw, 2.99rem);
  font-weight: 400;
  line-height: 1.1;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) .accordion__icon,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) .accordion__answer,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) .content-block__image,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) .content-block__divider,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) .content-block__divider-rule,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6) .content-block__raw {
  display: none;
}

/* Section 7: narrative + accordion split */
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) {
  max-width: 100%;
  margin: 0;
  padding: clamp(4.5rem, 8vw, 9rem) clamp(1rem, 7vw, 13.6875rem);
  background: #eef1e8;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .content-block__inner {
  width: min(80.625rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .content-block__h2 {
  margin: 0;
  color: var(--home-text-display);
  font-family: var(--home-display-font);
  font-size: clamp(1.8rem, 3.2vw, 2.49rem);
  font-weight: 400;
  line-height: 1.1;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .content-block__text {
  margin: 1rem 0 0;
  color: var(--home-text-strong);
  font-family: var(--home-body-font);
  font-size: 1rem;
  line-height: 1.6;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .content-block__accordions {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .accordion__item {
  border: 2px solid rgba(58, 64, 54, 0.8);
  border-radius: 1.5rem;
  background: transparent;
  overflow: hidden;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .accordion__question {
  padding: 1.5rem 1.5rem;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .accordion__question-text {
  color: var(--home-text-display);
  font-family: var(--home-display-font);
  font-size: clamp(1.25rem, 2vw, 1.73rem);
  font-weight: 400;
  line-height: 1.1;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .accordion__icon {
  color: var(--home-text-display);
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .accordion__answer-text {
  padding: 0 1.5rem 1.5rem;
  color: var(--home-text-strong);
  font-family: var(--home-body-font);
  line-height: 1.6;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .content-block__image,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .content-block__divider,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .content-block__divider-rule,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .content-block__raw {
  display: none;
}

/* Section 8: testimonials */
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) {
  max-width: 100%;
  margin: 0;
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 7vw, 13.6875rem);
  background: #20231f;
  color: #fff;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .content-block__inner {
  width: min(80.625rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .content-block__h2 {
  margin: 0;
  text-align: center;
  color: #fff;
  font-family: var(--home-display-font);
  font-size: clamp(1.9rem, 3.4vw, 2.99rem);
  font-weight: 400;
  line-height: 1.1;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .content-block__accordions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.875rem;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .accordion__item {
  border: 0;
  background: transparent;
  text-align: center;
  padding: 0.5rem 0;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .accordion__question {
  padding: 0;
  justify-content: center;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .accordion__question-text {
  color: #fff;
  font-family: var(--home-body-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .accordion__icon,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .accordion__answer,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .content-block__text,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .content-block__image,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .content-block__divider,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .content-block__divider-rule,
.home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .content-block__raw {
  display: none;
}

/* Final CTA split: schedule section */
.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today {
  max-width: 100%;
  margin: 0;
  padding: 96px 0;
  background: #20231f;
  color: #d8dcd2;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__inner {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 630px));
  column-gap: 30px;
  row-gap: 0;
  align-items: start;
  justify-content: center;
  padding-inline: max(1rem, calc((100vw - 1290px) / 2));
  box-sizing: border-box;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .home-final-cta-copy-col {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: min(630px, 100%);
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__h2 {
  margin: 0;
  width: min(628px, 100%);
  color: #fff;
  font-family: var(--home-display-font);
  font-size: clamp(2.1rem, 3.2vw, 2.986rem);
  font-weight: 400;
  line-height: 1.1;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__h2::before {
  content: "Available When You Need Us";
  display: flex;
  width: fit-content;
  align-items: center;
  padding: 8px 8px 8px 24px;
  margin-bottom: 8px;
  border: 1px solid #d8dcd2;
  border-radius: 8px;
  color: #fff;
  font-family: var(--home-body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  background-image: radial-gradient(circle at 12px 50%, #d8dcd2 4px, transparent 4px);
  background-repeat: no-repeat;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__text {
  margin: 0;
  width: min(630px, 100%);
  color: #d8dcd2;
  font-family: var(--home-body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
  transition: max-height 360ms ease;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__text p {
  margin: 0;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__text.is-collapsed-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.35rem;
  background: linear-gradient(180deg, rgba(32, 35, 31, 0) 0%, rgba(32, 35, 31, 1) 100%);
  pointer-events: none;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .home-section-show-more {
  margin-top: 0;
  align-items: flex-start;
  text-align: left;
  color: #fff;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .home-section-show-more::after {
  width: auto;
  text-align: left;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .home-final-cta-phone {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 0;
  padding: 24px 32px;
  border-radius: 1rem;
  border: 1px solid #ddebcb;
  color: #ddebcb;
  text-decoration: none;
  font-family: var(--home-body-font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.3;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .home-final-cta-phone-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: #ddebcb;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__image {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin: 0;
  width: 100%;
  height: clamp(25rem, 38vw, 500px);
  object-fit: cover;
  object-position: center top;
  border-radius: 2rem;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__inner > .h3,
.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__inner > .h4,
.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__inner > .h5,
.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__inner > .h6,
.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__inner > h3,
.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__inner > h4,
.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__inner > h5,
.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__inner > h6 {
  display: none;
}

.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__divider,
.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__divider-rule,
.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__raw,
.home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__accordions {
  display: none;
}

@media (max-width: 991px) {
  .home-figma-hero,
  .home .home-figma-hero {
    --hero-frame-left: 5%;
    --hero-frame-width: 90%;
    --hero-frame-top: 16%;
    --hero-frame-height: 84%;
    --hero-card-width: clamp(30rem, 82vw, 46rem);
    --hero-card-safe-top-ratio: 0.22;
    --hero-card-inset-x: clamp(1rem, 3.2vw, 2.25rem);
    --hero-card-inset-top: clamp(0.625rem, 1.8vw, 1.125rem);
    --hero-card-inset-bottom: clamp(0.625rem, 1.9vw, 1.25rem);
    --hero-content-safe-nudge-y: clamp(0.7rem, 1.6vw, 1.1rem);
    height: clamp(36rem, 82vw, 52rem);
  }

  .home-figma-hero__surface {
    width: var(--hero-frame-width);
    height: var(--hero-frame-height);
    left: var(--hero-frame-left);
    top: var(--hero-frame-top);
    border-radius: clamp(1.5rem, 3vw, 2.5rem);
  }

  .home-figma-hero__team-image {
    width: 72%;
    height: 92%;
    left: 19%;
    top: 8%;
    object-fit: contain;
    object-position: center bottom;
  }

  .home-figma-hero__card-shape {
    height: calc(100% + 10px);
  }

  .home-figma-hero__content {
    bottom: calc(var(--hero-card-bottom) + 0.35rem);
    gap: 1.25rem;
  }

  .home-figma-hero__title {
    font-size: clamp(1.8rem, 4.6vw, 2.6rem);
    line-height: 1.08;
  }

  .home-figma-hero__cta {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .home-figma-intro__content {
    width: calc(100% - 2rem);
    padding-top: 4.5rem;
  }

  .home-figma-intro__video-stage {
    height: auto;
  }

  .home-figma-intro__video-shell {
    width: calc(100% - 2rem);
    padding-top: 1.75rem;
    padding-bottom: 2rem;
  }

  .home-figma-intro__video {
    height: clamp(16rem, 56vw, 28rem);
    border-radius: 1.5rem;
  }

  .home .content-page-h1-section {
    padding: clamp(3rem, 7vw, 4.5rem) clamp(1rem, 5vw, 2rem);
  }

  .home .content-page-h1-section .content-block__inner {
    width: min(100%, 48rem);
    min-height: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home .content-page-h1-section .content-block__text {
    margin: 0;
    padding: 0;
  }

  .home .content-page-h1-section .home-h1-copy-col {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0;
    width: 100%;
  }

  .home .content-page-h1-section .content-block__image,
  .home .content-page-h1-section .content-block__h2.h1,
  .home .content-page-h1-section .content-block__text,
  .home .content-page-h1-section .home-h1-show-more {
    grid-column: 1;
    grid-row: auto;
    max-width: 100%;
    margin-left: 0;
  }

  .home .content-page-h1-section .content-block__image {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: clamp(22rem, 78vw, 34rem);
  }

  .home .content-page-h1-section .content-block__h2.h1 {
    font-size: clamp(1.9rem, 5.6vw, 2.9rem);
  }

  .home .content-page-h1-section .home-h1-show-more {
    margin-top: 0.125rem;
  }

  .home .content-page-h1-section + .content-block.content-block--home {
    padding-inline: clamp(1rem, 5vw, 2rem);
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(2) {
    padding-inline: clamp(1rem, 5vw, 2rem);
    padding-bottom: 4.5rem;
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) {
    padding-inline: clamp(1rem, 5vw, 2rem);
    padding-block: 4.5rem;
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__inner {
    grid-template-columns: 1fr;
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(3) .content-block__image {
    order: 0;
    height: clamp(20rem, 58vw, 29rem);
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4) {
    padding-inline: clamp(1rem, 5vw, 2rem);
    padding-bottom: 7rem;
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .content-block__inner,
  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .content-block__accordions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .accordion__item {
    min-height: 18rem;
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(6),
  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7),
  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8),
  .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today {
    padding-inline: clamp(1rem, 5vw, 2rem);
  }

  .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today {
    padding-top: clamp(6.75rem, 18vw, 8.5rem);
    padding-bottom: clamp(4.5rem, 11vw, 6rem);
    scroll-margin-top: clamp(5.8rem, 15vw, 7.8rem);
  }

  body.admin-bar .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today {
    scroll-margin-top: calc(clamp(5.8rem, 15vw, 7.8rem) + 3rem);
    padding-top: clamp(7.25rem, 20vw, 9.5rem);
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(7) .content-block__inner,
  .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__inner {
    grid-template-columns: 1fr;
    row-gap: clamp(1.5rem, 4vw, 2rem);
  }

  .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__inner {
    width: min(1290px, 100%);
    padding: 0;
    align-items: start;
  }

  .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .home-final-cta-copy-col {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: none;
    gap: clamp(1rem, 3vw, 1.25rem);
  }

  .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .home-final-cta-phone {
    width: 100%;
    justify-content: center;
    min-height: 58px;
    margin-top: 0.125rem;
    margin-bottom: clamp(0.65rem, 2.2vw, 1rem);
    padding: 18px 22px;
    font-size: clamp(1.05rem, 2.6vw, 1.2rem);
    letter-spacing: 0.03em;
  }

  .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__image {
    grid-column: 1;
    grid-row: 2;
    margin-top: clamp(0.25rem, 1.5vw, 0.75rem);
    height: clamp(19rem, 62vw, 29rem);
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(8) .content-block__accordions {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .home-figma-hero,
  .home .home-figma-hero {
    --hero-frame-left: 0.5rem;
    --hero-frame-width: calc(100% - 1rem);
    --hero-frame-top: 0.5rem;
    --hero-frame-height: calc(100% - 0.75rem);
    --hero-card-width: min(30rem, calc(100% - 1rem));
    --hero-card-safe-top-ratio: 0.22;
    --hero-card-inset-x: clamp(0.875rem, 4.5vw, 1.5rem);
    --hero-card-inset-top: 0.625rem;
    --hero-card-inset-bottom: 0.75rem;
    height: clamp(25rem, 128vw, 34rem);
  }

  .home-figma-hero__surface {
    width: var(--hero-frame-width);
    height: var(--hero-frame-height);
    left: var(--hero-frame-left);
    top: var(--hero-frame-top);
    border-radius: 1.125rem;
  }

  .home-figma-hero__content {
    gap: 1rem;
  }

  .home-figma-hero__badge {
    font-size: 0.75rem;
  }

  .home-figma-hero__title {
    font-size: clamp(1.7rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  .home-figma-hero__cta {
    padding: 0.95rem 1.35rem;
    font-size: 0.95rem;
  }

  .home-figma-intro__content {
    gap: 1rem;
    padding-top: 3rem;
  }

  .home-figma-intro__title {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
    line-height: 1.04;
  }

  .home-figma-intro__text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .home-figma-intro__video-shell {
    width: calc(100% - 1rem);
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
  }

  .home-figma-intro__video {
    height: clamp(13rem, 58vw, 20rem);
    border-radius: 1.125rem;
  }

  .home .content-page-h1-section {
    min-height: auto;
    padding: 2.75rem 1rem;
  }

  .home .content-page-h1-section .content-block__inner {
    margin: 0;
  }

  .home .content-page-h1-section .content-block__h2.h1 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    line-height: 1.03;
  }

  .home .content-page-h1-section .content-block__h2.h1::before {
    font-size: 0.75rem;
    padding-left: 1.375rem;
    background-image: radial-gradient(circle at 0.69rem 50%, #d8dcd2 0.22rem, transparent 0.25rem);
  }

  .home .content-page-h1-section .content-block__image {
    height: clamp(18rem, 88vw, 27rem);
    border-radius: 1.25rem;
  }

  .home .content-page-h1-section .content-block__text a {
    width: auto;
    margin-top: 1rem;
  }

  .home .content-page-h1-section + .content-block.content-block--home {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(4)::after {
    bottom: -5.5rem;
  }

  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .content-block__inner,
  .home .content-page-h1-section ~ .content-block.content-block--home:nth-of-type(5) .content-block__accordions {
    grid-template-columns: 1fr;
  }
}

/* First semantic H2 trust band: lock to Figma spec */
.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band {
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #eef1e8;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band::after {
  content: none;
}

.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__inner {
  width: min(1290px, 100%);
  margin: 20px auto 0;
  padding: 40px 0 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__inner::before {
  content: "For When Life Changes";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 8px;
  border: 1px solid #a9b99a;
  border-radius: 8px;
  color: #20231f;
  font-family: var(--home-body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0 auto;
  position: relative;
  gap: 8px;
  background-image: radial-gradient(circle at 12px 50%, #a9b99a 4px, transparent 4px);
  background-repeat: no-repeat;
  padding-left: 24px;
}

.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__inner::after {
  content: none;
}

.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__divider,
.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__divider-rule,
.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__raw,
.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__image {
  display: none;
}

.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__h2 {
  order: 2;
  display: block;
  width: min(630px, 100%);
  margin: 8px auto 0;
  color: #20231f;
  font-family: var(--home-display-font);
  font-size: 47.78px;
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
}

.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__text {
  order: 3;
  display: block;
  width: min(630px, 100%);
  margin: 24px auto 0;
  color: #20231f;
  font-family: var(--home-body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__text p {
  display: block;
  margin: 0;
}

.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .home-band-read-more {
  order: 4;
  align-self: center;
  margin-top: 24px;
  width: auto;
  min-height: 0;
  height: auto;
  padding: 24px 32px;
  border-radius: 16px;
  border: 1px solid #5f7f2e;
  background: transparent;
  color: #5f7f2e;
  font-family: var(--home-body-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 1px;
}

.home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .home-band-read-more::after {
  content: "→";
  font-size: 24px;
  line-height: 1;
}

.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart {
  max-width: 100%;
  margin: 0;
  padding: clamp(2.25rem, 4vw, 4rem) clamp(1rem, 7vw, 13.6875rem);
  background: #eef1e8;
  color: var(--home-text-strong);
  border-top: 0;
}

.home .content-block--injected[data-injected="services-video-grid"] {
  background: #eef1e8;
}

.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .content-block__inner {
  width: min(96rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .content-block__h2 {
  width: min(39.375rem, 100%);
  margin: 0;
  color: #4e554c;
  font-family: var(--home-display-font);
  font-size: clamp(1.9rem, 3.4vw, 2.99rem);
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  text-wrap: balance;
}

.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .content-block__divider,
.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .content-block__divider-rule {
  display: none;
}

.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .content-block__text {
  width: min(39.375rem, 100%);
  margin: 0;
  color: #4a5347;
  font-family: var(--home-body-font);
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .content-block__text p {
  margin: 0;
}

.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .content-block__text.is-collapsed-narrative::after {
  display: none;
}

.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .home-section-show-more {
  display: none;
}

.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .content-block__accordions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  width: 100%;
}

.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .accordion__item {
  min-height: clamp(20rem, 36vw, 28rem);
  border: 0;
  background: linear-gradient(180deg, rgba(32, 35, 31, 0.05) 0%, rgba(32, 35, 31, 0.76) 78%), #343a31;
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  align-items: flex-end;
}

.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .accordion__question {
  padding: 0;
  align-items: flex-end;
}

.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .accordion__question-text {
  margin: 0;
  color: #eef1e8;
  font-family: var(--home-display-font);
  font-size: clamp(1.5rem, 2.5vw, 2.48rem);
  font-weight: 400;
  line-height: 1.1;
}

.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .accordion__icon,
.home #what-sets-our-experienced-family-law-lawyers-in-dekalb-county-apart .accordion__answer {
  display: none;
}

.home .home-section-show-more {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5f7f2e;
  font-family: var(--home-body-font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 23.4px;
  text-align: center;
  cursor: pointer;
}

/* Hide footer contact CTA band on home to keep final section adjacent to footer */
.home .site-footer .footer__cta-band {
  display: none;
}

.home .home-section-show-more::after {
  content: "⌄";
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  transform-origin: center;
  transition: transform 220ms var(--ease-out-expo);
}

.home .home-section-show-more.is-expanded::after {
  transform: rotate(180deg);
}

.home #services-our-experienced-family-law-lawyers-in-dekalb-county-offer {
  display: none;
}

.home #services-our-experienced-family-law-lawyers-in-dekalb-county-offer::before {
  content: none;
}

.home #services-our-experienced-family-law-lawyers-in-dekalb-county-offer::after {
  content: none;
}

.home #areas-across-georgia-our-experienced-family-law-lawyers-in-dekalb-county-serve {
  position: relative;
  background: #20231f;
}

.home #areas-across-georgia-our-experienced-family-law-lawyers-in-dekalb-county-serve::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 76px;
  transform: translateY(-100%);
  background: #20231f;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  pointer-events: none;
  z-index: 1;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 144px 0;
  min-height: 772px;
  background: #eef1e8;
  color: #20231f;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have::before {
  content: none;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__inner {
  width: min(1728px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(0, 920px);
  column-gap: 30px;
  row-gap: 24px;
  align-items: start;
  justify-content: space-between;
  padding: 0 clamp(1rem, 7vw, 13.6875rem);
  box-sizing: border-box;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__h2 {
  margin: 0;
  width: min(690px, 100%);
  color: #4f554a;
  font-family: var(--home-display-font);
  font-size: clamp(2.1rem, 3vw, 2.488rem);
  font-weight: 400;
  line-height: 1.1;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__h2::before {
  content: "Available When You Need Us";
  display: flex;
  width: fit-content;
  align-items: center;
  padding: 8px 8px 8px 24px;
  margin-bottom: 8px;
  border: 1px solid #a9b99a;
  border-radius: 8px;
  color: #20231f;
  font-family: var(--home-body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  background-image: radial-gradient(circle at 12px 50%, #a9b99a 4px, transparent 4px);
  background-repeat: no-repeat;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__text {
  margin: 0;
  width: min(690px, 100%);
  color: #20231f;
  font-family: var(--home-body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
  transition: max-height 360ms ease;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__text p {
  margin: 0;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__text.is-collapsed-narrative::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.35rem;
  background: linear-gradient(180deg, rgba(238, 241, 232, 0) 0%, rgba(238, 241, 232, 1) 100%);
  pointer-events: none;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__text.is-collapsed-narrative {
  margin-bottom: -18px;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .home-section-show-more {
  margin-top: 0;
  align-items: flex-start;
  text-align: left;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__text.is-collapsed-narrative + .home-section-show-more {
  margin-top: 0;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .home-section-show-more::after {
  width: auto;
  text-align: left;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .home-two-col-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: start;
  gap: 24px;
  min-width: 0;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .home-two-col-left .content-block__h2,
.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .home-two-col-left .content-block__text {
  width: min(690px, 100%);
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__accordions {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 8px;
  margin: 0;
  width: 100%;
  max-width: 100%;
  justify-self: end;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__item {
  border: 3px solid #3a4036;
  border-radius: 24px;
  background: transparent;
  overflow: hidden;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__question {
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__question-text {
  margin: 0;
  color: #4f554a;
  font-family: var(--home-display-font);
  font-size: clamp(1.45rem, 1.8vw, 1.728rem);
  font-weight: 400;
  line-height: 1.1;
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__icon {
  position: relative;
  width: 30px;
  height: 30px;
  color: #4f554a;
  transform: none;
  flex: 0 0 30px;
  margin-left: 24px;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__icon svg {
  display: none;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__icon::before,
.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease-out-expo);
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__item.is-open .accordion__icon::after,
.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__question[aria-expanded="true"] .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__answer-text {
  padding: 0 32px 32px;
  color: #20231f;
  font-family: var(--home-body-font);
  font-size: 16px;
  line-height: 1.6;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have {
  --home-acc-h3: clamp(1.65rem, 2.35vw, 2.15rem);
  --home-acc-h4: clamp(1.3rem, 1.8vw, 1.73rem);
  --home-acc-h5: clamp(1.12rem, 1.4vw, 1.35rem);
  --home-acc-h6: 1rem;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__answer-text :is(h3, .h3) {
  margin: 0.75rem 0 0.5rem;
  color: #20231f;
  font-family: var(--home-display-font);
  font-size: var(--home-acc-h3);
  line-height: 1.2;
  font-weight: 400;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__answer-text :is(h4, .h4) {
  margin: 0.75rem 0 0.5rem;
  color: #20231f;
  font-family: var(--home-display-font);
  font-size: var(--home-acc-h4);
  line-height: 1.25;
  font-weight: 400;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__answer-text :is(h5, .h5) {
  margin: 0.65rem 0 0.45rem;
  color: #20231f;
  font-family: var(--home-display-font);
  font-size: var(--home-acc-h5);
  line-height: 1.3;
  font-weight: 500;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__answer-text :is(h6, .h6) {
  margin: 0.6rem 0 0.4rem;
  color: #20231f;
  font-family: var(--home-display-font);
  font-size: var(--home-acc-h6);
  line-height: 1.35;
  font-weight: 600;
}

.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__image,
.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__divider,
.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__divider-rule,
.home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__raw {
  display: none;
}

@media (max-width: 991px) {
  .home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have {
    padding: 96px clamp(1rem, 5vw, 2rem);
    min-height: 0;
  }

  .home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__inner {
    grid-template-columns: 1fr;
    row-gap: 24px;
    width: min(1290px, 100%);
    padding-left: 0;
  }

  .home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .content-block__accordions {
    grid-column: 1;
    grid-row: auto;
  }

  .home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .home-two-col-left {
    grid-column: 1;
    grid-row: auto;
    gap: 20px;
  }

  .home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__question {
    padding: 26px 20px;
  }

  .home #the-earlier-you-speak-with-our-experienced-family-law-lawyers-in-dekalb-county-the-more-options-you-may-have .accordion__answer-text {
    padding: 0 20px 20px;
  }
}

@media (max-width: 991px) {
  .home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__inner {
    width: min(100%, 48rem);
    margin-top: 16px;
    padding: 36px 16px 96px;
  }

  .home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.12;
  }
}

@media (max-width: 640px) {
  .home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band {
    min-height: 0;
  }

  .home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__inner {
    margin-top: 10px;
    padding: 28px 12px 86px;
  }

  .home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .content-block__h2 {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
    line-height: 1.1;
  }

  .home .content-page-h1-section ~ .content-block.content-block--home.home-first-h2-band .home-band-read-more {
    padding: 18px 24px;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__inner {
    row-gap: 1.25rem;
  }

  .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today {
    scroll-margin-top: clamp(5.4rem, 18vw, 7rem);
  }

  body.admin-bar .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today {
    scroll-margin-top: calc(clamp(5.4rem, 18vw, 7rem) + 3rem);
  }

  .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .home-final-cta-copy-col {
    gap: 0.9rem;
  }

  .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .home-final-cta-phone {
    min-height: 54px;
    padding: 16px 20px;
    font-size: 1.02rem;
  }

  .home #schedule-a-consultation-with-our-experienced-family-law-lawyers-in-dekalb-county-today .content-block__image {
    height: clamp(17rem, 70vw, 24rem);
  }
}

/* Homepage-wide semantic heading hierarchy guardrail */
.home {
  --home-h3-size: clamp(1.6rem, 2.35vw, 2.1rem);
  --home-h4-size: clamp(1.24rem, 1.75vw, 1.62rem);
  --home-h5-size: clamp(1.08rem, 1.35vw, 1.32rem);
  --home-h6-size: clamp(1rem, 1.2vw, 1.14rem);
}

.home .content-block--home .content-block__text :is(h3, .h3),
.home .content-block--home .accordion__answer-text :is(h3, .h3),
.home .content-block--home > :is(h3, .h3),
.home .home-band-modal__body :is(h3, .h3),
.home .home-band-modal__accordions .accordion__answer-text :is(h3, .h3) {
  font-size: var(--home-h3-size) !important;
  line-height: 1.2 !important;
}

.home .content-block--home .content-block__text :is(h4, .h4),
.home .content-block--home .accordion__answer-text :is(h4, .h4),
.home .content-block--home > :is(h4, .h4),
.home .home-band-modal__body :is(h4, .h4),
.home .home-band-modal__accordions .accordion__answer-text :is(h4, .h4) {
  font-size: var(--home-h4-size) !important;
  line-height: 1.25 !important;
}

.home .content-block--home .content-block__text :is(h5, .h5),
.home .content-block--home .accordion__answer-text :is(h5, .h5),
.home .content-block--home > :is(h5, .h5),
.home .home-band-modal__body :is(h5, .h5),
.home .home-band-modal__accordions .accordion__answer-text :is(h5, .h5) {
  font-size: var(--home-h5-size) !important;
  line-height: 1.3 !important;
}

.home .content-block--home .content-block__text :is(h6, .h6),
.home .content-block--home .accordion__answer-text :is(h6, .h6),
.home .content-block--home > :is(h6, .h6),
.home .home-band-modal__body :is(h6, .h6),
.home .home-band-modal__accordions .accordion__answer-text :is(h6, .h6) {
  font-size: var(--home-h6-size) !important;
  line-height: 1.35 !important;
}

/* Homepage-wide rich-text link visibility guardrail */
.home :is(
  .content-block--home .content-block__text,
  .content-block--home .accordion__answer-text,
  .home-band-modal__body,
  .home-band-modal__accordions .accordion__answer-text,
  .expect-cards-modal__body,
  .expect-cards-modal__accordions .accordion__answer-text
) a[href] {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  text-decoration-skip-ink: auto;
}

.home :is(
  .content-block--home .content-block__text,
  .content-block--home .accordion__answer-text,
  .home-band-modal__body,
  .home-band-modal__accordions .accordion__answer-text,
  .expect-cards-modal__body,
  .expect-cards-modal__accordions .accordion__answer-text
) a[href]:hover {
  text-decoration-thickness: 0.11em;
}

/* Mobile hero stabilization: switch to flow layout so card content can grow safely. */
@media (max-width: 880px) {
  .home {
    --home-mobile-header-offset: clamp(74px, 16vw, 96px);
    --home-mobile-hero-image-height: clamp(18.5rem, 88vw, 30rem);
  }

  .home-figma-hero,
  .home .home-figma-hero {
    margin-top: var(--home-mobile-header-offset);
    height: auto !important;
    min-height: 0;
    padding: 0;
    background: #fafaf6;
    background-image: var(--home-hero-fallback-image);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% var(--home-mobile-hero-image-height);
    overflow: visible;
  }

  .home-figma-hero__surface,
  .home-figma-hero__card-wrap {
    display: none;
  }

  .home-figma-hero__team-image {
    position: relative !important;
    display: block;
    width: 100% !important;
    height: var(--home-mobile-hero-image-height) !important;
    left: auto !important;
    top: auto !important;
    margin: 0;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    z-index: 1;
  }

  .home-figma-hero__content {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: calc(100% - 1rem) !important;
    max-width: none;
    margin: 0.25rem auto 0;
    padding: clamp(0.82rem, 3vw, 1.02rem);
    border-radius: 1.25rem;
    background: #fafaf6;
    gap: 0.65rem;
    box-sizing: border-box;
    transform: none !important;
    z-index: 2;
  }

  .home-figma-hero__badge {
    font-size: 0.75rem;
  }

  .home-figma-hero__title {
    font-size: clamp(1.9rem, 8.4vw, 2.6rem) !important;
    line-height: 1.12;
  }

  .home-figma-hero__cta {
    padding: 0.95rem 1.25rem;
    font-size: 0.95rem;
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .home {
    --home-mobile-hero-image-height: clamp(17rem, 108vw, 24rem);
  }

  .home-figma-hero__team-image {
    height: var(--home-mobile-hero-image-height) !important;
  }

  .home-figma-hero__content {
    margin-top: 0.25rem;
    padding: 0.8rem;
  }

  .home-figma-hero__title {
    font-size: clamp(1.7rem, 8.6vw, 2.2rem) !important;
    line-height: 1.12;
  }
}

/* Trust-page visual alignment overrides */
body.home {
  --trust-bg: #eef1f5;
  --trust-bg-soft: #ffffff;
  --trust-panel: #102b46;
  --trust-card: #ffffff;
  --trust-border: #c6d0dc;
  --trust-text: #102b46;
  --trust-text-muted: #4c5a6e;
  --trust-accent: #be1e2d;
  --trust-accent-soft: #be1e2d;
  --trust-panel-text: #c6d0dc;
  --trust-input-border: #c6d0dc;
  --trust-input-bg: #ffffff;
  --trust-serif: "Instrument Serif", "Playfair Display", Georgia, serif;
  --trust-sans: "Instrument Sans", "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.home,
body.home #main-content {
  background: var(--trust-bg);
  color: var(--trust-text);
}

body.home .site-header .site-header__cta,
body.home .site-header .site-header__drawer-cta {
  background: var(--trust-accent) !important;
  color: #ffffff !important;
}

body.home .site-header .site-header__cta:hover,
body.home .site-header .site-header__cta:focus-visible,
body.home .site-header .site-header__drawer-cta:hover,
body.home .site-header .site-header__drawer-cta:focus-visible {
  background: #9a1825 !important;
  color: #ffffff !important;
}

body.home .home-hero {
  background: linear-gradient(180deg, rgba(16, 43, 70, 0.96) 0%, rgba(16, 43, 70, 0.88) 55%, rgba(16, 43, 70, 0.94) 100%);
  border-bottom: 0;
}

body.home .home-hero__overlay {
  background: linear-gradient(180deg, rgba(16, 43, 70, 0.36) 0%, rgba(16, 43, 70, 0.56) 44%, rgba(16, 43, 70, 0.84) 100%);
}

body.home .home-hero__eyebrow {
  color: var(--trust-accent-soft);
  font-family: var(--trust-sans);
}

body.home .home-hero__title {
  font-family: var(--trust-serif);
  letter-spacing: -0.01em;
}

body.home .home-hero__title-script {
  color: var(--trust-accent-soft);
  font-family: var(--trust-serif);
  font-style: italic;
}

body.home .home-hero__intro {
  color: var(--trust-panel-text);
  font-family: var(--trust-sans);
}

body.home .home-hero__cta {
  background: var(--trust-accent);
  color: #fffdf8;
  font-family: var(--trust-sans);
  letter-spacing: 0.08em;
  border-radius: 2px;
}

body.home .home-hero__cta:hover,
body.home .home-hero__cta:focus-visible {
  background: #9a1825;
  filter: none;
}

body.home .split-accordion {
  background: var(--trust-bg);
  color: var(--trust-text);
  border-bottom: 1px solid var(--trust-border);
}

body.home .split-accordion--resources,
body.home #government-advocacy-guidance {
  border-top: 0 !important;
}

body.home .split-accordion__title,
body.home .split-accordion__question {
  color: var(--trust-text);
  font-family: var(--trust-serif);
  letter-spacing: -0.01em;
}

body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__title {
  max-width: 18ch;
  margin: 0 0 20px;
}

body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__inner {
  width: min(1472px, calc(100% - (var(--section-padding-x) * 2)));
}

body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__lead {
  align-items: flex-end;
  gap: clamp(20px, 3vw, 48px);
  margin-bottom: 22px;
}

body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__section-index {
  color: transparent;
  font-family: var(--trust-serif);
  font-size: clamp(96px, 11vw, 178px);
  line-height: 0.72;
  letter-spacing: 0;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--trust-accent-soft);
}

body.home #the-alexandra-lozano-situation-in-plain-terms {
  border-bottom: 0;
}

body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__eyebrow {
  color: var(--trust-accent);
  font-family: var(--trust-sans);
}

body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__copy-notice {
  background: var(--trust-bg-soft);
  border: 1px solid var(--trust-border);
  border-left: 4px solid var(--trust-accent);
  padding: clamp(14px, 1.9vw, 20px) clamp(14px, 2.2vw, 24px);
  width: 100%;
  color: var(--trust-text-muted);
  font-family: var(--trust-sans);
  font-size: 0.98rem;
}

body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__copy-notice strong {
  color: var(--trust-text);
}

body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__copy {
  gap: 16px;
}

body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__copy-paragraph {
  color: var(--trust-text-muted);
}

body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__more-toggle {
  color: var(--trust-accent);
  font-family: var(--trust-sans);
}

body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__copy-block.is-collapsed .split-accordion__copy-paragraph--collapsible::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__copy-paragraph--collapsible {
  -webkit-mask-image: none !important;
  mask-image: none !important;
  filter: none !important;
}

body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__text {
  top: 96px;
}

@media (max-width: 1024px) {
  body.home #the-alexandra-lozano-situation-in-plain-terms .split-accordion__inner {
    width: min(1472px, calc(100% - 32px));
  }
}

body.home .split-accordion__copy,
body.home .split-accordion__answer-text {
  color: var(--trust-text-muted);
  font-family: var(--trust-sans);
}

body.home .split-accordion__item {
  border-bottom-color: #d8d1c0;
}

body.home .split-accordion__icon {
  color: var(--trust-accent);
}

body.home .horizontal-scroll {
  background: var(--trust-bg-soft);
  border-bottom: 1px solid var(--trust-border);
}

body.home .horizontal-scroll--steps {
  border-bottom: 0;
}

body.home .horizontal-scroll--news {
  border-bottom: 0;
}

body.home .horizontal-scroll__title {
  color: var(--trust-text);
  font-family: var(--trust-serif);
  letter-spacing: -0.01em;
}

body.home .horizontal-scroll__text,
body.home .horizontal-scroll__card-text {
  color: var(--trust-text-muted);
  font-family: var(--trust-sans);
}

body.home .horizontal-scroll__all-link,
body.home .horizontal-scroll__card-label {
  color: var(--trust-accent);
  font-family: var(--trust-sans);
}

body.home .horizontal-scroll__card {
  background: var(--trust-card);
  border: 1.5px solid var(--trust-border);
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

body.home .horizontal-scroll__card:hover,
body.home .horizontal-scroll__card:focus-visible {
  box-shadow: 7px 7px 0 var(--trust-accent);
  transform: translate(-2px, -2px);
  border-color: var(--trust-accent);
}

body.home .horizontal-scroll__card-title {
  color: var(--trust-text);
  font-family: var(--trust-serif);
}

body.home .horizontal-scroll--news .horizontal-scroll__card--news {
  border: 1px solid var(--trust-border);
  border-radius: 3px;
  box-shadow: none;
  transform: none;
}

body.home .horizontal-scroll--news .horizontal-scroll__card--news:hover,
body.home .horizontal-scroll--news .horizontal-scroll__card--news:focus-visible {
  box-shadow: none;
  transform: none;
  border-color: var(--trust-border);
}

body.home .horizontal-scroll--news .horizontal-scroll__card-title--news {
  color: var(--trust-text);
  font-family: var(--trust-serif);
  font-size: 19px;
  line-height: 25.65px;
  letter-spacing: 0;
  font-weight: 400;
}

body.home .horizontal-scroll--news .horizontal-scroll__news-source-label {
  color: var(--trust-accent);
  font-family: var(--trust-sans);
  font-size: 11.5px;
  line-height: 18.4px;
  letter-spacing: 1.15px;
  font-weight: 700;
  text-transform: uppercase;
}

body.home .kinetic-cards {
  background: var(--trust-panel);
  border-bottom: 1px solid var(--trust-border);
}

body.home .kinetic-cards__title,
body.home .kinetic-cards__card-title,
body.home .kinetic-cards__modal-title {
  font-family: var(--trust-serif);
}

body.home .kinetic-cards__title,
body.home .kinetic-cards__intro,
body.home .kinetic-cards__card-title,
body.home .kinetic-cards__modal-title,
body.home .kinetic-cards__modal-subtitle {
  color: #fffdf8;
}

body.home .kinetic-cards__card {
  background: rgba(255, 253, 248, 0.04);
  border-color: rgba(255, 253, 248, 0.16);
  border-radius: 12px;
}

body.home .kinetic-cards__card-stat,
body.home .kinetic-cards__card-cta,
body.home .kinetic-cards__modal-stat {
  color: var(--trust-accent-soft);
}

body.home .kinetic-cards__card-desc,
body.home .kinetic-cards__modal-desc {
  color: #a8b0bf;
  opacity: 1;
  font-family: var(--trust-sans);
}

body.home .kinetic-cards__modal-panel {
  background: var(--trust-bg);
  border: 1.5px solid var(--trust-border);
  color: var(--trust-text);
}

body.home .kinetic-cards__modal-title,
body.home .kinetic-cards__modal-subtitle {
  color: var(--trust-text);
}

body.home .kinetic-cards--review {
  background: var(--trust-bg);
  border-top: 0;
}

body.home .kinetic-cards--review .kinetic-cards__title,
body.home .kinetic-cards--review .kinetic-cards__review-title,
body.home .kinetic-cards--review .kinetic-cards__review-panel-title,
body.home .kinetic-cards--review .kinetic-cards__review-tab-title {
  color: var(--trust-text);
}

body.home .kinetic-cards--review .kinetic-cards__review-intro,
body.home .kinetic-cards--review .kinetic-cards__review-panel-text {
  color: var(--trust-text-muted);
  font-family: var(--trust-sans);
}

body.home .kinetic-cards--review .kinetic-cards__review-tab {
  border-color: #d5cebe;
}

body.home .kinetic-cards--review .kinetic-cards__review-tab.is-active {
  background: var(--trust-panel);
  border-color: var(--trust-panel);
}

body.home .kinetic-cards--review .kinetic-cards__review-tab.is-active .kinetic-cards__review-tab-title {
  color: #fffdf8;
}

body.home .kinetic-cards--review .kinetic-cards__review-tab-num,
body.home .kinetic-cards--review .kinetic-cards__review-step-meta,
body.home .kinetic-cards--review .kinetic-cards__review-kicker {
  color: var(--trust-accent);
}

body.home .kinetic-cards--review .kinetic-cards__review-tab.is-active .kinetic-cards__review-tab-num {
  color: var(--trust-accent-soft);
}

body.home .kinetic-cards--review .kinetic-cards__review-panel {
  background: var(--trust-card);
  border-color: var(--trust-border);
  box-shadow: 8px 8px 0 #ddd6c7;
}

body.home .team-cards {
  background: var(--trust-bg);
  border-bottom: 0;
}

body.home .team-cards__bg {
  background: transparent;
}

body.home .team-cards__inner {
  width: min(1380px, calc(100% - clamp(40px, 8vw, 144px)));
}

body.home .team-cards__header {
  margin-bottom: clamp(30px, 4vw, 44px);
}

body.home .team-cards__header--roots {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: start;
  text-align: left;
}

body.home .team-cards__index {
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--trust-accent);
  font-family: var(--trust-serif);
  font-size: clamp(96px, 11vw, 178px);
  line-height: 0.72;
  letter-spacing: 0;
}

body.home .team-cards__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 12px;
  color: var(--trust-accent);
  font-family: var(--trust-sans);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}

body.home .team-cards__kicker::before {
  content: "";
  width: 34px;
  height: 1.5px;
  background: currentColor;
}

body.home .team-cards__title,
body.home .team-cards__card-name,
body.home .team-cards__modal-name {
  color: var(--trust-text);
  font-family: var(--trust-serif);
}

body.home .team-cards__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 3.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

body.home .team-cards__title::after {
  display: none;
}

body.home .team-cards__intro,
body.home .team-cards__card-bio,
body.home .team-cards__modal-bio {
  color: var(--trust-text-muted);
  font-family: var(--trust-sans);
  opacity: 1;
}

body.home .team-cards__intro {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.65;
  color: #565e6d;
}

body.home .team-cards__grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

body.home .team-cards__card,
body.home .team-cards__modal-panel {
  background: var(--trust-card);
  border: 1.5px solid var(--trust-border);
  border-radius: 12px;
  box-shadow: none;
}

body.home .team-cards__card {
  border-radius: 200px 200px 14px 14px;
  overflow: hidden;
  padding: 0;
  cursor: default;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

body.home .team-cards__card:hover {
  transform: translate(-2px, -2px);
  border-color: var(--trust-border);
  box-shadow: 8px 8px 0 var(--trust-accent);
}

body.home .team-cards__card-media {
  width: calc(100% - 18px);
  margin: 9px auto 0;
  height: 300px;
  aspect-ratio: auto;
  border: 0;
  border-radius: 160px 160px 6px 6px;
  background: #d6d0c2;
}

body.home .team-cards__card-image {
  border-radius: 160px 160px 6px 6px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
}

body.home .team-cards__card-image.team-cards__card-image--placeholder {
  object-position: center 14%;
  transform: scale(1.52);
  transform-origin: center top;
}

body.home .team-cards__card:hover .team-cards__card-image {
  transform: scale(1.06);
}

body.home .team-cards__card:hover .team-cards__card-image.team-cards__card-image--placeholder {
  transform: scale(1.58);
}

body.home .team-cards__card-body {
  padding: 16px 20px 20px;
  text-align: center;
}

body.home .team-cards__card-name {
  margin: 0;
  font-size: 21px;
  line-height: 1.1;
}

body.home .team-cards__card-bio,
body.home .team-cards__card-cta {
  display: none;
}

body.home .team-cards__card-role,
body.home .team-cards__modal-role,
body.home .team-cards__card-cta {
  color: var(--trust-accent);
}

body.home .team-cards__card-role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0 0;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
}

body.home .team-cards__card-role::before,
body.home .team-cards__card-role::after {
  content: "";
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

@media (max-width: 1260px) {
  body.home .team-cards__inner {
    width: min(1380px, calc(100% - clamp(40px, 8vw, 112px)));
  }

  body.home .team-cards__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  body.home .team-cards__header--roots {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.home .team-cards__index {
    font-size: clamp(74px, 14vw, 120px);
  }

  body.home .team-cards__title {
    font-size: clamp(32px, 7vw, 48px);
  }

  body.home .team-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.home .team-cards__inner {
    width: min(1380px, calc(100% - 40px));
  }

  body.home .team-cards__grid {
    grid-template-columns: 1fr;
  }
}

body.home .home-faq {
  background: var(--trust-bg);
  border-top: 0 !important;
  border-bottom: 0 !important;
}

body.home .home-faq__kicker {
  color: var(--trust-accent);
  font-family: var(--trust-sans);
}

body.home .home-faq__title,
body.home .home-faq__group-title {
  color: var(--trust-text);
  font-family: var(--trust-serif);
}

body.home .home-faq__intro {
  color: var(--trust-text-muted);
  font-family: var(--trust-sans);
}

body.home .home-faq__group,
body.home .home-faq__item {
  border-color: var(--trust-border);
}

body.home .home-faq__item {
  background: var(--trust-card);
}

body.home .home-faq__item[open] {
  border-color: var(--trust-accent);
  box-shadow: 5px 5px 0 rgba(190, 30, 45, 0.2);
}

body.home .home-faq__summary,
body.home .home-faq__question {
  color: var(--trust-text);
  font-family: var(--trust-sans);
}

body.home .home-faq__summary:hover {
  background: rgba(198, 208, 220, 0.28);
}

body.home .home-faq__icon {
  color: var(--trust-accent);
  border-color: var(--trust-accent);
}

body.home .home-faq__group-accent {
  background: var(--trust-accent);
}

body.home .home-faq__answer-inner {
  color: var(--trust-text-muted);
  font-family: var(--trust-sans);
}

body.home .home-editorial:not(.home-editorial--services) {
  background: var(--trust-bg);
  border-bottom: 1px solid var(--trust-border);
}

body.home .home-editorial:not(.home-editorial--services) .home-editorial__cards {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

body.home .home-editorial:not(.home-editorial--services) .home-editorial__card {
  border: 1.5px solid var(--trust-border);
  border-radius: 12px;
  min-height: 230px;
  background: var(--trust-panel);
}

body.home .home-editorial__title {
  color: var(--trust-text);
  font-family: var(--trust-serif);
  letter-spacing: -0.01em;
}

body.home .home-editorial__body-copy {
  color: var(--trust-text-muted);
  font-family: var(--trust-sans);
}

body.home .home-editorial:not(.home-editorial--services) .home-editorial__card-content h3 {
  color: #fffdf8;
  font-family: var(--trust-serif);
  letter-spacing: -0.01em;
}

body.home .home-editorial:not(.home-editorial--services) .home-editorial__card-content span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 248, 0.45);
  color: var(--trust-accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.home .home-editorial__toggle {
  color: var(--trust-accent);
}

body.home .home-editorial--services {
  background: var(--trust-panel);
  border-bottom: 1px solid var(--trust-border);
}

body.home .home-editorial--services .home-editorial__inner {
  width: min(1472px, calc(100% - (var(--section-padding-x) * 2)));
  max-width: none;
}

body.home .home-editorial--services .home-editorial__services-header {
  display: flex;
  align-items: flex-end;
  gap: clamp(20px, 3vw, 48px);
}

body.home .home-editorial--services .home-editorial__services-index {
  flex-shrink: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--trust-accent-soft);
  font-family: var(--trust-serif);
  font-size: clamp(96px, 11vw, 178px);
  line-height: 0.72;
}

body.home .home-editorial--services .home-editorial__services-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--trust-accent-soft);
  font-family: var(--trust-sans);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}

body.home .home-editorial--services .home-editorial__services-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

body.home .home-editorial--services .home-editorial__services-title,
body.home .home-editorial--services .home-editorial__title {
  margin-top: 12px;
  color: #fffdf8;
  font-family: var(--trust-serif);
  font-size: clamp(44px, 3.8vw, 60px);
  letter-spacing: -0.01em;
}

body.home .home-editorial--services .home-editorial__body {
  margin-top: 16px;
}

body.home .home-editorial--services .home-editorial__body-copy {
  color: #a8b0bf;
  font-family: var(--trust-sans);
  max-width: 760px;
}

body.home .home-editorial--services .home-editorial__cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 16px;
}

body.home .home-editorial--services .home-editorial__service-card {
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.04);
  padding: 24px;
  min-height: clamp(228px, 18vw, 274px);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.home .home-editorial--services .home-editorial__service-card:hover,
body.home .home-editorial--services .home-editorial__service-card:focus-visible {
  border-color: rgba(232, 144, 107, 0.55);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

body.home .home-editorial--services .home-editorial__service-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

body.home .home-editorial--services .home-editorial__service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(232, 144, 107, 0.5);
  color: var(--trust-accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.home .home-editorial--services .home-editorial__service-icon svg {
  width: 22px;
  height: 22px;
}

body.home .home-editorial--services .home-editorial__service-number {
  color: var(--trust-accent-soft);
  font-family: var(--trust-serif);
  font-size: clamp(21px, 1.3vw, 24px);
  line-height: 1;
}

body.home .home-editorial--services .home-editorial__service-title {
  margin: 0;
  color: #fffdf8;
  font-family: var(--trust-serif);
  font-size: clamp(28px, 1.9vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

body.home .home-editorial--services .home-editorial__service-desc {
  margin: 0;
  color: #a8b0bf;
  font-family: var(--trust-sans);
  font-size: clamp(14px, 0.86vw, 15.5px);
  line-height: 1.55;
  flex: 1;
}

body.home .home-editorial--services .home-editorial__service-cta {
  margin-top: auto;
  padding-top: 18px;
  color: var(--trust-accent-soft);
  font-family: var(--trust-sans);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
}

body.home .home-editorial--services .home-editorial__service-cta::after {
  content: " >";
}

body.home .home-editorial--services .home-editorial__service-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
}

body.home .home-editorial--services .home-editorial__service-modal[hidden] {
  display: none;
}

body.home .home-editorial--services .home-editorial__service-modal:not([hidden]) {
  display: flex;
}

body.home .home-editorial--services .home-editorial__service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 20, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home .home-editorial--services .home-editorial__service-modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 32px));
  background: var(--trust-card);
  border: 1.5px solid var(--trust-border);
  border-radius: 3px;
  box-shadow: 12px 12px 0 rgba(200, 69, 29, 0.55);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home .home-editorial--services .home-editorial__service-modal.is-open .home-editorial__service-modal-backdrop {
  opacity: 1;
}

body.home .home-editorial--services .home-editorial__service-modal.is-open .home-editorial__service-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.home .home-editorial--services .home-editorial__service-modal.is-closing .home-editorial__service-modal-panel {
  opacity: 0;
  transform: translateY(8px) scale(0.985);
}

body.home .home-editorial--services .home-editorial__service-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #c9c2b2;
  background: #fffdf8;
  color: var(--trust-text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

body.home .home-editorial--services .home-editorial__service-modal-content {
  padding: 34px 32px 30px;
}

body.home .home-editorial--services .home-editorial__service-modal-step {
  margin: 0 0 8px;
  color: var(--trust-accent);
  font-family: var(--trust-sans);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
}

body.home .home-editorial--services .home-editorial__service-modal-title {
  margin: 0 0 10px;
  color: var(--trust-text);
  font-family: var(--trust-serif);
  font-size: clamp(32px, 2.6vw, 42px);
  line-height: 1.1;
}

body.home .home-editorial--services .home-editorial__service-modal-desc {
  color: var(--trust-text-muted);
  font-family: var(--trust-sans);
  font-size: 16px;
  line-height: 1.65;
}

body.home .home-editorial--services .home-editorial__service-modal-desc p {
  margin: 0;
}

@media (max-width: 1400px) {
  body.home .home-editorial--services .home-editorial__cards {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 14px;
  }

  body.home .home-editorial--services .home-editorial__service-title {
    font-size: clamp(24px, 1.8vw, 34px);
  }
}

@media (max-width: 1200px) {
  body.home .home-editorial--services .home-editorial__cards {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

@media (max-width: 900px) {
  body.home .home-editorial--services .home-editorial__inner {
    width: min(1472px, calc(100% - 32px));
  }

  body.home .home-editorial--services .home-editorial__services-header {
    align-items: flex-start;
    gap: 16px;
  }

  body.home .home-editorial--services .home-editorial__services-index {
    font-size: clamp(72px, 20vw, 120px);
  }

  body.home .home-editorial--services .home-editorial__cards {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  body.home .home-editorial--services .home-editorial__service-title {
    font-size: clamp(22px, 4vw, 30px);
  }
}

@media (max-width: 640px) {
  body.home .home-editorial--services .home-editorial__cards {
    grid-template-columns: 1fr;
  }
}

body.home .home-contact {
  background: var(--trust-panel);
  border-top: 1px solid var(--trust-border);
  border-bottom: 0;
}

body.home .home-contact__kicker {
  color: var(--trust-accent);
  font-family: var(--trust-sans);
}

body.home .home-contact__title {
  color: var(--trust-card);
  font-family: var(--trust-serif);
  letter-spacing: 0;
}

body.home .home-contact__text,
body.home .home-contact__call-text,
body.home .home-contact__benefits li,
body.home .home-contact__fine-print,
body.home .home-contact__label,
body.home .home-contact input,
body.home .home-contact textarea,
body.home .home-contact select {
  font-family: var(--trust-sans);
}

body.home .home-contact__text,
body.home .home-contact__call-text,
body.home .home-contact__benefits li {
  color: var(--trust-panel-text);
}

body.home .home-contact__call-title {
  color: var(--trust-card);
  font-family: var(--trust-serif);
}

body.home .home-contact__form-shell {
  background: var(--trust-card);
  border: 0;
  box-shadow: 10px 10px 0 rgba(190, 30, 45, 0.35);
}

body.home .home-contact__form-title,
body.home .home-contact__label {
  color: var(--trust-text);
}

body.home .home-contact input,
body.home .home-contact textarea,
body.home .home-contact select {
  background: var(--trust-input-bg);
  color: var(--trust-text);
  border: 1px solid var(--trust-input-border);
}

body.home .home-contact input::placeholder,
body.home .home-contact textarea::placeholder {
  color: var(--trust-text-muted);
}

body.home .home-contact select {
  color: var(--trust-text-muted);
}

body.home .home-contact button {
  background: var(--trust-accent);
  border: 1px solid var(--trust-accent);
  color: var(--trust-card);
  font-family: var(--trust-sans);
  letter-spacing: 0;
  text-transform: none;
}

body.home .home-contact button:hover,
body.home .home-contact button:focus-visible {
  background: #9a1825;
  border-color: #9a1825;
}

body.home .home-contact {
  padding: 96px 64px;
}

body.home .home-contact__inner {
  width: min(1472px, calc(100% - 128px));
  margin: 0 auto;
  display: block !important;
}

body.home .home-contact__header {
  width: 720px;
  max-width: 100%;
  grid-column: 1 / -1 !important;
}

body.home .home-contact__content {
  margin-top: 44px;
  display: grid !important;
  grid-template-columns: minmax(360px, 619px) minmax(420px, 805px) !important;
  gap: 48px !important;
  align-items: start !important;
  grid-column: 1 / -1 !important;
}

body.home .home-contact__call-card {
  background: rgba(198, 208, 220, 0.1) !important;
  border: 1px solid rgba(198, 208, 220, 0.34);
  border-radius: 3px;
  padding: 30px 28px;
  color: var(--trust-card) !important;
  grid-column: 1 !important;
  position: sticky;
  top: clamp(96px, 9vh, 136px);
  z-index: 2;
  opacity: 1 !important;
  filter: none !important;
}

body.home .home-contact__form-shell {
  grid-column: 2 !important;
}

body.home .home-contact__call-title {
  color: var(--trust-card) !important;
  font-family: var(--trust-serif);
  font-size: 24px;
  line-height: 38.4px;
  margin: 0;
  opacity: 1 !important;
}

body.home .home-contact__call-text {
  color: var(--trust-panel-text) !important;
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 23.2px;
  max-width: 561px;
  opacity: 1 !important;
}

body.home .home-contact__phone-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--trust-accent) !important;
  text-decoration: none;
  font-size: 21px;
  line-height: 33.6px;
  font-weight: 700;
  font-style: italic;
}

body.home .home-contact__benefits {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

body.home .home-contact__benefits li {
  position: relative;
  padding-left: 26px;
  color: var(--trust-panel-text) !important;
  font-size: 14px;
  line-height: 22.4px;
  opacity: 1 !important;
}

body.home .home-contact__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.73px solid var(--trust-accent);
}

body.home .home-contact__benefits li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 6px;
  height: 3px;
  border-left: 1.73px solid var(--trust-accent);
  border-bottom: 1.73px solid var(--trust-accent);
  transform: rotate(-45deg);
}

body.home .home-contact__fine-print {
  color: var(--trust-text-muted);
}

body.home .home-hero__eyebrow,
body.home .split-accordion__eyebrow,
body.home .horizontal-scroll__kicker,
body.home .team-cards__kicker,
body.home .home-faq__kicker,
body.home .kinetic-cards__kicker {
  color: var(--trust-accent) !important;
}

@media (max-width: 1180px) {
  body.home .home-contact {
    padding: 72px 24px;
  }

  body.home .home-contact__inner {
    width: min(1472px, calc(100% - 32px));
  }

  body.home .home-contact__content {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  body.home .home-contact__call-card {
    position: static;
    top: auto;
  }

  body.home .home-contact__form-shell {
    grid-column: 1 !important;
    position: relative;
    z-index: 3;
  }
}
