/*
 * Dee Grieger — About page
 * Final corrected production translation
 * No frameworks or third-party UI dependencies.
 */

:root {
  --navy: #071b2b;
  --navy-2: #0c2637;
  --ink: #102632;
  --gold: #b9823f;
  --gold-2: #c79553;
  --ivory: #f8f5ef;
  --ivory-2: #fcfaf6;
  --stone: #ebe3d8;
  --stone-2: #e5dcd0;
  --rule: #d4c9bb;
  --page: 1320px;
  --section: 1160px;
  --outer: 60px;
  --header-height: 74px;
  --font-serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--ivory-2);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

figure,
blockquote {
  margin: 0;
}

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

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

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-170%);
  padding: 10px 14px;
  background: var(--ivory);
  color: var(--navy);
  font-weight: 600;
}

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

.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  height: var(--header-height);
  background: var(--navy);
  color: #f8f7f4;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--page), calc(100% - (2 * var(--outer))));
  height: 100%;
  margin: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  font-family: var(--font-serif);
  font-size: 21px;
  letter-spacing: 0.01em;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  height: var(--header-height);
  gap: 40px;
}

.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  color: #d9e0e5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold-2);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.active,
.desktop-nav a[aria-current="page"] {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after,
.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: #f4f1eb;
  color: var(--navy);
  cursor: pointer;
}

.mobile-menu__line {
  position: absolute;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease;
}

.mobile-menu__line:first-of-type {
  transform: translateY(-3px);
}

.mobile-menu__line:last-of-type {
  transform: translateY(3px);
}

.mobile-menu[aria-expanded="true"] .mobile-menu__line:first-of-type {
  transform: rotate(45deg);
}

.mobile-menu[aria-expanded="true"] .mobile-menu__line:last-of-type {
  transform: rotate(-45deg);
}

.page-frame {
  width: min(var(--page), calc(100% - (2 * var(--outer))));
  margin: auto;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(0, 600px);
  grid-template-rows: auto 1fr;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-copy--intro {
  grid-column: 1;
  grid-row: 1;
  padding: 52px 54px 0 58px;
}

.hero-copy--remaining {
  grid-column: 1;
  grid-row: 2;
  padding: 0 54px 50px 58px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: #0d2532;
  font-family: var(--font-serif);
  font-weight: 400;
}

h1 {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: 68px;
  letter-spacing: -0.026em;
  line-height: 0.93;
}

.hero-copy p {
  max-width: 650px;
  margin: 0 0 16px;
  font-size: 17.5px;
  line-height: 1.58;
}

.hero-copy p.lead {
  max-width: 630px;
  margin-bottom: 20px;
  font-size: 23px;
  line-height: 1.43;
}

.hero-copy p:last-child {
  margin-bottom: 0;
}

.hero-media {
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 100%;
  overflow: hidden;
  background: #14283a;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 34%;
}

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

.section-index {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 104px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--ivory-2);
}

.index-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  min-height: 44px;
  padding: 20px 18px 14px;
  border-right: 1px solid rgba(176, 154, 127, 0.28);
}

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

.index-item::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.index-item:hover::after,
.index-item:focus-visible::after,
.index-item.active::after,
.index-item[aria-current="location"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.index-no {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.16em;
  line-height: 1.45;
}

.index-label {
  color: #18323f;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap;
}

.content-section {
  padding: 88px 0 84px;
  background: var(--ivory-2);
}

.content-section.stone {
  background: var(--stone);
}

.content-section.stone-deep {
  background: var(--stone-2);
}

.section-inner {
  width: min(var(--section), calc(100% - 80px));
  margin: auto;
}

.section-kicker {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  font-size: 50px;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

.heading-rule {
  height: 1px;
  margin: 24px 0 42px;
  background: var(--rule);
}

.section-copy p,
.execution-strategy,
.execution-opening p,
.execution-more p {
  margin: 0 0 18px;
}

.section-copy p:last-child,
.execution-opening p:last-child,
.execution-more p:last-child {
  margin-bottom: 0;
}

.judgement-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 770px);
  grid-template-rows: auto auto;
  gap: 0 70px;
}

