:root {
  --ink: #10263b;
  --ink-deep: #091a29;
  --ink-soft: #203c55;
  --paper: #f7f3eb;
  --paper-warm: #eee7dc;
  --white: #fffdf9;
  --text: #243442;
  --muted: #62717d;
  --line: #d8d1c6;
  --gold: #c49a55;
  --gold-bright: #ddbb7c;
  --gold-pale: #ead6b2;
  --max: 1216px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 24px 70px rgba(9, 26, 41, .12);
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--gold-pale);
  color: var(--ink-deep);
}

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

a {
  color: inherit;
}

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.25rem, 6.5vw, 6.6rem);
}

h2 {
  font-size: clamp(2.25rem, 4.1vw, 4rem);
}

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

p:last-child {
  margin-bottom: 0;
}

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

.shell {
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: 32px;
  width: 100%;
}

.skip-link {
  background: var(--gold);
  color: var(--ink-deep);
  font-weight: 700;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -60px;
  z-index: 1000;
}

.skip-link:focus {
  top: 14px;
}

.utility-bar {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, .72);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.utility-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 35px;
}

.utility-inner a {
  color: var(--gold-bright);
  text-decoration: none;
}

.site-header {
  background: rgba(255, 253, 249, .96);
  border-bottom: 1px solid rgba(16, 38, 59, .11);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.wordmark,
.footer-wordmark {
  align-items: baseline;
  color: var(--ink);
  display: inline-flex;
  font-family: var(--serif);
  font-size: 1.72rem;
  letter-spacing: -.035em;
  line-height: 1;
  text-decoration: none;
}

.wordmark span,
.footer-wordmark span {
  font-weight: 600;
}

.wordmark b,
.footer-wordmark b {
  color: var(--gold);
  font-weight: 500;
  margin-left: .24em;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(20px, 2.5vw, 38px);
}

.desktop-nav > a:not(.nav-cta) {
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .055em;
  padding-block: 31px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav > a:not(.nav-cta)::after {
  background: var(--gold);
  bottom: 20px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
  width: 100%;
}

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

.nav-cta {
  background: var(--ink);
  color: white;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .045em;
  padding: 14px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
}

.mobile-nav {
  display: none;
}

.breadcrumbs {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: .75rem;
  gap: 12px;
  letter-spacing: .045em;
  min-height: 54px;
  text-transform: uppercase;
}

.breadcrumb-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.breadcrumb-links > span[aria-hidden="true"]::before {
  content: "/";
  margin-right: 9px;
}

.breadcrumbs a {
  text-decoration: none;
}

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

.eyebrow {
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .16em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.eyebrow.gold {
  color: var(--gold-bright);
}

.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
}

.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: .79rem;
  font-weight: 750;
  justify-content: center;
  letter-spacing: .055em;
  min-height: 52px;
  padding: 14px 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

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

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

.button-gold:hover {
  background: var(--gold-bright);
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, .4);
  color: white;
}

.button-outline-light:hover {
  background: white;
  color: var(--ink);
}

.text-link {
  align-items: center;
  color: white;
  display: inline-flex;
  font-size: .79rem;
  font-weight: 750;
  gap: 12px;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold-bright);
  font-size: 1.15em;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link.dark,
.inline-link {
  color: var(--ink);
}

.inline-link {
  font-weight: 700;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.home-hero {
  background:
    linear-gradient(115deg, transparent 0 68%, rgba(196, 154, 85, .06) 68% 100%),
    var(--ink);
  color: white;
  overflow: hidden;
  padding: clamp(76px, 10vw, 132px) 0 clamp(82px, 11vw, 145px);
  position: relative;
}

.home-hero::after {
  border: 1px solid rgba(196, 154, 85, .22);
  border-radius: 50%;
  content: "";
  height: 650px;
  position: absolute;
  right: -365px;
  top: -190px;
  width: 650px;
}

.hero-grid {
  align-items: end;
  display: grid;
  gap: clamp(64px, 8vw, 118px);
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .72fr);
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.page-hero h1,
.profile-feature h2,
.cta-band h2,
.information-band h2,
.article-header h1 {
  color: white;
}

.hero-copy h1 {
  max-width: 880px;
}

.hero-lead {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.15rem, 1.7vw, 1.38rem);
  line-height: 1.58;
  margin: 32px 0 0;
  max-width: 780px;
}

.hero-panel {
  border-left: 1px solid rgba(196, 154, 85, .55);
  padding: 4px 0 2px 34px;
}

.panel-kicker {
  color: var(--gold-bright);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .15em;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.panel-line {
  align-items: baseline;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  gap: 18px;
  grid-template-columns: 28px 1fr;
  padding: 18px 0;
}

.panel-line span {
  color: var(--gold-bright);
  font-size: .67rem;
  font-weight: 700;
}

.panel-line strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -.01em;
}

.panel-note {
  color: rgba(255, 255, 255, .65);
  font-size: .87rem;
  line-height: 1.6;
  margin: 22px 0 0;
}

.proof-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

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

.proof-grid div {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 16px;
  min-height: 84px;
  padding: 20px 32px;
}

.proof-grid div:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid span,
.service-number,
.three-grid article > span,
.horizontal-process > li > span {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .1em;
}

.proof-grid strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.section {
  padding: clamp(82px, 10vw, 134px) 0;
}

.intro-section {
  background: var(--white);
}

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

.split-heading {
  align-items: start;
  display: grid;
  gap: clamp(54px, 9vw, 132px);
  grid-template-columns: minmax(0, .96fr) minmax(0, .8fr);
}

.split-heading h2 {
  margin-bottom: 0;
  max-width: 680px;
}

.body-large {
  color: var(--text);
  font-size: clamp(1.13rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

.body-large p {
  margin-bottom: 24px;
}

.services-home,
.services-index {
  background: var(--paper);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .52fr);
  margin-bottom: clamp(48px, 6vw, 74px);
}

.section-heading h2 {
  margin-bottom: 0;
  max-width: 760px;
}

.section-heading > p,
.section-heading > a {
  justify-self: end;
}

.section-heading > p {
  color: var(--muted);
  max-width: 470px;
}

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

.service-card {
  background: rgba(255, 255, 255, .42);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 365px;
  padding: clamp(30px, 4vw, 46px);
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}

.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  transform: translateY(-4px);
  z-index: 2;
}

.service-card h3 {
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  margin: 42px 0 22px;
}

.service-card p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
}

