@charset "UTF-8";

body.practice-page {
  min-height: 100vh;
  background: var(--ink);
}

body.practice-page.menu-open {
  overflow: hidden;
}

body.practice-page[data-page$="-person"] {
  background: var(--paper-soft);
  color-scheme: light;
}

body.practice-page[data-page$="-person"] .whatsapp-float__label {
  display: none;
}

.practice-page .site-header {
  background: rgba(20, 22, 42, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.practice-page .site-header.is-scrolled {
  background: rgba(20, 22, 42, 0.94);
}

.practice-page .area-header--light,
.practice-page .area-header--light.is-scrolled {
  background: rgba(255, 247, 228, 0.9);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(27, 37, 69, 0.08);
}

.practice-page .area-header--light::after {
  background: rgba(27, 37, 69, 0.12);
}

.practice-page .area-header--light .main-nav,
.practice-page .area-header--light.is-scrolled .main-nav {
  border-color: rgba(27, 37, 69, 0.14);
  background: rgba(248, 249, 252, 0.64);
  box-shadow: inset 0 1px 0 rgba(248, 249, 252, 0.8);
}

.practice-page .area-header--light .main-nav a {
  color: rgba(27, 37, 69, 0.72);
}

.practice-page .area-header--light .main-nav a:hover,
.practice-page .area-header--light .main-nav a.is-active,
.practice-page .area-header--light .main-nav a[aria-current="page"] {
  background: rgba(61, 109, 179, 0.1);
  color: var(--ink);
}

.practice-page .area-header--light .main-nav__copy small {
  color: rgba(27, 37, 69, 0.48);
}

.practice-page .area-header--light .nav-cta {
  border-color: rgba(27, 37, 69, 0.28);
  color: var(--ink);
}

.practice-page .area-header--light .nav-cta:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-soft);
}

.practice-page .area-header--light .menu-toggle {
  border-color: rgba(27, 37, 69, 0.2);
  background: rgba(248, 249, 252, 0.72);
  color: var(--ink);
}

.practice-page .main-nav a[aria-current="page"] {
  background: rgba(212, 188, 142, 0.12);
  color: var(--white);
}

.practice-page .main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.route-hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  align-items: end;
  overflow: hidden;
  padding: 168px 0 clamp(82px, 10vw, 128px);
  background:
    radial-gradient(circle at 72% 34%, rgba(61, 109, 179, 0.28), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(212, 188, 142, 0.11), transparent 28%),
    linear-gradient(145deg, #14162a 0%, #1b2545 54%, #14162a 100%);
  color: var(--white);
  isolation: isolate;
}

.route-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 132px 100%, 100% 132px;
  content: "";
  -webkit-mask-image: radial-gradient(circle at 66% 42%, black, transparent 71%);
  mask-image: radial-gradient(circle at 66% 42%, black, transparent 71%);
  pointer-events: none;
}

.route-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 180px;
  background: linear-gradient(to top, rgba(20,22,42,0.55), transparent);
  content: "";
  pointer-events: none;
}

.route-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
}

.route-hero__aura {
  position: absolute;
  top: 13%;
  right: 4%;
  z-index: 0;
  width: min(46vw, 640px);
  aspect-ratio: 1;
  border: 1px solid rgba(212,188,142,0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(61,109,179,0.035),
    0 0 0 116px rgba(61,109,179,0.025);
  animation: routeAura 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.route-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: end;
  gap: clamp(48px, 8vw, 126px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(50px, 7vw, 86px);
  padding: 0;
  color: rgba(255,255,255,0.46);
  font-family: var(--wide);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb li:not(:last-child)::after {
  color: rgba(212,188,142,0.58);
  content: "/";
}

.breadcrumb a {
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb [aria-current="page"] {
  color: rgba(255,255,255,0.8);
}

.route-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-family: var(--wide);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.route-hero h1 {
  max-width: 1060px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 8.1vw, 8.8rem);
  font-weight: 500;
  letter-spacing: -0.062em;
  line-height: 0.9;
}

.route-hero h1 em {
  color: var(--gold-light);
  font-weight: 500;
}

.route-hero__lead {
  max-width: 730px;
  margin: clamp(28px, 4vw, 44px) 0 0;
  color: rgba(255,255,255,0.66);
  font-size: clamp(0.98rem, 1.35vw, 1.16rem);
  line-height: 1.8;
}

.route-hero__aside {
  display: grid;
  align-self: stretch;
  align-content: end;
  gap: 20px;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,0.13);
}

.route-hero__aside > span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 7.2rem);
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.route-hero__aside p {
  margin: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  line-height: 1.7;
}

.route-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.route-hero__meta span,
.audience-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.68);
  font-family: var(--wide);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-hero__meta span::before,
