:root {
  --ink: #102b33;
  --ink-strong: #071b22;
  --paper: #f8efe2;
  --paper-soft: #fffaf1;
  --teal: #2f7772;
  --gold: #c57b18;
  --brick: #9f382c;
  --line: rgba(16, 43, 51, 0.16);
  --shadow: 0 22px 60px rgba(7, 27, 34, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(47, 119, 114, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 119, 114, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(16, 43, 51, 0.12);
  background: rgba(248, 239, 226, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--paper-soft);
  background: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 13px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav a {
  text-decoration-color: transparent;
  text-underline-offset: 6px;
}

nav a:hover {
  text-decoration-color: var(--gold);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: clamp(178px, 18vw, 235px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 84px);
}

.hero-banner {
  position: absolute;
  inset: 0 0 auto;
  height: clamp(150px, 16vw, 215px);
  border-bottom: 1px solid rgba(16, 43, 51, 0.14);
  background:
    linear-gradient(180deg, rgba(248, 239, 226, 0.18), rgba(248, 239, 226, 0.36)),
    linear-gradient(90deg, rgba(248, 239, 226, 0.08), rgba(248, 239, 226, 0.2)),
    url("/assets/renjini-profile-visual.png") center 42% / cover no-repeat;
  filter: saturate(0.9) brightness(1.06);
  opacity: 1;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.05rem, 5.9vw, 5.45rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}

h1 span {
  white-space: nowrap;
}

h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.8vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 14px 0 10px;
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.14;
}

.dek {
  max-width: 960px;
  margin: 28px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.45;
}

.hero-positioning {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--brick);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  font-weight: 800;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  background: rgba(255, 250, 241, 0.5);
}

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

.hero-identity {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.hero-headshot {
  flex: 0 0 clamp(136px, 13.5vw, 184px);
  width: clamp(136px, 13.5vw, 184px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 5px solid var(--paper-soft);
  border-radius: 50%;
  background: var(--ink);
  box-shadow:
    0 0 0 11px rgba(16, 43, 51, 0.9),
    0 24px 52px rgba(7, 27, 34, 0.24);
}

.hero-headshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  object-position: 50% 68%;
}

.intro {
  padding: clamp(34px, 6vw, 84px) clamp(20px, 5vw, 72px);
  color: var(--paper-soft);
  background: var(--ink);
}

.intro p {
  max-width: 1120px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2.75rem);
  line-height: 1.18;
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
}

.body-copy p,
.contact-panel p,
.timeline p,
.education-grid p,
.advisory-grid p,
.writing-list p,
.focus-grid p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.72;
}

.body-copy p + p {
  margin-top: 18px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.experience {
  background: rgba(255, 250, 241, 0.5);
}

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

.timeline-item {
  border-bottom: 1px solid var(--line);
}

.timeline-item summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1fr) 36px;
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  min-height: 96px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}

.timeline-item summary::-webkit-details-marker {
  display: none;
}

.timeline-years {
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-role {
  display: grid;
  gap: 7px;
}

.timeline-role strong {
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.timeline-role em {
  color: var(--ink);
  font-style: normal;
  font-weight: 750;
  line-height: 1.35;
}

.timeline-item summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper-soft);
  background: var(--teal);
  font-size: 1.2rem;
  font-weight: 800;
}

.timeline-item[open] summary::after {
  content: "-";
}

.impact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 860px;
  padding: 0 46px 14px calc(30% + clamp(18px, 4vw, 54px));
}

.impact-tags span {
  border: 1px solid rgba(48, 123, 119, 0.42);
  background: rgba(48, 123, 119, 0.12);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  padding: 8px 10px;
  text-transform: uppercase;
}

.timeline-item p {
  max-width: 860px;
  padding: 0 46px 26px calc(30% + clamp(18px, 4vw, 54px));
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.focus-grid article {
  min-height: 310px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.42);
}

.focus-grid span {
  color: var(--gold);
  font-weight: 900;
}

.writing {
  color: var(--paper-soft);
  background: var(--ink-strong);
}

.writing .section-kicker {
  color: #f0ac45;
}