.card-link {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: .7rem;
  font-weight: 750;
  justify-content: space-between;
  letter-spacing: .075em;
  margin-top: auto;
  padding-top: 28px;
  text-transform: uppercase;
}

.card-link i,
.secondary-card i,
.insight-card i {
  color: var(--gold);
  font-style: normal;
}

.section-end-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}

.profile-feature {
  background: var(--ink);
  color: rgba(255, 255, 255, .76);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  min-height: 720px;
  padding-left: 0;
}

.profile-grid > * {
  min-width: 0;
}

.profile-image-wrap {
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.profile-image-wrap::after,
.about-image::after {
  background: linear-gradient(120deg, rgba(9, 26, 41, .12), rgba(9, 26, 41, .56));
  content: "";
  inset: 0;
  position: absolute;
}

.profile-image-wrap img,
.about-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-caption {
  bottom: 22px;
  color: white;
  font-size: .67rem;
  font-weight: 700;
  left: 28px;
  letter-spacing: .14em;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.profile-copy {
  align-self: center;
  padding: clamp(64px, 8vw, 112px);
}

.profile-copy h2 {
  font-size: clamp(2.55rem, 4.5vw, 4.5rem);
  margin-bottom: 32px;
}

.profile-copy .body-large {
  color: rgba(255, 255, 255, .86);
}

.profile-copy .text-link {
  margin-top: 24px;
}

.process-layout {
  align-items: start;
  display: grid;
  gap: clamp(60px, 9vw, 132px);
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
}

.sticky-heading {
  position: sticky;
  top: 140px;
}

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

.process-list li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 38px 1fr;
  padding: 31px 0 34px;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .1em;
  padding-top: 6px;
}

.process-list h3 {
  margin-bottom: 10px;
}

.process-list p {
  color: var(--muted);
  font-size: .95rem;
}

.secondary-services {
  background: var(--paper-warm);
  border-block: 1px solid var(--line);
  padding: clamp(72px, 8vw, 104px) 0;
}

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

.secondary-intro {
  padding-right: 38px;
}

.secondary-intro h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.3rem);
}

.secondary-intro p:last-child {
  color: var(--muted);
}

.secondary-card {
  background: var(--white);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 34px;
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}

