:root {
  --navy-950: #071c26;
  --navy-900: #0b2633;
  --navy-800: #123746;
  --navy-700: #1b4b5b;
  --teal-500: #b59335;
  --teal-600: #927220;
  --teal-100: #f4ecd4;
  --ivory: #f8f5ee;
  --paper: #fffdf8;
  --sand: #ded6c8;
  --ink: #17242a;
  --muted: #5d6b70;
  --line: #d8dfdc;
  --white: #ffffff;
  --danger: #a23535;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 22px 70px rgba(7, 28, 38, 0.12);
  --shell: min(1180px, calc(100% - 48px));
  --radius: 3px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--teal-500);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.utility-bar {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-950);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.utility-inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.utility-inner svg,
.text-link svg,
.button svg,
.site-nav svg,
.practice-card svg,
.hero-aside svg,
.related-grid svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.utility-inner svg {
  width: 14px;
  height: 14px;
}

.utility-divider {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.24);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(16, 45, 59, 0.1);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(146, 114, 32, 0.3);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(7, 28, 38, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.65);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy small {
  margin-bottom: 4px;
  color: var(--teal-600);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: var(--sans);
  font-size: 1.04rem;
  font-weight: 650;
  letter-spacing: 0.15em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a {
  position: relative;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 45px;
  padding: 0 17px;
  color: var(--white);
  background: var(--navy-900);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  cursor: pointer;
}

.menu-button svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.menu-close {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-close {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.7rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--teal-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--teal-500);
}

.button-row,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-teal {
  color: var(--navy-950);
  background: var(--teal-500);
}

.button-teal:hover {
  background: #c5a548;
}

.button-navy {
  color: var(--white);
  background: var(--navy-900);
}

.button-navy:hover {
  background: var(--navy-800);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-ivory {
  color: var(--navy-950);
  background: var(--ivory);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: none;
}

.text-link.light {
  color: var(--white);
}

.text-link:hover svg,
.practice-card:hover .card-link svg,
.site-nav .nav-cta:hover svg {
  transform: translateX(4px);
}

.text-link svg,
.practice-card .card-link svg,
.site-nav .nav-cta svg {
  transition: transform 180ms ease;
}

.hero {
  color: var(--white);
  background: var(--navy-900);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 138px) 0 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(32, 196, 199, 0.15), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 60%, #164352);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.17;
  background-image: repeating-linear-gradient(115deg, transparent 0, transparent 58px, rgba(255, 255, 255, 0.08) 59px, transparent 60px);
}

.hero-rule {
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.65fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
  padding-bottom: clamp(65px, 8vw, 110px);
}

.hero-copy {
  max-width: 820px;
}

.hero-copy h1,
.page-hero h1,
.page-hero h2 {
  color: var(--white);
}

.hero-copy h1 {
  margin-bottom: 32px;
}

.hero-copy h1 em,
.page-hero h1 em {
  color: var(--teal-500);
  font-weight: 400;
}

.hero-lede {
  max-width: 740px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.hero-aside {
  padding: 0 0 5px;
}

.aside-kicker {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-aside a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  text-decoration: none;
}

.hero-aside a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-aside a > span {
  color: var(--teal-500);
  font-family: var(--serif);
  font-size: 0.85rem;
}

.hero-aside a > strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.hero-aside a:hover svg {
  color: var(--teal-500);
  transform: translateX(4px);
}

.hero-aside svg {
  transition: transform 180ms ease;
}

.proof-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-strip > div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 22px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-strip > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-strip strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
}

.section-heading {
  margin-bottom: clamp(42px, 6vw, 70px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.split-heading > p {
  max-width: 500px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.centered {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

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

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.practice-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.practice-card:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.practice-card .card-index {
  align-self: flex-end;
  color: #889396;
  font-family: var(--serif);
  font-size: 0.9rem;
}

.practice-card .eyebrow {
  margin-top: 44px;
  margin-bottom: 14px;
}

.practice-card h3 {
  max-width: 300px;
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.practice-card > p:not(.eyebrow) {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 800;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 10vw, 130px);
  align-items: center;
}

.portrait-panel {
  position: relative;
  max-width: 430px;
  padding: 34px;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.portrait-panel::after {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 80%;
  height: 80%;
  z-index: -1;
  content: "";
  border: 1px solid var(--teal-500);
}

.portrait-frame {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--teal-100);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.portrait-caption {
  display: grid;
  gap: 2px;
  margin: 25px 0 0;
  color: var(--white);
}

.portrait-caption span {
  color: var(--teal-500);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portrait-caption strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.feature-copy h2 {
  max-width: 780px;
  margin-bottom: 28px;
}

.feature-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-copy .text-link {
  margin-top: 16px;
}

.approach-section {
  color: var(--white);
  background: var(--navy-950);
}

.approach-section h2 {
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.process-grid li {
  min-height: 330px;
  padding: 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.process-grid li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.process-grid li > span {
  display: block;
  margin-bottom: 90px;
  color: var(--teal-500);
  font-family: var(--serif);
}

.process-grid h3 {
  color: var(--white);
  font-size: 1.75rem;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.64);
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--white);
}

.review-card blockquote {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.25;
}

.review-card figcaption {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fine-print,
.source-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-band {
  color: var(--white);
  background: var(--teal-600);
}

.contact-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: center;
}

.contact-band h2 {
  margin-bottom: 0;
  color: var(--navy-950);
}

.contact-band .eyebrow {
  color: rgba(7, 28, 38, 0.68);
}

.contact-band-grid > div:last-child {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.contact-band-grid > div:last-child p {
  margin: 0;
  color: var(--navy-950);
}

.contact-band-grid p a {
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(85px, 11vw, 150px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0, rgba(32, 196, 199, 0.16), transparent 32%),
    var(--navy-900);
}

.page-hero::after {
  position: absolute;
  right: -80px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(32, 196, 199, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(32, 196, 199, 0.025), 0 0 0 120px rgba(32, 196, 199, 0.02);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: end;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(3.1rem, 6.4vw, 6.2rem);
}

.page-hero-grid > p,
.page-hero-grid > div > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.hero-quote {
  padding: 34px 0 6px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-quote > span {
  color: var(--teal-500);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.7;
}

.hero-quote p {
  color: var(--white) !important;
  font-family: var(--serif);
  font-size: 1.8rem !important;
  line-height: 1.35;
}

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

.bio-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 9vw, 120px);
  align-items: start;
}

.bio-card {
  position: sticky;
  top: 130px;
  padding: 28px;
  border-top: 5px solid var(--teal-500);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.bio-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 38%;
  background: var(--teal-100);
}

.bio-card > div {
  padding: 26px 6px 14px;
}

.bio-card .eyebrow {
  margin-bottom: 8px;
}

.bio-card h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 2rem;
}

.bio-card dl {
  margin: 0;
  color: var(--white);
}

.bio-card dl > div {
  display: grid;
  gap: 2px;
  padding: 18px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.bio-card dt {
  color: var(--teal-500);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bio-card dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.prose {
  max-width: 770px;
}

.prose h2 {
  margin-bottom: 30px;
}

.prose h3 {
  margin: 50px 0 16px;
  font-size: 1.75rem;
}

.prose p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.prose .inline-actions {
  margin-top: 45px;
}

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

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.credential-grid > div {
  min-height: 270px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.credential-grid > div:last-child {
  border-right: 0;
}

.credential-grid span,
.section-number {
  color: var(--teal-600);
  font-family: var(--serif);
}

.credential-grid h3 {
  margin: 65px 0 16px;
}

.credential-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}

.practice-hero .page-hero-grid > p {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.urgency-section {
  background: var(--teal-100);
}

.urgency-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 90px;
  align-items: center;
}

.urgency-grid h2 {
  margin-bottom: 0;
}

.urgency-grid > div:last-child p {
  color: var(--muted);
  font-size: 1.04rem;
}

.urgency-grid .button {
  margin-top: 15px;
}

.matter-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.55fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: end;
}

.matter-hero h1 {
  max-width: 940px;
  margin-bottom: 30px;
  font-size: clamp(3.1rem, 5.7vw, 5.6rem);
}

.matter-hero-grid > div > p:not(.eyebrow) {
  max-width: 800px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.matter-contact-card {
  display: grid;
  gap: 14px;
  padding: 34px;
  border-top: 4px solid var(--teal-500);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.matter-contact-card p {
  margin: 0;
  color: var(--teal-600);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.matter-contact-card strong {
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
}

.matter-contact-card span {
  color: var(--muted);
}

.matter-contact-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: none;
}

.matter-contact-card svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.practice-jump {
  position: sticky;
  z-index: 50;
  top: 88px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(12px);
}

.practice-jump .shell {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 34px;
  overflow-x: auto;
}

.practice-jump a {
  flex: 0 0 auto;
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.content-grid h2 {
  max-width: 560px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  min-height: 92px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-list li:nth-child(2n + 1) {
  border-left: 1px solid var(--line);
}

.check-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--teal-600);
  stroke-width: 2;
}

.perspective-section {
  color: var(--white);
  background: var(--navy-950);
}

.perspective-grid {
  display: grid;
  grid-template-columns: 120px minmax(0, 850px);
  gap: 60px;
  justify-content: center;
}

.section-number {
  margin: 0;
  font-size: 5rem;
  line-height: 1;
}

.perspective-grid h2 {
  margin-bottom: 30px;
  color: var(--white);
}

.perspective-grid p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.06rem;
}

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

.prepare-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
}

.prepare-grid > div > p:not(.eyebrow) {
  color: var(--muted);
}

.prepare-grid ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.prepare-grid li {
  min-height: 92px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.prepare-grid li span {
  color: var(--teal-600);
  font-family: var(--serif);
}

.prepare-grid li p {
  margin: 0;
  font-weight: 700;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 100px;
}

.faq-grid > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 1.4rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--teal-600);
  font-family: var(--sans);
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 35px 28px 0;
  color: var(--muted);
}

.related-section {
  padding-top: 0;
  background: var(--paper);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.related-grid a {
  min-height: 140px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.related-grid a:hover {
  background: var(--teal-100);
}

.related-grid span {
  color: var(--teal-600);
  font-family: var(--serif);
}

.related-grid strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.spanish-callout {
  display: grid;
  gap: 8px;
  padding: 34px;
  border-left: 4px solid var(--teal-500);
  background: rgba(255, 255, 255, 0.07);
}

.spanish-callout p,
.spanish-callout span {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spanish-callout a {
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.2rem;
  text-decoration: none;
}

.spanish-services {
  background: var(--ivory);
}

.spanish-grid .practice-card {
  min-height: 330px;
}

.spanish-about {
  background: var(--paper);
}

.spanish-notice {
  padding-block: 55px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.spanish-notice .shell {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 50px;
  align-items: start;
}

.spanish-notice h2 {
  color: var(--white);
  font-size: 1.6rem;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: start;
}

.contact-details {
  position: sticky;
  top: 130px;
}

.contact-details h2 {
  margin-bottom: 40px;
}

.contact-method {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-method > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--teal-600);
}

.contact-method svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method div {
  display: grid;
  gap: 1px;
}

.contact-method small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-method a {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.17rem;
  text-decoration: none;
}

.deadline-box {
  margin-top: 28px;
  padding: 24px;
  border-left: 4px solid var(--teal-500);
  background: var(--teal-100);
}

.deadline-box strong {
  color: var(--navy-950);
}

.deadline-box p {
  margin: 6px 0 0;
  color: var(--muted);
}

.intake-form {
  padding: clamp(30px, 5vw, 58px);
  border-top: 5px solid var(--teal-500);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 38px;
}

.form-heading h2 {
  margin-bottom: 16px;
}

.form-heading > p:last-child {
  color: var(--muted);
}

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

.form-grid > label:not(.choice):not(.consent) {
  display: grid;
  gap: 8px;
}

.form-grid label > span,
.form-grid legend {
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.form-grid input:not([type="radio"]):not([type="checkbox"]),
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #bec9c7;
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
}

.form-grid select,
.form-grid select option {
  color: var(--ink);
  background-color: var(--white);
  color-scheme: light;
  -webkit-text-fill-color: var(--ink);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
}

.form-grid textarea {
  min-height: 145px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--teal-600);
  outline: 3px solid rgba(32, 196, 199, 0.16);
}

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

.form-grid fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-grid legend {
  width: 100%;
  margin-bottom: 8px;
}

.choice,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}

.choice input,
.consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--teal-600);
}

.choice span {
  font-weight: 600 !important;
}

.consent {
  margin-top: 6px;
  padding: 18px;
  background: var(--ivory);
}

.consent span {
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.intake-form > .button {
  margin-top: 30px;
}

.form-error {
  margin: 24px 0 0;
  color: var(--danger);
  font-weight: 800;
}

.legal-hero {
  padding-block: 85px;
}

.legal-hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
}

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

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin: 52px 0 16px;
  font-size: 2rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.legal-copy a {
  color: var(--navy-900);
  font-weight: 800;
}

.legal-updated {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem !important;
}

.not-found .shell {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
}

.not-found h1 {
  margin-bottom: 24px;
}

.not-found p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.7);
}

.closing-cta {
  padding: clamp(65px, 8vw, 100px) 0;
  color: var(--white);
  background: var(--navy-800);
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 70px;
  align-items: center;
}

.closing-cta h2 {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--white);
}

.closing-actions {
  display: grid;
  gap: 23px;
  justify-items: start;
}

.site-footer {
  padding: 80px 0 25px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.15fr 0.75fr;
  gap: clamp(35px, 6vw, 80px);
  padding-bottom: 65px;
}

.footer-logo-card {
  width: min(240px, 100%);
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(181, 147, 53, 0.35);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.footer-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand > p {
  max-width: 330px;
  margin: 25px 0 0;
}

.footer-brand .footer-note {
  color: var(--teal-500);
  font-weight: 800;
}

.footer-grid h3 {
  margin-bottom: 25px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--teal-500);
}

.footer-contact li {
  display: grid;
}

.footer-contact span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1050px) {
  .site-nav {
    gap: 20px;
  }

  .hero-grid,
  .page-hero-grid,
  .matter-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-aside {
    max-width: 650px;
  }

  .proof-strip,
  .credential-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip > div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .proof-strip > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .credential-grid > div:nth-child(2) {
    border-right: 0;
  }

  .credential-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .contact-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
  }

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

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 700px);
  }

  body {
    padding-bottom: 62px;
  }

  .utility-inner > span,
  .utility-divider {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-inner a {
    margin-left: 0;
  }

  .header-inner {
    min-height: 75px;
  }

  .site-header {
    background: var(--paper);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 300;
    inset: 113px 0 0;
    display: none;
    align-content: start;
    gap: 0;
    padding: 28px 24px;
    overflow-y: auto;
    color: var(--navy-950);
    background-color: #fffdf8;
    opacity: 1;
    -webkit-overflow-scrolling: touch;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-is-open .site-nav {
    display: grid;
  }

  .site-nav > a {
    display: flex;
    align-items: center;
    min-height: 60px;
    border-bottom: 1px solid var(--line);
    color: var(--navy-950);
    background-color: #fffdf8;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
  }

  .site-nav > a::after {
    display: none;
  }

  .site-nav .nav-cta {
    justify-content: space-between;
    margin-top: 22px;
    padding: 0 18px;
    color: var(--white);
    background-color: var(--navy-900);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 800;
  }

  .hero-rule {
    display: none;
  }

  .home-hero {
    padding-top: 75px;
  }

  .hero-grid {
    gap: 55px;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 13vw, 5rem);
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip > div {
    min-height: 100px;
    padding: 20px;
  }

  .split-heading,
  .feature-grid,
  .bio-grid,
  .urgency-grid,
  .content-grid,
  .prepare-grid,
  .faq-grid,
  .contact-layout,
  .contact-band-grid,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .feature-grid,
  .bio-grid,
  .content-grid,
  .prepare-grid,
  .faq-grid,
  .contact-layout {
    gap: 50px;
  }

  .approach-section .centered {
    text-align: left;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    min-height: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .process-grid li > span {
    margin-bottom: 35px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .bio-card,
  .contact-details {
    position: static;
  }

  .page-hero-grid {
    gap: 40px;
  }

  .practice-hero .page-hero-grid > p {
    padding: 26px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .matter-contact-card {
    max-width: 520px;
  }

  .practice-jump {
    top: 75px;
  }

  .perspective-grid {
    grid-template-columns: 60px 1fr;
    gap: 30px;
  }

  .section-number {
    font-size: 3rem;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .spanish-notice .shell {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-grid {
    gap: 50px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 62px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--navy-950);
    box-shadow: 0 -10px 30px rgba(7, 28, 38, 0.18);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-action-bar a:last-child {
    color: var(--navy-950);
    background: var(--teal-500);
  }

  .mobile-action-bar svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }
}

@media (max-width: 590px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand-copy small {
    letter-spacing: 0.12em;
  }

  .hero-copy h1,
  .page-hero h1,
  .matter-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .button-row,
  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .inline-actions .button {
    width: 100%;
  }

  .button-row .text-link,
  .inline-actions .text-link {
    align-self: center;
    padding: 12px 0;
  }

  .proof-strip {
    width: 100%;
  }

  .proof-strip > div {
    padding: 17px 13px;
  }

  .proof-strip strong {
    font-size: 1.05rem;
  }

  .proof-strip span {
    font-size: 0.64rem;
  }

  .practice-grid,
  .credential-grid,
  .check-list,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .practice-card {
    min-height: 330px;
  }

  .credential-grid > div {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credential-grid > div:last-child {
    border-bottom: 0;
  }

  .check-list li,
  .check-list li:nth-child(2n + 1) {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .perspective-grid {
    grid-template-columns: 1fr;
  }

  .practice-jump .shell {
    gap: 22px;
  }

  .form-grid .full {
    grid-column: auto;
  }

  .intake-form {
    margin-inline: -4px;
  }

  .spanish-callout a {
    font-size: 1.75rem;
  }

  .footer-grid {
    gap: 42px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .closing-cta,
  .site-footer,
  .mobile-action-bar,
  .practice-jump,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .page-hero,
  .hero,
  .perspective-section {
    padding: 35px 0;
    color: #000;
    background: #fff;
  }

  .page-hero h1,
  .hero h1,
  .perspective-section h2 {
    color: #000;
  }
}
