:root {
  --ink: #172b2b;
  --muted: #526060;
  --paper: #f6f2ea;
  --surface: #fffdf8;
  --line: #c9c4b8;
  --brand: #214f4b;
  --brand-2: #173d3a;
  --accent: #b9783b;
  --accent-soft: #f1dfc9;
  --focus: #8b4f14;
  --shadow: 0 18px 50px rgba(23, 43, 43, 0.1);
  --max: 72rem;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: var(--brand-2);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}
a:hover {
  text-decoration-thickness: 0.14em;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.skip {
  position: absolute;
  left: -999rem;
  top: 1rem;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1rem;
  z-index: 99;
}
.skip:focus {
  left: 1rem;
}
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.topline {
  background: var(--ink);
  color: #fff;
  font-size: 0.88rem;
}
.topline .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 1.2rem;
}
.topline a {
  color: #fff;
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 1.2rem;
}
.wrap {
  width: min(100%, var(--max));
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
}
.brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  border: 2px solid var(--brand);
  display: grid;
  place-items: center;
  color: var(--brand);
  font-family: Georgia, serif;
  font-weight: 700;
}
.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  display: block;
}
.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.desktop-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.desktop-nav a {
  display: block;
  padding: 0.55rem 0.68rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.91rem;
}
.desktop-nav a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--ink);
}
.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  border-radius: 0.15rem;
}
.mobile-nav {
  display: none;
}
.mobile-nav summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--brand);
  list-style: none;
}
.mobile-nav summary::-webkit-details-marker {
  display: none;
}
.mobile-nav ul {
  position: absolute;
  right: 1rem;
  left: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.6rem;
  list-style: none;
  z-index: 10;
}
.mobile-nav a {
  display: block;
  padding: 0.65rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
main {
  overflow: hidden;
}
.hero {
  position: relative;
  padding: clamp(4rem, 8vw, 7.5rem) 1.2rem;
  background: linear-gradient(118deg, #173d3a 0%, #214f4b 62%, #44645c 100%);
  color: #fff;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    30deg,
    transparent 48%,
    rgba(255, 255, 255, 0.07) 49%,
    rgba(255, 255, 255, 0.07) 51%,
    transparent 52%
  );
  background-size: 42px 42px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}
.eyebrow {
  margin: 0 0 0.8rem;
  color: #f4cda6;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1,
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  margin: 0.15rem 0 1.2rem;
  font-size: clamp(2.45rem, 6vw, 5rem);
  max-width: 14ch;
}
.hero .lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 43rem;
  color: #eef4f1;
}
.hero-card {
  background: var(--surface);
  color: var(--ink);
  padding: 2rem;
  border-top: 5px solid var(--accent);
  box-shadow: var(--shadow);
}
.hero-card h2 {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  margin-top: 0;
}
.hero-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}
.button {
  display: inline-block;
  background: var(--accent);
  color: #16110d;
  padding: 0.85rem 1.15rem;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--accent);
}
.button:hover {
  background: #d09a65;
}
.button.secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.button.dark {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 1.2rem;
}
.section.alt {
  background: var(--surface);
}
.section.dark {
  background: var(--ink);
  color: #fff;
}
.section.dark p {
  color: #dce7e4;
}
.section-head {
  max-width: 45rem;
  margin-bottom: 2.4rem;
}
.section h2,
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  margin: 0.2rem 0 0.8rem;
  font-weight: 400;
}
.section h3 {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.25;
}
.section p {
  color: var(--muted);
}
.section.dark h2,
.section.dark h3 {
  color: #fff;
}
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.25rem;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 3vw, 2rem);
  position: relative;
}
.card .num {
  font-family: Georgia, serif;
  color: var(--accent);
  font-size: 2.2rem;
  line-height: 1;
}
.card h3 {
  margin: 0.7rem 0;
}
.card p:last-child {
  margin-bottom: 0;
}
.service-card {
  border-top: 4px solid var(--brand);
}
.service-card a {
  font-weight: 800;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.callout {
  background: var(--accent-soft);
  padding: 2rem;
  border-left: 5px solid var(--accent);
}
.callout h3 {
  margin-top: 0;
}
.list-check {
  padding: 0;
  list-style: none;
}
.list-check li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.7rem;
  border-bottom: 1px solid var(--line);
}
.list-check li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
}
.page-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 1.2rem;
  background: var(--brand);
  color: #fff;
}
.page-hero h1 {
  margin-bottom: 1rem;
}
.page-hero p {
  max-width: 48rem;
  font-size: 1.15rem;
  color: #e4efec;
}
.breadcrumb {
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
  color: #cbdcd7;
}
.breadcrumb a {
  color: #fff;
}
.detail {
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.detail h3 {
  margin-bottom: 0.35rem;
}
.detail p {
  margin-top: 0.35rem;
}
.process {
  counter-reset: step;
}
.process .card {
  padding-left: 4.6rem;
}
.process .card:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.3rem;
  top: 1.4rem;
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}
.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}
.fee-table caption {
  padding: 0.8rem 1rem;
  background: var(--brand-2);
  color: #fff;
  font-weight: 800;
  text-align: left;
}
.fee-table th,
.fee-table td {
  text-align: left;
  padding: 1rem;
  border: 1px solid var(--line);
  vertical-align: top;
}
.fee-table th {
  background: var(--brand);
  color: #fff;
}
.attorney {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.5rem;
}
.portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--brand), #7a938b);
  display: grid;
  place-items: center;
  color: #fff;
}
.portrait svg {
  width: 65%;
}
.credentials {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}
.form {
  background: var(--surface);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
}
.field {
  margin-bottom: 1.15rem;
}
.field label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.field input:not([type="checkbox"]):not([type="radio"]),
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  padding: 0.75rem;
  border: 1px solid #687271;
  background: #fff;
  color: #172b2b;
  border-radius: 0;
}
.field .acknowledgement {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0;
}
.field .acknowledgement input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.18rem 0 0;
  accent-color: var(--brand);
}
.field textarea {
  min-height: 10rem;
  resize: vertical;
}
.field small {
  display: block;
  color: var(--muted);
  margin-top: 0.3rem;
}
.form button {
  font: inherit;
  cursor: pointer;
}
.notice {
  font-size: 0.9rem;
  background: var(--accent-soft);
  padding: 1rem;
  border-left: 4px solid var(--accent);
}
details.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  margin-bottom: 0.75rem;
  padding: 1rem 1.2rem;
}
details.faq summary {
  cursor: pointer;
  font-weight: 800;
}
details.faq p {
  margin-bottom: 0.2rem;
}
.review-placeholder {
  border: 2px dashed #87908b;
  background: transparent;
  text-align: center;
  padding: 2rem;
}
.review-placeholder strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.35rem;
}
.cta-band {
  background: var(--accent-soft);
  border-block: 1px solid #d1b28f;
  padding: 2.4rem 1.2rem;
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
.site-footer {
  background: #102625;
  color: #e6efec;
  padding: 3.5rem 1.2rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}
.site-footer h2,
.site-footer h3 {
  font-family: Georgia, serif;
  color: #fff;
}
.site-footer a {
  color: #fff;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer li {
  margin: 0.45rem 0;
}
.legal {
  border-top: 1px solid #49605d;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  font-size: 0.84rem;
  color: #c4d1ce;
}
.kicker {
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}
.address {
  font-style: normal;
}
.meta-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--surface);
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}
.meta-strip div {
  padding: 1.2rem 1.5rem;
  border-right: 1px solid var(--line);
}
.meta-strip div:last-child {
  border: 0;
}
.meta-strip strong {
  display: block;
  font-family: Georgia, serif;
}
.meta-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}
@media (max-width: 850px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .meta-strip {
    grid-template-columns: 1fr;
  }
  .meta-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 580px) {
  .topline .wrap {
    display: block;
  }
  .topline span {
    display: none;
  }
  .brand small {
    display: none;
  }
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .attorney {
    grid-template-columns: 1fr;
  }
  .portrait {
    max-width: 12rem;
  }
  .cta-band .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .actions .button {
    width: 100%;
    text-align: center;
  }
  .hero-card {
    padding: 1.3rem;
  }
  .fee-table,
  .fee-table tbody,
  .fee-table tr,
  .fee-table th,
  .fee-table td {
    display: block;
  }
  .fee-table thead {
    position: absolute;
    left: -999rem;
  }
  .fee-table tr {
    border: 1px solid var(--line);
    margin-bottom: 1rem;
  }
  .fee-table td {
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .fee-table td:before {
    content: attr(data-label);
    display: block;
    font-weight: 800;
    color: var(--brand);
  }
}
@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;
  }
}
.result-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.result-nav a {
  font-weight: 800;
}
.result-nav .nav-cta {
  padding: 0.45rem 0.65rem;
  text-decoration: none;
}
@media (max-width: 700px) {
  .result-nav {
    width: 100%;
  }
  .result-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .result-nav .nav-cta {
    display: inline-block;
  }
  .result-nav li:last-child {
    grid-column: 1/-1;
  }
  .nav-shell:has(.result-nav) {
    flex-wrap: wrap;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #eef4f1;
    --muted: #bccac6;
    --paper: #12201f;
    --surface: #1a2b29;
    --line: #54625f;
    --brand: #77b5aa;
    --brand-2: #9bcfc5;
    --accent: #dda76e;
    --accent-soft: #443526;
    --focus: #f3bd7e;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  }
  .site-header {
    background: #1a2b29;
  }
  .topline {
    background: #091514;
  }
  .brand-mark {
    color: #9bcfc5;
    border-color: #9bcfc5;
  }
  .nav-cta {
    background: #9bcfc5 !important;
    color: #102625 !important;
  }
  .hero {
    background: linear-gradient(118deg, #102b29, #214f4b);
  }
  .hero-card {
    background: #1a2b29;
  }
  .button {
    color: #18100a;
  }
  .button.dark {
    background: #9bcfc5;
    border-color: #9bcfc5;
    color: #102625;
  }
  .page-hero {
    background: #173d3a;
  }
  .callout,
  .cta-band {
    background: #443526;
  }
  .field input,
  .field textarea,
  .field select {
    background: #0d1b1a;
    color: #eef4f1;
    border-color: #7c8a87;
  }
  .fee-table th {
    background: #325d58;
  }
  .notice {
    background: #443526;
  }
  .site-footer {
    background: #071312;
  }
  .portrait {
    background: linear-gradient(155deg, #214f4b, #536d67);
  }
}
:where(select):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.mobile-nav[open] summary {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--surface);
  box-shadow: inset 0 -3px 0 var(--accent);
}
.mobile-nav summary:after {
  content: " +";
}
.mobile-nav[open] summary:after {
  content: " −";
}
.theme-tools {
  position: fixed;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.45rem;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 0.78rem;
}
.theme-tools label {
  font-weight: 800;
}
.theme-tools select {
  font: inherit;
  padding: 0.35rem;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}
html[data-theme="light"] {
  --ink: #172b2b;
  --muted: #526060;
  --paper: #f6f2ea;
  --surface: #fffdf8;
  --line: #c9c4b8;
  --brand: #214f4b;
  --brand-2: #173d3a;
  --accent: #b9783b;
  --accent-soft: #f1dfc9;
  --focus: #8b4f14;
  --shadow: 0 18px 50px rgba(23, 43, 43, 0.1);
  color-scheme: light;
}
html[data-theme="light"] .site-header {
  background: #fffdf8;
}
html[data-theme="light"] .topline {
  background: #172b2b;
}
html[data-theme="light"] .brand-mark {
  color: #214f4b;
  border-color: #214f4b;
}
html[data-theme="light"] .nav-cta {
  background: #214f4b !important;
  color: #fff !important;
}
html[data-theme="light"] .hero {
  background: linear-gradient(118deg, #173d3a 0%, #214f4b 62%, #44645c 100%);
}
html[data-theme="light"] .hero-card {
  background: #fffdf8;
}
html[data-theme="light"] .button.dark {
  background: #214f4b;
  border-color: #214f4b;
  color: #fff;
}
html[data-theme="light"] .page-hero {
  background: #214f4b;
}
html[data-theme="light"] .callout,
html[data-theme="light"] .cta-band {
  background: #f1dfc9;
}
html[data-theme="light"] .field input,
html[data-theme="light"] .field textarea,
html[data-theme="light"] .field select {
  background: #fff;
  color: #172b2b;
  border-color: #687271;
}
html[data-theme="light"] .fee-table th {
  background: #214f4b;
}
html[data-theme="light"] .notice {
  background: #f1dfc9;
}
html[data-theme="light"] .site-footer {
  background: #102625;
}
html[data-theme="dark"] {
  --ink: #eef4f1;
  --muted: #bccac6;
  --paper: #12201f;
  --surface: #1a2b29;
  --line: #65736f;
  --brand: #77b5aa;
  --brand-2: #9bcfc5;
  --accent: #dda76e;
  --accent-soft: #443526;
  --focus: #f3bd7e;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  color-scheme: dark;
}
html[data-theme="dark"] .site-header {
  background: #1a2b29;
}
html[data-theme="dark"] .topline {
  background: #091514;
}
html[data-theme="dark"] .nav-cta {
  background: #9bcfc5 !important;
  color: #102625 !important;
}
html[data-theme="dark"] .hero {
  background: linear-gradient(118deg, #102b29, #214f4b);
}
html[data-theme="dark"] .button.dark {
  background: #9bcfc5;
  border-color: #9bcfc5;
  color: #102625;
}
html[data-theme="dark"] .field input,
html[data-theme="dark"] .field textarea,
html[data-theme="dark"] .field select {
  background: #0d1b1a;
  color: #eef4f1;
  border-color: #899693;
}
.boston-rule {
  height: 5.2rem;
  background-color: var(--surface);
  background-image:
    linear-gradient(
      90deg,
      transparent 0 4%,
      var(--brand) 4% 4.4%,
      transparent 4.4% 12%,
      var(--accent) 12% 12.4%,
      transparent 12.4% 100%
    ),
    linear-gradient(
      155deg,
      transparent 47%,
      color-mix(in srgb, var(--brand) 20%, transparent) 48% 52%,
      transparent 53%
    );
  background-size:
    100% 100%,
    5rem 5rem;
  border-block: 1px solid var(--line);
}
@supports not (color: color-mix(in srgb, black, white)) {
  .boston-rule {
    background-image: linear-gradient(
      90deg,
      transparent 0 4%,
      var(--brand) 4% 4.4%,
      transparent 4.4% 12%,
      var(--accent) 12% 12.4%,
      transparent 12.4% 100%
    );
  }
}
.editorial-note {
  border-block: 1px solid var(--line);
  padding: 1.4rem 0;
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
}
.editorial-note strong {
  font-family: Georgia, serif;
  color: var(--brand);
}
.practice-ledger {
  display: grid;
  gap: 0;
}
.practice-ledger article {
  display: grid;
  grid-template-columns: minmax(9rem, 0.35fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.practice-ledger article:nth-child(even) {
  padding-left: clamp(0rem, 6vw, 5rem);
}
.practice-ledger h3 {
  margin: 0.15rem 0;
}
.practice-ledger .practice-no {
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--accent);
}
.draft-label {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--ink);
  padding: 0.25rem 0.55rem;
  font-weight: 900;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
}
.verification-box {
  border: 2px solid var(--accent);
  background: var(--accent-soft);
  padding: 1.25rem;
  margin-bottom: 2rem;
}
.profile-notice {
  max-width: 52rem;
  border-left-width: 0.55rem;
}
.profile-notice strong {
  display: block;
  margin-top: 1rem;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}
.contact-pending {
  border: 2px dashed var(--accent);
  padding: 1rem;
  background: var(--accent-soft);
}
@media (max-width: 580px) {
  .theme-tools {
    position: static;
    width: fit-content;
    margin: 0.45rem 0.5rem 0.45rem auto;
    box-shadow: none;
  }
  .editorial-note,
  .practice-ledger article {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .practice-ledger article:nth-child(even) {
    padding-left: 0;
  }
}