.secondary-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.secondary-card > span {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.secondary-card h3 {
  margin: 34px 0 18px;
}

.secondary-card p {
  color: var(--muted);
  font-size: .92rem;
}

.secondary-card i {
  font-size: 1.25rem;
  margin-top: auto;
}

.insight-preview {
  background: var(--white);
}

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

.insight-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 365px;
  padding: clamp(28px, 4vw, 42px);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.insight-card:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.insight-card > span {
  color: var(--gold);
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.insight-card h2,
.insight-card h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  margin: 38px 0 20px;
}

.insight-card p {
  color: var(--muted);
  font-size: .92rem;
}

.insight-card i {
  font-size: .71rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: .06em;
  margin-top: auto;
  padding-top: 28px;
  text-transform: uppercase;
}

.insight-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: rgba(255, 255, 255, .72);
}

.insight-card.featured h3 {
  color: white;
}

.cta-band {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, .7);
  overflow: hidden;
  padding: clamp(78px, 9vw, 118px) 0;
  position: relative;
}

.cta-band::after {
  border: 1px solid rgba(196, 154, 85, .18);
  border-radius: 50%;
  content: "";
  height: 430px;
  position: absolute;
  right: -180px;
  top: -205px;
  width: 430px;
}

.cta-grid {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.1fr .7fr;
  position: relative;
  z-index: 1;
}

.cta-grid h2 {
  margin-bottom: 22px;
}

.cta-grid p {
  max-width: 650px;
}

.cta-contact {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-contact > a:not(.button) {
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  text-decoration: none;
}

.cta-contact .button {
  margin-top: 18px;
}

.site-footer {
  background: #071521;
  color: rgba(255, 255, 255, .63);
  font-size: .85rem;
  padding: 78px 0 28px;
}

.footer-grid {
  display: grid;
  gap: clamp(42px, 7vw, 90px);
  grid-template-columns: 1.35fr 1fr .82fr .9fr;
}

.footer-wordmark {
  color: white;
  font-size: 1.65rem;
  margin-bottom: 24px;
}

.footer-intro p {
  max-width: 310px;
}

.footer-grid h2 {
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .13em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.footer-grid h2.footer-subhead {
  margin-top: 34px;
}

.footer-grid > div > a:not(.footer-wordmark):not(.button) {
  display: block;
  margin-bottom: 9px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: white;
}

.legal-line {
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  font-size: .69rem;
  gap: 22px;
  grid-template-columns: .75fr 1.3fr .45fr;
  letter-spacing: .025em;
  margin-top: 62px;
  padding-top: 24px;
}

.legal-line a {
  text-decoration: none;
}

.page-hero {
  background:
    linear-gradient(110deg, transparent 0 70%, rgba(196, 154, 85, .07) 70%),
    var(--ink);
  color: rgba(255, 255, 255, .75);
  padding: clamp(75px, 9vw, 122px) 0 clamp(82px, 10vw, 132px);
}

.narrow-hero {
  max-width: 1010px;
}

.page-hero h1 {
  font-size: clamp(3.1rem, 6vw, 6rem);
  max-width: 1000px;
}

.page-lead {
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
  line-height: 1.58;
  margin: 32px 0 0;
  max-width: 740px;
}

.service-hero-grid {
  align-items: end;
  display: grid;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: 1.05fr .82fr;
}

.service-hero-grid h1 {
  margin-bottom: 0;
}

.service-hero-grid .button-row {
  margin-top: 34px;
}

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

.matter-grid article {
  background: rgba(255, 255, 255, .45);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 245px;
  padding: 34px;
}

.matter-grid h3 {
  font-size: 1.45rem;
}

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

.related-band {
  background: var(--paper-warm);
  border-block: 1px solid var(--line);
  padding: 72px 0;
}

.related-grid {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: .7fr 1.2fr;
}

.related-grid h2 {
  font-size: 2.6rem;
  margin: 0;
}

.related-links {
  border-top: 1px solid var(--line);
}

.related-links a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  font-family: var(--serif);
  font-size: 1.35rem;
  justify-content: space-between;
  padding: 17px 0;
  text-decoration: none;
}

.related-links span {
  color: var(--gold);
  transition: transform .2s ease;
}

.related-links a:hover span {
  transform: translateX(5px);
}

.about-story {
  align-items: center;
  display: grid;
  gap: clamp(54px, 8vw, 110px);
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
}

.about-story > * {
  min-width: 0;
}

.about-image {
  aspect-ratio: 3 / 2;
  min-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.about-copy h2 {
  margin-bottom: 30px;
}

.principal-detail {
  align-items: start;
  display: grid;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: .72fr 1.1fr;
}

.principal-role {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.credential-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 42px;
}

.credential-grid div {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 24px;
}

.credential-grid span,
.credential-grid strong {
  display: block;
}

.credential-grid span {
  color: var(--gold);
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.credential-grid strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
}

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

.three-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 265px;
  padding: clamp(28px, 4vw, 42px);
}

.three-grid h3 {
  margin: 46px 0 18px;
}

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

.offer-strip {
  background: var(--gold);
  color: var(--ink-deep);
  padding: 36px 0;
}

.offer-grid {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: .9fr 1.1fr;
}

.offer-grid > div:first-child {
  align-items: baseline;
  display: grid;
  gap: 5px 25px;
  grid-template-columns: 1fr auto;
}

.offer-grid span {
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.offer-grid strong {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 500;
  grid-row: span 2;
}

.offer-grid p {
  margin: 0;
}

.offer-grid small {
  display: block;
  margin-top: 8px;
}

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

.price-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 525px;
  padding: clamp(30px, 4vw, 44px);
}

.price-grid article > span,
.estate-grid article > span {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1;
  margin: 38px 0;
}

.price small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.price-grid ul,
.tick-list,
.article-body ul {
  padding-left: 20px;
}

.price-grid li,
.tick-list li,
.article-body li {
  margin-bottom: 8px;
}

.price-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .8rem;
  margin-top: auto;
  padding-top: 20px;
}

