@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --forest: #173e31;
  --forest-soft: #254d40;
  --forest-pale: #dfe7e1;
  --ivory: #f8f4eb;
  --paper: #fffdf8;
  --sand: #eee4d4;
  --sand-deep: #dfd1bd;
  --gold: #b5904a;
  --gold-light: #d9c59a;
  --taupe: #847668;
  --ink: #26302b;
  --muted: #68716c;
  --line: rgba(38, 48, 43, 0.16);
  --white-line: rgba(255, 255, 255, 0.18);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(29, 46, 39, 0.13);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 64px), 1200px);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-weight: 750;
}

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

.practice-bar {
  position: relative;
  z-index: 45;
  background: var(--forest);
  color: #f7f2e8;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.practice-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.practice-bar__inner a {
  color: var(--gold-light);
}

.practice-bar__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.86;
}

.practice-bar__status i,
.role-line i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(23, 62, 49, 0.09);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(30, 51, 43, 0.08);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand--lockup {
  flex: 0 1 350px;
}

.brand-lockup {
  position: relative;
  width: min(100%, 350px);
  aspect-ratio: 1280 / 300;
  overflow: hidden;
  display: block;
  background: #fdfaf5;
}

.brand-lockup > img {
  position: absolute;
  top: -16.67%;
  left: 0;
  width: 100%;
  height: auto;
  max-width: none;
}

.brand-lockup::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 7%;
  left: 26%;
  height: 31%;
  background: #fdfaf5;
}

.brand-lockup__role {
  position: absolute;
  z-index: 2;
  top: 70%;
  right: 2%;
  left: 28.5%;
  color: #394047;
  font-size: clamp(6px, 0.64vw, 8px);
  font-weight: 580;
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
}

.brand-sign {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
}

.brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 520;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-copy strong em {
  margin-left: 3px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 8px;
  font-style: normal;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: top;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8.5px;
  font-weight: 690;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  color: #35423c;
  font-size: 13px;
  font-weight: 640;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 740;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  background: var(--forest);
  color: white;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  display: block;
  background: white;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 35;
  inset: var(--menu-top, 88px) 0 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: var(--forest);
  color: white;
  transition: opacity 190ms ease, visibility 190ms ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__inner {
  width: min(calc(100% - 40px), 620px);
  height: 100%;
  margin-inline: auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 42px 0 30px;
}

.mobile-menu nav {
  margin-top: 24px;
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--white-line);
  font-family: var(--serif);
  font-size: clamp(27px, 8vw, 42px);
  line-height: 1.05;
}

.mobile-menu nav a span {
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mobile-menu__contact {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  gap: 6px;
  color: #efe6d6;
  font-size: 13px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.145em;
  text-transform: uppercase;
}

.kicker > span {
  width: 34px;
  height: 1px;
  display: inline-block;
  background: var(--gold);
}

.kicker--light {
  color: var(--gold-light);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 12%, rgba(181, 144, 74, 0.08), transparent 24%),
    linear-gradient(90deg, var(--paper) 0 61%, var(--sand) 61% 100%);
}

.hero-layout {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: clamp(52px, 7vw, 110px);
  padding-block: 62px 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 650px;
}

.hero-person {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 520;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 25px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 420;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 24px;
  color: #4b5650;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.66;
}

.role-line {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 29px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: 0.055em;
}

.hero-actions,
.contact-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 740;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--forest {
  background: var(--forest);
  color: white;
}

.button--forest:hover,
.button--forest:focus-visible {
  background: var(--forest-soft);
}

.button--quiet {
  border-color: rgba(23, 62, 49, 0.3);
  color: var(--forest);
  background: transparent;
}

.button--quiet:hover,
.button--quiet:focus-visible {
  border-color: var(--forest);
}

.button--gold {
  background: var(--gold);
  color: #17281f;
}

.button--gold:hover,
.button--gold:focus-visible {
  background: #c9aa6b;
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
  border-color: white;
  background: white;
  color: var(--forest);
}

.hero-note {
  margin: 16px 0 0 2px;
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.portrait-stage {
  position: relative;
  width: min(100%, 455px);
  aspect-ratio: 960 / 1218;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(181, 144, 74, 0.45);
  border-radius: 230px 230px 30px 30px;
  background: #ded1bd;
  box-shadow: var(--shadow);
}

.portrait-stage::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 215px 215px 20px 20px;
  pointer-events: none;
}

.portrait-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(16, 36, 28, 0.72));
  pointer-events: none;
}

.portrait-photo,
.portrait-photo img {
  width: 100%;
  height: 100%;
}

.portrait-photo {
  display: block;
}

.portrait-photo img {
  object-fit: cover;
  object-position: 50% 50%;
}

.portrait-caption {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 27px;
  left: 28px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.44);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: white;
}

.portrait-caption span {
  font-family: var(--serif);
  font-size: 18px;
}

.portrait-caption small {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orientation {
  background: var(--forest);
  color: white;
}

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

.orientation-grid > div {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px 30px;
  border-right: 1px solid var(--white-line);
}

.orientation-grid > div:first-child {
  padding-left: 0;
}

.orientation-grid > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.orientation-grid span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 27px;
}

.orientation-grid p {
  margin: 0;
  color: #dfe7e2;
  font-size: 11px;
  line-height: 1.5;
}

.orientation-grid strong {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-size: 13px;
}

.section {
  padding-block: clamp(84px, 10vw, 138px);
}

.section--ivory {
  background: var(--ivory);
}

.section--sand {
  background: var(--sand);
}

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

.section-heading--wide {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: clamp(40px, 8vw, 115px);
}

.section-heading h2,
.about-heading h2,
.contact-copy h2,
.concept-hero h1,
.concept-copy h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 61px);
  font-weight: 420;
  letter-spacing: -0.038em;
  line-height: 1.03;
}