.judgement-copy {
  grid-column: 2;
  grid-row: 1;
}

.emphasis {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  padding-left: 22px;
  border-left: 3px solid rgba(185, 130, 63, 0.48);
  color: #193440;
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.3;
}

.emphasis p {
  margin: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 710px) 380px;
  align-items: center;
  gap: 70px;
}

.connected-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  max-width: 100%;
  height: 310px;
  padding: 22px 18px;
  background: rgba(252, 250, 246, 0.82);
}

.connected-panel picture {
  width: 100%;
  height: 100%;
}

.connected-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.96;
  filter: contrast(1.38) saturate(1.05);
}

.execution-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 790px);
  grid-template-rows: auto auto auto auto;
  align-items: start;
  gap: 0 70px;
}

.execution-strategy {
  grid-column: 2;
  grid-row: 1;
}

.execution-lead {
  grid-column: 1;
  grid-row: 1 / 5;
  margin: 0;
  padding-top: 24px;
  border-top: 2px solid rgba(185, 130, 63, 0.45);
  color: #18333f;
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.3;
}

.execution-opening {
  grid-column: 2;
  grid-row: 2;
}

.execution-more {
  grid-column: 2;
  grid-row: 3;
}

.execution-more .signature {
  margin-top: 24px;
  color: #142d39;
  font-weight: 600;
}

.governance-panel {
  margin: 28px 0;
  padding: 30px 34px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 29px;
  line-height: 1.28;
}

.governance-panel p {
  margin: 0;
}

.beyond-grid {
  display: grid;
  grid-template-columns: 500px minmax(0, 584px);
  align-items: start;
  gap: 76px;
}

.beyond-media {
  width: 500px;
  height: 625px;
  overflow: hidden;
}

.beyond-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 36%;
}

.beyond-copy {
  padding-top: 6px;
}

.work-grid {
  display: grid;
  grid-template-columns: 500px minmax(0, 590px);
  align-items: start;
  gap: 70px;
}

.reflection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.reflection-card {
  overflow: hidden;
  background: var(--navy);
}

.reflection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reflection-card.top {
  aspect-ratio: 16 / 9;
}

.reflection-card.wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-primary {
  padding: 0 22px;
  background: var(--gold);
  color: #101f27;
}

.cta-secondary {
  padding: 0 3px;
  border-bottom: 1px solid var(--gold);
  color: #19313d;
}

.cta-primary:hover,
.cta-primary:focus-visible {
  background: var(--gold-2);
}

.mobile-reflections {
  display: none;
}

.disclosure-row {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  min-height: 116px;
  background: var(--navy);
  color: #dce3e7;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: min(var(--page), calc(100% - (2 * var(--outer))));
  margin: auto;
  font-size: 12.5px;
  line-height: 1.4;
}

@media (min-width: 1024px) {
  #judgement,
  #execution {
    padding-bottom: 102px;
  }
}

/* 1280 px reference range. */
@media (max-width: 1359px) and (min-width: 1200px) {
  :root {
    --page: 1180px;
    --section: 1080px;
    --outer: 50px;
  }

  body {
    font-size: 17px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 640px) minmax(0, 540px);
  }

  .hero-copy--intro {
    padding-left: 48px;
    padding-right: 42px;
  }

  .hero-copy--remaining {
    padding-right: 42px;
    padding-left: 48px;
  }

  h1 {
    font-size: 62px;
  }

  .hero-copy p {
    font-size: 16.7px;
  }

  .hero-copy p.lead {
    font-size: 21.5px;
  }

  h2 {
    font-size: 47px;
  }

  .judgement-grid {
    grid-template-columns: 290px minmax(0, 730px);
    gap: 0 60px;
  }

  .trust-grid {
    grid-template-columns: minmax(0, 650px) 370px;
    gap: 60px;
  }

  .connected-panel {
    width: 370px;
  }

  .execution-grid {
    grid-template-columns: 280px minmax(0, 740px);
    gap: 0 60px;
  }

  .beyond-grid {
    grid-template-columns: 470px minmax(0, 550px);
    gap: 60px;
  }

  .beyond-media {
    width: 470px;
    height: 588px;
  }

  .work-grid {
    grid-template-columns: 470px minmax(0, 550px);
    gap: 60px;
  }
}