.writing h2 {
  color: var(--paper-soft);
}

.writing-tabs {
  margin-top: 10px;
}

.writing-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.writing-tab {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(248, 239, 226, 0.42);
  border-radius: 4px;
  color: var(--paper-soft);
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.writing-tab:hover,
.writing-tab.is-active {
  color: var(--ink-strong);
  background: #f0ac45;
  border-color: #f0ac45;
}

.writing-panel[hidden] {
  display: none;
}

.writing-subheading {
  margin: 0 0 16px;
  color: var(--paper-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.9vw, 1.85rem);
  line-height: 1.08;
}

.writing-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(248, 239, 226, 0.18);
  border: 1px solid rgba(248, 239, 226, 0.18);
}

.writing-list a,
.writing-list article {
  display: block;
  min-height: 260px;
  padding: 28px;
  background: #102b33;
  text-decoration: none;
}

.writing-list a:last-child:nth-child(odd),
.writing-list article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: 220px;
}

.writing-list a:hover strong {
  color: #f0ac45;
}

.writing-list span {
  color: #f0ac45;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.writing-list strong {
  display: block;
  margin: 14px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.65vw, 1.65rem);
  line-height: 1.16;
}

.writing-list p {
  color: rgba(248, 239, 226, 0.82);
}

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

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.education-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--paper-soft);
}

.education-grid span {
  display: inline-flex;
  min-width: 54px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--paper-soft);
  background: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.advisory {
  background: rgba(255, 250, 241, 0.56);
  border-top: 1px solid var(--line);
}

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

.advisory-grid article {
  min-height: 300px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.5);
}

.advisory-grid span {
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.credentials div {
  min-height: 220px;
  padding: 34px;
  background: var(--paper);
}

.metric {
  margin: 0 0 12px;
  color: var(--brick);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 0.9;
}

.credentials span {
  display: block;
  max-width: 320px;
  font-weight: 750;
  line-height: 1.45;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 250, 241, 0.18);
  color: var(--paper-soft);
  background: var(--teal);
  font-size: 0.9rem;
  font-weight: 700;
}

footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .focus-grid,
  .writing-list,
  .education-grid,
  .advisory-grid,
  .credentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  nav {
    max-width: 310px;
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.25rem);
    white-space: normal;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(154px, 38vw, 210px);
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-identity {
    align-items: center;
    gap: 18px;
  }

  .hero-headshot {
    flex-basis: 112px;
    width: 112px;
  }

  .button {
    width: 100%;
  }

  .focus-grid,
  .writing-list,
  .education-grid,
  .advisory-grid,
  .credentials {
    grid-template-columns: 1fr;
  }

  .focus-grid article,
  .writing-list a,
  .writing-list article,
  .education-grid article,
  .advisory-grid article,
  .credentials div {
    min-height: auto;
  }

  .writing-list a:last-child:nth-child(odd),
  .writing-list article:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .timeline-item summary {
    grid-template-columns: 1fr 34px;
    gap: 14px;
    min-height: auto;
    padding: 18px 0;
  }

  .timeline-years {
    grid-column: 1 / -1;
  }

  .timeline-item p {
    padding: 0 0 22px;
  }

  .impact-tags {
    padding: 0 0 14px;
  }
}

/* Policy-professional layout refresh, 2026-07-28.
   Previous editorial stylesheet is preserved in styles.editorial-backup-20260728.css. */
:root {
  --paper: #f7f3ec;
  --paper-soft: #fffdf8;
  --ink: #17313a;
  --ink-strong: #08252c;
  --teal: #2f7772;
  --gold: #a66a16;
  --brick: #8f3e35;
  --line: rgba(23, 49, 58, 0.16);
  --shadow: 0 18px 45px rgba(8, 37, 44, 0.1);
}

body {
  background: var(--paper);
}

.site-header {
  padding: 13px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(23, 49, 58, 0.14);
}

.brand {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--teal);
  border-color: var(--teal);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0;
}

