:root {
  --paper: #f7f5f0;
  --paper-2: #f0ece3;
  --ink: #0a1128;
  --blue: #004e98;
  --neon: #39ff14;
  --rule: rgba(10, 17, 40, 0.12);
  --rule-on-ink: rgba(255, 255, 255, 0.16);
  --muted: rgba(10, 17, 40, 0.68);
  --paper-muted: rgba(247, 245, 240, 0.74);
  --body-font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display-font: Georgia, "Times New Roman", serif;
  --mono-font: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

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

[hidden] {
  display: none !important;
}

em {
  font-family: var(--display-font);
  font-style: italic;
}

strong {
  font-weight: 700;
}

::selection {
  background: var(--neon);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 10001;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0 40px;
}

.narrow {
  width: min(100%, 960px);
}

.center {
  text-align: center;
}

.section {
  padding: 96px 0;
}

.section-rule {
  border-top: 1px solid var(--rule);
}

.paper-alt {
  background: var(--paper-2);
}

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

.icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.eyebrow {
  margin: 0;
  color: rgba(10, 17, 40, 0.58);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--ink {
  color: rgba(247, 245, 240, 0.58);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  transition: opacity 160ms ease, transform 160ms ease;
}

.button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.button--ink {
  background: var(--ink);
  color: var(--paper);
}

.button--neon {
  background: var(--neon);
  color: var(--ink);
}

.button--outline {
  border-color: var(--ink);
  color: var(--ink);
}

.button--md {
  padding: 13px 24px;
}

.button--lg {
  padding: 16px 30px;
  font-size: 14px;
}

.text-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  color: rgba(10, 17, 40, 0.72);
  font-size: 15px;
  font-weight: 650;
}

.text-link:hover {
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.nav-shell {
  width: min(100%, 1240px);
  height: 72px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-link img {
  width: 155px;
  height: 50px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  color: rgba(10, 17, 40, 0.76);
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.menu-trigger {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 10px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.mobile-menu__top {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  padding: 0 20px;
}

.mobile-menu__nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 20px 40px;
}

.mobile-menu__nav a:not(.button) {
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  font-family: var(--display-font);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
}

.mobile-menu__cta {
  width: 100%;
  margin-top: 32px;
}

.site-footer {
  border-top: 1px solid var(--rule);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 44px;
}

.footer-brand p {
  max-width: 280px;
  margin: 20px 0 0;
  color: rgba(10, 17, 40, 0.64);
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-contact {
  grid-column: auto;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  padding-bottom: 32px;
  color: rgba(10, 17, 40, 0.56);
  font-size: 11px;
  line-height: 1.6;
}

.footer-legal p {
  max-width: 700px;
  margin: 0;
}

.footer-legal > div {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.hero {
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 64px;
}

.hero-title {
  margin: 24px 0 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 96px;
  font-weight: 300;
  line-height: 0.98;
}

.hero-copy {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 560px;
  margin: 48px 0 0;
}

.hero-stats dt {
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 400;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(10, 17, 40, 0.6);
  font-size: 12px;
}

.hero-phone {
  display: flex;
  justify-content: flex-end;
}

.chat-phone {
  overflow: hidden;
  border-radius: 6px;
}

.chat-phone--hero {
  width: 310px;
  height: 560px;
  border-radius: 26px;
  background: #075e54;
  box-shadow: 0 30px 80px rgba(10, 17, 40, 0.22), 0 6px 20px rgba(10, 17, 40, 0.08);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: white;
}

.chat-avatar {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #b1ff00;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.chat-header strong,
.chat-header span {
  display: block;
  line-height: 1.2;
}

.chat-header strong {
  font-size: 13px;
}

.chat-header span {
  opacity: 0.75;
  font-size: 11px;
}

.chat-body {
  height: calc(100% - 52px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  background: #e5ddd5;
  padding: 20px;
}

.chat-row {
  display: flex;
}

.chat-row--out {
  justify-content: flex-end;
}

.chat-bubble {
  max-width: 78%;
  border-radius: 8px;
  padding: 8px 10px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  color: #111;
  font-size: 13px;
  line-height: 1.35;
}

.chat-bubble--in {
  background: #fff;
}

.chat-bubble--out {
  background: #d9fdd3;
}

.chat-bubble span {
  float: right;
  margin: 5px 0 0 8px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 9px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

.section-heading h2,
.expertise-section h2,
.closing-section h2,
.two-column h2,
.ink-section h2,
.quote-section blockquote,
.center h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.05;
}

.section-heading p {
  max-width: 350px;
  margin: 0;
  color: rgba(10, 17, 40, 0.66);
  font-size: 14px;
  line-height: 1.55;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.steps-grid article {
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid var(--rule);
}

.steps-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.step-number {
  margin-bottom: 14px;
  color: rgba(10, 17, 40, 0.42);
  font-family: var(--display-font);
  font-size: 44px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.steps-grid h3,
.category-grid h3,
.reassurance-grid h3,
.values-grid h3,
.reason-list h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.steps-grid p,
.category-grid p,
.reassurance-grid p,
.values-grid p,
.reason-list p {
  margin: 0;
  color: rgba(10, 17, 40, 0.68);
  font-size: 14px;
  line-height: 1.56;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.two-column--top {
  align-items: start;
}

.two-column > p,
.two-column > div > p,
.expertise-section p,
.ink-section p,
.center p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.ink-section p,
.ink-section .values-grid p {
  color: var(--paper-muted);
}

.expertise-section h2 {
  max-width: 650px;
  margin-top: 20px;
  color: var(--paper);
  font-size: 68px;
}

.expertise-section h2 span {
  display: inline-block;
  border-bottom: 2px solid var(--neon);
  padding-bottom: 2px;
}

.check-list,
.mini-check-list,
.plan-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.mini-check-list li,
.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-list li + li,
.mini-check-list li + li,
.plan-list li + li {
  margin-top: 12px;
}

.check-list .icon,
.mini-check-list .icon,
.plan-list .icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.check-list.on-ink .icon,
.plan-card--featured .plan-list .icon {
  color: var(--neon);
}

.lawyers-picture,
.founder-picture {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rule-on-ink);
  background: linear-gradient(135deg, var(--blue), var(--ink));
}

.lawyers-picture {
  aspect-ratio: 5 / 6;
}

.lawyers-picture picture,
.lawyers-picture img,
.founder-picture picture,
.founder-picture img {
  width: 100%;
  height: 100%;
}

.lawyers-picture img,
.founder-picture img {
  object-fit: cover;
  opacity: 0.9;
  filter: contrast(1.05) sepia(0.08);
  mix-blend-mode: luminosity;
}

.lawyers-picture figcaption,
.founder-picture figcaption {
  position: absolute;
  inset: auto 24px 24px;
  border-top: 1px solid rgba(247, 245, 240, 0.24);
  padding-top: 12px;
  color: rgba(247, 245, 240, 0.78);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.category-grid article {
  min-width: 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 32px 28px;
}

.category-grid article:nth-child(3n) {
  border-right: 0;
}

.category-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.category-grid .icon {
  width: 29px;
  height: 29px;
  margin-bottom: 16px;
}

.category-list {
  display: none;
}

.closing-section .quote-mark,
.quote-mark {
  margin-bottom: -10px;
  color: rgba(10, 17, 40, 0.32);
  font-family: var(--display-font);
  font-size: 72px;
  font-style: italic;
  line-height: 1;
}

.closing-section p,
.center p {
  max-width: 590px;
  margin: 28px auto 34px;
}

.headline-block h1,
.headline-block h2,
.hero-about h1,
.legal-hero h1 {
  margin: 20px 0 0;
  font-family: var(--display-font);
  font-size: 88px;
  font-weight: 300;
  line-height: 1.02;
}

.headline--wide h1 {
  max-width: 1080px;
}

.headline-copy {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.56;
}

.overview-strip {
  padding: 0 0 88px;
}

.overview-strip .container {
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.overview-grid a {
  display: block;
}

.overview-grid span,
.process-number,
.reassurance-grid span,
.values-grid span,
.reason-list > article > span {
  display: block;
  color: rgba(10, 17, 40, 0.42);
  font-family: var(--display-font);
  font-size: 44px;
  font-style: italic;
  line-height: 1;
}

.overview-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
}

.overview-grid small {
  display: block;
  margin-top: 5px;
  color: rgba(10, 17, 40, 0.66);
  font-size: 13px;
  line-height: 1.4;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 72px;
}

.process-step--reverse .process-copy {
  order: 2;
}

.process-step--reverse .process-chat {
  order: 1;
  justify-content: flex-start;
}

.process-number {
  font-size: 82px;
}

.process-copy h2 {
  margin: 12px 0 0;
  font-family: var(--display-font);
  font-size: 70px;
  font-weight: 400;
  line-height: 0.96;
}

.process-copy > p {
  max-width: 540px;
  margin: 26px 0 0;
  color: rgba(10, 17, 40, 0.78);
  font-size: 18px;
  line-height: 1.56;
}

.you-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 34px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}

.mini-check-list {
  margin-top: 12px;
}

.mini-check-list li {
  font-size: 14px;
  line-height: 1.35;
}

.time-note {
  margin-top: 32px;
  color: rgba(10, 17, 40, 0.62);
  font-family: var(--display-font);
  font-size: 13px;
  font-style: italic;
}

.process-chat {
  display: flex;
  justify-content: flex-end;
}

.chat-phone--step {
  width: min(100%, 290px);
  border: 1px solid var(--rule);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 20px 60px rgba(10, 17, 40, 0.12);
}

.step-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--rule);
  padding: 12px 16px;
}

.step-chat-header > div:first-child {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 17, 40, 0.92);
  color: var(--paper);
}

.step-chat-header .icon {
  width: 16px;
  height: 16px;
}

.step-chat-header strong,
.step-chat-header span {
  display: block;
  line-height: 1.2;
}

.step-chat-header strong {
  font-family: var(--display-font);
  font-size: 13px;
}

.step-chat-header span {
  color: rgba(10, 17, 40, 0.52);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.step-chat-body {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  gap: 8px;
  background: rgba(240, 236, 227, 0.6);
  padding: 16px 12px;
}

.step-message {
  max-width: 80%;
  border-radius: 16px;
  padding: 8px 10px;
  font-size: 12.5px;
  line-height: 1.35;
}

.step-message--in {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  background: var(--ink);
  color: var(--paper);
}

.step-message--out {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--rule);
}

.reassurance-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 48px;
  border-top: 1px solid var(--rule);
  padding-top: 34px;
}

.reassurance-grid article {
  padding-right: 32px;
  border-right: 1px solid var(--rule);
}

.reassurance-grid article:last-child {
  border-right: 0;
}

.plans-section {
  padding: 0 0 96px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 40px;
}

.plan-card--featured {
  border-color: transparent;
  background: var(--ink);
  color: var(--paper);
}

.featured-pill {
  position: absolute;
  right: 24px;
  top: 24px;
  border-radius: 999px;
  background: var(--neon);
  color: var(--ink);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 24px 0 0;
  font-family: var(--display-font);
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
}

.plan-card > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.plan-card--featured > p,
.plan-card--featured .ideal,
.plan-card--featured .plan-price span,
.plan-card--featured .plan-excluded {
  color: rgba(247, 245, 240, 0.66);
}

.plan-price {
  margin-top: 32px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}

.plan-card--featured .plan-price,
.plan-card--featured .plan-list,
.plan-card--featured .ideal {
  border-color: var(--rule-on-ink);
}

.plan-price strong {
  display: block;
  font-family: var(--display-font);
  font-size: 68px;
  font-weight: 300;
  line-height: 1;
}

.plan-price span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.plan-list {
  border-top: 1px solid var(--rule);
  padding-top: 30px;
}

.plan-list li {
  font-size: 14px;
  line-height: 1.35;
}

.plan-excluded {
  margin-top: 32px;
}

.plan-excluded ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.ideal {
  margin-top: auto;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  font-size: 13px;
  font-style: italic;
}

.ideal span {
  font-family: var(--display-font);
}

.plan-cta {
  width: 100%;
  margin-top: 28px;
}

.service-steps {
  margin-top: 48px;
  border-top: 1px solid var(--rule);
}

.service-steps article {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  align-items: baseline;
  gap: 24px;
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}

.service-steps span {
  color: rgba(10, 17, 40, 0.5);
  font-family: var(--display-font);
  font-size: 22px;
  font-style: italic;
}

.service-steps h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.service-steps p {
  margin: 0;
  color: var(--muted);
}

.faq-item {
  border-top: 1px solid var(--rule);
  padding: 26px 0;
}

.faq-item--ink {
  border-color: var(--rule-on-ink);
}

.faq-item h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 22px;
  font-weight: 600;
}

.faq-item p {
  margin: 14px 0 0;
  font-size: 16px;
}

.hero-about h1 {
  font-size: 84px;
  line-height: 1;
}

.hero-about .two-column > p {
  max-width: 520px;
  justify-self: end;
}

.stats-band {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stats-grid strong {
  display: block;
  font-family: var(--display-font);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
}

.stats-grid span {
  display: block;
  max-width: 220px;
  margin-top: 12px;
  color: rgba(10, 17, 40, 0.64);
  font-size: 13px;
}

.stats-note {
  margin: 24px 0 0;
  color: rgba(10, 17, 40, 0.52);
  font-family: var(--display-font);
  font-size: 11px;
  font-style: italic;
}

.quote-section blockquote {
  max-width: 960px;
  margin: 0 auto 28px;
  font-size: 50px;
  line-height: 1.16;
}

.quote-author {
  color: rgba(10, 17, 40, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.portrait-grid {
  align-items: start;
}

.founder-picture {
  aspect-ratio: 4 / 5;
  border-color: var(--rule);
}

.founder-picture figcaption {
  inset: auto 24px 0;
  border: 0;
  background: linear-gradient(transparent, rgba(10, 17, 40, 0.88));
  padding: 44px 0 20px;
}

.founder-picture figcaption span,
.founder-picture figcaption strong {
  display: block;
}

.founder-picture figcaption strong {
  margin-top: 4px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 22px;
  font-weight: 400;
  text-transform: none;
}

.portrait-grid h2 {
  margin-top: 20px;
  font-size: 50px;
}

.portrait-grid p {
  max-width: 590px;
  color: rgba(10, 17, 40, 0.8);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}

.credentials-grid span,
.credentials-strip span,
.split-list h3 {
  display: block;
  margin-bottom: 6px;
  color: rgba(10, 17, 40, 0.56);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.credentials-grid strong {
  font-size: 14px;
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}

.split-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.split-list li {
  display: flex;
  gap: 10px;
  padding: 4px 0;
  font-size: 14px;
}

.notice {
  margin-top: 32px;
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 18px 22px;
  color: rgba(10, 17, 40, 0.86);
  font-size: 13px;
}

.address-card {
  max-width: 500px;
  margin-top: 36px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}

.address-card strong,
.address-card span,
.address-card em {
  display: block;
}

.address-card strong {
  font-family: var(--display-font);
  font-size: 22px;
  font-weight: 400;
}

.address-card span {
  margin-top: 8px;
  color: rgba(10, 17, 40, 0.74);
}

.address-card em {
  margin-top: 22px;
  color: rgba(10, 17, 40, 0.64);
  font-size: 13px;
}

.map-card {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #e8e4db;
}

.map-card svg {
  width: 100%;
  height: 100%;
}

.values-grid {
  border-color: var(--rule-on-ink);
}

.values-grid span {
  color: rgba(247, 245, 240, 0.42);
  font-size: 54px;
}

.values-grid h3 {
  color: var(--paper);
}

.credentials-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 64px 0;
}

.credentials-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}

.credentials-strip strong {
  display: block;
  margin: 6px 0;
  font-family: var(--display-font);
  font-size: 26px;
  font-weight: 400;
}

.credentials-strip small {
  color: rgba(10, 17, 40, 0.62);
  font-size: 12px;
}

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

.contact-pane:first-child {
  border-right: 1px solid var(--rule);
}

.contact-pane {
  padding-left: 40px;
  padding-right: 40px;
}

.contact-pane--alt {
  background: var(--paper-2);
}

.contact-inner {
  width: min(100%, 540px);
}

.contact-pane:first-child .contact-inner {
  margin-left: auto;
}

.contact-headline h1 {
  font-size: 82px;
  line-height: 1;
}

.contact-inner > p {
  max-width: 450px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.direction-note {
  margin-top: 22px;
  color: rgba(10, 17, 40, 0.6);
  font-family: var(--display-font);
  font-size: 13px;
  font-style: italic;
}

.direction-note span:last-child {
  display: none;
}

.channels-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.channels-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}

.channels-list li:last-child {
  border-bottom: 0;
}

.channels-list .icon {
  width: 28px;
  height: 28px;
  color: rgba(10, 17, 40, 0.72);
}

.channels-list strong {
  display: block;
  margin-top: 6px;
  font-family: var(--display-font);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.channels-list span {
  display: block;
  margin-top: 6px;
  color: rgba(10, 17, 40, 0.66);
  font-size: 13px;
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reason-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 24px;
}

.reason-list article:last-child {
  border-bottom: 0;
}

.reason-list > article > span {
  font-size: 26px;
}

.legal-hero {
  border-bottom: 1px solid var(--rule);
  padding: 64px 0 40px;
}

.legal-hero__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  gap: 80px;
}

.legal-hero h1 {
  margin-top: 16px;
  font-size: 86px;
  line-height: 1;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
  color: rgba(10, 17, 40, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-hero p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.64;
}

.legal-mobile-toc {
  display: none;
}

.legal-body {
  padding: 56px 0 96px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
}

.legal-toc {
  position: sticky;
  top: 96px;
  align-self: start;
}

.legal-toc ol,
.legal-mobile-toc ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.legal-toc a,
.legal-mobile-toc a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(10, 17, 40, 0.72);
  font-size: 13px;
}

.legal-toc a span:first-child,
.legal-mobile-toc a span:first-child {
  min-width: 24px;
  color: rgba(10, 17, 40, 0.55);
  font-family: var(--display-font);
  font-style: italic;
}

.legal-section {
  max-width: 760px;
  margin-bottom: 48px;
  scroll-margin-top: 96px;
}

.legal-section header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.legal-section header span {
  color: rgba(10, 17, 40, 0.42);
  font-family: var(--display-font);
  font-size: 34px;
  font-style: italic;
}

.legal-section h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.18;
}

.legal-section p,
.legal-section li {
  color: rgba(10, 17, 40, 0.84);
  font-size: 16px;
  line-height: 1.7;
}

.legal-section p {
  margin: 0 0 16px;
}

.legal-section ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.signature-block {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 760px;
  margin-top: 64px;
  border-top: 2px solid var(--ink);
  padding-top: 24px;
  color: rgba(10, 17, 40, 0.66);
  font-size: 13px;
}

.signature-block div:last-child {
  text-align: right;
}

@media (max-width: 1050px) {
  .hero-title {
    font-size: 74px;
  }

  .hero-grid,
  .two-column,
  .process-grid,
  .legal-hero__grid {
    gap: 48px;
  }

  .headline-block h1,
  .headline-block h2,
  .legal-hero h1 {
    font-size: 72px;
  }

  .contact-headline h1 {
    font-size: 66px;
  }
}

@media (max-width: 860px) {
  .container,
  .nav-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

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

  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .two-column,
  .process-grid,
  .plans-grid,
  .legal-hero__grid,
  .legal-layout,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .hero-phone {
    display: none;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .section-heading h2,
  .expertise-section h2,
  .closing-section h2,
  .two-column h2,
  .ink-section h2,
  .center h2,
  .quote-section blockquote {
    font-size: 42px;
  }

  .steps-grid,
  .category-grid,
  .overview-grid,
  .reassurance-grid,
  .values-grid,
  .stats-grid,
  .credentials-strip__grid {
    grid-template-columns: 1fr;
  }

  .steps-grid article {
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding: 28px 0 0;
  }

  .steps-grid article:first-child {
    border-top: 0;
  }

  .lawyers-picture {
    display: none;
  }

  .category-grid {
    display: none;
  }

  .category-list {
    display: block;
    border-top: 1px solid var(--rule);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .category-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--rule);
    padding: 16px 0;
  }

  .category-list .icon {
    width: 24px;
    height: 24px;
  }

  .category-list span:nth-child(2) {
    flex: 1;
    font-weight: 700;
  }

  .headline-block h1,
  .headline-block h2,
  .hero-about h1,
  .legal-hero h1 {
    font-size: 52px;
  }

  .overview-strip {
    padding-bottom: 56px;
  }

  .process-step--reverse .process-copy,
  .process-step--reverse .process-chat {
    order: initial;
  }

  .process-chat {
    justify-content: center;
  }

  .process-copy h2 {
    font-size: 54px;
  }

  .you-us-grid,
  .split-list,
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .reassurance-grid article {
    border-right: 0;
    border-top: 1px solid var(--rule);
    padding: 28px 0 0;
  }

  .reassurance-grid article:first-child {
    border-top: 0;
  }

  .service-steps article {
    grid-template-columns: 60px 1fr;
  }

  .service-steps article p {
    grid-column: 1 / -1;
  }

  .hero-about .two-column > p {
    justify-self: start;
  }

  .portrait-grid .founder-picture {
    max-width: 520px;
  }

  .contact-pane:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .contact-pane {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-pane:first-child .contact-inner {
    margin-left: 0;
  }

  .direction-note span:first-child {
    display: none;
  }

  .direction-note span:last-child {
    display: inline;
  }

  .legal-mobile-toc {
    display: block;
    border-bottom: 1px solid var(--rule);
    background: var(--paper-2);
    padding: 24px 20px;
  }

  .legal-mobile-toc summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
  }

  .legal-mobile-toc summary::-webkit-details-marker {
    display: none;
  }

  .legal-toc {
    display: none;
  }

  .signature-block {
    flex-direction: column;
  }

  .signature-block div:last-child {
    text-align: left;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-legal {
    flex-direction: column;
  }

  .footer-legal > div {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand-link img {
    width: 140px;
  }

  .hero-title {
    font-size: 48px;
  }

  .headline-block h1,
  .headline-block h2,
  .hero-about h1,
  .legal-hero h1,
  .contact-headline h1 {
    font-size: 44px;
  }

  .section-heading h2,
  .expertise-section h2,
  .closing-section h2,
  .two-column h2,
  .ink-section h2,
  .center h2,
  .quote-section blockquote {
    font-size: 36px;
  }

  .plan-card {
    padding: 28px;
  }

  .plan-card h3 {
    font-size: 36px;
  }

  .plan-price strong {
    font-size: 54px;
  }

  .channels-list strong {
    font-size: 21px;
  }

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