.standard-layout {
  display: grid;
  gap: clamp(60px, 9vw, 120px);
  grid-template-columns: .9fr 1fr;
}

.standard-layout h3 {
  font-size: 1.25rem;
}

.tick-list {
  columns: 2;
  column-gap: 40px;
}

.tick-list li {
  break-inside: avoid;
  color: var(--text);
  margin-bottom: 14px;
}

.horizontal-process {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.horizontal-process li {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 290px;
  padding: 30px;
}

.horizontal-process h3 {
  font-size: 1.35rem;
  margin: 45px 0 14px;
}

.horizontal-process p {
  color: var(--muted);
  font-size: .88rem;
}

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

.faq-layout {
  align-items: start;
  display: grid;
  gap: clamp(60px, 9vw, 130px);
  grid-template-columns: .7fr 1.2fr;
}

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

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

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  list-style: none;
  padding: 23px 42px 23px 0;
  position: relative;
}

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

.faq-list summary::after {
  color: var(--gold);
  content: "+";
  font-family: var(--sans);
  position: absolute;
  right: 5px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  color: var(--muted);
  padding: 0 48px 24px 0;
}

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

.estate-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 330px;
  padding: clamp(32px, 4vw, 46px);
}

.estate-price {
  display: flex;
  gap: 50px;
  margin: 38px 0 26px;
}

.estate-price div {
  display: flex;
  flex-direction: column;
}

.estate-price small {
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.estate-price strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.estate-grid p {
  color: var(--muted);
}

.information-band {
  background: var(--ink);
  color: rgba(255, 255, 255, .75);
  padding: 78px 0;
}

.information-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: .85fr 1.15fr;
}

.information-grid h2 {
  font-size: 2.8rem;
}

.notice-band {
  background: var(--gold);
  color: var(--ink-deep);
  padding: 28px 0;
}

.notice-band .shell {
  align-items: start;
  display: grid;
  gap: 50px;
  grid-template-columns: .55fr 1.45fr;
}

.notice-band strong {
  font-family: var(--serif);
  font-size: 1.22rem;
}

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

.download-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 345px;
  padding: 36px;
}