/* Intermediate desktop/tablet: preserve two-column intent and remove fixed-grid overflow. */
@media (max-width: 1199px) and (min-width: 1024px) {
  :root {
    --page: calc(100vw - 64px);
    --section: calc(100vw - 96px);
    --outer: 32px;
  }

  body {
    font-size: 16.75px;
  }

  .desktop-nav {
    gap: 28px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  }

  .hero-copy--intro {
    padding: 46px 38px 0 44px;
  }

  .hero-copy--remaining {
    padding: 0 38px 44px 44px;
  }

  h1 {
    font-size: clamp(54px, 5.65vw, 60px);
  }

  .hero-copy p {
    font-size: 16.4px;
  }

  .hero-copy p.lead {
    font-size: 21px;
  }

  h2 {
    font-size: 45px;
  }

  .section-inner {
    width: var(--section);
  }

  .judgement-grid {
    grid-template-columns: minmax(230px, 30%) minmax(0, 1fr);
    gap: 0 42px;
  }

  .trust-grid {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 34%);
    gap: 42px;
  }

  .connected-panel {
    width: 100%;
    height: 284px;
  }

  .execution-grid {
    grid-template-columns: minmax(220px, 27%) minmax(0, 1fr);
    gap: 0 42px;
  }

  .beyond-grid {
    grid-template-columns: minmax(380px, 43%) minmax(0, 1fr);
    gap: 46px;
  }

  .beyond-media {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .work-grid {
    grid-template-columns: minmax(370px, 42%) minmax(0, 1fr);
    gap: 46px;
  }
}