.audience-label::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  content: "";
}

.route-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 160px) 0;
  background: var(--paper-soft);
}

.route-section--paper {
  background: var(--paper);
}

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

.route-section__heading {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) minmax(240px, 0.43fr);
  align-items: end;
  gap: clamp(34px, 6vw, 90px);
  margin-bottom: clamp(56px, 8vw, 100px);
}

.route-index {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-family: var(--wide);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-index::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.route-section--ink .route-index {
  color: var(--gold-light);
}

.route-kicker {
  margin: 0 0 15px;
  color: var(--muted);
  font-family: var(--wide);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.route-section--ink .route-kicker {
  color: var(--gold-light);
}

.route-title {
  max-width: 870px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.2vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.route-title em {
  color: var(--sage);
  font-weight: 500;
}

.route-section--ink .route-title em {
  color: var(--gold-light);
}

.route-heading-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.8;
}

.route-section--ink .route-heading-lead {
  color: rgba(255,255,255,0.54);
}

.areas-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.area-directory-card {
  position: relative;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 44px);
  border: 1px solid rgba(27,37,69,0.14);
  border-radius: 24px;
  background: rgba(255,255,255,0.56);
  box-shadow: 0 24px 70px rgba(27,37,69,0.07);
  transition: border-color 0.4s ease, box-shadow 0.45s ease, transform 0.55s var(--ease-out);
}

.area-directory-card::before {
  position: absolute;
  right: -38%;
  bottom: -35%;
  width: 94%;
  aspect-ratio: 1;
  border: 1px solid rgba(61,109,179,0.16);
  border-radius: 50%;
  content: "";
  transition: transform 0.8s var(--ease-out), border-color 0.4s ease;
}

.area-directory-card::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 84% 16%, rgba(61,109,179,0.12), transparent 36%);
  content: "";
  opacity: 0;
  transition: opacity 0.4s ease;
}

.area-directory-card:hover {
  border-color: rgba(61,109,179,0.38);
  box-shadow: 0 38px 90px rgba(27,37,69,0.13);
  transform: translateY(-9px);
}

.area-directory-card:hover::before {
  border-color: rgba(212,188,142,0.48);
  transform: scale(1.12) translate(-4%, -5%);
}

.area-directory-card:hover::after {
  opacity: 1;
}

.area-card__top,
.area-card__body,
.area-card__footer {
  position: relative;
  z-index: 2;
}

.area-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.area-card__number {
  color: var(--sage);
  font-family: var(--wide);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.area-card__arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(27,37,69,0.16);
  border-radius: 50%;
  color: var(--sage);
  transition: background 0.35s ease, color 0.35s ease, transform 0.5s var(--ease-out);
}

.area-directory-card:hover .area-card__arrow {
  background: var(--ink);
  color: var(--gold-light);
  transform: rotate(45deg);
}