nav {
  gap: 8px 18px;
  color: rgba(23, 49, 58, 0.82);
  font-size: 0.74rem;
  font-weight: 850;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  min-height: auto;
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.hero-banner {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  inset: auto;
  height: auto;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.18), rgba(255, 253, 248, 0.46)),
    url("/assets/renjini-profile-visual.png") center / cover no-repeat;
  filter: saturate(0.72) contrast(0.94) brightness(1.08);
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
}

.hero-identity {
  align-items: center;
  gap: clamp(16px, 2.5vw, 26px);
}

.hero-headshot {
  flex-basis: clamp(118px, 11vw, 154px);
  width: clamp(118px, 11vw, 154px);
  border: 4px solid var(--paper-soft);
  border-radius: 4px;
  background: #dfe8e6;
  box-shadow:
    0 0 0 1px rgba(23, 49, 58, 0.18),
    0 16px 32px rgba(8, 37, 44, 0.14);
}

.hero-headshot img {
  object-position: 50% 66%;
}

.eyebrow,
.section-kicker {
  color: var(--teal);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 0.98;
}

h2 {
  max-width: 920px;
  font-size: clamp(1.55rem, 2.35vw, 2.35rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.1rem;
}

.dek {
  max-width: 860px;
  margin-top: 24px;
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.58;
}

.hero-positioning {
  max-width: 760px;
  margin-top: 14px;
  color: var(--brick);
  font-size: 1rem;
  line-height: 1.5;
}

.button {
  border-radius: 3px;
  min-height: 44px;
  font-size: 0.92rem;
}

.button.primary {
  background: var(--teal);
  border-color: var(--teal);
}

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

.intro {
  padding: clamp(32px, 5vw, 58px) clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.intro p {
  max-width: 1040px;
  padding-left: 22px;
  border-left: 4px solid var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.2rem, 1.9vw, 1.85rem);
  line-height: 1.34;
  font-weight: 650;
}

.section {
  padding: clamp(46px, 7vw, 86px) clamp(20px, 5vw, 72px);
}

.split {
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
}

.body-copy {
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.body-copy p,
.contact-panel p,
.timeline p,
.education-grid p,
.advisory-grid p,
.writing-list p,
.focus-grid p {
  font-size: 0.98rem;
  line-height: 1.66;
}

.section-heading {
  max-width: 960px;
  margin-bottom: 28px;
}

.experience {
  background: var(--paper);
}

.timeline {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.timeline-item {
  border: 1px solid var(--line);
  background: var(--paper-soft);
  box-shadow: 0 10px 30px rgba(8, 37, 44, 0.045);
}

.timeline-item summary {
  grid-template-columns: minmax(120px, 0.2fr) minmax(0, 1fr) 32px;
  min-height: 82px;
  padding: 18px 22px;
  gap: clamp(16px, 3vw, 34px);
}

.timeline-years {
  color: var(--brick);
  font-size: 0.75rem;
}

.timeline-role strong {
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
}

.timeline-role em {
  font-size: 0.95rem;
}

.timeline-item summary::after {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: var(--paper-soft);
  color: var(--teal);
}

.impact-tags {
  max-width: none;
  padding: 0 22px 12px calc(20% + clamp(16px, 3vw, 34px));
}

.impact-tags span {
  border-color: rgba(47, 119, 114, 0.24);
  background: rgba(47, 119, 114, 0.08);
  font-size: 0.68rem;
  padding: 7px 9px;
}

.timeline-item p {
  max-width: 980px;
  padding: 0 22px 22px calc(20% + clamp(16px, 3vw, 34px));
}

.focus-grid,
.education-grid,
.advisory-grid {
  gap: 14px;
  background: transparent;
  border: 0;
}

.focus-grid article,
.education-grid article,
.advisory-grid article {
  min-height: auto;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.focus-grid article {
  min-height: 275px;
}

.focus-grid span {
  color: var(--brick);
}

.writing {
  color: var(--ink);
  background: #edf3f1;
  border-top: 1px solid rgba(23, 49, 58, 0.12);
  border-bottom: 1px solid rgba(23, 49, 58, 0.12);
}

.writing .section-kicker {
  color: var(--teal);
}

.writing h2,
.writing-subheading {
  color: var(--ink-strong);
}

.writing-tab {
  min-height: 40px;
  border-color: rgba(47, 119, 114, 0.35);
  color: var(--teal);
  background: rgba(255, 253, 248, 0.52);
  font-size: 0.78rem;
}

.writing-tab:hover,
.writing-tab.is-active {
  color: var(--paper-soft);
  background: var(--teal);
  border-color: var(--teal);
}

.writing-list {
  gap: 12px;
  background: transparent;
  border: 0;
}

.writing-list a,
.writing-list article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(23, 49, 58, 0.12);
  color: var(--ink);
  background: var(--paper-soft);
}

.writing-list a:last-child:nth-child(odd),
.writing-list article:last-child:nth-child(odd) {
  min-height: 210px;
}

.writing-list a:hover strong {
  color: var(--teal);
}

.writing-list span {
  color: var(--brick);
  font-size: 0.74rem;
}

.writing-list strong {
  font-size: clamp(1.05rem, 1.35vw, 1.36rem);
}

.writing-list p {
  color: var(--ink);
}

/* Slightly larger section labels. */
.section-kicker {
  font-size: clamp(0.9rem, 1vw, 1.02rem);
}

/* Contact section: remove the empty split-column space and let the content breathe. */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: var(--paper);
}

.contact > div:first-child {
  max-width: none;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 5vw, 72px);
  width: 100%;
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper-soft);
}

