:root {
  --color-reyes-navy: #00132c;
  --color-heritage-blue: #123a63;
  --color-texas-bronze: #b7843e;
  --color-courtroom-ivory: #f6f3ed;
  --color-legal-charcoal: #242a33;
  --color-steel-gray: #6b7580;
  --color-white: #ffffff;
  --shadow-soft: 0 16px 40px rgba(0, 19, 44, 0.12);
  --border-soft: rgba(0, 19, 44, 0.12);
  --header-radius: 18px;
  --content-width: 1240px;
  --sticky-offset: 136px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-courtroom-ivory);
  color: var(--color-legal-charcoal);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-is-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.screen-reader-text:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--color-white);
  color: var(--color-reyes-navy);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.site-container {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-contact-bar {
  background: var(--color-reyes-navy);
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-contact-bar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto auto;
  align-items: center;
  gap: 1rem 1.75rem;
  min-height: 50px;
}

.top-contact-bar__phone,
.top-contact-bar__service,
.language-toggle {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.top-contact-bar__phone {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.top-contact-bar__label {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.top-contact-bar__number {
  color: var(--color-texas-bronze);
}

.top-contact-bar__service {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  justify-self: end;
}

.language-toggle__label {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.language-toggle__link {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.language-toggle__link:hover,
.language-toggle__link:focus-visible,
.language-toggle__link.is-active {
  color: var(--color-white);
}

.language-toggle__divider {
  color: rgba(255, 255, 255, 0.4);
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(0, 19, 44, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 84px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--color-reyes-navy);
}

.site-brand--custom img {
  max-height: 58px;
  width: auto;
}

.site-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}

.site-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.site-brand__name {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.1;
}

.site-brand__suffix {
  color: var(--color-heritage-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.primary-navigation {
  justify-self: center;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.6vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--color-reyes-navy);
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1;
  transition: color 0.2s ease;
}

.primary-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--color-texas-bronze);
  transition: transform 0.2s ease;
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: var(--color-heritage-blue);
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--header,
.button--primary,
.button--mobile-drawer {
  color: var(--color-white);
  background: var(--color-texas-bronze);
  box-shadow: 0 12px 28px rgba(183, 132, 62, 0.22);
}

.button--header:hover,
.button--header:focus-visible,
.button--primary:hover,
.button--primary:focus-visible,
.button--mobile-drawer:hover,
.button--mobile-drawer:focus-visible {
  background: #a87432;
}

.button--secondary {
  color: var(--color-reyes-navy);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(0, 19, 44, 0.16);
  box-shadow: 0 10px 24px rgba(0, 19, 44, 0.08);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--color-heritage-blue);
  color: var(--color-heritage-blue);
  background: var(--color-white);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 19, 44, 0.12);
  border-radius: 16px;
  background: var(--color-white);
  color: var(--color-reyes-navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-navigation {
  display: none;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: clamp(680px, 92svh, 860px);
  background-color: var(--color-reyes-navy);
  background-image:
    linear-gradient(90deg, rgba(246, 243, 237, 0.98) 0%, rgba(246, 243, 237, 0.95) 40%, rgba(246, 243, 237, 0.5) 62%, rgba(246, 243, 237, 0) 100%),
    var(--hero-desktop-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.hero-section__inner {
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: clamp(4rem, 7vw, 8rem) 0;
}

.hero-section__content {
  max-width: 660px;
}

.hero-section__eyebrow {
  margin: 0 0 1.1rem;
  color: var(--color-heritage-blue);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-section__title {
  margin: 0;
  color: var(--color-reyes-navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.45rem, 5.1vw, 4.9rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-section__title span {
  display: block;
}

.hero-section__title span + span {
  margin-top: 0.5rem;
}

.hero-section__title-highlight {
  color: var(--color-texas-bronze);
}

.hero-section__copy {
  max-width: 52ch;
  margin: 1.75rem 0 0;
  color: rgba(36, 42, 51, 0.88);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 600;
}

.hero-section__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-section__trust {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  margin: 1.6rem 0 0;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-legal-charcoal);
  font-size: 0.96rem;
  font-weight: 800;
}

.benefits-strip {
  position: relative;
  overflow: hidden;
  background-color: var(--color-reyes-navy);
  background-image:
    linear-gradient(90deg, rgba(0, 19, 44, 0.82) 0%, rgba(0, 19, 44, 0.7) 36%, rgba(0, 19, 44, 0.34) 60%, rgba(0, 19, 44, 0.18) 100%),
    var(--benefits-strip-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.benefits-strip::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.benefits-strip__content {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  padding: 4rem 0 4.25rem;
}

.benefits-strip__title {
  max-width: 22ch;
  margin: 0 auto;
  color: var(--color-white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
  line-height: 1.15;
  text-align: center;
}

.benefits-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
  max-width: 900px;
  margin: 2.35rem auto 0;
  padding: 0;
  list-style: none;
}

.benefits-strip__item {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  align-content: center;
  flex: 0 1 272px;
  max-width: 272px;
  min-height: 176px;
  gap: 1.1rem;
  padding: 1.3rem 1.1rem 1.2rem;
  border: 1.5px solid rgba(183, 132, 62, 0.86);
  border-radius: 34px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, rgba(24, 43, 79, 0.95) 0%, rgba(6, 19, 44, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 44px rgba(0, 8, 23, 0.28);
  text-align: center;
}

.benefits-strip__item::before {
  content: "";
  position: absolute;
  right: -0.9rem;
  bottom: -0.25rem;
  width: 58%;
  height: 74%;
  background-image: var(--benefits-mark-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.benefits-strip__check {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #c9974d 0%, #a87332 100%);
  color: var(--color-reyes-navy);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.22),
    0 10px 24px rgba(183, 132, 62, 0.24);
}

.benefits-strip__check::before,
.benefits-strip__check::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(64px, 8vw, 112px);
  height: 1.5px;
  background: linear-gradient(90deg, rgba(183, 132, 62, 0.2) 0%, rgba(213, 180, 126, 0.95) 100%);
  transform: translateY(-50%);
}

.benefits-strip__check::before {
  right: calc(100% + 14px);
}

.benefits-strip__check::after {
  left: calc(100% + 14px);
  background: linear-gradient(90deg, rgba(213, 180, 126, 0.95) 0%, rgba(183, 132, 62, 0.2) 100%);
}

.benefits-strip__check svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.benefits-strip__text {
  position: relative;
  z-index: 1;
  display: inline-grid;
  justify-items: center;
  gap: 0.62rem;
  max-width: 11.5ch;
  color: var(--color-white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.08rem, 1.45vw, 1.58rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.benefits-strip__text::after {
  content: "";
  width: 68px;
  max-width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(183, 132, 62, 0) 0%, rgba(215, 178, 121, 0.95) 50%, rgba(183, 132, 62, 0) 100%);
}

.practice-areas {
  padding: clamp(4rem, 7vw, 5.75rem) 0 clamp(4.5rem, 7vw, 6rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 243, 237, 0.96) 100%);
}

.practice-areas__intro {
  max-width: 860px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.practice-areas__eyebrow {
  margin: 0 0 0.9rem;
  color: var(--color-heritage-blue);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.practice-areas__title {
  margin: 0;
  color: var(--color-reyes-navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.practice-areas__title span {
  display: block;
}

.practice-areas__title .is-accent {
  color: var(--color-texas-bronze);
}

.practice-areas__copy {
  max-width: 40rem;
  margin: 1.15rem auto 0;
  color: rgba(36, 42, 51, 0.82);
  font-size: 1.08rem;
  font-weight: 600;
}

.practice-areas__cards {
  display: flex;
  gap: 0.85rem;
  align-items: stretch;
  min-height: 470px;
}

.practice-area-card {
  position: relative;
  min-width: 0;
  flex: 1 1 10%;
  overflow: hidden;
  border: 1px solid rgba(0, 19, 44, 0.1);
  border-radius: 30px;
  background: var(--color-reyes-navy);
  box-shadow: 0 20px 40px rgba(0, 19, 44, 0.12);
  cursor: pointer;
  isolation: isolate;
  transition: flex 0.42s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.practice-area-card.is-active {
  flex: 2.35 1 32%;
  box-shadow: 0 28px 54px rgba(0, 19, 44, 0.18);
}

.practice-area-card:focus-visible {
  outline: 3px solid rgba(183, 132, 62, 0.72);
  outline-offset: 4px;
}

.practice-area-card__media,
.practice-area-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.practice-area-card__media img {
  object-fit: cover;
  filter: brightness(0.82);
  transition: transform 0.45s ease, filter 0.35s ease;
}

.practice-area-card:hover .practice-area-card__media img,
.practice-area-card:focus-within .practice-area-card__media img,
.practice-area-card.is-active .practice-area-card__media img {
  transform: scale(1.04);
  filter: brightness(0.72);
}

.practice-area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 19, 44, 0.22) 0%, rgba(0, 19, 44, 0.5) 42%, rgba(0, 19, 44, 0.78) 100%);
  z-index: 0;
}

.practice-area-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(0, 19, 44, 0) 0%, rgba(0, 19, 44, 0.88) 100%);
  z-index: 0;
}

.practice-area-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1rem 1rem 1rem;
}

.practice-area-card__title-bar {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.practice-area-card__title {
  display: block;
  color: var(--color-white);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.practice-area-card__body {
  display: grid;
  gap: 0.85rem;
  align-self: start;
  max-width: 23rem;
  margin-top: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.practice-area-card.is-active .practice-area-card__body {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.practice-area-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.5;
}

.practice-area-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-reyes-navy);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.practice-area-card__cta:hover,
.practice-area-card__cta:focus-visible {
  background: var(--color-texas-bronze);
  color: var(--color-white);
  transform: translateY(-1px);
}

.practice-areas__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.practice-areas__cta {
  min-width: 250px;
}

.practice-areas__cta--secondary {
  background: transparent;
  border-color: var(--color-heritage-blue);
  color: var(--color-heritage-blue);
  box-shadow: none;
}

.practice-areas__cta--secondary:hover,
.practice-areas__cta--secondary:focus-visible {
  background: var(--color-heritage-blue);
  color: var(--color-white);
}

.practice-areas__cta--primary {
  background: var(--color-texas-bronze);
  color: var(--color-white);
}

.why-steven-reyes {
  --why-steven-reyes-bottom-space: clamp(2.75rem, 6vw, 4.25rem);
  position: relative;
  overflow: hidden;
  padding: clamp(4.75rem, 8vw, 6.5rem) 0 var(--why-steven-reyes-bottom-space);
  background-image:
    linear-gradient(135deg, rgba(0, 19, 44, 0.98) 0%, rgba(0, 19, 44, 0.94) 48%, rgba(4, 25, 58, 0.92) 100%),
    var(--why-steven-reyes-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  isolation: isolate;
}

.why-steven-reyes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 19% 84%, rgba(41, 92, 184, 0.28) 0%, rgba(41, 92, 184, 0) 34%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 32%);
  pointer-events: none;
}

.why-steven-reyes__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(3rem, 6vw, 4.75rem);
}

.why-steven-reyes__top {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.why-steven-reyes__eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why-steven-reyes__title,
.why-steven-reyes__profile-title {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.why-steven-reyes__title {
  max-width: 9.5ch;
  font-size: clamp(2.85rem, 5vw, 4.95rem);
}

.why-steven-reyes__title span,
.why-steven-reyes__profile-title span {
  display: block;
}

.why-steven-reyes__title .is-accent,
.why-steven-reyes__profile-title .is-accent {
  color: var(--color-texas-bronze);
}

.why-steven-reyes__intro {
  display: grid;
  align-content: start;
  gap: 1.6rem;
  max-width: 34rem;
  justify-self: end;
}

.why-steven-reyes__intro-copy {
  display: grid;
  gap: 1rem;
}

.why-steven-reyes__body {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.75;
}

.why-steven-reyes__cta {
  justify-self: start;
}

.why-steven-reyes__bottom {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 0.9fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: end;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.why-steven-reyes__portrait {
  align-self: end;
  justify-self: start;
  display: flex;
  align-items: flex-end;
  width: min(100%, 30rem);
  margin: 0 0 calc(var(--why-steven-reyes-bottom-space) * -1);
  overflow: hidden;
}

.why-steven-reyes__portrait img {
  width: 100%;
}

.why-steven-reyes__profile {
  display: grid;
  align-content: end;
  gap: 1.45rem;
  max-width: 34rem;
  justify-self: end;
  padding-bottom: clamp(0.5rem, 2vw, 1.4rem);
}

.why-steven-reyes__profile-title {
  max-width: 8ch;
  font-size: clamp(2.45rem, 4.1vw, 4rem);
}

.why-steven-reyes__quote-wrap {
  display: grid;
  gap: 0.75rem;
}

.why-steven-reyes__quote-mark {
  color: var(--color-texas-bronze);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.15rem, 4vw, 4.35rem);
  font-weight: 700;
  line-height: 0.72;
}

.why-steven-reyes__quote {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.04rem, 1.65vw, 1.34rem);
  line-height: 1.7;
}

.why-steven-reyes__cta--secondary {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 36px rgba(0, 8, 23, 0.24);
}

.areas-we-serve {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 6rem) 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(183, 132, 62, 0.12) 0%, rgba(183, 132, 62, 0) 28%),
    linear-gradient(180deg, rgba(246, 243, 237, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
}

.areas-we-serve::before {
  content: "";
  position: absolute;
  inset: auto -8% -12% auto;
  width: min(38vw, 420px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 58, 99, 0.08) 0%, rgba(18, 58, 99, 0) 68%);
  pointer-events: none;
}

.areas-we-serve__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  gap: clamp(2rem, 5vw, 4.25rem);
  align-items: center;
}

.areas-we-serve__copy {
  max-width: 40rem;
}

.areas-we-serve__eyebrow {
  margin: 0 0 0.95rem;
  color: var(--color-heritage-blue);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.areas-we-serve__title {
  margin: 0;
  color: var(--color-reyes-navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.2rem, 4.15vw, 4.05rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.areas-we-serve__title span {
  display: block;
}

.areas-we-serve__title span:first-child {
  white-space: nowrap;
}

.areas-we-serve__title .is-accent {
  color: var(--color-texas-bronze);
}

.areas-we-serve__body {
  display: grid;
  gap: 1rem;
  max-width: 38rem;
  margin-top: 1.3rem;
}

.areas-we-serve__body p {
  margin: 0;
  color: rgba(36, 42, 51, 0.82);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.72;
}

.areas-we-serve__cta {
  margin-top: 1.6rem;
}

.areas-we-serve__showcase {
  display: flex;
  justify-content: flex-end;
}

.areas-we-serve__frame {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  width: min(100%, 27rem);
  aspect-ratio: 1 / 1;
  padding: 1.25rem 1.2rem;
  border: 1.5px solid rgba(183, 132, 62, 0.84);
  border-radius: 38px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, rgba(24, 43, 79, 0.97) 0%, rgba(6, 19, 44, 1) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 28px 48px rgba(0, 8, 23, 0.2);
}

.areas-we-serve__frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  pointer-events: none;
}

.areas-we-serve__frame::after {
  content: "";
  position: absolute;
  right: -0.75rem;
  bottom: -0.75rem;
  width: 56%;
  height: 56%;
  border-radius: 36px;
  background: radial-gradient(circle at center, rgba(183, 132, 62, 0.16) 0%, rgba(183, 132, 62, 0) 72%);
  pointer-events: none;
}

.areas-we-serve__frame-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.areas-we-serve__frame-label,
.areas-we-serve__frame-count {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.areas-we-serve__frame-count {
  color: rgba(255, 255, 255, 0.52);
}

.areas-we-serve__slides {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0.75rem;
}

.areas-we-serve__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: auto;
  overflow: hidden;
  border-radius: 24px;
  background-image:
    linear-gradient(180deg, rgba(0, 19, 44, 0.22) 0%, rgba(0, 19, 44, 0.4) 34%, rgba(0, 19, 44, 0.72) 100%),
    var(--service-area-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.areas-we-serve__slide::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  pointer-events: none;
}

.areas-we-serve__slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.areas-we-serve__slide-name {
  position: relative;
  z-index: 1;
  max-width: 8ch;
  padding: 1.1rem;
  color: var(--color-white);
  font-size: clamp(2.05rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-align: center;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.areas-we-serve__slide.is-long .areas-we-serve__slide-name {
  max-width: 10ch;
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  line-height: 1.04;
}

.areas-we-serve__slide.is-very-long .areas-we-serve__slide-name {
  max-width: 12ch;
  font-size: clamp(1.18rem, 1.72vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.areas-we-serve__indicators {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.areas-we-serve__indicator {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: width 0.28s ease, background-color 0.28s ease;
}

.areas-we-serve__indicator.is-active {
  width: 34px;
  background: var(--color-texas-bronze);
}

.faq-section {
  padding: clamp(4.5rem, 7vw, 6rem) 0 clamp(4.75rem, 7vw, 6.2rem);
  background:
    radial-gradient(circle at top center, rgba(183, 132, 62, 0.08) 0%, rgba(183, 132, 62, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 243, 237, 0.82) 100%);
}

.faq-section__inner {
  max-width: 1060px;
  margin: 0 auto;
}

.faq-section__title {
  margin: 0;
  color: var(--color-reyes-navy);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-align: center;
}

.faq-section__title span {
  display: inline;
}

.faq-section__title .is-accent {
  color: var(--color-texas-bronze);
}

.faq-section__list {
  display: grid;
  margin-top: 2.8rem;
}

.faq-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1rem;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(18, 58, 99, 0.12);
}

.faq-item:first-child {
  border-top: 1px solid rgba(18, 58, 99, 0.12);
}

.faq-item__number {
  padding-top: 1.2rem;
  color: var(--color-heritage-blue);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1;
}

.faq-item__content {
  min-width: 0;
}

.faq-item__trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--color-reyes-navy);
  text-align: left;
  cursor: pointer;
}

.faq-item__question {
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  font-weight: 700;
  line-height: 1.4;
}

.faq-item__icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1.5px solid var(--color-texas-bronze);
  border-radius: 999px;
  color: var(--color-texas-bronze);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.is-open .faq-item__icon {
  border-color: var(--color-texas-bronze);
  background: var(--color-texas-bronze);
  color: var(--color-white);
}

.faq-item.is-open .faq-item__icon::after {
  opacity: 0;
}

.faq-item__trigger:hover .faq-item__icon,
.faq-item__trigger:focus-visible .faq-item__icon {
  border-color: #a87432;
  color: #a87432;
}

.faq-item.is-open .faq-item__trigger:hover .faq-item__icon,
.faq-item.is-open .faq-item__trigger:focus-visible .faq-item__icon {
  background: #a87432;
  border-color: #a87432;
  color: var(--color-white);
}

.faq-item__trigger:focus-visible {
  outline: none;
}

.faq-item__trigger:focus-visible .faq-item__question {
  color: var(--color-heritage-blue);
}

.faq-item__panel {
  padding: 0 4.2rem 1.35rem 0;
}

.faq-item__panel p {
  max-width: 50rem;
  margin: 0;
  color: rgba(36, 42, 51, 0.88);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.72;
}

.faq-section__cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.faq-section__cta {
  min-width: 290px;
}

.contact-lead-section {
  position: relative;
  padding: clamp(4.8rem, 8vw, 7rem) 0 clamp(4.5rem, 7vw, 6.2rem);
  background:
    radial-gradient(circle at 18% 16%, rgba(183, 132, 62, 0.18) 0%, rgba(183, 132, 62, 0) 28%),
    radial-gradient(circle at 82% 8%, rgba(18, 58, 99, 0.42) 0%, rgba(18, 58, 99, 0) 32%),
    linear-gradient(180deg, rgba(1, 24, 54, 1) 0%, rgba(0, 19, 44, 1) 100%);
  color: var(--color-white);
  scroll-margin-top: var(--sticky-offset);
}

.contact-lead-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4.4rem);
}

.contact-lead-section__copy {
  display: grid;
  gap: 1.4rem;
  align-content: start;
  padding-top: 0.5rem;
}

.contact-lead-section__title {
  margin: 0;
  color: var(--color-white);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.contact-lead-section__title span {
  display: block;
}

.contact-lead-section__title .is-accent {
  color: var(--color-texas-bronze);
}

.contact-lead-section__description {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.78;
}

.contact-lead-section__card {
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(3, 22, 49, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 58px rgba(0, 8, 23, 0.28);
}

.contact-lead-section__form-title {
  margin: 0 0 1.2rem;
  color: var(--color-white);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-lead-section__alert {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.55;
}

.contact-lead-section__alert.is-success {
  background: rgba(183, 132, 62, 0.16);
  border-color: rgba(183, 132, 62, 0.34);
  color: rgba(255, 251, 244, 0.98);
}

.contact-lead-section__alert.is-error {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 173, 173, 0.28);
  color: rgba(255, 244, 244, 0.98);
}

.contact-form {
  display: grid;
  gap: 1.15rem;
}

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

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.contact-form__field {
  min-width: 0;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-reyes-navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-form__field input,
.contact-form__field select {
  min-height: 58px;
  padding: 0 1.15rem;
}

.contact-form__field textarea {
  min-height: 138px;
  padding: 1rem 1.15rem;
  resize: vertical;
}

.contact-form__field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-texas-bronze) 50%),
    linear-gradient(135deg, var(--color-texas-bronze) 50%, transparent 50%);
  background-position:
    calc(100% - 1.35rem) calc(50% - 2px),
    calc(100% - 1rem) calc(50% - 2px);
  background-size: 9px 9px, 9px 9px;
  background-repeat: no-repeat;
  padding-right: 3rem;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder,
.contact-form__field select {
  color: rgba(0, 19, 44, 0.74);
  font-weight: 700;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(183, 132, 62, 0.6);
  box-shadow:
    0 0 0 4px rgba(183, 132, 62, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-form__submit {
  width: 100%;
  min-height: 60px;
  border-radius: 20px;
  font-size: 1rem;
}

.contact-form__notes {
  display: grid;
  gap: 0.55rem;
}

.contact-form__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-form__note--sms {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.site-main {
  min-height: 50vh;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(0, 19, 44, 0.98) 0%, rgba(0, 19, 44, 1) 100%);
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.82fr));
  gap: clamp(1.8rem, 4vw, 3rem);
  padding: clamp(3.2rem, 6vw, 4.75rem) 0 2.3rem;
  align-items: start;
}

.site-footer__brand {
  display: grid;
  gap: 1rem;
}

.site-footer__brand-name {
  margin: 0;
  color: var(--color-white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.site-footer__consultation {
  margin: 0;
  color: var(--color-texas-bronze);
  font-size: 1rem;
  font-weight: 800;
}

.site-footer__contact-list {
  display: grid;
  gap: 1rem;
}

.site-footer__contact-item {
  display: grid;
  gap: 0.35rem;
}

.site-footer__label,
.site-footer__heading {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer__contact-item a,
.site-footer__office span {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.site-footer__office {
  display: grid;
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.site-footer__heading {
  margin: 0;
}

.site-footer__heading--legal {
  margin-top: 0.5rem;
}

.site-footer__list {
  display: grid;
  gap: 0.78rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible,
.site-footer__contact-item a:hover,
.site-footer__contact-item a:focus-visible {
  color: var(--color-texas-bronze);
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer__social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__social-pill:hover,
.site-footer__social-pill:focus-visible {
  background: rgba(183, 132, 62, 0.12);
  border-color: rgba(183, 132, 62, 0.38);
  color: var(--color-white);
}

.site-footer__social-pill.is-placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__bottom {
  display: grid;
  gap: 1rem;
  padding: 1.35rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__disclaimer {
  margin: 0;
  max-width: 76rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.72;
}

.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-footer__meta a {
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-main--page {
  padding: 4rem 0 5rem;
}

.entry-card {
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.entry-title {
  margin: 0 0 1rem;
  color: var(--color-reyes-navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .site-header__inner {
    gap: 1.4rem;
  }

  .primary-menu {
    gap: 1rem;
  }

  .primary-menu a {
    font-size: 0.9rem;
  }

  .button--header {
    padding-inline: 1.2rem;
    font-size: 0.94rem;
  }
}

@media (max-width: 1099px) {
  :root {
    --sticky-offset: 96px;
  }

  .top-contact-bar {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.85rem;
    min-height: 76px;
  }

  .site-brand {
    min-width: 0;
    gap: 0.75rem;
  }

  .site-brand__mark {
    width: 46px;
    height: 46px;
  }

  .site-brand__name {
    font-size: 0.98rem;
  }

  .site-brand__suffix {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .primary-navigation {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .button--header {
    min-height: 46px;
    max-width: 132px;
    padding: 0.65rem 0.8rem;
    font-size: 0.78rem;
    line-height: 1.05;
  }

  .mobile-navigation[hidden],
  .mobile-menu-backdrop[hidden] {
    display: none;
  }

  .mobile-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    padding: 0 0 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 19, 44, 0.08);
    box-shadow: 0 24px 48px rgba(0, 19, 44, 0.12);
  }

  .mobile-navigation__inner {
    display: grid;
    gap: 1rem;
    padding-top: 1rem;
  }

  .mobile-navigation__call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.9rem 1.15rem;
    border: 1px solid rgba(18, 58, 99, 0.12);
    border-radius: 16px;
    background: rgba(18, 58, 99, 0.06);
    color: var(--color-reyes-navy);
    font-weight: 800;
  }

  .primary-menu--mobile {
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
  }

  .primary-menu--mobile a {
    justify-content: space-between;
    min-height: 50px;
    padding: 0 0.25rem;
    font-size: 1rem;
  }

  .primary-menu--mobile a::after {
    bottom: 0;
  }

  .button--mobile-drawer {
    width: 100%;
    min-height: 52px;
  }

  .mobile-navigation__meta {
    display: grid;
    gap: 0.4rem;
    color: var(--color-steel-gray);
    font-size: 0.92rem;
    font-weight: 700;
  }

  .mobile-navigation__meta p {
    margin: 0;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 76px 0 0;
    display: block;
    border: 0;
    background: rgba(0, 19, 44, 0.2);
    cursor: pointer;
  }

  .hero-section {
    min-height: calc(100svh - 76px);
    background-image:
      linear-gradient(180deg, rgba(246, 243, 237, 0.96) 0%, rgba(246, 243, 237, 0.88) 22%, rgba(246, 243, 237, 0.56) 36%, rgba(246, 243, 237, 0.2) 50%, rgba(246, 243, 237, 0.03) 66%, rgba(246, 243, 237, 0) 100%),
      var(--hero-mobile-image);
    background-position: center 12%;
  }

  .hero-section__inner {
    align-items: flex-start;
    padding: clamp(1.3rem, 5vw, 2rem) 0 clamp(1.8rem, 6vw, 3rem);
  }

  .hero-section__content {
    max-width: 28rem;
    margin: 0 auto;
    text-align: center;
  }

  .hero-section__eyebrow {
    margin-bottom: 0.7rem;
  }

  .hero-section__title span + span {
    margin-top: 0.4rem;
  }

  .hero-section__copy {
    max-width: 33ch;
    margin-inline: auto;
  }

  .hero-section__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-top: 1.5rem;
  }

  .hero-section__trust {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    padding-inline: 1rem;
  }

  .benefits-strip {
    background-image:
      linear-gradient(180deg, rgba(0, 19, 44, 0.82) 0%, rgba(0, 19, 44, 0.7) 30%, rgba(0, 19, 44, 0.48) 60%, rgba(0, 19, 44, 0.28) 100%),
      var(--benefits-strip-image);
    background-position: 72% center;
  }

  .benefits-strip__content {
    max-width: 780px;
    padding: 3rem 0 3.2rem;
  }

  .benefits-strip__title {
    max-width: 20ch;
  }

  .benefits-strip__list {
    max-width: 760px;
  }

  .practice-areas {
    padding: 3.35rem 0 3.75rem;
  }

  .practice-areas__copy {
    max-width: 34rem;
    font-size: 1rem;
  }

  .practice-areas__cards {
    display: grid;
    gap: 1rem;
    min-height: 0;
  }

  .practice-area-card,
  .practice-area-card.is-active {
    display: flex;
    flex-direction: column;
    flex: none;
    min-height: 0;
    border-radius: 24px;
    cursor: default;
  }

  .practice-area-card__media {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    flex: none;
    aspect-ratio: 1 / 0.62;
  }

  .practice-area-card__media img {
    position: absolute;
  }

  .practice-area-card::after {
    display: none;
  }

  .practice-area-card::before {
    display: none;
  }

  .practice-area-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 19, 44, 0.18) 0%, rgba(0, 19, 44, 0.48) 100%);
    pointer-events: none;
  }

  .practice-area-card__content {
    position: relative;
    display: block;
    height: auto;
    flex: none;
    padding: 0;
  }

  .practice-area-card__title-bar {
    padding: 0.9rem 0.95rem 0.8rem;
    background: rgba(0, 19, 44, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .practice-area-card__body,
  .practice-area-card.is-active .practice-area-card__body {
    display: grid;
    max-width: none;
    margin-top: 0;
    padding: 0.88rem 0.95rem 1rem;
    background: linear-gradient(180deg, rgba(6, 19, 44, 0.98) 0%, rgba(0, 19, 44, 1) 100%);
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .practice-area-card__body p {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .practice-area-card__cta {
    width: 100%;
  }

  .practice-areas__cta {
    min-width: min(100%, 320px);
  }

  .why-steven-reyes {
    --why-steven-reyes-bottom-space: 3.1rem;
    padding: 4rem 0 3.1rem;
    background-position: 58% center;
  }

  .why-steven-reyes__content {
    gap: 2.6rem;
  }

  .why-steven-reyes__top {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .why-steven-reyes__intro {
    justify-self: start;
  }

  .why-steven-reyes__bottom {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding-top: 2.3rem;
  }

  .why-steven-reyes__portrait {
    width: min(100%, 22rem);
    margin: 0 auto;
  }

  .why-steven-reyes__profile {
    justify-self: stretch;
    text-align: center;
    padding-bottom: 0.35rem;
  }

  .why-steven-reyes__profile-title {
    max-width: none;
  }

  .why-steven-reyes__quote-wrap {
    justify-items: center;
  }

  .areas-we-serve {
    padding: 4rem 0;
  }

  .areas-we-serve__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .areas-we-serve__copy {
    max-width: 42rem;
  }

  .areas-we-serve__showcase {
    justify-content: center;
  }

  .faq-section__inner {
    max-width: 940px;
  }

  .faq-section__title {
    font-size: clamp(2.2rem, 6vw, 3.7rem);
  }

  .faq-item__question {
    font-size: 1.12rem;
  }

  .faq-item__panel {
    padding-right: 1rem;
  }

  .contact-lead-section__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-lead-section__copy {
    max-width: 42rem;
  }

  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
    padding: 3rem 0 2rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-container {
    width: min(calc(100% - 1.5rem), var(--content-width));
  }

  .hero-section {
    background-position: center 10%;
  }

  .hero-section__inner {
    padding: 0.65rem 0 1.5rem;
  }

  .hero-section__content {
    max-width: 20.5rem;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .site-brand__text {
    gap: 0.02rem;
  }

  .site-brand__name {
    font-size: 0.9rem;
  }

  .site-brand__suffix {
    font-size: 0.58rem;
  }

  .button--header {
    max-width: 118px;
    padding-inline: 0.6rem;
    font-size: 0.72rem;
  }

  .hero-section__title {
    font-size: clamp(1.42rem, 7.1vw, 2rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  .hero-section__title span + span {
    margin-top: 0.1rem;
  }

  .hero-section__eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.84rem;
    line-height: 1.25;
  }

  .hero-section__copy {
    max-width: 30ch;
    margin-top: 0.72rem;
    font-size: 0.82rem;
    line-height: 1.34;
  }

  .hero-section__actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    width: min(100%, 20.25rem);
    margin: 1rem auto 0;
  }

  .button--primary,
  .button--secondary {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 44px;
    padding: 0.64rem 0.65rem;
    font-size: 0.8rem;
    line-height: 1.15;
  }

  .hero-section__trust {
    display: none;
  }

  .benefits-strip__content {
    padding: 2.5rem 0 2.75rem;
  }

  .benefits-strip__item {
    min-height: 170px;
    gap: 0.95rem;
    padding: 1.3rem 0.95rem 1.15rem;
    border-radius: 28px;
  }

  .benefits-strip__item::before {
    width: 56%;
    height: 70%;
    right: -1.2rem;
    bottom: -0.4rem;
  }

  .benefits-strip__check::before,
  .benefits-strip__check::after {
    width: 74px;
  }

  .benefits-strip__text {
    gap: 0.55rem;
    max-width: 12ch;
    font-size: 1.08rem;
  }

  .benefits-strip__text::after {
    width: 72px;
  }

  .practice-areas__eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .practice-areas__title {
    font-size: clamp(2rem, 10vw, 2.9rem);
    line-height: 1.04;
  }

  .practice-areas__copy {
    max-width: 31ch;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .practice-area-card__media {
    aspect-ratio: 1 / 0.56;
  }

  .practice-area-card__title {
    font-size: 0.84rem;
  }

  .practice-area-card__body p {
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .practice-area-card__cta {
    min-height: 44px;
    padding: 0.7rem 0.9rem;
    font-size: 0.84rem;
  }

  .practice-areas__cta-row {
    margin-top: 1.6rem;
  }

  .practice-areas__cta {
    width: min(100%, 320px);
    min-width: 0;
  }

  .why-steven-reyes {
    --why-steven-reyes-bottom-space: 2.75rem;
    padding: 3.25rem 0 2.75rem;
    background-position: 54% center;
  }

  .why-steven-reyes__content {
    gap: 2.4rem;
  }

  .why-steven-reyes__headline,
  .why-steven-reyes__intro,
  .why-steven-reyes__profile {
    text-align: center;
  }

  .why-steven-reyes__title {
    max-width: none;
    font-size: clamp(2.35rem, 10.8vw, 3.45rem);
  }

  .why-steven-reyes__intro {
    gap: 1.2rem;
    max-width: none;
    justify-items: center;
  }

  .why-steven-reyes__intro-copy {
    gap: 0.95rem;
  }

  .why-steven-reyes__body {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .why-steven-reyes__cta {
    justify-self: center;
    width: min(100%, 21rem);
  }

  .why-steven-reyes__bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 1.9rem;
  }

  .why-steven-reyes__portrait {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: min(100%, 18.5rem);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 28px;
    background:
      radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 46%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 19, 44, 0) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 22px 38px rgba(0, 8, 23, 0.2);
  }

  .why-steven-reyes__portrait img {
    width: auto;
    height: 112%;
    max-width: none;
    transform: translateY(4%);
  }

  .why-steven-reyes__profile {
    gap: 1.15rem;
    max-width: none;
    justify-self: stretch;
    padding-bottom: 0;
  }

  .why-steven-reyes__profile-title {
    max-width: none;
    font-size: clamp(2rem, 9.8vw, 2.9rem);
  }

  .why-steven-reyes__quote-wrap {
    justify-items: center;
  }

  .why-steven-reyes__quote-mark {
    font-size: 3.1rem;
  }

  .why-steven-reyes__quote {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .areas-we-serve {
    padding: 3.4rem 0;
  }

  .areas-we-serve__copy {
    text-align: center;
  }

  .areas-we-serve__title {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .areas-we-serve__title span:first-child {
    white-space: normal;
  }

  .areas-we-serve__body {
    max-width: 32rem;
    margin-inline: auto;
  }

  .areas-we-serve__body p {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .areas-we-serve__cta {
    width: min(100%, 21rem);
  }

  .areas-we-serve__frame {
    width: min(100%, 21rem);
    padding: 1rem;
    border-radius: 30px;
  }

  .areas-we-serve__frame::before {
    inset: 12px;
    border-radius: 22px;
  }

  .areas-we-serve__frame-label,
  .areas-we-serve__frame-count {
    font-size: 0.7rem;
    letter-spacing: 0.11em;
  }

  .areas-we-serve__slide {
    border-radius: 22px;
  }

  .areas-we-serve__slide::after {
    inset: 10px;
    border-radius: 16px;
  }

  .areas-we-serve__slide-name {
    max-width: 9ch;
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .areas-we-serve__slide.is-long .areas-we-serve__slide-name {
    max-width: 10.5ch;
    font-size: clamp(1.4rem, 6.2vw, 1.9rem);
  }

  .areas-we-serve__slide.is-very-long .areas-we-serve__slide-name {
    max-width: 12ch;
    font-size: clamp(1.04rem, 4.5vw, 1.34rem);
    line-height: 1.18;
  }

  .faq-section {
    padding: 3.5rem 0 4.1rem;
  }

  .faq-section__title {
    font-size: clamp(2.05rem, 10vw, 3rem);
    text-align: center;
  }

  .faq-section__title span {
    display: block;
  }

  .faq-section__list {
    margin-top: 2rem;
  }

  .faq-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .faq-item__number {
    padding-top: 1rem;
    font-size: 0.94rem;
  }

  .faq-item__trigger {
    gap: 0.8rem;
    padding: 0.9rem 0;
  }

  .faq-item__question {
    font-size: 0.98rem;
    line-height: 1.38;
  }

  .faq-item__icon {
    width: 30px;
    height: 30px;
  }

  .faq-item__icon::before {
    width: 12px;
  }

  .faq-item__icon::after {
    height: 12px;
  }

  .faq-item__panel {
    padding: 0 0.25rem 1.15rem 0;
  }

  .faq-item__panel p {
    font-size: 0.94rem;
    line-height: 1.64;
  }

  .faq-section__cta {
    width: min(100%, 24rem);
    min-width: 0;
  }

  .contact-lead-section {
    padding: 3.8rem 0 3.9rem;
  }

  .contact-lead-section__copy {
    gap: 1rem;
    text-align: center;
  }

  .contact-lead-section__title {
    font-size: clamp(2.2rem, 10.5vw, 3.45rem);
  }

  .contact-lead-section__description {
    max-width: 31rem;
    margin-inline: auto;
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .contact-lead-section__card {
    padding: 1.25rem;
    border-radius: 26px;
  }

  .contact-lead-section__form-title {
    margin-bottom: 1rem;
    font-size: 1.38rem;
    text-align: center;
  }

  .contact-lead-section__alert {
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    font-size: 0.88rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }

  .contact-form__field input,
  .contact-form__field select {
    min-height: 52px;
    padding: 0 1rem;
  }

  .contact-form__field textarea {
    min-height: 124px;
    padding: 0.95rem 1rem;
  }

  .contact-form__submit {
    min-height: 54px;
    border-radius: 18px;
    font-size: 0.94rem;
  }

  .contact-form__note {
    font-size: 0.82rem;
  }

  .contact-form__note--sms {
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 2.8rem 0 1.8rem;
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__column {
    justify-items: center;
  }

  .site-footer__contact-item,
  .site-footer__office,
  .site-footer__list {
    justify-items: center;
  }

  .site-footer__socials {
    justify-content: center;
  }

  .site-footer__heading--legal {
    margin-top: 0.1rem;
  }

  .site-footer__bottom {
    padding: 1.1rem 0 1.8rem;
    text-align: center;
  }

  .site-footer__meta {
    align-items: center;
  }
}