.area-card__body > span {
  color: var(--sage);
  font-family: var(--wide);
  font-size: 0.59rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.area-card__body h2,
.area-card__body h3 {
  margin: 15px 0 20px;
  font-family: var(--display);
  font-size: clamp(2.65rem, 4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.area-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.area-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(27,37,69,0.13);
}

.area-card__footer span {
  padding: 6px 9px;
  border: 1px solid rgba(27,37,69,0.13);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--wide);
  font-size: 0.52rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.expertise-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.expertise-band > div {
  padding: 35px clamp(24px, 4vw, 58px);
}

.expertise-band > div + div {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.expertise-band strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 500;
}

.expertise-band span {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.audience-card {
  position: relative;
  display: grid;
  min-height: 500px;
  align-content: space-between;
  overflow: hidden;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(27,37,69,0.14);
  border-radius: 26px;
  background: rgba(255,255,255,0.5);
  box-shadow: 0 26px 80px rgba(27,37,69,0.07);
  transition: transform 0.55s var(--ease-out), box-shadow 0.45s ease, border-color 0.4s ease;
}

.audience-card--dark {
  border-color: rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at 86% 15%, rgba(61,109,179,0.3), transparent 34%),
    linear-gradient(150deg, #28478a, #14162a 74%);
  color: var(--white);
}

.audience-card::after {
  position: absolute;
  right: -24%;
  bottom: -32%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(61,109,179,0.18);
  border-radius: 50%;
  content: "";
  transition: transform 0.8s var(--ease-out);
}

.audience-card--dark::after {
  border-color: rgba(212,188,142,0.16);
}

.audience-card:hover {
  border-color: rgba(61,109,179,0.42);
  box-shadow: 0 42px 100px rgba(27,37,69,0.15);
  transform: translateY(-9px);
}

.audience-card:hover::after {
  transform: scale(1.12) translate(-5%, -5%);
}

.audience-card__top,
.audience-card__body,
.audience-card__link {
  position: relative;
  z-index: 2;
}

.audience-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.audience-card__top > span:first-child {
  color: var(--sage);
  font-family: var(--wide);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.audience-card--dark .audience-card__top > span:first-child {
  color: var(--gold-light);
}

.audience-card__body {
  margin: 84px 0 68px;
}

.audience-card__body h2,
.audience-card__body h3 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.92;
}

.audience-card__body p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.audience-card--dark .audience-card__body p {
  color: rgba(255,255,255,0.55);
}

.audience-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(27,37,69,0.14);
  font-family: var(--wide);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-card--dark .audience-card__link {
  border-color: rgba(255,255,255,0.14);
  color: var(--gold-light);
}

.audience-card__link span:last-child {
  font-size: 1.1rem;
  transition: transform 0.45s var(--ease-out);
}

.audience-card:hover .audience-card__link span:last-child {
  transform: translate(5px, -5px);
}

.scope-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 8vw, 120px);
}

.scope-preview__intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.scope-preview__intro p {
  max-width: 470px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.8;
}

.scope-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(27,37,69,0.15);
  list-style: none;
}

.scope-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(27,37,69,0.15);
}

.scope-list li > span {
  color: var(--sage);
  font-family: var(--wide);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.scope-list h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.scope-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.7;
}

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

.service-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(27,37,69,0.14);
  border-radius: 20px;
  background: rgba(255,255,255,0.48);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.5s var(--ease-out);
}

.service-card::after {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(61,109,179,0.17);
  border-radius: 50%;
  content: "";
  transition: transform 0.6s var(--ease-out);
}

.service-card:hover {
  border-color: rgba(61,109,179,0.38);
  background: rgba(255,255,255,0.82);
  transform: translateY(-5px);
}

.service-card:hover::after {
  transform: scale(1.25) translate(-7px, -7px);
}

.service-card > span {
  display: block;
  color: var(--sage);
  font-family: var(--wide);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 54px 0 15px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.1vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.72;
}

.signals-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(56px, 9vw, 130px);
}

.signals-copy p {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.54);
  font-size: 0.84rem;
  line-height: 1.8;
}

.signals-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.13);
  list-style: none;
}

.signals-list li {
  position: relative;
  padding: 24px 42px 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.72);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.signals-list li::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--gold-light);
  content: "+";
  font-family: var(--sans);
  font-size: 1rem;
  transform: translateY(-50%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(27,37,69,0.15);
  border-bottom: 1px solid rgba(27,37,69,0.15);
}

.process-card {
  min-height: 270px;
  padding: 32px clamp(24px, 3vw, 46px);
}

.process-card + .process-card {
  border-left: 1px solid rgba(27,37,69,0.15);
}

.process-card > span {
  color: var(--sage);
  font-family: var(--wide);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
}

.process-card h3 {
  margin: 70px 0 13px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.25vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.7;
}

.related-areas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.related-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.45s var(--ease-out);
}

.related-area:hover {
  border-color: rgba(212,188,142,0.46);
  background: rgba(212,188,142,0.08);
  transform: translateY(-5px);
}

.related-area span:first-child {
  display: grid;
  gap: 6px;
}

.related-area small {
  color: var(--gold-light);
  font-family: var(--wide);
  font-size: 0.54rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-area strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.related-area > span:last-child {
  color: var(--gold-light);
  font-size: 1.2rem;
}

.route-cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 150px) 0;
  background: var(--gold-light);
  color: var(--ink);
}

.route-cta-section::after {
  position: absolute;
  top: -60%;
  right: -12%;
  width: 54vw;
  aspect-ratio: 1;
  border: 1px solid rgba(20,22,42,0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(20,22,42,0.035), 0 0 0 142px rgba(20,22,42,0.025);
  content: "";
}

.route-cta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
}