.contact-panel p {
  max-width: 820px;
  margin: 0;
}

.contact-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

/* Split sections: keep compact labels without leaving an empty column. */
.section.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.section.split > div:first-child {
  max-width: none;
}

.section.split .section-kicker {
  margin-bottom: 0;
}

.section.split .body-copy {
  max-width: 1040px;
}

@media (max-width: 760px) {
  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
  }
}

.education,
.advisory {
  background: var(--paper-soft);
}

.education-grid span {
  border-color: var(--teal);
  background: var(--teal);
}

.credentials {
  gap: 14px;
  background: var(--paper);
}

.credentials div {
  min-height: 180px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.metric {
  color: var(--teal);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

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

.contact-panel {
  border-color: var(--line);
  box-shadow: none;
}

footer {
  background: var(--ink-strong);
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-banner,
  .hero-copy {
    grid-column: 1;
  }

  .hero-banner {
    grid-row: 1;
    min-height: 260px;
  }

  .hero-copy {
    grid-row: 2;
  }

  .impact-tags,
  .timeline-item p {
    padding-left: 22px;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 26px;
  }

  .hero-banner {
    min-height: 210px;
  }

  .hero-headshot {
    flex-basis: 106px;
    width: 106px;
  }

  .body-copy {
    padding: 20px;
  }

  .timeline-item summary {
    padding: 18px;
  }

  .impact-tags,
  .timeline-item p {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Institutional navy refresh, 2026-07-28.
   Earlier looks are preserved in the backup stylesheets named in DESIGN_BACKUP.md. */
:root {
  --ink: #263442;
  --ink-strong: #0f1f2e;
  --paper: #eef1f4;
  --paper-soft: #ffffff;
  --teal: #416f83;
  --gold: #9b7a3d;
  --brick: #8a3347;
  --line: rgba(15, 31, 46, 0.13);
  --shadow: 0 16px 38px rgba(15, 31, 46, 0.12);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body {
  color: var(--ink);
  background: #eef1f4;
}

.site-header {
  padding: 12px clamp(20px, 5vw, 72px);
  background: #0f1f2e;
  border-bottom: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand {
  width: 38px;
  height: 38px;
  color: #0f1f2e;
  background: #ffffff;
  border-color: #ffffff;
  border-radius: 2px;
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-weight: 900;
}

nav {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
}

nav a:hover {
  color: #ffffff;
  text-decoration-color: #c6a65b;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 0;
  padding: 0;
  border-bottom: 0;
  background: #0f1f2e;
}

.hero-copy {
  max-width: none;
  padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.9);
}

.hero-banner {
  min-height: 560px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(15, 31, 46, 0.08), rgba(15, 31, 46, 0.38)),
    url("/assets/renjini-profile-visual.png") center / cover no-repeat;
  filter: grayscale(0.18) saturate(0.58) contrast(0.96) brightness(0.92);
}

.eyebrow {
  color: #c6a65b;
}

.hero h1,
.hero .dek,
.hero .hero-positioning {
  color: #ffffff;
}

h1,
h2,
h3,
.timeline-role strong,
.writing-list strong,
.writing-subheading,
.metric {
  font-family: "Cambria", "Georgia", "Times New Roman", serif;
}

h1 {
  font-size: clamp(3.15rem, 5.4vw, 5.2rem);
  line-height: 1;
}

.hero-headshot {
  border-radius: 2px;
  border-color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 18px 38px rgba(0, 0, 0, 0.3);
}

.dek {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
}

.hero-positioning {
  max-width: 740px;
  color: #c6a65b;
  font-size: 0.98rem;
}

.button.primary {
  color: #0f1f2e;
  background: #ffffff;
  border-color: #ffffff;
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.intro {
  background: #ffffff;
}

.intro p {
  border-left-color: #8a3347;
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-size: clamp(1.12rem, 1.65vw, 1.62rem);
  font-weight: 500;
}

.section {
  background: #eef1f4;
}

.section-kicker {
  color: #8a3347;
}

h2 {
  color: #0f1f2e;
}

.split {
  background: #eef1f4;
}

.body-copy,
.timeline-item,
.focus-grid article,
.education-grid article,
.advisory-grid article,
.credentials div,
.contact-panel {
  background: #ffffff;
  border-color: rgba(15, 31, 46, 0.12);
  box-shadow: 0 10px 24px rgba(15, 31, 46, 0.055);
}

.timeline-years,
.advisory-grid span,
.writing-list span {
  color: #8a3347;
}

.timeline-item summary::after {
  color: #ffffff;
  background: #416f83;
  border-color: #416f83;
}

.impact-tags span,
.education-grid span {
  border-color: rgba(65, 111, 131, 0.22);
  color: #315d70;
  background: #edf5f7;
}

.focus-grid span,
.metric {
  color: #416f83;
}

.writing {
  color: #263442;
  background: #dfe6eb;
}

.writing .section-kicker {
  color: #8a3347;
}

.writing h2,
.writing-subheading {
  color: #0f1f2e;
}

.writing-tab {
  color: #315d70;
  background: #ffffff;
  border-color: rgba(65, 111, 131, 0.24);
}

.writing-tab:hover,
.writing-tab.is-active {
  color: #ffffff;
  background: #416f83;
  border-color: #416f83;
}

.writing-list a,
.writing-list article {
  background: #ffffff;
  border-color: rgba(15, 31, 46, 0.11);
}

.writing-list a:hover strong {
  color: #8a3347;
}

.education,
.advisory,
.contact {
  background: #f8fafb;
}

.education-grid span {
  color: #ffffff;
  background: #416f83;
  border-color: #416f83;
}

.credentials {
  background: #eef1f4;
}

footer {
  color: rgba(255, 255, 255, 0.86);
  background: #0f1f2e;
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 48px;
  }

  .hero-banner {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 280px;
  }
}

@media (max-width: 620px) {
  .site-header {
    background: #0f1f2e;
  }

  nav {
    color: rgba(255, 255, 255, 0.82);
  }

  .hero-copy {
    padding: 34px 18px 38px;
  }
}

/* Banner-led policy layout, 2026-07-28.
   This version keeps the navy/slate palette but removes the side-image hero. */
:root {
  --ink: #27313c;
  --ink-strong: #111c28;
  --paper: #f3f5f7;
  --paper-soft: #ffffff;
  --teal: #3d6f7c;
  --gold: #9f7b3c;
  --brick: #8c3d4e;
  --line: rgba(17, 28, 40, 0.14);
  --shadow: 0 14px 34px rgba(17, 28, 40, 0.1);
  font-family: "Source Sans 3", "IBM Plex Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

h1,
h2,
h3,
.timeline-role strong,
.writing-list strong,
.writing-subheading,
.metric {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.brand {
  color: #ffffff;
  background: var(--ink-strong);
  border-color: var(--ink-strong);
  font-family: "Source Sans 3", "IBM Plex Sans", "Segoe UI", sans-serif;
}

nav {
  color: rgba(17, 28, 40, 0.82);
}

nav a:hover {
  color: var(--ink-strong);
  text-decoration-color: var(--brick);
}

.hero {
  display: block;
  padding: 0;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}

.hero-banner {
  display: block;
  min-height: clamp(210px, 30vw, 360px);
  border: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.74)),
    url("/assets/renjini-profile-visual.png") center 48% / cover no-repeat;
  filter: grayscale(0.08) saturate(0.62) contrast(0.96) brightness(1.08);
}

.hero-copy {
  max-width: 1160px;
  padding: clamp(34px, 5.8vw, 74px) clamp(20px, 5vw, 72px) clamp(44px, 6vw, 78px);
  color: var(--ink);
}

.hero h1 {
  color: var(--ink-strong);
}

.hero .dek {
  color: var(--ink);
}

.hero .hero-positioning {
  color: var(--brick);
}

.eyebrow {
  color: var(--brick);
}

.hero-headshot {
  border-color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(17, 28, 40, 0.16),
    0 14px 28px rgba(17, 28, 40, 0.16);
}

.button.primary {
  color: #ffffff;
  background: var(--ink-strong);
  border-color: var(--ink-strong);
}

.button.secondary {
  color: var(--ink-strong);
  border-color: rgba(17, 28, 40, 0.38);
}

.intro p {
  font-family: "Source Sans 3", "IBM Plex Sans", "Segoe UI", sans-serif;
}

.timeline-item summary::after {
  background: var(--ink-strong);
  border-color: var(--ink-strong);
}

.writing {
  background: #e7edf1;
}

footer {
  background: var(--ink-strong);
}

@media (max-width: 940px) {
  .hero {
    display: block;
  }

  .hero-banner {
    min-height: clamp(190px, 34vw, 280px);
    border-top: 0;
  }

  .hero-copy {
    padding-bottom: 48px;
  }
}

@media (max-width: 620px) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }

  nav {
    color: rgba(17, 28, 40, 0.82);
  }

  .hero-banner {
    min-height: 185px;
  }
}

/* Unified professional heading font, 2026-07-28. */
h1,
h2,
h3,
.timeline-role strong,
.writing-list strong,
.writing-subheading,
.metric {
  font-family: "Source Sans 3", "IBM Plex Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 850;
}

h1 {
  font-weight: 900;
}

/* Warm palette restored with banner layout and professional font, 2026-07-28. */
:root {
  --ink: #102b33;
  --ink-strong: #071b22;
  --paper: #f8efe2;
  --paper-soft: #fffaf1;
  --teal: #2f7772;
  --gold: #c57b18;
  --brick: #9f382c;
  --line: rgba(16, 43, 51, 0.16);
  --shadow: 0 18px 44px rgba(7, 27, 34, 0.12);
}

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

.site-header {
  background: rgba(248, 239, 226, 0.94);
  border-bottom: 1px solid rgba(16, 43, 51, 0.14);
}

.brand {
  color: var(--paper-soft);
  background: var(--ink-strong);
  border-color: var(--ink-strong);
}

nav {
  color: rgba(16, 43, 51, 0.84);
}

nav a:hover {
  color: var(--ink-strong);
  text-decoration-color: var(--gold);
}

.hero {
  background: var(--paper-soft);
}

.hero-banner {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(248, 239, 226, 0.36), rgba(248, 239, 226, 0.68)),
    url("/assets/renjini-profile-visual.png") center 48% / cover no-repeat;
  filter: saturate(0.76) contrast(0.96) brightness(1.08);
}

.hero-copy,
.hero h1,
.hero .dek {
  color: var(--ink);
}

.hero h1,
h2,
h3 {
  color: var(--ink-strong);
}

.eyebrow,
.section-kicker,
.timeline-years,
.advisory-grid span,
.writing-list span {
  color: var(--brick);
}

.hero .hero-positioning {
  color: var(--brick);
}

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

.button.secondary {
  color: var(--ink-strong);
  border-color: rgba(16, 43, 51, 0.38);
}

.intro,
.education,
.advisory,
.contact,
.body-copy,
.timeline-item,
.focus-grid article,
.education-grid article,
.advisory-grid article,
.credentials div,
.contact-panel,
.writing-list a,
.writing-list article {
  background: var(--paper-soft);
}

.intro p {
  border-left-color: var(--gold);
}

.section,
.split,
.credentials {
  background: var(--paper);
}

.body-copy,
.timeline-item,
.focus-grid article,
.education-grid article,
.advisory-grid article,
.credentials div,
.contact-panel,
.writing-list a,
.writing-list article {
  border-color: var(--line);
}

.timeline-item summary::after,
.education-grid span,
.writing-tab:hover,
.writing-tab.is-active {
  color: var(--paper-soft);
  background: var(--teal);
  border-color: var(--teal);
}

.impact-tags span {
  border-color: rgba(47, 119, 114, 0.28);
  color: var(--teal);
  background: rgba(47, 119, 114, 0.1);
}

.focus-grid span,
.metric {
  color: var(--gold);
}

.writing {
  color: var(--paper-soft);
  background: var(--ink-strong);
}

.writing h2,
.writing-subheading {
  color: var(--paper-soft);
}

.writing .section-kicker,
.writing-list span {
  color: #f0ac45;
}

.writing-tab {
  color: var(--paper-soft);
  background: transparent;
  border-color: rgba(248, 239, 226, 0.42);
}

.writing-list a,
.writing-list article {
  color: var(--paper-soft);
  background: #102b33;
  border-color: rgba(248, 239, 226, 0.18);
}

.writing-list p {
  color: rgba(248, 239, 226, 0.82);
}

.writing-list a:hover strong {
  color: #f0ac45;
}

footer {
  color: var(--paper-soft);
  background: var(--teal);
}

@media (max-width: 620px) {
  .site-header {
    background: rgba(248, 239, 226, 0.94);
  }

  nav {
    color: rgba(16, 43, 51, 0.84);
  }
}

/* Professional policy banner asset, 2026-07-28. */
.hero-banner {
  min-height: clamp(150px, 20vw, 245px);
  background:
    linear-gradient(180deg, rgba(248, 239, 226, 0.28), rgba(248, 239, 226, 0.58)),
    url("/assets/policy-banner-20260728.png") center 48% / cover no-repeat;
  filter: saturate(0.84) contrast(0.98) brightness(1.03);
}

@media (max-width: 940px) {
  .hero-banner {
    min-height: clamp(140px, 28vw, 210px);
  }
}

@media (max-width: 620px) {
  .hero-banner {
    min-height: 138px;
  }
}

/* Option 3 preview: no banner, strong text header. */
.hero {
  display: block;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 74px);
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}