.section-heading--wide > p {
  margin-bottom: 4px;
  color: #5d6762;
  font-size: 17px;
  line-height: 1.72;
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .kicker {
  justify-content: center;
}

.section-heading--center > p:last-child {
  max-width: 540px;
  margin: 20px auto 0;
  color: #59645e;
}

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

.topics-grid article {
  min-height: 310px;
  padding: 34px 42px 38px;
  border-right: 1px solid var(--line);
}

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

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

.topic-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
}

.topics-grid h3 {
  max-width: 260px;
  margin: 74px 0 17px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 470;
  line-height: 1.08;
}

.topics-grid p {
  margin: 0;
  color: #66706b;
  font-size: 14px;
  line-height: 1.72;
}

.context-note {
  max-width: 760px;
  margin: 28px 0 0;
  color: #747d78;
  font-size: 11px;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.about::before {
  position: absolute;
  top: 12%;
  left: -160px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(181, 144, 74, 0.15);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(62px, 7vw, 104px);
}

.about-profile,
.about-career {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.about-profile {
  max-width: 500px;
}

.about-heading {
  min-width: 0;
  max-width: 650px;
  margin-bottom: 42px;
}

.about-portrait {
  position: relative;
  width: min(100%, 478px);
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(181, 144, 74, 0.48);
  border-radius: 250px 250px 26px 26px;
  background: var(--ivory);
  box-shadow: 0 28px 78px rgba(29, 46, 39, 0.12);
}

.about-portrait picture,
.about-portrait img {
  width: 100%;
}

.about-portrait picture {
  display: block;
}

.about-portrait img {
  height: auto;
  aspect-ratio: 798 / 1280;
  border-radius: 240px 240px 18px 18px;
  object-fit: cover;
  object-position: 50% 8%;
}

.about-portrait figcaption {
  display: grid;
  gap: 3px;
  padding: 17px 8px 7px;
  color: var(--forest);
  line-height: 1.3;
}

.about-portrait figcaption strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 540;
}

.about-portrait figcaption span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-note {
  position: relative;
  z-index: 2;
  width: calc(100% - 28px);
  margin: 28px 0 0 28px;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 28px 5px 28px 5px;
  background: var(--sand-deep);
  box-shadow: 0 20px 48px rgba(29, 46, 39, 0.08);
}

.about-note::before {
  position: absolute;
  top: 0;
  left: 38px;
  width: 1px;
  height: 18px;
  background: var(--gold);
  content: "";
}

.about-note__label {
  margin-bottom: 18px !important;
  color: var(--forest) !important;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-note p {
  margin-bottom: 14px;
  color: #38473f;
  font-size: 13px;
  line-height: 1.75;
}

.about-note p:last-child {
  margin-bottom: 0;
}

.about-heading .kicker {
  margin-bottom: 24px;
}

.about-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(54px, 5.4vw, 76px);
  line-height: 0.98;
}

.about-heading > p:last-child {
  max-width: 590px;
  margin-bottom: 0;
  color: #59635e;
  font-size: 15px;
  line-height: 1.78;
}

.about-facts {
  margin: 0 0 50px;
  border-top: 1px solid var(--line);
}

.about-facts > div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.about-facts dt {
  color: var(--taupe);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  color: var(--forest);
  font-size: 13px;
  font-weight: 690;
}

.career-heading {
  margin-bottom: 25px;
}

.career-heading > p {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.career-heading h3 {
  margin-bottom: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(27px, 2.8vw, 35px);
  font-weight: 500;
  line-height: 1.15;
}

.career-timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-timeline::before {
  position: absolute;
  top: 11px;
  bottom: 32px;
  left: 87px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(181, 144, 74, 0.16));
  content: "";
}

.career-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 38px;
}

.career-timeline li::before {
  position: absolute;
  top: 8px;
  left: 82px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(181, 144, 74, 0.45);
  content: "";
}

.career-timeline time,
.career-timeline__present {
  padding-top: 1px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.career-timeline h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 560;
  line-height: 1.25;
}

.career-timeline p {
  margin-bottom: 10px;
  color: #5f6964;
  font-size: 13px;
  line-height: 1.72;
}

.career-timeline a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(181, 144, 74, 0.56);
  color: var(--forest);
  font-size: 10px;
  font-weight: 730;
}

.about-career__link {
  margin-top: 2px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: var(--forest);
  font-size: 13px;
  font-weight: 740;
}

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

.steps li {
  position: relative;
  min-height: 255px;
  padding: 30px;
  border: 1px solid rgba(23, 62, 49, 0.14);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.48);
}

.steps li::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -21px;
  width: 20px;
  height: 1px;
  background: rgba(23, 62, 49, 0.25);
}

.steps li:last-child::after {
  display: none;
}

.steps span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
}

.steps h3 {
  margin: 54px 0 13px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 490;
}

.steps p {
  margin: 0;
  color: #5f6964;
  font-size: 13px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 125px) 0 35px;
  background: var(--forest);
  color: white;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 570px;
  height: 570px;
  top: -350px;
  right: -120px;
  border: 1px solid rgba(181, 144, 74, 0.27);
  border-radius: 50%;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(42px, 6vw, 82px);
}

.contact-copy,
.contact-card {
  min-width: 0;
}

.contact-copy h2 {
  margin-bottom: 24px;
  color: white;
}

.contact-copy > p:not(.kicker) {
  max-width: 600px;
  color: #d9e2dc;
  font-size: 16px;
}

.contact-buttons {
  margin-top: 32px;
}

.contact-card {
  display: grid;
  border-top: 1px solid var(--white-line);
  font-style: normal;
}

.contact-card > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 25px;
  padding: 22px 0;
  border-bottom: 1px solid var(--white-line);
}