.route-cta span {
  display: block;
  margin-bottom: 16px;
  font-family: var(--wide);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.route-cta h2 {
  max-width: 930px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.3rem, 6vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.route-cta .button {
  border-color: rgba(20,22,42,0.36);
  background: var(--ink);
  color: var(--white);
}

.route-note {
  margin: 30px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(27,37,69,0.14);
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.7;
}

/* Pessoa física: linguagem visual mais clara, humana e orientada à decisão. */
.route-hero--person {
  min-height: max(760px, 100svh);
  align-items: center;
  padding: 150px 0 82px;
  background:
    radial-gradient(circle at 14% 74%, rgba(212, 188, 142, 0.34), transparent 29%),
    linear-gradient(112deg, var(--paper) 0 66%, var(--paper-soft) 66% 100%);
  color: var(--ink);
}

.route-hero--person::before {
  background:
    linear-gradient(90deg, rgba(27, 37, 69, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(27, 37, 69, 0.03) 1px, transparent 1px);
  background-size: 132px 100%, 100% 132px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.9), transparent 72%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.9), transparent 72%);
}

.route-hero--person::after {
  height: 120px;
  background: linear-gradient(to top, rgba(248, 249, 252, 0.52), transparent);
}

.person-hero__wash {
  position: absolute;
  top: 18%;
  left: -8%;
  z-index: 0;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(61, 109, 179, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(61, 109, 179, 0.035), 0 0 0 132px rgba(212, 188, 142, 0.055);
  pointer-events: none;
}

.route-hero--person .route-hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.54fr);
  align-items: center;
  gap: clamp(54px, 7vw, 112px);
}

.route-hero--person .breadcrumb {
  margin-bottom: clamp(34px, 5vw, 58px);
  color: rgba(27, 37, 69, 0.52);
}

.route-hero--person .breadcrumb [aria-current="page"] {
  color: rgba(27, 37, 69, 0.82);
}

.route-hero--person .breadcrumb li:not(:last-child)::after {
  color: var(--sage);
}

.route-hero--person .breadcrumb a:hover {
  color: var(--sage);
}

.route-hero--person .route-eyebrow {
  color: var(--sage);
}

.route-hero--person h1 {
  max-width: 820px;
  font-size: clamp(4.1rem, 6.7vw, 7.4rem);
  line-height: 0.92;
}

.route-hero--person h1 em {
  color: var(--sage);
}

.route-hero--person .route-hero__lead {
  max-width: 660px;
  color: rgba(27, 37, 69, 0.72);
}

.route-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button--person-primary {
  min-width: 230px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-soft);
}

.button--person-primary:hover {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--paper-soft);
}

.route-hero__contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(27, 37, 69, 0.34);
  color: var(--ink-soft);
  font-family: var(--wide);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.route-hero__contact:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.route-hero--person .route-hero__meta span {
  border-color: rgba(27, 37, 69, 0.16);
  background: rgba(248, 249, 252, 0.56);
  color: rgba(27, 37, 69, 0.68);
}

.route-hero--person .route-hero__meta span::before {
  background: var(--sage);
}

.person-hero__visual {
  position: relative;
  width: min(100%, 430px);
  justify-self: end;
  padding: 18px 18px 28px 0;
}

.person-hero__frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(27, 37, 69, 0.12);
  border-radius: 220px 220px 28px 28px;
  background: var(--ink-soft);
  box-shadow: 0 34px 90px rgba(27, 37, 69, 0.2);
}

.person-hero__frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 22, 42, 0.3), transparent 42%);
  content: "";
}

.person-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.person-hero__caption {
  position: absolute;
  right: 64px;
  bottom: 0;
  z-index: 2;
  display: grid;
  width: min(310px, 82%);
  gap: 3px;
  padding: 22px 24px;
  border: 1px solid rgba(248, 249, 252, 0.16);
  border-radius: 16px;
  background: var(--ink);
  box-shadow: 0 20px 54px rgba(20, 22, 42, 0.24);
  color: var(--paper-soft);
}

