:root {
  --forest: #12362e;
  --forest-deep: #0b2822;
  --forest-soft: #244b40;
  --ink: #242824;
  --muted: #60645d;
  --paper: #f6f2e9;
  --paper-deep: #eae3d6;
  --paper-light: #fcfaf5;
  --parchment: #eee6d8;
  --sea-grey: #788784;
  --weathered-olive: #6f745a;
  --stone: #8b877f;
  --lichen: #7d846a;
  --brass: #9d793f;
  --brass-light: #c4a873;
  --brass-text: #765726;
  --line: rgba(36, 40, 36, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 76rem;
  --reading-width: 66ch;
  --side: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(5rem, 10vw, 9rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.075rem);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.booking-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

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

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

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

h1 {
  max-width: 12ch;
  margin-bottom: 1.6rem;
  font-size: clamp(3rem, 7.8vw, 6.7rem);
}

h2 {
  max-width: 17ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.3rem, 5vw, 4.35rem);
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

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

:focus-visible {
  outline: 3px solid #8a662c;
  outline-offset: 4px;
}

::selection {
  color: var(--paper-light);
  background: var(--forest-soft);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--paper-light);
  background: var(--forest-deep);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--side);
}

.section {
  padding-block: var(--section);
}

.section-dark {
  padding-block: var(--section);
  color: var(--paper);
  background: var(--forest);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.6rem;
  height: 1px;
  background: var(--brass);
  content: "";
}

.section-dark .eyebrow,
.section-heading.light .eyebrow {
  color: var(--brass-light);
}

.section-dark .eyebrow::before,
.section-heading.light .eyebrow::before {
  background: var(--brass-light);
}

.lead {
  max-width: var(--reading-width);
  font-family: var(--sans);
  font-size: clamp(1.16rem, 1.5vw, 1.45rem);
  font-weight: 480;
  line-height: 1.62;
  letter-spacing: -0.005em;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(36, 40, 36, 0.12);
  background: rgba(246, 242, 233, 0.94);
  box-shadow: 0 0.5rem 2rem rgba(17, 38, 32, 0.06);
  backdrop-filter: blur(14px);
}

body.menu-open .site-header {
  backdrop-filter: none;
}

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

.brand {
  z-index: 102;
  display: inline-flex;
  min-width: 0;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 2.65rem;
  height: auto;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  min-width: 0;
  color: var(--forest);
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 6.5vw, 2.15rem);
  font-weight: 500;
  letter-spacing: 0.015em;
}

.brand-copy span {
  margin-top: 0.38rem;
  color: var(--brass-text);
  font-size: clamp(0.43rem, 1.65vw, 0.55rem);
  font-weight: 750;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.brand-copy i,
.footer-wordmark i,
.confirmation-wordmark i {
  margin-inline: 0.22em;
  font-style: normal;
}

.nav-toggle {
  z-index: 102;
  display: inline-flex;
  min-width: 4.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-toggle-icon {
  display: grid;
  width: 1.5rem;
  gap: 0.38rem;
}

.nav-toggle-icon span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:first-child {
  transform: translateY(0.2rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:last-child {
  transform: translateY(-0.2rem) rotate(-45deg);
}

.site-nav {
  position: fixed;
  z-index: 101;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.2rem;
  padding: 6rem var(--side) 3rem;
  background: var(--paper);
  max-height: 100dvh;
  overscroll-behavior: contain;
  overflow-y: auto;
}

.js .site-nav {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition: visibility 0s linear 260ms, opacity 240ms ease, transform 260ms var(--ease);
}

.js .site-nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.site-nav a {
  width: 100%;
  padding: 0.58rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 7vw, 2.35rem);
  line-height: 1.2;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--brass);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(8.5rem, 16vw, 11rem);
  padding-bottom: 1.75rem;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(157, 121, 63, 0.13) 50%, transparent calc(50% + 1px));
}

.hero-contours {
  position: absolute;
  z-index: 0;
  top: 7rem;
  right: -17rem;
  width: 44rem;
  height: 44rem;
  opacity: 0.18;
  pointer-events: none;
  transform: rotate(-7deg);
}

.hero-contours span {
  position: absolute;
  border: 1px solid var(--brass);
  border-radius: 48% 52% 46% 54%;
}

.hero-contours span:nth-child(1) {
  inset: 7rem 8rem;
}

.hero-contours span:nth-child(2) {
  inset: 3.5rem 4.5rem;
}

.hero-contours span:nth-child(3) {
  inset: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4.5rem;
}

.hero-line + .hero-line {
  margin-top: 0.04em;
}

.hero-illustration {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(100%, 42rem);
}

.hero-illustration::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(157, 121, 63, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-illustration img {
  position: relative;
  width: 100%;
  height: auto;
}

.hero h1 span {
  display: block;
  white-space: normal;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(3.1rem, 7.8vw, 6.65rem);
}

.hero-positioning {
  max-width: 43rem;
  margin-bottom: 1.05rem;
  color: #4f554f;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-location span {
  width: 1.5rem;
  height: 1px;
  background: var(--brass);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 1.7rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-primary {
  color: var(--paper-light);
  background: var(--forest);
}

.button-primary:hover {
  background: var(--forest-soft);
}

.button-light {
  color: var(--forest-deep);
  background: var(--paper);
}

.button-light:hover {
  border-color: var(--brass-light);
  background: var(--paper-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-decoration: none;
  text-transform: none;
}

.text-link span {
  color: var(--brass);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.2rem);
}

.hero-statement {
  align-self: end;
  padding-top: 1.1rem;
  border-top: 1px solid var(--brass);
}

.statement-number {
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-statement blockquote {
  margin: 2rem 0 2.4rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.statement-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-index {
  position: relative;
  z-index: 1;
  display: none;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-index-line {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.section-heading {
  margin-bottom: clamp(3rem, 7vw, 5.75rem);
}

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

.section-heading.light h2 {
  color: var(--paper-light);
}

.problem-grid {
  display: grid;
  gap: 4rem;
}

.problem-intro {
  max-width: 39rem;
}

.problem-intro .lead {
  color: var(--paper-light);
}

.problem-intro > p:not(.lead) {
  max-width: 35rem;
  color: rgba(246, 242, 233, 0.72);
}

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

.problem-list li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  padding: 1.7rem 0;
  border-top: 1px solid rgba(246, 242, 233, 0.2);
}

.problem-list li:last-child {
  border-bottom: 1px solid rgba(246, 242, 233, 0.2);
}

.problem-list > li > span {
  padding-top: 0.22rem;
  color: var(--brass-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.problem-list h3 {
  margin-bottom: 0.65rem;
  color: var(--paper-light);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.problem-list p {
  margin-bottom: 0;
  color: rgba(246, 242, 233, 0.68);
  font-size: 0.92rem;
}

.service-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 23rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.service-card h3 {
  max-width: 12ch;
  margin: 3.8rem 0 1.5rem;
}

.service-card > p {
  max-width: 29rem;
  color: var(--muted);
}

.card-number {
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card .card-detail {
  position: absolute;
  right: 0;
  bottom: 1.3rem;
  left: 0;
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.first-nations {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest-deep);
}

.first-nations-feature > .shell,
.authority > .shell,
.inquiry > .shell {
  position: relative;
  z-index: 1;
}

.motif-layer-nations-feature .decorative-contours {
  right: -28rem;
  bottom: -31rem;
  width: clamp(52rem, 78vw, 92rem);
  opacity: 0.12;
  filter: brightness(1.7) saturate(0.65);
  transform: rotate(-5deg);
}

.nations-layout {
  display: grid;
  gap: 4rem;
}

.nations-heading h2,
.nations-heading .lead {
  color: var(--paper-light);
}

.nations-heading .lead {
  max-width: 39rem;
}

.nations-panel {
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid rgba(196, 168, 115, 0.55);
  background: rgba(255, 255, 255, 0.025);
}

.nations-panel > p:first-child {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.48;
}

.line-list {
  margin: 2.4rem 0;
  padding: 0;
  border-bottom: 1px solid rgba(246, 242, 233, 0.17);
  list-style: none;
}

.line-list li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.4rem;
  border-top: 1px solid rgba(246, 242, 233, 0.17);
  color: rgba(246, 242, 233, 0.82);
  font-size: 0.88rem;
}

.line-list li::before {
  position: absolute;
  top: 1.45rem;
  left: 0;
  width: 0.45rem;
  height: 1px;
  background: var(--brass-light);
  content: "";
}

.practice-note {
  color: rgba(246, 242, 233, 0.58);
  font-size: 0.8rem;
}

.writing {
  background: var(--paper-light);
}

.editorial-grid {
  display: grid;
  gap: 4rem;
}

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

.article-row {
  position: relative;
  padding: 2rem 2.2rem 2rem 0;
  border-bottom: 1px solid var(--line);
}

.article-row.has-image {
  display: grid;
  grid-template-columns: minmax(8.5rem, 0.36fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.2rem);
  align-items: center;
}

.article-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--paper-deep);
  text-decoration: none;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.article-image:hover img {
  transform: scale(1.025);
}

.article-copy {
  min-width: 0;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--brass);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-row h3 {
  max-width: 22ch;
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}

.article-row h3 a {
  text-decoration: none;
}

.article-row h3 a:hover {
  color: var(--forest-soft);
  text-decoration: underline;
}

.article-row p {
  max-width: 40rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--brass);
  font-size: 1.25rem;
}

@media (max-width: 39.99rem) {
  .article-row.has-image {
    grid-template-columns: 1fr;
  }

  .article-image {
    width: calc(100% - 0.2rem);
  }
}

.book-card {
  scroll-margin-top: 6rem;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  background: var(--paper);
}

.book-label {
  margin-bottom: 2rem;
  color: var(--brass);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.book-object {
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-left: 0.4rem solid var(--brass);
  color: var(--paper);
  background: var(--forest);
  box-shadow: -0.75rem 0.8rem 0 var(--paper-deep);
}

.book-object span,
.book-object small {
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.book-object i {
  width: 2.5rem;
  height: 1px;
  background: var(--brass-light);
}

.book-card h3 {
  margin-bottom: 1rem;
}

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

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

.about-layout {
  display: grid;
  gap: 4rem;
}

.about-marker {
  display: flex;
  width: min(100%, 25rem);
  aspect-ratio: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--brass);
  color: var(--forest);
}

.about-marker span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-marker strong {
  max-width: 5ch;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 8vw, 4.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.about-copy {
  align-self: center;
}

.about-copy .lead,
.about-copy > p:not(.eyebrow, .lead) {
  max-width: 40rem;
}

.about-copy > p:not(.eyebrow, .lead) {
  color: var(--muted);
}

.contact {
  border-bottom: 1px solid rgba(246, 242, 233, 0.15);
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
}

.contact h2 {
  margin-bottom: 0;
  color: var(--paper-light);
}

.contact-copy {
  align-self: end;
}

.contact-copy p {
  max-width: 32rem;
  color: rgba(246, 242, 233, 0.72);
  font-size: 1.04rem;
}

.contact-copy .button {
  margin-top: 1rem;
}

.contact-copy small {
  display: block;
  margin-top: 0.8rem;
  color: rgba(246, 242, 233, 0.5);
  font-size: 0.68rem;
}

.site-footer {
  padding-block: 3rem;
  color: rgba(246, 242, 233, 0.72);
  background: var(--forest-deep);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-brand {
  display: grid;
  align-items: flex-start;
  gap: 1.2rem;
}

.footer-wordmark,
.confirmation-wordmark {
  display: grid;
  width: fit-content;
  color: var(--paper-light);
  line-height: 1;
  text-decoration: none;
}

.footer-wordmark strong,
.confirmation-wordmark strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.footer-wordmark span,
.confirmation-wordmark span {
  margin-top: 0.45rem;
  color: var(--brass-light);
  font-size: 0.5rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 22rem;
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.5rem;
}

.footer-nav a {
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--paper-light);
  text-decoration: underline;
}

.footer-legal {
  font-size: 0.68rem;
  line-height: 1.6;
}

.footer-legal p {
  margin-bottom: 0.25rem;
}

.placeholder-text {
  color: var(--brass-light);
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .hero-copy.reveal {
  transform: translateY(1rem);
  transition-duration: 900ms;
}

.js .hero-copy.reveal.is-visible {
  transform: translateY(0);
}

.js .hero-statement.reveal {
  transition-duration: 950ms;
  transition-delay: 120ms;
}

@media (min-width: 44rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.7fr);
    align-items: end;
  }

  .hero-index {
    display: flex;
  }

  .section-heading.split {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.65fr);
    align-items: end;
    gap: 3rem;
  }

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

  .section-heading.split > p {
    margin-bottom: 0.4rem;
  }

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

  .service-card:nth-child(odd) {
    padding-right: clamp(2rem, 5vw, 4rem);
    border-right: 1px solid var(--line);
  }

  .service-card:nth-child(even) {
    padding-left: clamp(2rem, 5vw, 4rem);
  }

  .service-card:nth-child(even) .card-detail {
    left: clamp(2rem, 5vw, 4rem);
  }

  .service-card:nth-child(odd) .card-detail {
    right: clamp(2rem, 5vw, 4rem);
  }

  .editorial-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.75fr);
    align-items: start;
  }

  .about-layout {
    grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: clamp(4rem, 10vw, 9rem);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.7fr);
    align-items: end;
  }

  .footer-grid {
    grid-template-columns: minmax(15rem, 1.4fr) minmax(12rem, 0.7fr) minmax(12rem, 0.75fr);
    align-items: start;
  }
}

@media (min-width: 70rem) {
  .header-inner {
    min-height: 6rem;
  }

  .brand-copy span {
    font-size: 0.56rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav,
  .js .site-nav {
    position: static;
    visibility: visible;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.7rem, 1.25vw, 1.25rem);
    padding: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .site-nav a {
    width: auto;
    padding: 0.4rem 0;
    border: 0;
    font-family: var(--sans);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.015em;
    text-transform: none;
  }

  .site-nav .nav-contact {
    padding: 0.72rem 0.95rem;
    border: 1px solid var(--forest);
  }

  .site-nav .nav-contact:hover {
    color: var(--paper-light);
    background: var(--forest);
  }

  .hero {
    padding-top: clamp(9.5rem, 12vw, 11rem);
  }

  .problem-grid {
    grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.85fr);
    gap: clamp(4rem, 10vw, 9rem);
  }

  .nations-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.75fr);
    align-items: start;
    gap: clamp(5rem, 11vw, 10rem);
  }
}

@media (max-width: 22rem) {
  .brand-copy {
    display: none;
  }

  h1 {
    font-size: 2.85rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }
}

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

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

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

  .js .hero-statement.reveal {
    transition-delay: 0s;
  }
}

/* Owen Smith content system */

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

.site-nav a[aria-current="page"]:not(.nav-contact) {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-underline-offset: 0.35rem;
}

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

.proof-grid {
  display: grid;
}

.proof-grid p {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-block: 1.45rem;
  border-bottom: 1px solid var(--line);
}

.proof-grid p:last-child {
  border-bottom: 0;
}

.proof-grid strong {
  color: var(--brass-text);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-grid span {
  max-width: 23rem;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.35;
}

.proof-grid cite {
  font-style: italic;
}

.service-card-secondary {
  min-height: auto;
  padding-bottom: 2rem;
  background: linear-gradient(90deg, rgba(157, 121, 63, 0.07), transparent 70%);
}

.service-card-secondary h3 {
  margin-top: 2.2rem;
}

.book-feature {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(157, 121, 63, 0.12) 50%, transparent calc(50% + 1px)),
    var(--paper-deep);
}

.book-feature::after {
  position: absolute;
  right: -9rem;
  bottom: -10rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(157, 121, 63, 0.2);
  border-radius: 48% 52% 45% 55%;
  content: "";
  pointer-events: none;
  transform: rotate(18deg);
}

.book-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(4rem, 9vw, 8rem);
}