.contact-card span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card a {
  min-width: 0;
  overflow-wrap: anywhere;
  color: white;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
}

.contact-card small {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-card {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: var(--ivory);
  box-shadow: 0 28px 80px rgba(5, 24, 18, 0.24);
  color: var(--ink);
}

.contact-form-card__kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form-card h3 {
  margin-bottom: 14px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 450;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.contact-form-card > p:not(.contact-form-card__kicker) {
  max-width: 610px;
  margin-bottom: 28px;
  color: #59635e;
  font-size: 13px;
  line-height: 1.65;
}

.contact-form {
  position: relative;
}

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

.form-field {
  min-width: 0;
}

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

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.035em;
}

.form-field label small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 620;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(23, 62, 49, 0.25);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(23, 62, 49, 0.48);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--forest);
  outline: none;
  box-shadow: 0 0 0 3px rgba(23, 62, 49, 0.13);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"],
.form-privacy input[aria-invalid="true"] {
  border-color: #9c2f2f;
}

.form-field__help,
.form-field__error {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.5;
}

.form-field__help {
  color: var(--muted);
}

.form-field__error {
  min-height: 0;
  color: #8d2929;
  font-weight: 680;
}

.form-field__error:not(:empty)::before {
  content: "! ";
}

.form-trap {
  position: fixed !important;
  top: -10000px !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-privacy {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 22px;
  color: #4e5a54;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.55;
}

.form-privacy input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--forest);
}

.form-privacy a,
.contact-form__fallback a {
  color: var(--forest);
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-privacy__error {
  margin: 5px 0 0 30px;
}

.form-summary,
.form-status {
  margin: 0 0 20px;
  padding: 13px 15px;
  border: 1px solid rgba(156, 47, 47, 0.25);
  border-radius: 6px;
  background: #fff3f1;
  color: #782323;
  font-size: 11px;
  line-height: 1.55;
}

.form-summary ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

.form-status.is-success,
.form-status.is-pending {
  border-color: rgba(23, 62, 49, 0.22);
  background: var(--forest-pale);
  color: var(--forest);
}

.form-status.is-error {
  border-color: rgba(156, 47, 47, 0.25);
  background: #fff3f1;
  color: #782323;
}

.contact-form__submit {
  width: 100%;
  margin-top: 24px;
  border: 0;
}

.contact-form__submit[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.contact-form__fallback {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.form-response {
  min-height: 100vh;
  padding: 72px 20px;
  display: grid;
  place-items: center;
  background: var(--ivory);
}

.form-response > div {
  width: min(100%, 620px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-response h1 {
  color: var(--forest);
}

.crisis-note {
  position: relative;
  z-index: 1;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--white-line);
  color: #bfcfc6;
  font-size: 10px;
}

.crisis-note a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 9vw, 132px) 0;
  background: var(--paper);
}

.location-section::before {
  content: "";
  position: absolute;
  top: -240px;
  left: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(181, 144, 74, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.location-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: clamp(34px, 7vw, 100px);
  margin-bottom: clamp(42px, 5vw, 68px);
}

.location-heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(49px, 6vw, 78px);
  font-weight: 430;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.location-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.location-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 62, 49, 0.16);
  border-radius: 14px;
  background: #dbe2dc;
  box-shadow: var(--shadow);
}

.location-map,
.location-map__stage {
  min-width: 0;
  min-height: 620px;
}

.location-map__stage {
  position: relative;
  height: 100%;
  background: #dbe2dc;
}

.location-map__stage[aria-busy="true"] {
  cursor: progress;
}

.location-map__stage iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  border: 0;
}

.location-map__placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(22deg, transparent 0 37%, rgba(255, 253, 248, 0.9) 37.4% 40.2%, transparent 40.6% 100%),
    linear-gradient(108deg, transparent 0 56%, rgba(255, 253, 248, 0.78) 56.4% 59.2%, transparent 59.6% 100%),
    linear-gradient(160deg, transparent 0 67%, rgba(181, 144, 74, 0.18) 67.3% 69.8%, transparent 70.2% 100%),
    radial-gradient(circle at 78% 26%, rgba(255, 253, 248, 0.72) 0 8%, transparent 8.3%),
    linear-gradient(135deg, #d5ded7, #edf0e9 55%, #d7dfd6);
}

.location-map__placeholder::before,
.location-map__placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23, 62, 49, 0.12);
  border-radius: 50%;
}

.location-map__placeholder::before {
  top: -110px;
  right: -80px;
  width: 430px;
  height: 430px;
}

.location-map__placeholder::after {
  top: 74px;
  right: 94px;
  width: 188px;
  height: 188px;
  border-color: rgba(181, 144, 74, 0.28);
}

.location-map__pin {
  position: absolute;
  z-index: 1;
  top: 24%;
  right: 24%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50% 50% 50% 8px;
  background: var(--forest);
  box-shadow: 0 14px 30px rgba(23, 62, 49, 0.26);
}

.location-map__pin i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold-light);
}

.location-map__consent {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 52px);
  left: clamp(24px, 4vw, 52px);
  width: min(470px, calc(100% - clamp(48px, 8vw, 104px)));
  padding: clamp(25px, 3vw, 36px);
  border: 1px solid rgba(23, 62, 49, 0.13);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 20px 60px rgba(23, 62, 49, 0.16);
  backdrop-filter: blur(10px);
}