.download-card > span {
  color: var(--gold);
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.download-card h2 {
  font-size: 1.7rem;
  margin: 35px 0 20px;
}

.download-card p {
  color: var(--muted);
  font-size: .9rem;
}

.download-card a {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  font-size: .69rem;
  font-weight: 750;
  justify-content: space-between;
  letter-spacing: .07em;
  margin-top: auto;
  padding-top: 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.download-card a i {
  color: var(--gold);
  font-size: 1rem;
  font-style: normal;
}

.insight-index-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.insight-index-grid .insight-card {
  min-height: 430px;
}

.article-header {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  padding: clamp(70px, 9vw, 120px) 0;
}

.article-header-inner {
  max-width: 1000px;
}

.article-header h1 {
  font-size: clamp(3rem, 6vw, 5.9rem);
}

.article-deck {
  font-size: clamp(1.16rem, 1.7vw, 1.36rem);
  line-height: 1.6;
  margin-top: 30px;
  max-width: 850px;
}

.article-meta {
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  flex-wrap: wrap;
  font-size: .7rem;
  gap: 15px 34px;
  letter-spacing: .055em;
  margin-top: 48px;
  padding-top: 22px;
  text-transform: uppercase;
}

.article-layout {
  align-items: start;
  display: grid;
  gap: clamp(54px, 9vw, 132px);
  grid-template-columns: 260px minmax(0, 720px);
  justify-content: center;
  padding-bottom: clamp(80px, 10vw, 130px);
  padding-top: clamp(70px, 9vw, 115px);
}

.article-toc {
  border-top: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 130px;
}

.article-toc > span {
  color: var(--gold);
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .11em;
  padding: 18px 0 12px;
  text-transform: uppercase;
}

.article-toc a {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
  padding: 12px 0;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--ink);
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-body section {
  margin-bottom: 58px;
  scroll-margin-top: 130px;
}

.article-body h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 24px;
}

.article-body p {
  margin-bottom: 20px;
}

.general-note {
  background: var(--paper);
  border-left: 3px solid var(--gold);
  margin-top: 72px;
  padding: 28px 32px;
}

.general-note strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.general-note p {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 10px;
}

.enquiry-layout {
  align-items: start;
  display: grid;
  gap: clamp(60px, 9vw, 125px);
  grid-template-columns: .78fr 1.22fr;
}

.contact-panel {
  position: sticky;
  top: 140px;
}

.contact-details {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin: 34px 0;
}

.contact-details a {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 8px;
  text-decoration: none;
}

.contact-details p {
  margin-top: 18px;
}

.contact-note {
  border-left: 3px solid var(--gold);
  margin: 34px 0;
  padding-left: 20px;
}

.contact-note strong {
  color: var(--ink);
}

.contact-note p {
  color: var(--muted);
  font-size: .88rem;
  margin-top: 6px;
}

.enquiry-form {
  background: var(--white);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  padding: clamp(30px, 5vw, 52px);
}

.form-intro {
  align-items: baseline;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.form-intro span {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.form-intro p {
  color: var(--muted);
  font-size: .76rem;
  max-width: 250px;
  text-align: right;
}

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

.form-grid label {
  color: var(--ink);
  display: flex;
  flex-direction: column;
  font-size: .68rem;
  font-weight: 750;
  gap: 8px;
  letter-spacing: .075em;
  text-transform: uppercase;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  font-size: .95rem;
  letter-spacing: 0;
  min-height: 51px;
  padding: 12px 14px;
  text-transform: none;
  width: 100%;
}

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

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: white;
  border-color: var(--gold);
  outline: 2px solid rgba(196, 154, 85, .25);
}

.enquiry-form .button {
  margin-top: 28px;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: .74rem;
  margin-top: 18px;
}

.form-status {
  color: var(--ink);
  font-weight: 700;
}

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

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

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

.legal-copy a {
  color: var(--ink);
  font-weight: 700;
}

.updated {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .8rem;
  margin-top: 50px;
  padding-top: 20px;
}

.not-found {
  align-items: center;
  background: var(--paper);
  display: flex;
  min-height: 100vh;
  padding: 40px;
}

.not-found > div {
  margin: auto;
  max-width: 820px;
}

.not-found .wordmark {
  margin-bottom: 100px;
}

.not-found h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.not-found p {
  max-width: 620px;
}

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

  .profile-copy {
    padding: 70px 54px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child p {
    max-width: 600px;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 90px;
  }

  .shell {
    padding-inline: 24px;
  }

  .utility-inner {
    min-height: 32px;
  }

  .utility-inner span {
    max-width: 70%;
  }

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

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav summary {
    align-items: center;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    font-size: .71rem;
    font-weight: 750;
    gap: 12px;
    letter-spacing: .08em;
    list-style: none;
    min-height: 44px;
    text-transform: uppercase;
  }

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

  .mobile-nav summary i,
  .mobile-nav summary i::before {
    background: var(--ink);
    content: "";
    display: block;
    height: 1px;
    transition: transform .2s ease;
    width: 21px;
  }

  .mobile-nav summary i::before {
    transform: translateY(6px);
  }

  .mobile-nav[open] summary i {
    transform: rotate(45deg) translateY(4px);
  }

  .mobile-nav[open] summary i::before {
    transform: rotate(-90deg);
  }

  .mobile-panel {
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(9, 26, 41, .14);
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 22px 24px 26px;
    position: absolute;
    right: 0;
    top: 72px;
  }

  .mobile-panel > a:not(.button) {
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.3rem;
    padding: 13px 0;
    text-decoration: none;
  }

  .mobile-panel .button {
    margin-top: 22px;
  }

  .mobile-panel .mobile-phone {
    border: 0 !important;
    color: var(--gold) !important;
    font-family: var(--sans) !important;
    font-size: .78rem !important;
    font-weight: 750;
    letter-spacing: .06em;
    text-align: center;
  }

  .hero-grid,
  .split-heading,
  .section-heading,
  .profile-grid,
  .process-layout,
  .cta-grid,
  .service-hero-grid,
  .about-story,
  .principal-detail,
  .standard-layout,
  .faq-layout,
  .information-grid,
  .enquiry-layout,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    max-width: 560px;
  }

  .section-heading > p,
  .section-heading > a {
    justify-self: start;
  }

  .service-grid,
  .matter-grid,
  .download-grid,
  .insight-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-grid {
    padding-inline: 0;
  }

  .profile-image-wrap {
    min-height: 520px;
  }

  .profile-copy {
    padding: 72px 24px 88px;
  }

  .sticky-heading,
  .contact-panel,
  .article-toc {
    position: static;
  }

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

  .secondary-intro {
    grid-column: 1 / -1;
    max-width: 680px;
  }

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

  .insight-card.featured {
    grid-column: 1 / -1;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .legal-line {
    grid-template-columns: 1fr;
  }

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

  .price-grid article {
    min-height: auto;
  }

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .shell {
    padding-inline: 19px;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .utility-inner span {
    display: none;
  }

  .wordmark {
    font-size: 1.5rem;
  }

  .breadcrumbs {
    min-height: 48px;
    overflow: hidden;
    white-space: nowrap;
  }

  .breadcrumb-links {
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .breadcrumb-links span[aria-current="page"] {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-hero {
    padding: 72px 0 78px;
  }

  .home-hero::after {
    display: none;
  }

  .hero-grid {
    gap: 58px;
  }

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

  .hero-panel {
    padding-left: 22px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .button-row .button {
    width: 100%;
  }

  .button-row .text-link {
    justify-content: space-between;
  }

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

  .proof-grid div,
  .proof-grid div:first-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    min-height: 68px;
    padding: 14px 19px;
  }

  .proof-grid div:first-child {
    border-top: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 42px;
  }

  .service-grid,
  .matter-grid,
  .secondary-grid,
  .insight-grid,
  .download-grid,
  .insight-index-grid,
  .estate-grid,
  .three-grid,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 310px;
    padding: 30px 26px;
  }

  .profile-image-wrap {
    min-height: 380px;
  }

  .profile-copy {
    padding: 62px 19px 76px;
  }

  .profile-copy h2 {
    font-size: 2.65rem;
  }

  .process-list li {
    gap: 18px;
    grid-template-columns: 30px 1fr;
  }

  .secondary-intro {
    grid-column: auto;
  }

  .secondary-card {
    min-height: 285px;
  }

  .insight-card.featured {
    grid-column: auto;
  }

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

  .cta-contact > a:not(.button) {
    overflow-wrap: anywhere;
  }

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

  .site-footer {
    padding-top: 64px;
  }

  .page-hero {
    padding: 64px 0 76px;
  }

  .page-hero h1,
  .article-header h1 {
    font-size: clamp(2.9rem, 13.5vw, 4.2rem);
  }

  .matter-grid article {
    min-height: auto;
  }

  .about-image {
    min-height: 320px;
  }

  .offer-grid,
  .offer-grid > div:first-child,
  .notice-band .shell {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    gap: 22px;
  }

  .offer-grid > div:first-child {
    align-items: start;
    gap: 8px;
  }

  .offer-grid strong {
    grid-row: auto;
  }

  .tick-list {
    columns: 1;
  }

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

  .horizontal-process li {
    min-height: auto;
  }

  .estate-price {
    justify-content: space-between;
  }

  .download-card {
    min-height: 300px;
  }

  .article-header {
    padding: 64px 0 76px;
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-layout {
    padding-top: 64px;
  }

  .form-intro,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-intro {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .form-intro p {
    text-align: left;
  }

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

  .enquiry-form {
    margin-inline: -2px;
  }

  .not-found {
    padding: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .breadcrumbs,
  .cta-band,
  .site-footer,
  .article-toc {
    display: none !important;
  }

  body {
    color: #000;
  }

  .article-header {
    background: transparent;
    color: #000;
    padding: 30px 0;
  }

  .article-header h1 {
    color: #000;
  }

  .article-layout {
    display: block;
    padding: 0;
  }
}

/* Restored Allenby Legal team presentation */
.team-section{background:#fff}.team-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.team-card{background:#f4efe5;border:1px solid rgba(20,27,30,.12);overflow:hidden}.team-card img{width:100%;aspect-ratio:4/3;object-fit:cover;object-position:center 25%;display:block}.team-card>div{padding:25px 26px 28px}.team-card span{display:block;font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;color:#8c6b2d;margin-bottom:9px}.team-card h3{margin:0 0 10px;font-size:1.45rem}.team-card p{margin:0;line-height:1.65}.cta-note{font-size:.88rem;opacity:.78;margin-top:8px!important}@media(max-width:800px){.team-grid{grid-template-columns:1fr}.team-card{display:grid;grid-template-columns:125px 1fr}.team-card img{height:100%;aspect-ratio:auto}.team-card>div{padding:21px}.team-card h3{font-size:1.25rem}}@media(max-width:520px){.team-card{grid-template-columns:1fr}.team-card img{aspect-ratio:4/3;height:auto}}

/* Compact staff portraits — restore earlier Allenby Legal proportions */
.team-card img {
  width: 88%;
  height: auto;
  max-width: 88%;
  max-height: 430px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  margin: 22px auto 0;
}

@media (max-width: 800px) {
  .team-card {
    display: block;
  }

  .team-card img {
    width: auto;
    height: auto;
    max-width: 88%;
    max-height: 380px;
    margin: 22px auto 0;
  }
}

@media (max-width: 520px) {
  .team-card img {
    width: auto;
    height: auto;
    max-width: 88%;
    max-height: 330px;
  }
}



/* Balanced expertise dropdown — commercial core + private client services */
.nav-dropdown {
  align-self: stretch;
  display: flex;
  position: relative;
}

.nav-dropdown-trigger {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: .82rem;
  font-weight: 650;
  gap: 6px;
  letter-spacing: .055em;
  padding-block: 31px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-dropdown-trigger::after {
  background: var(--gold);
  bottom: 20px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
  width: 100%;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after,
.nav-dropdown-trigger[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-chevron {
  color: var(--gold);
  font-size: .78rem;
  line-height: 1;
  transform: translateY(-1px);
}

.nav-dropdown-panel {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 52px rgba(9, 26, 41, .14);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(280px, 1fr) minmax(220px, .78fr);
  left: -24px;
  min-width: 610px;
  opacity: 0;
  padding: 28px 30px 30px;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 8px);
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
  visibility: hidden;
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-dropdown-label,
.mobile-nav-group-label {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .13em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.nav-dropdown-panel a {
  border-bottom: 1px solid rgba(216, 209, 198, .68);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.2;
  padding: 9px 0 10px;
  text-decoration: none;
}

.nav-dropdown-panel a:last-child {
  border-bottom: 0;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
  color: var(--gold);
}

.mobile-nav-group-label {
  margin: 17px 0 2px;
  padding-top: 2px;
}

.mobile-panel .mobile-secondary-link {
  padding-left: 14px;
}

@media (max-width: 920px) {
  .nav-dropdown { display: none; }
}


/* Estate planning featured package */
.estate-grid article.estate-featured {
  background: var(--paper-warm);
}
.estate-grid article.estate-featured > span::after {
  content: " · Complete package";
  color: var(--ink-soft);
  font-weight: 650;
}

.questionnaire-download-note{margin:0;padding:14px 18px;border:1px solid rgba(21,42,38,.16);background:#f7f4ed;font-size:.95rem;line-height:1.55}
.section-tight{padding-top:28px;padding-bottom:0}