.book-cover {
  display: flex;
  width: min(100%, 25rem);
  min-height: 34rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 3.4rem);
  border-left: 0.55rem solid var(--brass);
  color: var(--paper-light);
  background: var(--forest-deep);
  box-shadow: -1rem 1.1rem 0 rgba(157, 121, 63, 0.2);
}

.book-cover span,
.book-cover small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.book-cover strong {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 7vw, 4.2rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.book-cover i {
  width: 3rem;
  height: 1px;
  background: var(--brass-light);
}

.book-feature-copy {
  align-self: center;
}

.book-feature-copy h2 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

.book-feature-copy h2 cite {
  font-style: normal;
}

.book-feature-copy > p {
  max-width: 42rem;
}

.book-feature-copy > p:not(.eyebrow, .lead) {
  color: var(--muted);
}

.feature-actions,
.writing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.6rem;
  margin-top: 2rem;
}

.source-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
}

.source-note a {
  color: var(--forest);
}

.latest-writing {
  min-height: 12rem;
}

.latest-writing .article-row:first-child {
  border-top: 1px solid var(--line);
}

.latest-writing .article-source {
  color: var(--muted);
}

.feed-status,
.feed-fallback {
  margin: 0;
  padding: 2rem 0;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.writing-actions {
  justify-content: space-between;
}

.button-outline {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}

.button-outline:hover {
  color: var(--paper-light);
  background: var(--forest);
}

.about-marker small {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-legal a {
  text-decoration-color: rgba(246, 242, 233, 0.35);
}

/* Editorial subpages */

.subpage-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(9rem, 12vw, 11rem) clamp(4.5rem, 7vw, 6.5rem);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.subpage-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}

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

.subpage-hero h1 {
  max-width: 48.75rem;
  margin-bottom: 0;
  font-size: clamp(3rem, 10vw, 4.75rem);
  line-height: 1.02;
  overflow-wrap: normal;
  text-wrap: balance;
}

.subpage-intro {
  max-width: 32rem;
  align-self: end;
}

.subpage-intro > p:not(.lead) {
  color: var(--muted);
}

.document-lines {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent 7.5%, rgba(157, 121, 63, 0.15) 7.5%, rgba(157, 121, 63, 0.15) calc(7.5% + 1px), transparent calc(7.5% + 1px)),
    repeating-linear-gradient(0deg, transparent 0, transparent 4rem, rgba(36, 40, 36, 0.035) 4rem, rgba(36, 40, 36, 0.035) calc(4rem + 1px));
  pointer-events: none;
}

/* Reusable editorial motif system */