.hero-banner,
.hero-practice-panel {
  display: none;
}

.hero-copy {
  max-width: 1120px;
  padding: 0;
}

.hero-identity {
  align-items: center;
}

.hero-headshot {
  flex-basis: clamp(112px, 10vw, 148px);
  width: clamp(112px, 10vw, 148px);
}

.dek {
  max-width: 920px;
}

.hero-positioning {
  max-width: 780px;
}

@media (max-width: 620px) {
  .hero {
    padding: 34px 18px 44px;
  }
}

/* Slightly larger section labels. */
.section-kicker {
  font-size: clamp(0.9rem, 1vw, 1.02rem);
}

/* Contact section: final layout override. */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: var(--paper);
}

.contact > div:first-child {
  max-width: none;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 5vw, 72px);
  width: 100%;
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper-soft);
}

.contact-panel p {
  max-width: 820px;
  margin: 0;
}

.contact-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

@media (max-width: 760px) {
  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
  }
}

/* Split sections: keep compact labels without leaving an empty column. */
.section.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.section.split > div:first-child {
  max-width: none;
}

.section.split .section-kicker {
  margin-bottom: 0;
}

.section.split .body-copy {
  max-width: 1040px;
}

/* Writing section: warm professional presentation with lighter teal tabs. */
.writing {
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.writing .section-kicker {
  color: var(--brick);
}

.writing h2,
.writing-subheading {
  color: var(--ink-strong);
  font-family: "Source Sans 3", "IBM Plex Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 850;
  letter-spacing: 0;
}

.writing-subheading {
  margin: 0 0 18px;
  font-size: clamp(1.12rem, 1.45vw, 1.35rem);
  line-height: 1.22;
}

.writing-tabs {
  margin-top: 0;
}

.writing-tab-list {
  gap: 10px;
  margin-bottom: 22px;
}

.writing-tab {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(89, 148, 143, 0.36);
  border-radius: 3px;
  color: #2f7772;
  background: rgba(255, 250, 241, 0.58);
  box-shadow: none;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.writing-tab:hover,
.writing-tab.is-active {
  color: var(--paper-soft);
  background: #4f918b;
  border-color: #4f918b;
}

.writing-panel[hidden] {
  display: none;
}

.writing-list {
  gap: 14px;
  background: transparent;
  border: 0;
}

.writing-list a,
.writing-list article {
  min-height: 220px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(7, 27, 34, 0.055);
}

.writing-list a:hover,
.writing-list article:hover {
  border-color: rgba(79, 145, 139, 0.5);
  background: #fffaf1;
}

.writing-list a:hover strong {
  color: #2f7772;
}

.writing-list span {
  color: var(--brick);
  font-family: "Source Sans 3", "IBM Plex Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.writing-list strong {
  color: var(--ink-strong);
  font-family: "Source Sans 3", "IBM Plex Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 1.36rem);
  font-weight: 850;
  line-height: 1.16;
}

.writing-list p {
  color: var(--ink);
}

/* Advisory roles grouped by function. */
.advisory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 44px);
}