.location-map__label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 790;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-map__consent h3 {
  margin-bottom: 9px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 470;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.location-map__consent p {
  margin-bottom: 21px;
  color: #59635e;
  font-size: 12px;
  line-height: 1.6;
}

.location-map__consent .button {
  width: 100%;
  border: 0;
}

.location-map__consent .button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.location-map__consent small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.location-map__consent small a {
  color: var(--forest);
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer {
  padding: 46px 0 28px;
  background: #112f25;
  color: white;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 35px;
}

.brand--footer .brand-copy strong {
  color: white;
}

.brand--footer .brand-copy small {
  color: #aebfb5;
}

.footer-phone {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 23px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 23px;
  border-top: 1px solid var(--white-line);
  color: #aebfb5;
  font-size: 9.5px;
  letter-spacing: 0.045em;
}

.footer-bottom nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible,
.footer-bottom button:hover,
.footer-bottom button:focus-visible {
  color: white;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  letter-spacing: inherit;
}

/* Logo concepts */
.concept-page {
  background: var(--ivory);
}

.concept-hero {
  padding: 90px 0 95px;
  background: var(--forest);
  color: white;
}

.concept-hero__inner {
  max-width: 850px;
}

.concept-hero h1 {
  margin-bottom: 24px;
  color: white;
  font-size: clamp(47px, 6vw, 76px);
}

.concept-hero p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: #d7e0da;
  font-size: 17px;
}

.concept-list {
  padding-top: 78px;
}

.concept-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.82fr);
  margin-bottom: 34px;
  overflow: hidden;
  border: 1px solid rgba(23, 62, 49, 0.16);
  border-radius: 8px;
  background: var(--paper);
}

.concept-card--selected {
  border-color: rgba(181, 144, 74, 0.8);
  box-shadow: 0 18px 60px rgba(23, 62, 49, 0.1);
}

.concept-preview {
  min-height: 460px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 55px;
  text-align: center;
}

.concept-preview--forest {
  background: var(--forest);
  color: white;
}

.concept-preview--ivory {
  background: #f7f1e7;
  color: var(--forest);
}

.concept-preview--sand {
  background: #ddd0be;
  color: var(--forest);
}

.concept-preview > img {
  width: 142px;
  height: 142px;
  margin-bottom: 25px;
}

.concept-wordmark {
  display: grid;
  justify-items: center;
}

.concept-wordmark strong {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 480;
  line-height: 1.1;
}

.concept-wordmark strong em {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.09em;
  vertical-align: top;
}

.concept-wordmark span {
  margin-top: 10px;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concept-preview--forest .concept-wordmark span {
  color: #c7d4cc;
}

.concept-copy {
  align-self: center;
  padding: 48px;
}

.concept-label {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.concept-copy h2 {
  margin-bottom: 20px;
  font-size: 42px;
}

.concept-copy > p:not(.concept-label) {
  color: #5e6863;
  font-size: 14px;
}

.concept-copy ul {
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--forest);
  font-size: 12px;
  font-weight: 650;
}

.concept-copy li {
  position: relative;
  padding: 4px 0 4px 16px;
}

.concept-copy li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.concept-note {
  margin-top: 70px;
  padding: 46px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
}

.concept-note > strong {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.concept-note p {
  max-width: 850px;
  margin: 12px 0 26px;
  color: #59645e;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.48;
}

/* Legal pages */
main.legal-main {
  min-height: 70vh;
  background: var(--ivory);
}

.legal-hero {
  padding: 90px 0;
  background: var(--forest);
  color: white;
}

.legal-hero h1 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 420;
  line-height: 1;
}

.legal-hero p:not(.kicker):not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: #d6e0da;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 19px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 770;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

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

.legal-content {
  width: min(calc(100% - 48px), 820px);
  margin-inline: auto;
  padding: 78px 0 100px;
}

.legal-content h2 {
  margin: 46px 0 14px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 490;
}

.legal-content p,
.legal-content li {
  color: #56615b;
  font-size: 14px;
}

.legal-content a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.legal-content code {
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--sand);
  color: var(--forest);
  font-size: 0.88em;
}

.legal-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.legal-facts > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 0.62fr);
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.legal-facts dt {
  color: var(--taupe);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-facts dd {
  margin: 0;
  color: #56615b;
  font-size: 14px;
}

.legal-address {
  color: #56615b;
  font-size: 14px;
  font-style: normal;
}

.not-found {
  min-height: calc(100vh - 225px);
  display: grid;
  place-items: center;
  padding: 80px 0;
  background:
    radial-gradient(circle at 75% 15%, rgba(181, 144, 74, 0.18), transparent 32%),
    var(--forest);
  color: white;
  text-align: center;
}

.not-found__inner {
  max-width: 760px;
}

.not-found .eyebrow {
  justify-content: center;
}

.not-found h1 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 420;
  letter-spacing: -0.035em;
  line-height: 1;
}

.not-found p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 auto 30px;
  color: #d6e0da;
}

.privacy-banner {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: min(calc(100% - 44px), 650px);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  padding: 20px;
  border: 1px solid rgba(217, 197, 154, 0.48);
  border-radius: 12px;
  transform: translateY(18px);
  opacity: 0;
  background: #112f25;
  box-shadow: 0 20px 65px rgba(10, 29, 22, 0.3);
  color: white;
  transition: opacity 180ms ease, transform 180ms ease;
}

.privacy-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.privacy-banner.is-closing {
  transform: translateY(12px);
  opacity: 0;
}

.menu-open .privacy-banner {
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
}

.privacy-banner__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 197, 154, 0.55);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 16px;
}

.privacy-banner__copy strong {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 520;
}

.privacy-banner__copy p {
  margin: 0;
  color: #cdd9d2;
  font-size: 11px;
  line-height: 1.55;
}