.motif-layer {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.decorative-asset {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.decorative-contours {
  width: clamp(48rem, 72vw, 88rem);
  opacity: 0.1;
}

.subpage-hero::after,
.authority::after,
.inquiry::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(rgba(36, 40, 36, 0.3) 0.45px, transparent 0.65px);
  background-size: 7px 7px;
  content: "";
  pointer-events: none;
}

.motif-layer-services .decorative-contours {
  top: -22rem;
  right: -34rem;
  transform: rotate(-5deg);
}

.motif-layer-nations .decorative-contours {
  bottom: -27rem;
  left: -31rem;
  opacity: 0.12;
  transform: rotate(5deg);
}

.motif-layer-writing .decorative-contours {
  top: -20rem;
  right: -30rem;
  opacity: 0.09;
  transform: scaleX(-1) rotate(-4deg);
}

.motif-layer-about .decorative-contours {
  top: -19rem;
  left: -33rem;
  opacity: 0.085;
  transform: rotate(6deg);
}

.decorative-heritage-corner {
  top: 7.5rem;
  right: -1.5rem;
  width: clamp(9rem, 13vw, 13rem);
  opacity: 0.1;
}

.forest-divider {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  pointer-events: none;
}

.forest-divider img {
  position: absolute;
  left: 50%;
  display: block;
  width: min(100%, 96rem);
  max-width: none;
  height: auto;
  pointer-events: none;
  transform: translateX(-50%);
  user-select: none;
}

.forest-divider-home {
  height: clamp(11rem, 30vw, 28rem);
  background: var(--paper-light);
}

.forest-divider-home img {
  bottom: 0;
}

.forest-divider-nations {
  height: clamp(9rem, 24vw, 20rem);
  background: var(--paper-deep);
}

.forest-divider-nations img {
  bottom: 0;
  width: min(100%, 78rem);
  opacity: 0.38;
}

.heritage-divider {
  position: relative;
  z-index: 1;
  width: min(100%, 31rem);
  margin: clamp(-2.5rem, -3vw, -1.25rem) auto clamp(3rem, 6vw, 5rem);
  opacity: 0.42;
  pointer-events: none;
}

.heritage-divider img {
  width: 100%;
  height: auto;
}

.profile-grid {
  display: grid;
  gap: 3rem;
}

.margin-note {
  max-width: 18rem;
  padding-top: 1rem;
  border-top: 1px solid var(--brass);
}

.margin-note span {
  color: var(--brass-text);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.margin-note p {
  margin-top: 1.2rem;
  color: var(--muted);
  font-family: var(--serif);
  line-height: 1.45;
}

.margin-note.light p {
  color: rgba(246, 242, 233, 0.7);
}

.profile-copy {
  max-width: 48rem;
}

.profile-copy h2 {
  max-width: 18ch;
}

.profile-copy > p:not(.lead) {
  color: var(--muted);
}

.case-section .profile-copy h2,
.case-section .profile-copy .lead {
  color: var(--paper-light);
}

.case-section .profile-copy > p:not(.lead) {
  color: rgba(246, 242, 233, 0.72);
}

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

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

.current-work-grid {
  display: grid;
  gap: 3rem;
}

.current-work {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.current-work > .shell {
  position: relative;
  z-index: 1;
}

.botanical-corner-about {
  right: -2rem;
  bottom: -2rem;
  width: clamp(14rem, 26vw, 23rem);
  opacity: 0.1;
}

.current-work-grid > div:last-child {
  max-width: 38rem;
  align-self: end;
}

.placeholder-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.archive-grid {
  display: grid;
  gap: 4rem;
}

.archive-heading {
  max-width: 30rem;
}

.archive-heading > p:not(.eyebrow) {
  color: var(--muted);
}

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

.archive-item {
  padding-block: 1.8rem;
  border-bottom: 1px solid var(--line);
}

.archive-item > span {
  color: var(--brass-text);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-item h3 {
  margin: 0.8rem 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.archive-item h3 a {
  text-decoration: none;
}

.archive-item h3 a:hover {
  text-decoration: underline;
}

.archive-item p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.research-card {
  display: grid;
  gap: 2.5rem;
  max-width: 64rem;
  padding: clamp(1.6rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.case-stamp {
  display: flex;
  width: 9rem;
  height: 11rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid var(--brass);
  color: var(--forest);
}

.case-stamp span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.case-stamp strong {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 0.85;
}

.research-card h3 {
  max-width: 25ch;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.research-card p {
  max-width: 42rem;
  color: var(--muted);
}

.resource-grid {
  display: grid;
  border-top: 1px solid rgba(246, 242, 233, 0.2);
}

.resource-link {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(246, 242, 233, 0.2);
  color: var(--paper-light);
  text-decoration: none;
}

.resource-link > span,
.resource-link small {
  color: var(--brass-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-link strong {
  max-width: 14ch;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1;
}

.resource-link:hover strong {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

@media (min-width: 44rem) {
  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-grid p {
    padding-inline: clamp(1.2rem, 3vw, 2.4rem);
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .proof-grid p:first-child {
    padding-left: 0;
  }

  .proof-grid p:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .service-card-secondary {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(8rem, 0.35fr) minmax(14rem, 0.75fr) minmax(18rem, 1fr);
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-inline: 1px solid var(--line);
  }

  .service-card-secondary h3,
  .service-card-secondary p {
    margin: 0;
  }

  .service-card:nth-child(5) {
    padding-inline: 2rem;
    border-right: 1px solid var(--line);
  }

  .service-card:nth-child(5) .card-number {
    align-self: start;
  }

  .book-feature-grid,
  .profile-grid,
  .current-work-grid,
  .archive-grid {
    grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
  }

  .profile-grid,
  .current-work-grid {
    gap: clamp(4rem, 10vw, 9rem);
  }

  .research-card {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .resource-link {
    padding: 1.8rem;
    border-right: 1px solid rgba(246, 242, 233, 0.2);
  }

  .resource-link:first-child {
    padding-left: 0;
  }

  .resource-link:last-child {
    border-right: 0;
  }
}

@media (min-width: 64rem) {
  .subpage-hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(21.25rem, 0.75fr);
    align-items: end;
    gap: clamp(4rem, 7vw, 8rem);
  }

  .subpage-hero h1 {
    max-width: 48.75rem;
    font-size: clamp(3.75rem, 5vw, 5.9rem);
    line-height: 1.02;
  }

  .subpage-intro {
    max-width: 30rem;
    justify-self: end;
    padding-bottom: 0.35rem;
  }
}

@media (max-width: 63.99rem) {
  .subpage-intro {
    max-width: 42rem;
  }

  .motif-layer {
    opacity: 0.72;
  }
}

@media (min-width: 70rem) {
  .subpage-hero-grid {
    align-items: end;
  }
}

@media (max-width: 43.99rem) {
  .subpage-hero {
    padding-block: 8.75rem 4.25rem;
  }

  .subpage-hero h1 {
    font-size: clamp(3rem, 13vw, 4rem);
  }

  .decorative-contours {
    width: 58rem;
    opacity: 0.065;
  }

  .decorative-heritage-corner {
    display: none;
  }

  .botanical-corner-contact,
  .botanical-corner-about {
    width: 15rem;
    opacity: 0.075;
  }

  .forest-divider-home {
    height: 10rem;
  }

  .forest-divider-nations {
    height: 8rem;
  }

  .forest-divider img {
    width: 130%;
  }

  .heritage-divider {
    width: min(82%, 24rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-actions .button,
  .feature-actions .button,
  .writing-actions .button {
    width: 100%;
  }

  .hero-actions .text-link,
  .feature-actions .text-link {
    min-height: 2.75rem;
  }

  .statement-meta {
    flex-direction: column;
  }

  .book-cover {
    min-height: 29rem;
  }
}

/* Commercial positioning and conversion revision */

:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--forest);
}

.brand-logo-small {
  width: 2.45rem;
}

.hero-commercial {
  min-height: min(100svh, 60rem);
}

.hero-commercial h1 {
  max-width: 11.5ch;
  font-size: clamp(3.1rem, 7.6vw, 6.5rem);
}

.hero-commercial .hero-positioning {
  max-width: 47rem;
}

.hero-proof {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.hero-statement > p {
  max-width: 30rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.practice-position {
  background: var(--paper-light);
}

.practice-position-grid,
.additional-services-grid {
  display: grid;
  gap: 3rem;
}

.practice-position-copy {
  max-width: 43rem;
}

.practice-position-copy > p:not(.lead) {
  color: var(--muted);
}

.practice-direct-note {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: 0.84rem;
  font-weight: 650;
}

.use-case-grid {
  display: grid;
  margin-top: clamp(3rem, 8vw, 6rem);
  border-top: 1px solid var(--line);
}

.use-case {
  padding-block: 1.8rem;
  border-bottom: 1px solid var(--line);
}

.use-case > span,
.experience-item > span,
.engagement-heading > span,
.secondary-service > span,
.nations-work-grid article > span {
  color: var(--brass-text);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.use-case h3 {
  max-width: 18ch;
  margin: 1.4rem 0 0.7rem;
  font-size: 1.55rem;
}

.use-case p {
  max-width: 24rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.selected-experience {
  background: var(--forest-deep);
}

.selected-experience .section-heading > p {
  color: rgba(246, 242, 233, 0.7);
}

.experience-grid {
  display: grid;
  border-top: 1px solid rgba(246, 242, 233, 0.2);
}

.experience-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(246, 242, 233, 0.2);
}

.experience-item > span {
  color: var(--brass-light);
}

.experience-item h3 {
  max-width: 17ch;
  margin: 2.2rem 0 1rem;
  color: var(--paper-light);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.experience-item p {
  max-width: 34rem;
  color: rgba(246, 242, 233, 0.72);
  font-size: 0.9rem;
}

.experience-item a {
  color: var(--paper-light);
  font-size: 0.75rem;
  font-weight: 700;
}

.flagship-services {
  background: var(--paper);
}

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

.engagement-card {
  position: relative;
  display: grid;
  gap: 2.2rem;
  padding-block: clamp(2.4rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 7rem;
}

.engagement-card::after {
  position: absolute;
  top: 2.4rem;
  right: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-top: 1px solid rgba(157, 121, 63, 0.42);
  border-right: 1px solid rgba(157, 121, 63, 0.42);
  content: "";
  pointer-events: none;
}

.engagement-heading h3 {
  max-width: 13ch;
  margin: 2rem 0 1.2rem;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.engagement-for {
  max-width: 32rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.engagement-details {
  margin: 0;
}

.engagement-details > div {
  display: grid;
  gap: 0.55rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.engagement-details dt {
  color: var(--brass-text);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.engagement-details dd {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.engagement-details .decision-row {
  padding: 1.3rem;
  border: 1px solid rgba(157, 121, 63, 0.48);
  background: rgba(157, 121, 63, 0.055);
}

.engagement-details .decision-row dd {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.35;
}

.service-boundary {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--brass);
  background: var(--paper-deep);
}

.service-boundary p {
  max-width: 53rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.first-nations-feature .nations-panel .text-link {
  margin-top: 1rem;
}

.authority {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper-light);
}

.motif-layer-authority .decorative-contours {
  right: -29rem;
  bottom: -22rem;
  opacity: 0.075;
  transform: scaleX(-1) rotate(6deg);
}

.authority-grid {
  display: grid;
  gap: clamp(4rem, 8vw, 7rem);
}

.authority-book {
  display: grid;
  gap: 2rem;
  padding: clamp(1.6rem, 5vw, 3rem);
  border: 1px solid var(--line);
  background: var(--parchment);
}

.authority-book-mark {
  display: flex;
  width: 8rem;
  height: 10rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid var(--brass);
  color: var(--forest);
}

.authority-book-mark span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.authority-book-mark strong {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 0.85;
}

.authority-book h3 {
  max-width: 22ch;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.authority-book p:not(.eyebrow) {
  color: var(--muted);
}

.authority-writing {
  min-width: 0;
}

.authority-writing-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.authority-writing-head h3 {
  margin-bottom: 0;
}

.authority-writing .article-row {
  padding-block: 1.5rem;
}

.authority-writing .article-row h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.founder-short {
  background: var(--paper-deep);
}

.engagement-process {
  background: var(--forest);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(246, 242, 233, 0.2);
  list-style: none;
}

.process-list li {
  min-height: 13rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(246, 242, 233, 0.2);
}

.process-list li > span {
  color: var(--brass-light);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.11em;
}

.process-list h3 {
  margin: 2.5rem 0 0.8rem;
  color: var(--paper-light);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

.process-list p {
  max-width: 21rem;
  color: rgba(246, 242, 233, 0.68);
  font-size: 0.82rem;
}

.inquiry {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 5rem;
  background: var(--paper-light);
}

.botanical-corner-contact {
  bottom: -3rem;
  left: -3rem;
  width: clamp(17rem, 29vw, 28rem);
  opacity: 0.13;
  transform: rotate(180deg);
}

.inquiry-layout {
  display: grid;
  gap: clamp(4rem, 10vw, 8rem);
}

.inquiry-intro {
  align-self: start;
}

.inquiry-intro .lead {
  max-width: 34rem;
}

.inquiry-warning {
  margin-top: 2.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(122, 54, 36, 0.38);
  background: #f2e8df;
}

.inquiry-warning strong {
  color: #6f2e20;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.inquiry-warning p,
.inquiry-privacy,
.inquiry-privacy-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.inquiry-warning p {
  margin-top: 0.6rem;
}

.inquiry-privacy {
  margin-top: 1.3rem;
}

.inquiry-form {
  min-width: 0;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  background: var(--paper);
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field label,
.engagement-options legend {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(36, 40, 36, 0.4);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper-light);
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--forest);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.consent-field input[aria-invalid="true"] {
  border-color: #8a2d1e;
  box-shadow: 0 0 0 1px #8a2d1e;
}

.engagement-options {
  margin: 1.8rem 0;
  padding: 0;
  border: 0;
}

.optional-label {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 500;
}

.checkbox-grid {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.checkbox-grid label,
.consent-field {
  display: flex;
  min-height: 2.75rem;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0;
  color: var(--muted);
  font-size: 0.8rem;
  cursor: pointer;
}

.checkbox-grid input,
.consent-field input {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  accent-color: var(--forest);
}

.consent-field {
  margin: 1.2rem 0 0.5rem;
  color: var(--ink);
}

.inquiry-form .button {
  margin-top: 1.4rem;
}

.form-error-summary,
.form-local-status {
  padding: 1rem;
  border-left: 3px solid #8a2d1e;
  color: #672518;
  background: #f2e8df;
  font-size: 0.82rem;
}

.form-local-status {
  border-left-color: var(--forest);
  color: var(--forest-deep);
  background: #e3eee8;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Services page */

.additional-services-heading {
  max-width: 32rem;
}

.additional-services-heading > p:not(.eyebrow) {
  color: var(--muted);
}

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

.secondary-service {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.5rem 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.secondary-service h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

.secondary-service p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.working-method h2,
.working-method .lead {
  color: var(--paper-light);
}

.working-method p:not(.eyebrow, .lead) {
  color: rgba(246, 242, 233, 0.7);
}

.working-method .legal-boundary {
  margin-block: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(246, 242, 233, 0.2);
  font-size: 0.78rem;
}

.service-cta {
  background: var(--paper-deep);
}

/* First Nations page */

.nations-work {
  background: var(--forest-deep);
}

.nations-work-grid {
  display: grid;
  border-top: 1px solid rgba(246, 242, 233, 0.2);
}

.nations-work-grid article {
  min-height: 15rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(246, 242, 233, 0.2);
}

.nations-work-grid article > span {
  color: var(--brass-light);
}

.nations-work-grid h3 {
  margin: 3rem 0 0.8rem;
  color: var(--paper-light);
  font-size: 1.65rem;
}

.nations-work-grid p {
  max-width: 24rem;
  color: rgba(246, 242, 233, 0.68);
  font-size: 0.85rem;
}

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

.principles-list li {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.principles-list li > span {
  color: var(--brass-text);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.principles-list h3 {
  margin-bottom: 0.5rem;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
}

.principles-list p {
  max-width: 48rem;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Form confirmation */

.confirmation-main {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: var(--side);
  background: var(--paper);
}

.confirmation-card {
  width: min(100%, 44rem);
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.confirmation-wordmark {
  margin-bottom: 3rem;
  color: var(--forest);
}

.confirmation-wordmark span {
  color: var(--brass-text);
}

.confirmation-card h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

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

.confirmation-card .button {
  margin-top: 1.5rem;
}

@media (min-width: 44rem) {
  .practice-position-grid,
  .additional-services-grid,
  .inquiry-layout {
    grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
  }

  .use-case-grid,
  .experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .use-case {
    padding-inline: clamp(1.2rem, 3vw, 2.2rem);
    border-right: 1px solid var(--line);
  }

  .use-case:first-child {
    padding-left: 0;
  }

  .use-case:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .experience-item {
    min-height: 23rem;
    padding: 2rem;
    border-right: 1px solid rgba(246, 242, 233, 0.2);
  }

  .experience-item:first-child {
    padding-left: 0;
  }

  .experience-item-featured {
    grid-column: span 2;
    border-right: 0;
  }

  .experience-item:last-child {
    border-right: 0;
  }

  .engagement-card {
    grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 8vw, 7rem);
  }

  .engagement-details > div {
    grid-template-columns: minmax(7rem, 0.33fr) minmax(0, 1fr);
    gap: 1.5rem;
  }

  .service-boundary {
    grid-template-columns: minmax(0, 1.4fr) auto;
    align-items: center;
  }

  .authority-book {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-list li {
    padding-inline: 1.2rem;
    border-right: 1px solid rgba(246, 242, 233, 0.2);
  }

  .process-list li:first-child {
    padding-left: 0;
  }

  .process-list li:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .form-grid,
  .checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nations-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nations-work-grid article:nth-child(odd) {
    padding-right: clamp(1.5rem, 4vw, 3rem);
    border-right: 1px solid rgba(246, 242, 233, 0.2);
  }

  .nations-work-grid article:nth-child(even) {
    padding-left: clamp(1.5rem, 4vw, 3rem);
  }
}

@media (min-width: 70rem) {
  .authority-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
    align-items: start;
  }

  .authority-book {
    grid-template-columns: 1fr;
  }

  .nations-work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nations-work-grid article,
  .nations-work-grid article:nth-child(even),
  .nations-work-grid article:nth-child(odd) {
    padding-inline: 1.7rem;
    border-right: 1px solid rgba(246, 242, 233, 0.2);
  }

  .nations-work-grid article:nth-child(3n + 1) {
    padding-left: 0;
  }

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

@media (max-width: 43.99rem) {
  .hero-commercial h1 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .engagement-card {
    gap: 1rem;
  }

  .service-boundary .text-link,
  .first-nations-feature .text-link {
    min-height: 2.75rem;
  }

  .inquiry-form {
    padding-inline: 1rem;
  }

  .inquiry-form .button {
    width: 100%;
  }
}

/* Owen Smith identity and homepage opening */

.hero-commercial {
  min-height: auto;
  padding-top: clamp(8.75rem, 18vw, 10.5rem);
  padding-bottom: 2.25rem;
}

.hero-commercial .hero-grid {
  gap: clamp(2.5rem, 7vw, 5rem);
}

.hero-commercial h1 {
  max-width: 11.5ch;
  margin-bottom: 1.75rem;
  text-wrap: balance;
}

.hero-commercial .hero-positioning {
  max-width: 40rem;
  margin-bottom: 2rem;
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.58;
}

.hero-commercial .hero-actions {
  gap: 0.85rem 1rem;
}

.hero-commercial .hero-actions .button {
  min-width: min(100%, 13rem);
}

.hero-commercial .hero-proof {
  max-width: 42rem;
  margin-top: 1.65rem;
  padding-top: 0;
  border-top: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  font-weight: 400;
  line-height: 1.5;
}

.hero-commercial .hero-proof > span {
  margin-inline: 0.3em;
  color: var(--brass-text);
}

.principle-strip {
  border-block: 1px solid var(--line);
  background: var(--paper-light);
}

.principle-grid {
  display: grid;
}

.principle-block {
  min-width: 0;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
}

.principle-block:last-child {
  border-bottom: 0;
}

.principle-icon {
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 1.25rem;
  fill: none;
  stroke: var(--brass-text);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-block h3 {
  margin-bottom: 0.65rem;
  color: var(--forest);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.principle-block p {
  max-width: 18rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

@media (min-width: 44rem) {
  .hero-commercial .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-commercial h1 {
    max-width: 18ch;
  }

  .hero-commercial .hero-illustration {
    width: min(72vw, 32rem);
  }

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

  .principle-block {
    padding: 2.25rem clamp(1.5rem, 4vw, 3rem);
  }

  .principle-block:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid var(--line);
  }

  .principle-block:nth-child(even) {
    padding-right: 0;
  }

  .principle-block:nth-child(3),
  .principle-block:nth-child(4) {
    border-bottom: 0;
  }
}

@media (min-width: 70rem) {
  .hero-commercial {
    min-height: min(88svh, 52rem);
    padding-top: clamp(9.5rem, 11vw, 11rem);
  }

  .hero-commercial .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(26rem, 0.82fr);
    gap: clamp(3rem, 4.5vw, 4.5rem);
  }

  .hero-commercial h1 {
    max-width: 18ch;
    font-size: clamp(4.75rem, 5.6vw, 5.8rem);
  }

  .hero-illustration {
    width: min(100%, 36rem);
  }

  .principle-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .principle-block,
  .principle-block:nth-child(odd),
  .principle-block:nth-child(even) {
    min-height: 15rem;
    padding: 2.5rem clamp(1.4rem, 2.5vw, 2.5rem);
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .principle-block:first-child {
    padding-left: 0;
  }

  .principle-block:last-child {
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 43.99rem) {
  .hero-illustration {
    width: min(100%, 28rem);
    margin-top: -1.25rem;
  }

  .hero-commercial .hero-actions .button {
    width: 100%;
  }

  .hero-index {
    margin-top: 2.5rem;
  }
}

@media (max-width: 27rem) {
  .brand-copy strong {
    font-size: 1.5rem;
  }

  .brand-copy span {
    font-size: 0.4rem;
    letter-spacing: 0.13em;
  }

  .nav-toggle {
    min-width: 4.35rem;
    gap: 0.5rem;
  }
}

/* Publications */

.authority-cover,
.publication-cover-frame,
.storybook-cover {
  margin: 0;
}

.authority-cover {
  width: min(100%, 14rem);
  justify-self: center;
  padding: 0.45rem;
  border: 1px solid rgba(157, 121, 63, 0.56);
  background: var(--paper-light);
  box-shadow: -0.65rem 0.7rem 0 rgba(157, 121, 63, 0.16);
}

.authority-cover img,
.publication-cover-frame img,
.storybook-cover img {
  width: 100%;
  height: auto;
}

.primary-publication {
  background: var(--paper-light);
}

.publication-feature {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.publication-cover-frame {
  width: min(100%, 23rem);
  justify-self: center;
  padding: 0.65rem;
  border: 1px solid rgba(157, 121, 63, 0.58);
  background: var(--paper);
  box-shadow: -1rem 1.1rem 0 rgba(157, 121, 63, 0.18);
}

.publication-copy h2 {
  max-width: 17ch;
  font-size: clamp(2.35rem, 5vw, 4.45rem);
}

.publication-copy > p:not(.eyebrow, .lead) {
  max-width: 43rem;
  color: var(--muted);
}

.publication-meta {
  display: grid;
  margin: 0 0 2rem;
  border-block: 1px solid var(--line);
}

.publication-meta > div {
  display: grid;
  gap: 0.35rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.publication-meta > div:last-child {
  border-bottom: 0;
}

.publication-meta dt {
  color: var(--brass-text);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.publication-meta dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
}

.source-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.source-card {
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
}

.source-card > span {
  color: var(--brass-text);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.source-card h3 {
  max-width: 17ch;
  margin: 2rem 0 1rem;
}

.source-card p {
  max-width: 35rem;
  color: var(--muted);
}

.illustrated-advocacy {
  background: var(--paper-deep);
}

.storybook-card {
  display: grid;
  gap: clamp(2.5rem, 7vw, 5rem);
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.storybook-cover {
  align-self: start;
}

.storybook-cover img {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(36, 40, 36, 0.16);
  object-fit: cover;
}

.storybook-cover figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.publication-kicker {
  margin-bottom: 1rem;
  color: var(--brass-text);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.storybook-copy h3 {
  margin-bottom: 1.5rem;
  color: var(--forest);
  font-size: clamp(2.4rem, 6vw, 4.25rem);
}

.storybook-copy .lead {
  max-width: 37rem;
}

.draft-status {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.75rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid #7a3624;
  background: #f2e8df;
}

.draft-status strong {
  color: #6f2e20;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.draft-status span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.button-disabled,
.text-link-disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.72;
  pointer-events: none;
}

.button-disabled {
  border-color: rgba(36, 40, 36, 0.35);
  background: var(--paper-deep);
}

.text-link-disabled {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

@media (min-width: 44rem) {
  .publication-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .publication-meta > div {
    padding-inline: 1rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .publication-meta > div:first-child {
    padding-left: 0;
  }

  .publication-meta > div:last-child {
    padding-right: 0;
    border-right: 0;
  }

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

  .source-card {
    padding-inline: clamp(1.5rem, 4vw, 3rem);
    border-right: 1px solid var(--line);
  }

  .source-card:first-child {
    padding-left: 0;
  }

  .source-card:last-child {
    padding-right: 0;
    border-right: 0;
  }
}

@media (min-width: 64rem) {
  .publication-feature {
    grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1.38fr);
  }

  .storybook-card {
    grid-template-columns: minmax(27rem, 1.08fr) minmax(21rem, 0.92fr);
    align-items: center;
  }

  .authority-book {
    grid-template-columns: minmax(9.5rem, 0.42fr) minmax(0, 1fr);
    align-items: start;
  }
}

/* Work-first homepage and audience-based advisory */

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

.proof-grid {
  display: grid;
}

.proof-item {
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
}

.proof-item:last-child {
  border-bottom: 0;
}

.proof-item > span,
.audience-card > span {
  color: var(--brass-text);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-item h2 {
  margin: 1.1rem 0 0.65rem;
  color: var(--forest);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  line-height: 1.12;
}

.proof-item p {
  max-width: 24rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.work-first {
  scroll-margin-top: 4.5rem;
}

.advisory-pathways,
.advisory-audiences {
  scroll-margin-top: 4.5rem;
  background: var(--paper);
}

.audience-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.audience-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-block: clamp(2.3rem, 6vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 7rem;
}

.audience-card h3 {
  max-width: 15ch;
  margin: 1.5rem 0 1rem;
  color: var(--forest);
  font-size: clamp(1.8rem, 3.2vw, 2.45rem);
}

.audience-card > p:not(.audience-output) {
  max-width: 34rem;
  color: var(--muted);
}

.audience-card h4 {
  margin: 1.2rem 0 0.35rem;
  color: var(--forest);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-card ul {
  margin: 1rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.84rem;
}

.audience-card li::before {
  position: absolute;
  top: 1.05rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--brass);
  content: "";
}

.audience-card .text-link,
.audience-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.audience-output {
  margin: 0 0 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.audience-output strong {
  color: var(--ink);
}

.advisory-overview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.advisory-overview p {
  max-width: 37rem;
  margin-bottom: 0;
  color: var(--muted);
}

.audience-grid-services .audience-card {
  padding-inline: clamp(1.25rem, 3vw, 2.25rem);
}

.audience-grid-services .audience-card:first-child {
  padding-left: 0;
}

.audience-grid-services .audience-card:last-child {
  padding-right: 0;
}

@media (min-width: 44rem) {
  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-item {
    min-height: 14rem;
    padding: 2.25rem clamp(1.25rem, 3vw, 2.25rem);
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .proof-item:first-child {
    padding-left: 0;
  }

  .proof-item:last-child {
    padding-right: 0;
    border-right: 0;
  }
}

@media (min-width: 70rem) {
  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .audience-card {
    min-height: 35rem;
    padding-inline: clamp(1.5rem, 2.8vw, 2.75rem);
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .audience-card:first-child {
    padding-left: 0;
  }

  .audience-card:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .audience-grid-services .audience-card {
    min-height: 49rem;
  }
}

@media (max-width: 43.99rem) {
  .advisory-overview .button,
  .audience-card .button {
    width: 100%;
  }

  .hero-index .hero-index-line:nth-of-type(2),
  .hero-index span:last-child {
    display: none;
  }
}

/* VCBC community record */

.vcbc-community {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #e7ddca;
}

.community-pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.community-pattern span {
  position: absolute;
  border: 1px solid rgba(139, 73, 48, 0.19);
  border-radius: 50%;
}

.community-pattern span:nth-child(1) {
  top: -13rem;
  right: -9rem;
  width: 32rem;
  height: 32rem;
}

.community-pattern span:nth-child(2) {
  right: 12%;
  bottom: -15rem;
  width: 24rem;
  height: 24rem;
}

.community-pattern span:nth-child(3) {
  bottom: 13%;
  left: -8rem;
  width: 15rem;
  height: 15rem;
}

.vcbc-community-grid {
  display: grid;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}

.vcbc-community-photo {
  margin: 0;
  padding: clamp(0.55rem, 1.2vw, 0.85rem);
  background: var(--paper-light);
  box-shadow: 0 1.4rem 3.5rem rgba(41, 40, 29, 0.13);
  transform: rotate(-0.6deg);
}

.vcbc-community-photo img {
  width: 100%;
  aspect-ratio: 1210 / 642;
  object-fit: cover;
}

.vcbc-community-photo figcaption {
  padding: 0.8rem 0.35rem 0.15rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.vcbc-community-copy {
  max-width: 38rem;
}

.vcbc-community-copy .lead {
  color: var(--forest-deep);
}

.vcbc-community-copy > p:not(.lead) {
  color: #55574f;
}

.community-logo {
  display: block;
  width: 9.5rem;
  height: 9.5rem;
  margin-bottom: 2rem;
  border-radius: 50%;
  box-shadow: 0 0 0 0.45rem rgba(255, 249, 237, 0.42), 0 1rem 2rem rgba(41, 40, 29, 0.15);
  object-fit: cover;
  transform: rotate(2deg);
}

.vcbc-community-copy .feature-actions {
  margin-top: 2rem;
}

.archive-community-note {
  display: grid;
  gap: 2rem;
  margin-top: clamp(3.5rem, 8vw, 6rem);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid rgba(18, 54, 46, 0.2);
  background: rgba(252, 250, 245, 0.62);
}

.archive-community-note h3 {
  max-width: 22ch;
  margin-bottom: 1rem;
  color: var(--forest);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.archive-community-note p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
}

.archive-community-logo {
  display: block;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  box-shadow: 0 0 0 0.35rem rgba(154, 79, 55, 0.1);
  object-fit: cover;
}

@media (min-width: 64rem) {
  .vcbc-community-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  }

  .archive-community-note {
    grid-template-columns: 9rem minmax(0, 1fr);
    align-items: center;
  }
}

@media (max-width: 43.99rem) {
  .vcbc-community-copy .feature-actions .button,
  .archive-community-note .feature-actions .button {
    width: 100%;
  }
}

/* Volunteering and public-service portfolio */
.volunteer-hero {
  background:
    radial-gradient(circle at 78% 26%, rgba(196, 168, 115, 0.18), transparent 24rem),
    var(--paper);
}

.volunteer-role-grid,
.scivateer-context-grid,
.responsibility-grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.volunteer-role-heading h2,
.responsibility-grid h2,
.scivateer-context h2 {
  max-width: 13ch;
}

.volunteer-role-copy,
.responsibility-copy {
  max-width: 43rem;
}

.volunteer-role-copy > p:not(.lead),
.responsibility-copy > p:not(.lead) {
  color: var(--muted);
}

.volunteer-role-meta {
  display: grid;
  gap: 0;
  margin: 2.4rem 0 0;
  border-top: 1px solid var(--line);
}

.volunteer-role-meta div {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.volunteer-role-meta dt {
  color: var(--brass-text);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.volunteer-role-meta dd {
  margin: 0;
  color: var(--forest);
  font-size: 0.82rem;
}

.volunteer-document-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(3rem, 7vw, 5rem);
}

.volunteer-document-card {
  display: grid;
  min-width: 0;
  border: 1px solid rgba(18, 54, 46, 0.16);
  background: var(--paper-light);
  box-shadow: 0 1.5rem 3rem rgba(17, 36, 30, 0.08);
}

.document-preview {
  display: grid;
  min-width: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.document-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 4.35;
  background: #d9d2c4;
}

.document-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms var(--ease), filter 300ms ease;
}

.document-open-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.7rem 0.9rem;
  color: var(--paper-light);
  background: var(--forest);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transform: translateY(0.35rem);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.document-preview:hover .document-cover img,
.document-preview:focus-visible .document-cover img {
  filter: saturate(0.9);
  transform: scale(1.018);
}

.document-preview:hover .document-open-label,
.document-preview:focus-visible .document-open-label {
  opacity: 1;
  transform: translateY(0);
}

.document-card-copy {
  display: grid;
  gap: 0.65rem;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.document-card-copy strong {
  max-width: 22ch;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.2;
}

.document-card-copy > span:last-child {
  color: var(--muted);
  font-size: 0.86rem;
}

.document-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 2vw, 1.35rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
}

.document-card-footer a {
  flex: 0 0 auto;
  color: var(--forest);
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scivateer-context {
  color: var(--paper-light);
}

.scivateer-context .lead,
.scivateer-context .scivateer-sample p {
  color: rgba(246, 242, 233, 0.78);
}

.scivateer-sample {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(196, 168, 115, 0.45);
}

.scivateer-sample img {
  width: min(100%, 15rem);
  border: 1px solid rgba(246, 242, 233, 0.22);
}

.scivateer-sample h3 {
  margin: 0.8rem 0;
  color: var(--paper-light);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.scivateer-sample .text-link {
  color: var(--brass-light);
}

.responsibility-copy .button {
  margin-top: 1.4rem;
}

.pdf-lightbox {
  width: min(96vw, 92rem);
  height: min(94dvh, 70rem);
  max-width: none;
  max-height: none;
  padding: 0;
  border: 1px solid rgba(246, 242, 233, 0.3);
  color: var(--paper-light);
  background: transparent;
}

.pdf-lightbox::backdrop {
  background: rgba(7, 16, 14, 0.84);
  backdrop-filter: blur(6px);
}

.pdf-lightbox-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  background: #102c26;
}

.pdf-lightbox-header,
.pdf-lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 3vw, 2rem);
}

.pdf-lightbox-header {
  border-bottom: 1px solid rgba(246, 242, 233, 0.17);
}

.pdf-lightbox-header p {
  margin: 0 0 0.25rem;
  color: var(--brass-light);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pdf-lightbox-header h2 {
  margin: 0;
  color: var(--paper-light);
  font-size: clamp(1rem, 2.4vw, 1.5rem);
}

.pdf-lightbox-header button {
  min-width: 4.5rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(246, 242, 233, 0.5);
  color: var(--paper-light);
  background: transparent;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdf-frame-wrap {
  min-height: 0;
  background: #2d3633;
}

.pdf-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--paper);
}

.pdf-lightbox-footer {
  justify-content: flex-end;
  border-top: 1px solid rgba(246, 242, 233, 0.17);
}

.pdf-lightbox-footer a {
  color: var(--brass-light);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 44rem) {
  .volunteer-document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scivateer-sample {
    grid-template-columns: minmax(9rem, 0.58fr) minmax(0, 1.42fr);
  }
}

@media (min-width: 64rem) {
  .volunteer-document-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .volunteer-role-grid,
  .responsibility-grid {
    grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  }

  .scivateer-context-grid {
    grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  }
}

@media (max-width: 43.99rem) {
  .document-open-label {
    opacity: 1;
    transform: none;
  }

  .document-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .responsibility-copy .button {
    width: 100%;
  }

  .pdf-lightbox {
    width: 100vw;
    height: 100dvh;
  }
}

/* Scroll-morphing leaf on the homepage. Section backgrounds remain below
   the drawing, while all reading and interactive content stays above it. */
.leaf-page main > section > .shell,
.leaf-page main > section > .hero-grid,
.leaf-page main > section > .hero-index,
.leaf-page .site-footer > .shell {
  position: relative;
  z-index: 3;
}

[data-scroll-leaf] {
  overflow: hidden;
}

[data-scroll-leaf] svg {
  display: block;
  filter: drop-shadow(0 0 1.25rem rgba(157, 121, 63, 0.08));
}

@media (max-width: 43.99rem) {
  [data-scroll-leaf] {
    opacity: 0.2 !important;
  }
}

/* Simplified homepage work and about sections */
.homepage-publications {
  display: grid;
  gap: clamp(4rem, 9vw, 7rem);
}

.homepage-publications .authority-book {
  align-items: center;
}

.homepage-publications .authority-book h2 {
  max-width: 22ch;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.homepage-publications .authority-writing {
  padding-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--line);
}

.homepage-publications .authority-writing-head h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.about-layout-simple {
  display: block;
}

.about-layout-simple .about-copy {
  max-width: 58rem;
}

/* Compact content refinements */
.compact-page-heading {
  padding-block: clamp(7.5rem, 11vw, 9.5rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.compact-page-heading h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
}

.compact-page-heading .lead {
  max-width: 48rem;
  margin-bottom: 0;
}

.compact-page-heading .text-link {
  display: inline-flex;
  margin-top: 1rem;
}

.compact-section-label {
  margin-bottom: 1.5rem;
}

.compact-profile h2 {
  max-width: 20ch;
}

.compact-profile-list {
  display: grid;
  gap: 0;
  max-width: 60rem;
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.compact-profile-list li {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.compact-profile-list strong,
.compact-profile-list a {
  color: var(--forest);
}

.compact-profile-list span {
  color: var(--muted);
}

.compact-profile-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 60rem;
}

.study-article-grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.study-article {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--line);
  background: var(--paper);
}

.study-article h3 {
  margin: 0.7rem 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.study-article > p:not(.eyebrow) {
  color: var(--muted);
}

@media (min-width: 44rem) {
  .compact-profile-list li {
    grid-template-columns: minmax(13rem, 0.43fr) minmax(0, 1fr);
    gap: 1.5rem;
  }

  .compact-profile-grid {
    grid-template-columns: minmax(13rem, 0.8fr) minmax(0, 1.2fr);
    align-items: end;
  }

  .study-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Podcast and interview gallery */
.appearances-preview,
.appearances-gallery-section {
  background: var(--paper-light);
}

.appearance-grid,
.appearance-preview-grid {
  display: grid;
  gap: 1.25rem;
}

.appearance-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.appearance-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--forest-deep);
}

.appearance-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
}

.appearance-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
}

.appearance-card-copy {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.appearance-meta {
  margin-bottom: 0.75rem;
  color: var(--brass-text);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.appearance-card h3 {
  max-width: 21ch;
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2.65vw, 2rem);
}

.appearance-card-copy > p:not(.appearance-meta):not(.appearance-restriction) {
  color: var(--muted);
  font-size: 0.9rem;
}

.appearance-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
}

.appearance-link,
.appearance-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.58rem 0.8rem;
  border: 1px solid var(--forest);
  color: var(--forest);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.appearance-play {
  cursor: pointer;
}

.appearance-link:hover,
.appearance-play:hover {
  color: var(--paper-light);
  background: var(--forest);
}

.appearance-restriction,
.appearance-privacy-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.appearances-gallery-section .appearance-privacy-note {
  max-width: 48rem;
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
}

.appearance-restriction {
  margin: 1rem 0 0;
}

.appearance-player {
  flex-basis: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 0.5rem;
  background: var(--forest-deep);
}

.appearance-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.appearances-gallery-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.appearances-gallery-heading h2 {
  margin-bottom: 0;
}

.appearance-card-compact .appearance-card-copy {
  padding: 1.15rem;
}

.appearance-card-compact h3 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.appearance-card-compact .text-link {
  font-size: 0.84rem;
}

.appearances-preview-action {
  margin-top: 2rem;
}

.appearances-listen {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.appearances-listen-grid {
  display: grid;
  gap: 2rem;
}

.appearances-listen-grid h2 {
  max-width: 16ch;
}

.appearances-invite .eyebrow,
.appearances-invite h2 {
  color: var(--paper-light);
}

.appearances-invite .eyebrow::before {
  background: var(--brass-light);
}

.appearances-invite p {
  color: rgba(252, 250, 245, 0.8);
}

@media (min-width: 44rem) {
  .appearance-grid,
  .appearance-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .appearances-listen-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.7fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 7rem);
  }
}

@media (min-width: 64rem) {
  .appearance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .appearance-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 44rem) {
  .homepage-publications .authority-book {
    grid-template-columns: minmax(10rem, 0.38fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
  }

  .homepage-publications .authority-cover {
    width: min(100%, 17rem);
  }
}

/* Business practice */
.business-practice {
  background: var(--paper-deep);
}

.practice-service-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.practice-service {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 7rem;
}

.practice-service > span {
  color: var(--brass-text);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.practice-service h3 {
  max-width: 13ch;
  margin: 1.6rem 0 1rem;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.practice-service .lead {
  max-width: 27rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.practice-service > p:not(.lead) {
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.practice-service h4 {
  margin: 1.8rem 0 0.4rem;
  color: var(--forest);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.practice-service li {
  position: relative;
  max-width: 34rem;
  padding: 0.62rem 0 0.62rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.practice-service li::before {
  position: absolute;
  top: 1.02rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--brass);
  content: "";
}

.practice-story {
  background: var(--paper-light);
}

.services-positioning {
  max-width: 52rem;
  margin: clamp(2rem, 5vw, 3.5rem) 0 0;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.subpage-hero-action {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.one-to-one-advisory {
  scroll-margin-top: 5rem;
  color: var(--paper-light);
  background:
    radial-gradient(circle at 88% 8%, rgba(196, 168, 115, 0.18), transparent 27rem),
    var(--forest);
}

.one-to-one-grid {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
}

.one-to-one-grid > :only-child {
  max-width: 44rem;
}

.one-to-one-copy {
  max-width: 46rem;
}

.one-to-one-copy .eyebrow,
.advisory-booking-header .eyebrow {
  color: var(--brass-light);
}

.one-to-one-copy h2 {
  color: var(--paper-light);
}

.one-to-one-copy > p:not(.eyebrow) {
  color: rgba(252, 250, 245, 0.8);
}

.one-to-one-copy .lead {
  color: var(--paper-light);
}

.one-to-one-copy .button {
  margin-top: 1.25rem;
}

.advisory-distinction {
  border-top: 1px solid rgba(246, 242, 233, 0.22);
}

.advisory-distinction > div {
  padding-block: 1.75rem;
  border-bottom: 1px solid rgba(246, 242, 233, 0.22);
}

.advisory-distinction span {
  color: var(--brass-light);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.advisory-distinction h3 {
  margin: 0.75rem 0;
  color: var(--paper-light);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.advisory-distinction p {
  max-width: 39rem;
  margin-bottom: 0;
  color: rgba(252, 250, 245, 0.72);
  font-size: 0.88rem;
}

.advisory-overview-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.advisory-booking-dialog {
  width: min(94vw, 76rem);
  max-width: none;
  max-height: min(94dvh, 58rem);
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 2.4rem 8rem rgba(5, 18, 14, 0.42);
}

.advisory-booking-dialog::backdrop {
  background: rgba(7, 21, 17, 0.72);
  backdrop-filter: blur(5px);
}

.advisory-booking-panel {
  position: relative;
  display: grid;
  max-height: min(94dvh, 58rem);
  overflow-y: auto;
}

.advisory-booking-header {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  color: var(--paper-light);
  background:
    radial-gradient(circle at 90% 8%, rgba(196, 168, 115, 0.19), transparent 19rem),
    var(--forest);
}

.advisory-booking-header h2 {
  max-width: 10ch;
  margin: 1.25rem 0;
  color: var(--paper-light);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.advisory-booking-header > p:last-child {
  max-width: 34rem;
  color: rgba(252, 250, 245, 0.76);
}

.advisory-booking-body {
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.advisory-booking-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(246, 242, 233, 0.6);
  color: var(--paper-light);
  background: rgba(18, 54, 46, 0.88);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-options {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.booking-options button {
  display: grid;
  width: 100%;
  min-height: 8rem;
  align-content: center;
  gap: 0.45rem;
  padding: 1.25rem 2.4rem 1.25rem 1rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}

.booking-options button::after {
  align-self: center;
  justify-self: end;
  color: var(--brass-text);
  content: "→";
  font-size: 1.15rem;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.booking-options button:hover,
.booking-options button:focus-visible {
  padding-left: 1.25rem;
  color: var(--forest-deep);
  background: var(--paper-deep);
}

.booking-options strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}

.booking-options span {
  max-width: 32rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.booking-back {
  margin-bottom: 1.5rem;
  padding: 0.25rem 0;
  border: 0;
  border-bottom: 1px solid var(--muted);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
}

.booking-scheduler h3 {
  margin-bottom: 1.25rem;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3rem);
}

.booking-privacy-note,
.booking-embed-message {
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--brass);
  background: var(--paper-deep);
  font-size: 0.8rem;
}

.booking-load-status,
.booking-fallback,
.booking-embed-message {
  margin-top: 1rem;
}

.booking-load-status,
.booking-embed-message {
  color: var(--muted);
}

.booking-embed-mount:not(:empty) {
  min-height: 500px;
  margin-top: 1rem;
}

.booking-embed-mount iframe {
  max-width: 100%;
}

.booking-boundary {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.practice-story-grid {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
}

.practice-story-grid h2 {
  max-width: 13ch;
}

.practice-story-copy {
  max-width: 48rem;
}

.practice-story-copy > p:not(.lead) {
  color: var(--muted);
}

.values-note {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--brass);
  background: var(--paper-deep);
}

.values-note strong {
  color: var(--forest);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.values-note p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.land-acknowledgement {
  background: var(--paper-light);
}

@media (min-width: 64rem) {
  .practice-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .practice-service {
    padding-inline: clamp(1.5rem, 3vw, 2.5rem);
    border-right: 1px solid var(--line);
  }

  .practice-service:first-child {
    padding-left: 0;
  }

  .practice-service:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .practice-story-grid {
    grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  }

  .one-to-one-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
    align-items: center;
  }

  .advisory-booking-panel {
    grid-template-columns: minmax(19rem, 0.7fr) minmax(0, 1.3fr);
    overflow: hidden;
  }

  .advisory-booking-header,
  .advisory-booking-body {
    max-height: min(94dvh, 58rem);
    overflow-y: auto;
  }
}

/* Knowledge translation portfolio */
.translation-portfolio {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(196, 168, 115, 0.19), transparent 28rem),
    var(--paper-light);
}

.translation-intro {
  max-width: 37rem;
}

.translation-intro .lead {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.45;
}

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

.translation-method {
  display: grid;
  margin: clamp(3rem, 7vw, 5rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.translation-method li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.translation-method span,
.project-meta {
  color: var(--brass-text);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.translation-method strong {
  display: block;
  margin: 0.6rem 0 0.35rem;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.translation-method p {
  max-width: 22rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.translation-gallery {
  display: grid;
  gap: clamp(4rem, 10vw, 8rem);
  margin-top: clamp(4rem, 10vw, 8rem);
}

.translation-project {
  display: grid;
  gap: clamp(2.5rem, 7vw, 5.5rem);
  align-items: center;
}

.translation-project-copy {
  max-width: 34rem;
}

.translation-project-copy h3 {
  max-width: 16ch;
  margin: 1rem 0 1.5rem;
  color: var(--forest);
  font-size: clamp(2rem, 4.3vw, 3.4rem);
}

.translation-project-copy > p:not(.project-meta) {
  color: var(--muted);
}

.project-meta span {
  padding-inline: 0.35rem;
  color: var(--brass);
}

.project-contributions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.7rem 0;
  padding: 0;
  list-style: none;
}

.project-contributions li {
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(18, 54, 46, 0.2);
  color: var(--forest);
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.portfolio-spread {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0;
}

.portfolio-page {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(18, 54, 46, 0.15);
  background: #0d0f0e;
  object-fit: cover;
  box-shadow: 0 0.9rem 2rem rgba(17, 36, 30, 0.09);
}

.portfolio-page-main {
  grid-row: 1 / 4;
}

.portfolio-spread figcaption {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.72rem;
}

.portfolio-document {
  position: relative;
  width: min(100%, 31rem);
  margin: 0 auto;
  padding: clamp(0.8rem, 2vw, 1.2rem);
  border: 1px solid rgba(18, 54, 46, 0.16);
  background: #efe9dc;
  box-shadow: 0 1.5rem 3rem rgba(17, 36, 30, 0.12);
  transform: rotate(-1deg);
}

.portfolio-document::before,
.portfolio-document::after {
  position: absolute;
  z-index: -1;
  inset: 0.7rem -0.65rem -0.7rem 0.65rem;
  border: 1px solid rgba(18, 54, 46, 0.1);
  background: var(--paper);
  content: "";
}

.portfolio-document::after {
  inset: 1.2rem -1.1rem -1.2rem 1.1rem;
  z-index: -2;
}

.portfolio-document img {
  width: 100%;
}

.portfolio-document figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.2rem 0.1rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.portfolio-document figcaption strong {
  color: var(--forest);
}

.scivateer-archive {
  display: grid;
  gap: 2rem;
  margin-top: clamp(4rem, 9vw, 7rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(196, 168, 115, 0.7);
  color: var(--paper);
  background: var(--forest);
}

.scivateer-archive .eyebrow {
  color: var(--brass-light);
}

.scivateer-archive h3 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.scivateer-archive > div:last-child {
  max-width: 38rem;
}

.scivateer-archive > div:last-child p {
  color: rgba(246, 242, 233, 0.78);
}

.scivateer-archive .text-link {
  color: var(--brass-light);
}

@media (min-width: 44rem) {
  .translation-method {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .translation-method li {
    padding: 1.8rem clamp(1rem, 3vw, 2rem);
    border-right: 1px solid var(--line);
  }

  .translation-method li:first-child {
    padding-left: 0;
  }

  .translation-method li:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .translation-project {
    grid-template-columns: minmax(0, 1.12fr) minmax(17rem, 0.88fr);
  }

  .scivateer-project {
    grid-template-columns: minmax(17rem, 0.88fr) minmax(0, 1.12fr);
  }

  .scivateer-project .translation-project-copy {
    order: -1;
  }

  .scivateer-archive {
    grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 43.99rem) {
  .portfolio-spread {
    grid-template-columns: 1fr 0.72fr;
  }

  .translation-project-copy h3 {
    max-width: 18ch;
  }
}

/* Free resource and email access */

.site-nav .nav-resource {
  color: var(--brass-text);
}

.resource-page {
  background: var(--paper);
}

.resource-hero {
  overflow: hidden;
  padding-top: clamp(9rem, 16vw, 12rem);
  background:
    radial-gradient(circle at 86% 14%, rgba(196, 168, 115, 0.2), transparent 28rem),
    var(--paper);
}

.resource-hero-grid,
.resource-signup-grid {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.resource-hero-copy {
  max-width: 44rem;
}

.resource-hero h1 {
  max-width: 10ch;
  color: var(--forest);
  font-size: clamp(3.8rem, 8.6vw, 7.7rem);
  line-height: 0.88;
}

.resource-hero .lead {
  max-width: 38rem;
  color: var(--muted);
}

.resource-preview {
  align-self: start;
  margin: 0;
  padding: clamp(0.55rem, 1.2vw, 0.85rem);
  border: 1px solid rgba(18, 54, 46, 0.14);
  background: var(--paper-light);
  box-shadow: 0 2rem 5rem rgba(17, 36, 30, 0.16);
  transform: rotate(1deg);
}

.resource-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1664 / 950;
  object-fit: contain;
}

.resource-preview figcaption {
  padding: 0.75rem 0.3rem 0.1rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.resource-inside {
  background: var(--paper-light);
}

.resource-feature-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.resource-feature {
  min-height: 19rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resource-feature > span {
  color: var(--brass-text);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.resource-feature h3 {
  max-width: 11ch;
  margin: 3.5rem 0 1rem;
  color: var(--forest);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.resource-feature p {
  color: var(--muted);
  font-size: 0.84rem;
}

.resource-signup {
  color: var(--paper-light);
  background: var(--forest);
}

.resource-signup-copy {
  max-width: 40rem;
}

.resource-signup-copy .eyebrow {
  color: var(--brass-light);
}

.resource-signup-copy h2 {
  color: var(--paper-light);
}

.resource-signup-copy .lead,
.resource-signup-copy > p:last-child {
  color: rgba(246, 242, 233, 0.78);
}

.resource-form {
  min-width: 0;
}

.resource-form .button {
  margin-top: 1.2rem;
}

.resource-dialog {
  width: min(92vw, 67rem);
  max-width: none;
  max-height: min(92dvh, 52rem);
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 2.4rem 8rem rgba(5, 18, 14, 0.38);
}

.resource-dialog::backdrop {
  background: rgba(7, 21, 17, 0.7);
  backdrop-filter: blur(5px);
}

.resource-dialog-panel {
  position: relative;
  display: grid;
  max-height: min(92dvh, 52rem);
  overflow-y: auto;
}

.resource-dialog-copy {
  padding: clamp(2.4rem, 7vw, 5rem);
  color: var(--paper-light);
  background:
    radial-gradient(circle at 92% 8%, rgba(196, 168, 115, 0.2), transparent 18rem),
    var(--forest);
}

.resource-dialog-copy .eyebrow {
  color: var(--brass-light);
}

.resource-dialog-copy h2 {
  max-width: 12ch;
  margin: 1.5rem 0;
  color: var(--paper-light);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.resource-dialog-copy > p:last-child {
  max-width: 36rem;
  color: rgba(246, 242, 233, 0.78);
  font-size: 0.9rem;
}

.resource-dialog .resource-form {
  padding: clamp(1.5rem, 5vw, 3rem);
}

.resource-dialog .resource-open-now {
  margin-top: 0.75rem;
}

.resource-dialog-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(246, 242, 233, 0.6);
  color: var(--paper-light);
  background: rgba(18, 54, 46, 0.75);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-not-now {
  margin-left: 1rem;
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1px solid var(--muted);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
}

.resource-confirmation-card {
  max-width: 51rem;
}

.resource-confirmation-card .lead {
  color: var(--forest);
}

.confirmation-secondary {
  display: table;
  margin-top: 1.5rem;
}

.volunteer-resource-grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

.volunteer-resource-grid > div:first-child {
  max-width: 46rem;
}

.resource-preview-compact {
  width: min(100%, 46rem);
}

.embedded-guide-body {
  min-height: 100dvh;
  overflow: hidden;
  background: var(--paper);
}

.embedded-guide-body .site-header {
  border-color: rgba(36, 40, 36, 0.12);
  background: rgba(246, 242, 233, 0.98);
}

.embedded-guide-main {
  display: grid;
  height: 100dvh;
  padding-top: 5.25rem;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.embedded-guide-toolbar {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem max(1.25rem, calc((100vw - 88rem) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.embedded-guide-toolbar .eyebrow {
  margin-bottom: 0.3rem;
}

.embedded-guide-toolbar h1 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.embedded-guide-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex: 0 0 auto;
}

.embedded-guide-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--paper-light);
}

.embedded-guide-fallback {
  margin: 0;
  padding: 0.65rem 1rem;
  color: var(--muted);
  background: var(--paper-light);
  font-size: 0.72rem;
  text-align: center;
}

@media (min-width: 64rem) {
  .resource-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  }

  .resource-signup-grid {
    grid-template-columns: minmax(20rem, 0.85fr) minmax(0, 1.15fr);
  }

  .resource-feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .resource-dialog-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  }

  .volunteer-resource-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
  }
}

@media (min-width: 70rem) {
  .embedded-guide-main {
    padding-top: 6rem;
  }
}

@media (min-width: 70rem) {
  .site-nav .nav-resource {
    position: relative;
  }

  .site-nav .nav-resource::after {
    position: absolute;
    right: 0;
    bottom: 0.15rem;
    left: 0;
    height: 1px;
    background: var(--brass);
    content: "";
  }
}

@media (min-width: 84rem) {
  .volunteer-document-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 43.99rem) {
  .advisory-overview-actions,
  .advisory-overview-actions .button {
    width: 100%;
  }

  .one-to-one-copy .button {
    width: 100%;
  }

  .advisory-booking-dialog {
    width: 100vw;
    max-height: 100dvh;
    margin: auto 0 0;
  }

  .advisory-booking-panel {
    max-height: 100dvh;
  }

  .advisory-booking-header {
    padding-top: 4.5rem;
  }

  .booking-options button {
    min-height: 7rem;
  }

  .resource-hero h1 {
    font-size: clamp(3.3rem, 17vw, 5.5rem);
  }

  .resource-feature-grid {
    grid-template-columns: 1fr;
  }

  .resource-feature {
    min-height: 15rem;
  }

  .resource-dialog {
    width: 100vw;
    max-height: 100dvh;
    margin: auto 0 0;
  }

  .resource-dialog-panel {
    max-height: 100dvh;
  }

  .resource-dialog .button {
    width: 100%;
  }

  .resource-not-now {
    display: block;
    margin: 0.85rem auto 0;
  }

  .embedded-guide-toolbar {
    display: grid;
    padding: 0.85rem 1rem;
  }

  .embedded-guide-actions {
    justify-content: space-between;
  }

  .embedded-guide-actions .button {
    padding: 0.75rem 0.9rem;
  }
}