.advisory-group {
  display: grid;
  gap: 14px;
}

.advisory-group > h3 {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(47, 119, 114, 0.34);
  color: var(--ink-strong);
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
}

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

.advisory-cards article {
  min-height: 260px;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 14px;
}

.role-tags span {
  border: 1px solid rgba(47, 119, 114, 0.28);
  background: rgba(47, 119, 114, 0.1);
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1;
  padding: 7px 8px;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .advisory-cards {
    grid-template-columns: 1fr;
  }
}

/* Tabbed advisory section and leaner section headings. */
.section-heading h2,
.split > div:first-child h2,
.contact > div:first-child h2 {
  display: none;
}

.section-heading {
  margin-bottom: 22px;
}

.advisory-tabs {
  margin-top: 10px;
}

.advisory-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.advisory-tab {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(47, 119, 114, 0.35);
  border-radius: 3px;
  color: var(--teal);
  background: rgba(255, 250, 241, 0.54);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.advisory-tab:hover,
.advisory-tab.is-active {
  color: var(--paper-soft);
  background: var(--teal);
  border-color: var(--teal);
}

.advisory-panel[hidden] {
  display: none;
}

/* Subtle emphasis for the Option 5 practice panel. */
.hero-practice-panel {
  border-color: rgba(197, 123, 24, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(248, 239, 226, 0.84));
  box-shadow:
    inset 4px 0 0 rgba(197, 123, 24, 0.45),
    0 16px 38px rgba(7, 27, 34, 0.1);
}

.hero-practice-panel li {
  color: #071b22;
}

/* Option 5: split intro with compact practice-area panel. */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(44px, 7vw, 82px) clamp(20px, 5vw, 72px);
}

.hero-banner {
  display: none;
}

.hero-practice-panel {
  display: block;
  align-self: stretch;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(248, 239, 226, 0.74));
  box-shadow: var(--shadow);
}

.hero-practice-panel p {
  margin: 0 0 18px;
  color: var(--brick);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.hero-practice-panel li {
  padding: 12px 0;
  border-top: 1px solid rgba(16, 43, 51, 0.14);
  color: var(--ink-strong);
  font-weight: 850;
}

.hero-practice-panel li:last-child {
  border-bottom: 1px solid rgba(16, 43, 51, 0.14);
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-practice-panel {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 34px 18px 44px;
  }
}

/* Slightly larger section labels: final override. */
.section-kicker {
  font-size: clamp(0.9rem, 1vw, 1.02rem);
}