.person-hero__caption small,
.person-hero__caption span {
  color: rgba(248, 249, 252, 0.58);
  font-family: var(--wide);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.person-hero__caption strong {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
}

.person-hero__area {
  position: absolute;
  top: 82px;
  right: -62px;
  color: var(--sage);
  font-family: var(--wide);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: center;
}

.person-path {
  position: sticky;
  top: 74px;
  z-index: 900;
  overflow: hidden;
  border-top: 1px solid rgba(248, 249, 252, 0.09);
  border-bottom: 1px solid rgba(248, 249, 252, 0.09);
  background: rgba(20, 22, 42, 0.96);
  color: var(--paper-soft);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.person-path .container {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  min-height: 58px;
  overflow-x: auto;
  scrollbar-width: none;
}

.person-path .container::-webkit-scrollbar {
  display: none;
}

.person-path span,
.person-path a {
  flex: 0 0 auto;
  font-family: var(--wide);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.person-path span {
  color: var(--gold-light);
  font-weight: 600;
}

.person-path a {
  color: rgba(248, 249, 252, 0.68);
  transition: color 0.3s ease;
}

.person-path a:hover {
  color: var(--paper-soft);
}

.route-section--person-services::before {
  position: absolute;
  top: 12%;
  right: -12%;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(61, 109, 179, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 76px rgba(61, 109, 179, 0.025);
  content: "";
  pointer-events: none;
}

.person-detail .service-card {
  border-color: rgba(27, 37, 69, 0.12);
  background: var(--paper);
  box-shadow: 0 20px 58px rgba(27, 37, 69, 0.055);
}

.person-detail .service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--sage);
  content: "";
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.55s var(--ease-out);
}

.person-detail .service-card:hover {
  border-color: rgba(61, 109, 179, 0.34);
  background: var(--paper-soft);
}

.person-detail .service-card:hover::before {
  transform: scaleX(1);
}

.person-process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  align-items: stretch;
  gap: 22px;
}

.person-process-layout .process-card {
  padding-inline: clamp(20px, 2.3vw, 34px);
}

.preparation-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4vw, 50px);
  border-radius: 22px;
  background: var(--ink-soft);
  color: var(--paper-soft);
}