.privacy-banner__copy a {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.privacy-banner__actions button {
  min-height: 43px;
  padding: 0 18px;
  border: 1px solid rgba(217, 197, 154, 0.65);
  border-radius: 999px;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 780;
}

.privacy-banner__actions button[data-consent="analytics"] {
  background: var(--gold-light);
  color: #173126;
}

@media (max-width: 1120px) {
  .brand--lockup {
    flex-basis: 310px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(385px, 0.8fr);
    gap: 45px;
  }

  .orientation-grid > div {
    padding-inline: 22px;
  }
}

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

  .practice-bar__status {
    margin-left: auto;
  }

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

  .brand--lockup {
    flex-basis: 310px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
    display: flex;
  }

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

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
    padding-block: 46px 72px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .section-heading--wide {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
  }

  .section-heading--wide > p {
    max-width: 680px;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 70px;
  }

  .about-profile {
    max-width: 760px;
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(300px, 1fr);
    align-items: end;
    gap: 28px;
  }

  .about-portrait {
    width: 100%;
    margin-left: 0;
  }

  .about-note {
    width: auto;
    margin: 0 0 22px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
  }

  .contact-card {
    max-width: 680px;
  }

  .contact-form-card {
    max-width: 760px;
  }

  .location-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .location-heading > p {
    max-width: 690px;
  }

  .location-map,
  .location-map__stage,
  .location-map__stage iframe {
    min-height: 580px;
  }

  .concept-card {
    grid-template-columns: 1fr;
  }

  .concept-preview {
    min-height: 390px;
  }
}

