@charset "UTF-8";
/* Homepage hero (Divi-free) — dark band, giant justified brand line, overlapping
 * attorney photo, small SEO line + CTA. Matched to Figma 2566:14402.
 * BEM SCSS: nested, full-class-name comment above each rule, media queries
 * nested INSIDE the class they modify (never grouped at the bottom). */
.home-hero {
  position: relative;
  background: var(--header-color-dark);
  color: var(--header-color-white);
  overflow: hidden;
  padding: 110px 24px 0px 24px;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
}
@media (max-width: 1080px) {
  .home-hero {
    min-height: 0;
    padding: 80px 20px 0;
  }
}
@media (max-width: 980px) {
  .home-hero {
    min-height: 0;
    padding: 80px 20px 0;
  }
}
.home-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.home-hero__brand {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 0;
}
.home-hero__brand img {
  display: block;
  width: 100%;
  height: auto;
}
.home-hero__photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-66%);
  z-index: 2;
  margin: 0;
  line-height: 0;
  pointer-events: none;
}
.home-hero__photo img {
  display: block;
  width: auto;
}
.home-hero__photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(to bottom, rgba(13, 19, 23, 0) 15%, rgba(13, 19, 23, 0.45) 70%);
}
@media (max-width: 980px) {
  .home-hero__photo {
    position: relative;
    transform: translateX(-5%);
    left: unset;
    margin: -120px auto 0;
    text-align: center;
    max-width: 380px;
  }
}
.home-hero__intro {
  position: relative;
  z-index: 3;
  margin-top: 28px;
  margin-bottom: 45px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.home-hero__intro .norml-button {
  flex: none;
}
@media (max-width: 980px) {
  .home-hero__intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.home-hero__h1 {
  font-family: var(--norml-font-body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--header-color-white);
  margin: 0;
  max-width: 422px;
  color: var(--White, #FFF);
}
@media (max-width: 980px) {
  .home-hero__h1 {
    max-width: none;
  }
}