.preparation-card::after {
  position: absolute;
  right: -74px;
  bottom: -74px;
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid rgba(212, 188, 142, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(61, 109, 179, 0.08);
  content: "";
}

.preparation-card > span {
  color: var(--gold-light);
  font-family: var(--wide);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preparation-card h3 {
  margin: 30px 0 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.1vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.preparation-card p {
  margin: 0;
  color: rgba(248, 249, 252, 0.62);
  font-size: 0.75rem;
  line-height: 1.75;
}

.preparation-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 28px 0 22px;
  padding: 0;
  border-top: 1px solid rgba(248, 249, 252, 0.14);
  list-style: none;
}

.preparation-card li {
  position: relative;
  padding: 17px 0 17px 26px;
  border-bottom: 1px solid rgba(248, 249, 252, 0.14);
  color: rgba(248, 249, 252, 0.78);
  font-size: 0.7rem;
  line-height: 1.6;
}

.preparation-card li::before {
  position: absolute;
  top: 23px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  content: "";
}

.preparation-card small {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(248, 249, 252, 0.5);
  font-size: 0.62rem;
  line-height: 1.6;
}

.practice-page .footer {
  background: #14162a;
}

.practice-page [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s ease, transform 1s var(--ease-out);
}

.practice-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes routeAura {
  from { opacity: 0.55; transform: scale(0.96) rotate(-3deg); }
  to { opacity: 0.9; transform: scale(1.04) rotate(3deg); }
}

@media (max-width: 1040px) {
  .route-hero__inner { grid-template-columns: minmax(0, 1fr) 170px; }
  .route-hero--person .route-hero__inner { grid-template-columns: minmax(0, 1fr) minmax(290px, 0.46fr); gap: 42px; }
  .route-hero--person h1 { font-size: clamp(3.8rem, 6.8vw, 6.2rem); }
  .person-hero__area { display: none; }
  .route-section__heading { grid-template-columns: 100px minmax(0, 1fr); }
  .route-heading-lead { grid-column: 2; max-width: 600px; }
  .areas-directory { grid-template-columns: 1fr; }
  .area-directory-card { min-height: 420px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .route-hero { min-height: 820px; padding-top: 145px; }
  .route-hero__inner { grid-template-columns: 1fr; }
  .route-hero--person { min-height: 760px; padding: 132px 0 72px; }
  .route-hero--person .route-hero__inner { grid-template-columns: minmax(0, 1fr) 270px; gap: 34px; }
  .route-hero--person .route-hero__meta span:nth-child(2) { display: none; }
  .person-hero__caption { right: 56px; width: 90%; padding: 18px; }
  .route-hero__aside { display: none; }
  .route-hero__aura { top: 22%; right: -20%; width: 80vw; }
  .audience-grid,
  .scope-preview,
  .signals-layout { grid-template-columns: 1fr; }
  .scope-preview__intro { position: static; }
  .expertise-band { grid-template-columns: 1fr; }
  .expertise-band > div + div { border-top: 1px solid rgba(255,255,255,0.12); border-left: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 0; }
  .process-card + .process-card { border-top: 1px solid rgba(27,37,69,0.15); border-left: 0; }
  .process-card h3 { margin-top: 34px; }
  .person-process-layout { grid-template-columns: 1fr; }
  .route-cta { grid-template-columns: 1fr; align-items: start; }
  .route-cta .button { justify-self: start; }
}

@media (max-width: 760px) {
  .route-hero--person { min-height: auto; }
  .route-hero--person .route-hero__inner { grid-template-columns: 1fr; }
  .route-hero--person .route-hero__content { max-width: 640px; }
  .person-hero__visual { width: 100%; max-width: 640px; justify-self: start; margin-top: 18px; padding-right: 0; }
  .person-hero__frame { aspect-ratio: 16 / 9; border-radius: 120px 120px 24px 24px; }
  .person-hero__frame img { object-position: center 26%; }
  .person-hero__caption { right: 70px; bottom: -2px; width: min(310px, 72%); }
}

@media (max-width: 640px) {
  .route-hero { min-height: max(700px, 100svh); padding: 118px 0 74px; }
  .breadcrumb { gap: 7px; margin-bottom: 56px; font-size: 0.48rem; }
  .breadcrumb li { gap: 7px; }
  .route-hero h1 { font-size: clamp(3.45rem, 16vw, 5.2rem); }
  .route-hero--person { padding: 108px 0 56px; background: var(--paper); }
  .route-hero--person .breadcrumb { margin-bottom: 34px; }
  .route-hero--person h1 { font-size: clamp(3.25rem, 14.8vw, 4.7rem); }
  .route-hero__actions { align-items: stretch; gap: 18px; margin-top: 28px; }
  .route-hero__actions .button { width: 100%; }
  .route-hero__contact { width: fit-content; }
  .route-hero--person .route-hero__meta { margin-top: 26px; }
  .route-hero--person .route-hero__meta span:nth-child(3) { display: none; }
  .person-hero__visual { margin-top: 10px; padding-bottom: 0; }
  .person-hero__frame { aspect-ratio: 4 / 3; border-radius: 100px 100px 20px 20px; }
  .person-hero__caption { position: relative; right: auto; bottom: auto; width: 100%; margin-top: -1px; border-radius: 0 0 16px 16px; box-shadow: none; }
  .person-path { top: 58px; }
  .person-path .container { min-height: 52px; gap: 26px; }
  .person-path span { display: none; }
  .person-path a { font-size: 0.52rem; }
  .route-hero__lead { font-size: 0.88rem; }
  .route-hero__meta { gap: 7px; }
  .route-hero__meta span { padding: 7px 9px; font-size: 0.48rem; }
  .route-section { padding: 86px 0; }
  .route-section__heading { display: block; }
  .route-index { margin-bottom: 48px; }
  .route-heading-lead { margin-top: 24px; }
  .route-title { font-size: clamp(2.8rem, 13.2vw, 4.2rem); }
  .area-directory-card { min-height: 440px; padding: 28px; border-radius: 20px; }
  .area-card__body h2,
  .area-card__body h3 { font-size: 2.75rem; }
  .audience-card { min-height: 440px; padding: 28px; border-radius: 20px; }
  .audience-card__body { margin: 66px 0 54px; }
  .audience-card__body h2,
  .audience-card__body h3 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 265px; }
  .person-detail .service-card { min-height: 285px; }
  .signals-list li { padding-right: 32px; }
  .preparation-card { border-radius: 18px; }
  .related-areas { grid-template-columns: 1fr; }
  .route-cta h2 { font-size: clamp(3.1rem, 14vw, 4.8rem); }
  .route-cta-section::after { top: -20%; right: -55%; width: 120vw; }
}

@media (prefers-reduced-motion: reduce) {
  .route-hero__aura { animation: none; }
  .practice-page [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media print {
  .route-canvas,
  .route-hero__aura,
  .practice-page .floating-actions { display: none !important; }
  .route-hero { min-height: auto; padding: 80px 0; }
}