@media (max-width: 720px) {
  .home-page {
    font-size: 15px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 32px), 1200px);
  }

  .practice-bar__inner {
    min-height: 31px;
    gap: 10px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .practice-bar__status {
    display: none;
  }

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

  .brand {
    gap: 8px;
  }

  .brand--lockup {
    flex: 0 1 min(245px, calc(100vw - 105px));
  }

  .brand-lockup {
    width: min(245px, calc(100vw - 105px));
  }

  .brand-lockup__role {
    font-size: clamp(5.5px, 1.5vw, 6.5px);
  }

  .brand-sign {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy strong em {
    font-size: 6.5px;
  }

  .brand-copy small {
    max-width: clamp(175px, 55vw, 230px);
    font-size: 7px;
    line-height: 1.25;
    white-space: normal;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-layout {
    gap: 36px;
    padding-block: 42px 58px;
  }

  .hero-visual {
    order: 0;
  }

  .portrait-stage {
    width: min(100%, 360px);
    border-radius: 185px 185px 24px 24px;
  }

  .portrait-stage::before {
    inset: 11px;
    border-radius: 175px 175px 17px 17px;
  }

  .portrait-caption {
    right: 22px;
    bottom: 20px;
    left: 22px;
  }

  .portrait-caption span {
    font-size: 16px;
  }

  .hero h1 {
    max-width: none;
    overflow-wrap: anywhere;
    font-size: clamp(37px, 10.5vw, 48px);
    line-height: 1;
    hyphens: auto;
  }

  .hero-person {
    font-size: 18px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .role-line {
    align-items: flex-start;
    overflow-wrap: anywhere;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .orientation-grid > div,
  .orientation-grid > div:first-child,
  .orientation-grid > div:last-child {
    min-height: 90px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
  }

  .orientation-grid > div:last-child {
    border-bottom: 0;
  }

  .orientation-grid span {
    width: 40px;
    font-size: 23px;
  }

  .section {
    padding-block: 76px;
  }

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

  .section-heading h2,
  .about-heading h2,
  .contact-copy h2 {
    font-size: 41px;
    overflow-wrap: anywhere;
  }

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

  .topics-grid article,
  .topics-grid article:first-child,
  .topics-grid article:last-child {
    min-height: 0;
    padding: 28px 0 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .topics-grid article:last-child {
    border-bottom: 0;
  }

  .topics-grid h3 {
    margin: 28px 0 12px;
    font-size: 27px;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 58px;
  }

  .about::before {
    display: none;
  }

  .about-profile {
    max-width: none;
    display: block;
  }

  .about-portrait {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .about-note {
    width: 100%;
    margin: 22px 0 0;
    padding: 27px 24px;
  }

  .about-facts > div {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 15px;
  }

  .about-heading {
    margin-bottom: 34px;
  }

  .about-heading h2 {
    font-size: clamp(44px, 13.5vw, 58px);
  }

  .about-facts {
    margin-bottom: 42px;
  }

  .career-timeline::before {
    left: 69px;
  }

  .career-timeline li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 34px;
    padding-bottom: 34px;
  }

  .career-timeline li::before {
    left: 64px;
  }

  .career-timeline h3 {
    font-size: 21px;
  }

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

  .steps li {
    min-height: 205px;
  }

  .steps li::after {
    display: none;
  }

  .steps h3 {
    margin-top: 34px;
  }

  .contact-section {
    padding-top: 76px;
  }

  .contact-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-buttons .button {
    width: 100%;
  }

  .contact-card > div {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
  }

  .contact-card a {
    font-size: 16px;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

  .contact-form-card h3 {
    font-size: 32px;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
  }

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

  .form-field input,
  .form-field textarea {
    min-height: 50px;
  }

  .form-field textarea {
    min-height: 145px;
  }

  .crisis-note {
    margin-top: 48px;
  }

  .location-section {
    padding-block: 78px;
  }

  .location-heading h2 {
    font-size: clamp(42px, 13vw, 57px);
  }

  .location-card {
    border-radius: 10px;
  }

  .location-map,
  .location-map__stage,
  .location-map__stage iframe {
    min-height: 520px;
  }

  .location-map__pin {
    top: 14%;
    right: 20%;
    width: 46px;
    height: 46px;
  }

  .location-map__consent {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 24px 20px;
  }

  .location-map__consent h3 {
    font-size: 28px;
  }

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

  .footer-phone {
    font-size: 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .legal-facts > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .privacy-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .privacy-banner__mark {
    width: 36px;
    height: 36px;
    align-self: start;
  }

  .privacy-banner__actions {
    grid-column: 1 / -1;
    width: 100%;
  }

  .privacy-banner__actions button {
    flex: 1 1 145px;
  }

  .concept-hero {
    padding: 70px 0;
  }

  .concept-hero h1 {
    font-size: 48px;
  }

  .concept-preview {
    min-height: 340px;
    padding: 36px 20px;
  }

  .concept-preview > img {
    width: 115px;
    height: 115px;
  }

  .concept-wordmark strong {
    font-size: 23px;
  }

  .concept-wordmark span {
    max-width: 270px;
    font-size: 7.5px;
  }

  .concept-copy {
    padding: 34px 25px;
  }

  .concept-copy h2 {
    font-size: 36px;
  }

  .concept-note {
    padding: 30px 24px;
  }

  .concept-note p {
    font-size: 20px;
  }

  .legal-hero {
    padding: 70px 0;
  }

  .legal-hero h1 {
    overflow-wrap: anywhere;
    font-size: clamp(36px, 9.5vw, 46px);
    hyphens: auto;
  }

  .legal-content {
    width: min(calc(100% - 32px), 820px);
    padding-block: 55px 78px;
  }
}

@media (max-width: 390px) {
  .brand-copy small {
    max-width: 55vw;
  }

  .portrait-caption small {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .practice-bar,
  .site-header,
  .site-footer,
  .privacy-banner,
  .skip-link {
    display: none !important;
  }

  body,
  main.legal-main {
    background: white;
    color: black;
  }

  .legal-hero {
    padding: 25px 0;
    background: white;
    color: black;
  }

  .legal-hero h1,
  .legal-hero p:not(.kicker):not(.eyebrow),
  .legal-content p,
  .legal-content li,
  .legal-facts dd,
  .legal-address {
    color: black;
  }

  .legal-content {
    width: 100%;
    padding: 20px 0;
  }
}

/* Expanded homepage and SEO service pages */
.home-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(58px, 9vw, 130px);
  align-items: start;
}

.home-intro__heading {
  padding-left: 34px;
  border-left: 1px solid var(--gold);
}

.home-intro__heading h2,
.faq-heading h2,
.practice-details address,
.focus-guidance h2,
.service-contact-band h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 61px);
  font-weight: 420;
  letter-spacing: -0.038em;
  line-height: 1.03;
}

.home-intro__copy {
  max-width: 720px;
}

.home-intro__copy p {
  color: #59635e;
  font-size: 16px;
  line-height: 1.8;
}

.home-intro__copy .home-intro__lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.48;
}

.home-focus,
.focus-hub-list {
  background: var(--paper);
}

.section-heading__action > p {
  margin-bottom: 22px;
  color: #5d6762;
  font-size: 16px;
  line-height: 1.72;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.focus-card {
  position: relative;
  min-width: 0;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 31px;
  border: 1px solid rgba(23, 62, 49, 0.14);
  border-radius: 10px;
  background: var(--ivory);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.focus-card:hover,
.focus-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(181, 144, 74, 0.65);
  background: #fbf7ef;
  box-shadow: 0 20px 48px rgba(23, 62, 49, 0.1);
}

.focus-card > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
}

.focus-card h2,
.focus-card h3 {
  margin: 48px 0 14px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 31px);
  font-weight: 480;
  letter-spacing: -0.022em;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.focus-card p {
  margin-bottom: 28px;
  color: #616b66;
  font-size: 13px;
  line-height: 1.68;
}

.focus-card strong {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-size: 11px;
  font-weight: 760;
}

.focus-card strong i {
  color: var(--gold);
  font-style: normal;
}

.practice-showcase {
  background: var(--sand);
}

.practice-showcase__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(38px, 6vw, 78px);
  align-items: center;
}

.practice-gallery {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(181, 144, 74, 0.48);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.practice-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  overflow: hidden;
  border-radius: 19px;
  background: var(--paper);
}

.practice-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}

.practice-gallery__image--overview {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 2;
  object-position: 50% 58%;
}

.practice-gallery__image--seating,
.practice-gallery__image--side-room {
  aspect-ratio: 5 / 3;
}

.practice-gallery__image--seating {
  object-position: 50% 43%;
}

.practice-gallery__image--side-room {
  object-position: 50% 58%;
}

.practice-gallery figcaption {
  padding: 14px 8px 4px;
  color: var(--taupe);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.practice-details {
  min-width: 0;
}

.practice-details__label {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.practice-details address {
  margin-bottom: 30px;
  font-size: clamp(38px, 4vw, 54px);
  font-style: normal;
}

.practice-details address strong {
  color: var(--gold);
  font-weight: 430;
}

.practice-details > p:not(.practice-details__label) {
  color: #59635e;
  font-size: 14px;
}

.practice-details__links {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.practice-details > small {
  margin-top: 22px;
  display: block;
  color: var(--taupe);
  font-size: 9px;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.pricing-section::before {
  position: absolute;
  right: -215px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(181, 144, 74, 0.28);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.pricing-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: clamp(40px, 8vw, 115px);
  margin-bottom: clamp(48px, 6vw, 78px);
}

.pricing-heading h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 76px);
  font-weight: 430;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.pricing-heading__copy > p {
  margin-bottom: 24px;
  color: #59635e;
  font-size: 14px;
  line-height: 1.78;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.price-card {
  position: relative;
  min-height: 405px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(23, 62, 49, 0.12);
  border-radius: 10px 10px 42px 10px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 24px 58px rgba(29, 46, 39, 0.08);
}

.price-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: var(--gold);
  content: "";
}

.price-card--contact {
  border-color: rgba(23, 62, 49, 0.35);
  background: var(--forest);
  box-shadow: 0 28px 64px rgba(12, 38, 29, 0.18);
  color: white;
}

.price-card--contact::before {
  background: var(--gold-light);
}

.price-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--taupe);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-card__meta span:first-child {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0;
}

.price-card--contact .price-card__meta {
  color: #cbd8d0;
}

.price-card--contact .price-card__meta span:first-child {
  color: var(--gold-light);
}

.price-card__price {
  margin: 80px 0 19px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(58px, 5.4vw, 74px);
  font-weight: 410;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.price-card__price data {
  font: inherit;
}

.price-card__price--word {
  font-size: clamp(43px, 4.2vw, 58px);
  letter-spacing: -0.04em;
}

.price-card--contact .price-card__price,
.price-card--contact h3 {
  color: white;
}

.price-card h3 {
  margin-bottom: 13px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}

.price-card > p:last-child {
  max-width: 290px;
  margin: 0;
  color: #626b66;
  font-size: 12px;
  line-height: 1.72;
}

.price-card--contact > p:last-child {
  color: #d1ddd6;
}

.pricing-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 30px;
  padding: 22px 2px 0;
  border-top: 1px solid rgba(23, 62, 49, 0.17);
}

.pricing-note p {
  max-width: 760px;
  margin: 0;
  color: #68716c;
  font-size: 10px;
  line-height: 1.7;
}

.pricing-note a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 760;
}

.framework-section {
  background: var(--forest);
  color: white;
}

.framework-section .kicker {
  color: var(--gold-light);
}

.framework-section .section-heading h2,
.framework-section .section-heading > p {
  color: white;
}

.framework-section .section-heading > p {
  opacity: 0.76;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.framework-grid article {
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.framework-grid article > span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 18px;
}

.framework-grid h3 {
  margin: 70px 0 17px;
  color: white;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 470;
}

.framework-grid p {
  margin: 0;
  color: #cedbd3;
  font-size: 13px;
  line-height: 1.75;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 125px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 135px;
}

.faq-heading > p:not(.kicker) {
  margin: 24px 0 27px;
  color: #5c6761;
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  color: var(--forest);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 480;
  line-height: 1.3;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 23px;
  right: 3px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 430;
}

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

.faq-list details p {
  max-width: 680px;
  padding: 0 42px 25px 0;
  color: #5f6964;
  font-size: 14px;
  line-height: 1.78;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 55px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.045em;
}

.breadcrumbs a {
  text-decoration: underline;
  text-decoration-color: rgba(181, 144, 74, 0.6);
  text-underline-offset: 3px;
}

.breadcrumbs span[aria-hidden="true"] {
  color: var(--gold);
}

.breadcrumbs--light {
  color: #cbd8d0;
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 92px;
  background:
    radial-gradient(circle at 85% 18%, rgba(181, 144, 74, 0.14), transparent 28%),
    var(--ivory);
}

.service-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -310px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(181, 144, 74, 0.25);
  border-radius: 50%;
}

.service-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(285px, 0.45fr);
  gap: clamp(48px, 8vw, 115px);
  align-items: end;
}

.service-hero__copy {
  min-width: 0;
  max-width: 790px;
}

.service-hero h1,
.focus-hub-hero h1 {
  margin-bottom: 25px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(48px, 5.7vw, 78px);
  font-weight: 420;
  letter-spacing: -0.045em;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.service-hero__lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: #505c56;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.7;
}

.service-hero__note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.service-hero__card {
  min-width: 0;
  min-height: 310px;
  padding: 32px;
  border-radius: 140px 140px 12px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--forest);
  box-shadow: var(--shadow);
  color: white;
}

.service-hero__number {
  margin-bottom: auto;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 24px;
}

.service-hero__card p {
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-hero__card strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 480;
}

.service-hero__card small {
  margin-top: 8px;
  color: #c8d6ce;
  font-size: 10px;
  line-height: 1.65;
}

.service-main-section {
  padding: clamp(78px, 9vw, 125px) 0;
  background: var(--paper);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(205px, 0.34fr) minmax(0, 1fr);
  gap: clamp(55px, 8vw, 115px);
  align-items: start;
}

.article-nav {
  position: sticky;
  top: 128px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

.article-nav > p {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-nav ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.article-nav li a {
  display: block;
  padding: 9px 0;
  color: #5a6560;
  font-size: 10.5px;
  line-height: 1.45;
}

.article-nav li a:hover,
.article-nav li a:focus-visible {
  color: var(--forest);
}

.article-nav > a {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 760;
}

.service-article {
  min-width: 0;
  max-width: 790px;
}

.service-article > h2,
.service-article .source-note h2 {
  margin: 66px 0 20px;
  scroll-margin-top: 125px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 450;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.service-article > h2:first-child {
  margin-top: 0;
}

.service-article > h3 {
  margin: 38px 0 12px;
  scroll-margin-top: 125px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 490;
  line-height: 1.22;
}

.service-article > p,
.service-article > li,
.service-article > ul,
.service-article > ol {
  color: #4f5a54;
  font-size: 16px;
  line-height: 1.85;
}

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

.service-article > ul,
.service-article > ol {
  margin: 6px 0 28px;
  padding-left: 24px;
}

.service-article > ul li,
.service-article > ol li {
  margin-bottom: 9px;
  padding-left: 5px;
}

.service-article > p a,
.service-article > ul a,
.source-note a {
  color: var(--forest);
  font-weight: 680;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.service-article > p:first-of-type {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.58;
}

.source-note {
  margin-top: 76px;
  padding: 30px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
}

.service-article .source-note h2 {
  margin-top: 0;
  font-size: 29px;
}

.source-note p,
.source-note li {
  color: #68716c;
  font-size: 11px;
  line-height: 1.7;
}

.source-note ul {
  margin-bottom: 0;
  padding-left: 18px;
}

.related-section {
  padding: clamp(82px, 9vw, 120px) 0;
  background: var(--sand);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(23, 62, 49, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.55);
  transition: transform 180ms ease, background 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-3px);
  background: var(--paper);
}

.related-card > span {
  color: var(--gold);
  font-family: var(--serif);
}

.related-card h3 {
  margin: 40px 0 13px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 480;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.related-card p {
  color: #5d6762;
  font-size: 12px;
  line-height: 1.65;
}

.related-card strong {
  margin-top: auto;
  color: var(--forest);
  font-size: 10px;
}

.related-card strong i {
  margin-left: 8px;
  color: var(--gold);
  font-style: normal;
}

.service-contact-band {
  padding: clamp(76px, 8vw, 105px) 0 34px;
  background: var(--forest);
  color: white;
}

.service-contact-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(45px, 8vw, 105px);
  align-items: end;
}

.service-contact-band h2 {
  max-width: 720px;
  color: white;
}

.service-contact-band__inner > div:first-child > p:last-child {
  max-width: 660px;
  margin: 21px 0 0;
  color: #cbd8d0;
}

.service-contact-band__actions {
  display: grid;
  gap: 17px;
  justify-items: start;
}

.service-contact-band__actions > a:not(.button) {
  color: var(--gold-light);
  font-size: 12px;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.focus-hub-hero {
  padding: 48px 0 105px;
  background:
    radial-gradient(circle at 82% 20%, rgba(181, 144, 74, 0.2), transparent 30%),
    var(--forest);
  color: white;
}

.focus-hub-hero__inner {
  max-width: 970px;
}

.focus-hub-hero h1 {
  max-width: 850px;
  color: white;
}

.focus-hub-hero__inner > p:last-child {
  max-width: 790px;
  margin: 0;
  color: #d5dfd9;
  font-size: 17px;
  line-height: 1.78;
}

.focus-hub-list {
  padding: clamp(80px, 9vw, 120px) 0;
}

.focus-guidance {
  padding: clamp(82px, 9vw, 120px) 0;
  background: var(--ivory);
}

.focus-guidance__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(55px, 9vw, 125px);
}

.focus-guidance__copy p {
  color: #59635e;
  font-size: 16px;
  line-height: 1.8;
}

.focus-guidance__copy .text-link {
  margin-top: 8px;
}

@media (max-width: 1080px) {
  .focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-intro__layout,
  .practice-showcase__layout,
  .faq-layout,
  .focus-guidance__layout {
    gap: 55px;
  }

  .service-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .article-nav {
    position: static;
  }

  .article-nav ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 25px;
  }

  .service-article {
    max-width: 820px;
    margin-inline: auto;
  }
}

@media (max-width: 940px) {
  .home-intro__layout,
  .practice-showcase__layout,
  .faq-layout,
  .focus-guidance__layout,
  .service-hero__layout,
  .service-contact-band__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-intro__heading {
    padding-left: 24px;
  }

  .practice-gallery {
    max-width: 760px;
  }

  .practice-details {
    max-width: 650px;
  }

  .faq-heading {
    position: static;
  }

  .pricing-heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 28px;
  }

  .pricing-heading__copy {
    max-width: 650px;
  }

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

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

  .price-card__price {
    margin-top: 44px;
  }

  .framework-grid,
  .related-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .framework-grid article {
    min-height: 240px;
  }

  .framework-grid h3 {
    margin-top: 38px;
  }

  .service-hero__card {
    width: min(100%, 420px);
    min-height: 270px;
  }

  .service-contact-band__actions {
    margin-top: 8px;
  }
}

@media (max-width: 620px) {
  .pricing-heading h2 {
    font-size: clamp(45px, 14vw, 60px);
  }

  .price-card {
    min-height: 270px;
    padding: 27px 24px;
    border-radius: 9px 9px 34px 9px;
  }

  .price-card__price {
    margin-top: 42px;
  }

  .pricing-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .focus-grid,
  .article-nav ol {
    grid-template-columns: minmax(0, 1fr);
  }

  .focus-card {
    min-height: 280px;
    padding: 26px;
  }

  .focus-card h2,
  .focus-card h3 {
    margin-top: 34px;
    font-size: 27px;
  }

  .practice-gallery {
    padding: 7px;
    border-radius: 18px;
  }

  .practice-gallery__grid {
    border-radius: 12px;
  }

  .practice-details address {
    font-size: 39px;
  }

  .practice-details__links {
    align-items: stretch;
    flex-direction: column;
  }

  .practice-details__links .button {
    width: 100%;
  }

  .faq-list summary {
    padding-right: 36px;
    font-size: 20px;
  }

  .service-hero {
    padding: 30px 0 72px;
  }

  .breadcrumbs {
    margin-bottom: 38px;
  }

  .service-hero h1,
  .focus-hub-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    hyphens: auto;
  }

  .service-hero__card {
    min-height: 245px;
    padding: 27px;
    border-radius: 120px 120px 10px 10px;
  }

  .article-nav {
    padding: 21px;
  }

  .service-article > h2,
  .service-article .source-note h2 {
    margin-top: 52px;
    font-size: 34px;
    hyphens: auto;
  }

  .service-article > h3 {
    font-size: 23px;
  }

  .service-article > p,
  .service-article > li,
  .service-article > ul,
  .service-article > ol {
    font-size: 15.5px;
    line-height: 1.78;
  }

  .service-article > p:first-of-type {
    font-size: 20px;
  }

  .source-note {
    padding: 24px 21px;
  }

  .related-card {
    min-height: 230px;
  }

  .service-contact-band__actions,
  .service-contact-band__actions .button {
    width: 100%;
  }

  .focus-hub-hero {
    padding: 30px 0 80px;
  }
}

@media print {
  .article-nav,
  .related-section,
  .service-contact-band,
  .service-hero__card {
    display: none !important;
  }

  .service-hero,
  .service-main-section {
    padding: 20px 0;
    background: white;
  }

  .service-article {
    max-width: none;
  }
}