/* Approved stacked tablet and mobile sequence. */
@media (max-width: 1023px) {
  :root {
    --outer: 0px;
    --page: 100%;
    --section: 100%;
    --header-height: 66px;
  }

  body {
    background: var(--ivory-2);
    font-size: 16.5px;
    line-height: 1.66;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    width: 100%;
    padding: 0 20px;
  }

  .brand {
    font-size: 18px;
  }

  .mobile-menu {
    position: relative;
    z-index: 2;
    display: flex;
  }

  .desktop-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0;
    padding: 10px 20px 16px;
    border-top: 1px solid rgba(248, 247, 244, 0.18);
    background: var(--navy);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .desktop-nav a {
    width: 100%;
    min-height: 48px;
  }

  .desktop-nav a::after {
    right: auto;
    width: 74px;
  }

  .desktop-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .no-js .mobile-menu {
    display: none;
  }

  .no-js .desktop-nav {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    padding: 0;
    border: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .no-js .desktop-nav a {
    width: auto;
    min-width: 44px;
    padding: 0 8px;
    font-size: 9px;
  }

  .page-frame {
    width: 100%;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-copy--intro,
  .hero-copy--remaining {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero-copy--intro {
    order: 1;
    padding-top: 34px;
  }

  .hero-media {
    order: 2;
    width: 100%;
    height: auto;
    margin: 26px 0 24px;
    aspect-ratio: 4 / 5;
  }

  .hero-copy--remaining {
    order: 3;
    padding-bottom: 36px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 10px;
  }

  h1 {
    max-width: 320px;
    margin-bottom: 22px;
    font-size: 42px;
    line-height: 0.98;
  }

  .hero-copy p {
    margin-bottom: 16px;
    font-size: 16.5px;
    line-height: 1.66;
  }

  .hero-copy p.lead {
    margin-bottom: 18px;
    font-size: 21.5px;
    line-height: 1.44;
  }

  .hero-media img {
    height: 100%;
    object-position: 56% 34%;
  }

  .section-index-wrap {
    overflow-x: auto;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .section-index-wrap::-webkit-scrollbar {
    display: none;
  }

  .section-index {
    display: flex;
    width: max-content;
    min-width: 100%;
    height: 70px;
    padding-left: 14px;
    border: 0;
  }

  .index-item {
    flex: 0 0 138px;
    width: 138px;
    height: 70px;
    min-height: 44px;
    gap: 7px;
    padding: 14px 10px 11px;
  }

  .index-item::after {
    right: 10px;
    left: 10px;
  }

  .index-label {
    font-size: 14.5px;
  }

  .index-no {
    font-size: 10.5px;
  }

  .content-section {
    padding: 68px 22px 64px;
  }

  .section-inner {
    width: 100%;
    margin: 0;
  }

  .section-kicker {
    margin-bottom: 17px;
  }

  h2 {
    font-size: 39px;
    line-height: 1.05;
  }

  .heading-rule {
    margin: 20px 0 30px;
  }

  .judgement-grid,
  .trust-grid,
  .execution-grid,
  .beyond-grid,
  .work-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .judgement-copy {
    order: 1;
  }

  .judgement-copy > p:nth-of-type(4) {
    margin-bottom: 0;
  }

  .emphasis {
    order: 2;
    margin: 12px 0 4px;
    padding-left: 18px;
    font-size: 25px;
  }

  .section-copy p,
  .execution-strategy,
  .execution-opening p,
  .execution-more p {
    margin-bottom: 16px;
  }

  .connected-panel {
    width: 100%;
    height: 264px;
    margin-top: 30px;
    padding: 10px 6px;
    background: rgba(252, 250, 246, 0.72);
  }

  .connected-panel img {
    opacity: 0.98;
    filter: contrast(1.42) saturate(1.04);
  }

  .execution-lead {
    order: 1;
    margin-bottom: 26px;
    padding-top: 20px;
    font-size: 25px;
  }

  .execution-strategy {
    order: 2;
  }

  .execution-opening {
    order: 3;
  }

  .execution-more {
    order: 4;
  }

  .governance-panel {
    margin: 26px 0;
    padding: 27px 24px;
    font-size: 27px;
  }

  .beyond-media {
    order: 1;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    aspect-ratio: 4 / 5;
  }

  .beyond-copy {
    order: 2;
    padding-top: 0;
  }

  .desktop-reflections {
    display: none;
  }

  .mobile-reflections {
    display: block;
    margin: 30px -22px 0;
    overflow: hidden;
  }

  .scroll-row {
    display: flex;
    gap: 14px;
    width: 100%;
    padding: 0 22px 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-left: 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .scroll-row::-webkit-scrollbar {
    display: none;
  }

  .scroll-card {
    flex: 0 0 min(84vw, 345px);
    width: min(84vw, 345px);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--navy);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .scroll-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ctas {
    display: block;
    margin-top: 30px;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    margin-bottom: 12px;
  }

  .cta-secondary {
    border: 1px solid var(--rule);
  }

  .site-footer {
    min-height: 128px;
  }

  .footer-inner {
    display: block;
    width: 100%;
    padding: 24px 22px;
    font-size: 13px;
  }

  .footer-inner div + div {
    margin-top: 10px;
  }

  .js .disclosure-row {
    display: flex;
    order: 3;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    margin-top: 24px;
    padding: 0;
    border: 0;
    border-top: 1px solid var(--rule);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-align: left;
  }

  .execution-grid .disclosure-row {
    order: 5;
  }

  .disclosure-icon {
    position: relative;
    width: 22px;
    height: 22px;
    color: var(--gold);
  }

  .disclosure-icon::before,
  .disclosure-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
  }

  .disclosure-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 160ms ease;
  }

  .disclosure-row[aria-expanded="true"] .disclosure-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(39px, 10.75vw, 42px);
  }

  h2 {
    font-size: clamp(36px, 10vw, 39px);
  }
}

@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;
  }
}

/* Integration guardrails: the shared landing stylesheet is loaded first. */
body.about-page { background: var(--ivory-2); }
body.about-page .hero { background: var(--ivory); }
body.about-page .hero-media img { display: block; min-height: 0; }
body.about-page .hero-copy { max-width: none; align-self: stretch; }
body.about-page .site-header { position: relative; padding: 0; border-bottom: 0; backdrop-filter: none; }
body.about-page .site-footer { min-height: 76px; border-radius: 0; }
