.about-page {
  --about-navy: #102942;
  --about-blue: #30619f;
  --about-ink: #17263a;
  --about-body: #445569;
  --about-mist: #eef3f6;
  --about-warm: #b98a45;
  --about-warm-soft: #e6d6bc;
  --about-line: #dce3e8;
  --about-serif: Charter, "Bitstream Charter", "Sitka Text", Cambria, Georgia, serif;
  --about-sans: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --about-shell: 1480px;
  --about-gutter: clamp(1.25rem, 4.4vw, 4rem);
  overflow: clip;
  background: #fff;
  color: var(--about-body);
  font: 1rem/1.65 var(--about-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.about-page ::selection {
  background: var(--about-warm-soft);
  color: var(--about-navy);
}

.about-page .about-shell {
  width: min(var(--about-shell), calc(100% - (2 * var(--about-gutter))));
  margin-inline: auto;
}

.about-page h1,
.about-page h2,
.about-page p,
.about-page figure,
.about-page blockquote {
  margin-top: 0;
}

.about-page h1,
.about-page h2 {
  color: var(--about-navy);
  font-family: var(--about-serif);
  font-weight: 400;
  text-wrap: balance;
}

.about-page h1 {
  max-width: 9ch;
  margin-bottom: clamp(1.5rem, 2.3vw, 2.25rem);
  font-size: clamp(3.4rem, 5.9vw, 6rem);
  letter-spacing: -.028em;
  line-height: .98;
}

.about-page h2 {
  font-size: clamp(1.6rem, 2.15vw, 2.35rem);
  letter-spacing: -.012em;
  line-height: 1.12;
}

.about-page a {
  color: var(--about-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

.about-page a:hover {
  color: #755735;
}

.about-page a:focus-visible {
  border-radius: 1px;
  outline: 3px solid rgba(185, 138, 69, .62);
  outline-offset: 4px;
}

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

.about-opening {
  padding-block: clamp(3.5rem, 6.7vw, 7.25rem) clamp(4.25rem, 8.5vw, 8.75rem);
  border-bottom: 1px solid var(--about-line);
}

.about-opening__grid {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(30rem, 1.16fr);
  grid-template-areas:
    "title image"
    "body image";
  column-gap: clamp(3rem, 6vw, 7.5rem);
  row-gap: clamp(1.5rem, 2.3vw, 2.25rem);
  align-items: center;
}

.about-opening h1 {
  grid-area: title;
  align-self: end;
  margin-bottom: 0;
}

.about-opening__body {
  grid-area: body;
  align-self: start;
  max-width: 68ch;
}

.about-opening__body p {
  margin-bottom: 1.25rem;
}

.about-opening__body p:first-child {
  color: var(--about-ink);
  font-family: var(--about-serif);
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  line-height: 1.45;
}

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

.about-editorial-link {
  display: inline-flex;
  gap: .5rem;
  min-height: 2.75rem;
  align-items: center;
  margin-top: 1.45rem;
  color: var(--about-navy) !important;
  font-weight: 700;
  text-decoration: none;
}

.about-editorial-link span {
  text-decoration: underline;
  text-decoration-color: rgba(128, 96, 55, .6);
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

.about-editorial-link::after {
  flex: 0 0 auto;
  color: #9a7547;
  content: "→";
  transition: transform .2s ease;
}

.about-editorial-link:hover,
.about-editorial-link:focus-visible {
  color: #755735 !important;
}

.about-editorial-link:hover::after,
.about-editorial-link:focus-visible::after {
  transform: translateX(4px);
}

.about-opening__body strong {
  color: var(--about-navy);
  font-weight: 750;
}

.about-opening__image {
  position: relative;
  grid-area: image;
  isolation: isolate;
  margin: 0;
}

.about-opening__image::before {
  position: absolute;
  inset: clamp(1.1rem, 2vw, 2rem) clamp(-1.4rem, -1.4vw, -1rem) clamp(-1.4rem, -1.4vw, -1rem) clamp(1rem, 2vw, 2rem);
  z-index: -1;
  border: 1px solid var(--about-warm-soft);
  content: "";
}

.about-opening__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 52%;
}

.about-director {
  padding-block: clamp(3.75rem, 6vw, 6rem);
  background: var(--about-mist);
}

.about-director__grid {
  display: grid;
  grid-template-columns: minmax(13rem, 17.5rem) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 8.5rem);
  align-items: center;
  max-width: 78rem;
}

.about-director__portrait {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: clamp(.65rem, 1vw, .9rem);
  border: 1px solid rgba(16, 41, 66, .18);
  background: #fff;
}

.about-director__portrait::after {
  position: absolute;
  right: -1.4rem;
  bottom: -1.4rem;
  width: 46%;
  height: 46%;
  z-index: -1;
  background: var(--about-warm-soft);
  content: "";
}

.about-director__portrait img {
  width: 100%;
  height: auto;
}

.about-director__statement {
  max-width: 52rem;
}

.about-director__statement h2 {
  max-width: 18ch;
  margin-bottom: clamp(1.5rem, 2.6vw, 2.5rem);
}

.about-director__statement blockquote {
  position: relative;
  margin-bottom: 0;
  padding-top: clamp(1.5rem, 2.4vw, 2.25rem);
  border-top: 1px solid rgba(16, 41, 66, .25);
}

.about-director__statement blockquote p {
  margin-bottom: 0;
  color: var(--about-ink);
  font-family: var(--about-serif);
  font-size: clamp(1.23rem, 1.65vw, 1.58rem);
  line-height: 1.55;
}

.about-director__statement blockquote p:first-child::before,
.about-director__statement blockquote p:last-child::after {
  color: var(--about-warm);
  font-size: 1.55em;
  line-height: 0;
  vertical-align: -.14em;
}

.about-director__statement blockquote p:first-child::before {
  margin-right: .08em;
  content: "“";
}

.about-director__statement blockquote p:last-child::after {
  margin-left: .08em;
  content: "”";
}

.about-record {
  padding-block: clamp(4.75rem, 8vw, 8.25rem);
}

.about-record__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(11rem, 13rem);
  gap: clamp(3rem, 5vw, 5rem);
  align-items: stretch;
}

.about-record__rows {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.about-record__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(3rem, 7vw, 7.5rem);
  border-top: 1px solid var(--about-line);
}

.about-record__row:first-child {
  border-top-color: var(--about-warm-soft);
}

.about-record__item {
  min-width: 0;
  padding-block: clamp(2rem, 3vw, 3.25rem);
}

.about-record__item h2 {
  max-width: 17ch;
  margin-bottom: 1.1rem;
  font-size: clamp(1.55rem, 1.9vw, 2rem);
}

.about-record__item p {
  max-width: 70ch;
  margin-bottom: 0;
}

.about-record__item em {
  color: var(--about-ink);
  font-family: var(--about-serif);
}

.about-related {
  position: relative;
  min-width: 0;
}

.about-related__label {
  position: absolute;
  top: 1.1rem;
  left: 0;
  z-index: 1;
  margin-bottom: 0;
  color: #806037;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-related__list {
  display: grid;
  height: 100%;
  grid-template-rows: repeat(3, 1fr);
}

.about-related__item {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  padding-block: clamp(2rem, 3vw, 3.25rem);
  border-top: 1px solid var(--about-line);
}

.about-related__item:first-child {
  padding-top: 3.2rem;
  border-top-color: var(--about-warm-soft);
}

.about-related__link {
  display: inline-flex;
  gap: .42rem;
  width: max-content;
  max-width: 100%;
  min-height: 2.75rem;
  align-items: center;
  color: var(--about-navy) !important;
  font: 400 1.22rem/1.3 var(--about-serif);
  text-decoration: none;
}

.about-related__link .related-link__text {
  text-decoration: underline;
  text-decoration-color: rgba(128, 96, 55, .6);
  text-decoration-thickness: 1px;
  text-underline-offset: .2rem;
}

.about-related__link::after {
  flex: 0 0 auto;
  color: #9a7547;
  content: "→";
  transition: transform .2s ease;
}

.about-related__link:hover,
.about-related__link:focus-visible {
  color: #755735 !important;
}

.about-related__link:hover::after,
.about-related__link:focus-visible::after {
  transform: translateX(4px);
}

.about-complaints {
  padding-block: clamp(3.5rem, 6vw, 6rem);
  border-block: 1px solid var(--about-line);
  background: var(--about-mist);
}

.about-complaints__grid {
  display: grid;
  grid-template-columns: minmax(13rem, .64fr) minmax(0, 1.36fr);
  gap: clamp(3rem, 7vw, 7.5rem);
}

.about-complaints h2 {
  margin-bottom: 0;
}

.about-complaints p {
  max-width: 76ch;
  margin-bottom: 0;
}

.about-complaints a {
  overflow-wrap: anywhere;
}

/* The About PageSpec retains its captured body class, so its page-only sheet
   applies the accepted shared footer presentation without changing PageSpec. */
.template-homepage .homepage-footer {
  margin-top: 0;
  padding: 50px 0 28px;
  background: #102942;
  color: #dbe6ef;
  font-family: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.template-homepage .homepage-footer,
.template-homepage .homepage-footer *,
.template-homepage .homepage-footer *::before,
.template-homepage .homepage-footer *::after {
  box-sizing: border-box;
}

.template-homepage .homepage-footer__inner {
  width: min(1480px, calc(100% - 64px));
  margin-inline: auto;
}

.template-homepage .homepage-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1.25fr 1.15fr 1.15fr .9fr;
  gap: 34px;
}

.template-homepage .homepage-footer__brand img {
  width: 165px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.template-homepage .homepage-footer__brand p {
  max-width: 260px;
  margin: 14px 0 0;
  color: #b8c9d7;
  font-size: .8rem;
}

.template-homepage .homepage-footer__phone {
  display: inline-block;
  margin: 7px 0;
  color: #fff;
  font-family: Charter, "Bitstream Charter", "Sitka Text", Cambria, Georgia, serif;
  font-size: 1.15rem;
  text-decoration: none;
}

.template-homepage .homepage-footer__group h2 {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  color: #fff;
  font-family: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.template-homepage .homepage-footer__group .homepage-footer__secondary-heading {
  margin-top: 24px;
}

.template-homepage .homepage-footer__links {
  display: grid;
  gap: 7px;
  font-size: .8rem;
}

.template-homepage .homepage-footer__links a,
.template-homepage .homepage-footer__preferences {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #dbe6ef;
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.template-homepage .homepage-footer__preferences {
  cursor: pointer;
}

.template-homepage .homepage-footer__links a:hover,
.template-homepage .homepage-footer__links a:focus-visible,
.template-homepage .homepage-footer__preferences:hover,
.template-homepage .homepage-footer__preferences:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.template-homepage .homepage-footer a:focus-visible,
.template-homepage .homepage-footer button:focus-visible {
  outline: 3px solid rgba(185, 138, 69, .62);
  outline-offset: 4px;
}

.template-homepage .homepage-footer__bottom {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: #aebfcd;
  font-size: .72rem;
}

@media (max-width: 1180px) {
  .about-opening__grid {
    grid-template-columns: minmax(0, .95fr) minmax(24rem, 1.05fr);
    column-gap: clamp(2.5rem, 4vw, 4rem);
  }

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

@media (max-width: 1120px) {
  .about-record__layout {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .about-related {
    position: static;
    width: min(100%, 28rem);
    padding-block: 1.1rem 1.25rem;
    border-block: 1px solid var(--about-line);
  }

  .about-related__label {
    position: static;
    margin-bottom: .45rem;
  }

  .about-related__list {
    height: auto;
    grid-template-rows: none;
    gap: .25rem;
  }

  .about-related__item,
  .about-related__item:first-child {
    padding-block: 0;
    border-top: 0;
  }
}

@media (max-width: 900px) {
  .about-opening {
    padding-top: 3.5rem;
  }

  .about-opening__grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, .82fr);
  }

  .about-director__grid {
    grid-template-columns: 12rem minmax(0, 1fr);
    gap: 3rem;
  }

  .about-record__row {
    column-gap: 3rem;
  }

  .about-complaints__grid {
    gap: 3rem;
  }
}

@media (max-width: 760px) {
  .about-page {
    --about-gutter: 1.25rem;
  }

  .about-opening {
    padding-block: 3.25rem 4.5rem;
  }

  .about-opening__grid,
  .about-director__grid,
  .about-record__row,
  .about-complaints__grid {
    grid-template-columns: 1fr;
  }

  .about-opening__grid {
    grid-template-areas:
      "title"
      "image"
      "body";
    gap: 2.5rem;
  }

  .about-opening__image::before {
    right: -.75rem;
    bottom: -.75rem;
    left: .75rem;
  }

  .about-director {
    padding-block: 3.5rem;
  }

  .about-director__grid {
    gap: 2.75rem;
  }

  .about-director__portrait {
    width: min(9rem, 42vw);
  }

  .about-director__portrait::after {
    right: -1rem;
    bottom: -1rem;
  }

  .about-director__statement h2 {
    max-width: 16ch;
  }

  .about-director__statement blockquote p {
    font-size: 1.18rem;
  }

  .about-record {
    padding-block: 4.25rem;
  }

  .about-record__rows {
    grid-template-rows: none;
  }

  .about-record__row {
    border-top: 0;
  }

  .about-record__item {
    display: block;
    padding-block: 2rem;
    border-top: 1px solid var(--about-line);
  }

  .about-record__row:first-child .about-record__item:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .about-record__item h2 {
    max-width: 20ch;
  }

  .about-complaints {
    padding-block: 3.75rem;
  }

  .about-complaints__grid {
    gap: 1.5rem;
  }
}

@media (max-width: 700px) {
  .template-homepage .homepage-footer__inner {
    width: min(100% - 40px, 42rem);
  }

  .template-homepage .homepage-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
  }

  .template-homepage .homepage-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .about-page h1 {
    font-size: clamp(3.25rem, 16vw, 4.4rem);
  }

  .template-homepage .homepage-footer__bottom {
    display: block;
  }

  .template-homepage .homepage-footer__bottom span {
    display: block;
  }

  .template-homepage .homepage-footer__bottom span + span {
    margin-top: 8px;
  }
}

@media (max-width: 600px) and (orientation: portrait) {
  .about-opening__image {
    width: clamp(13.5rem, 62vw, 15.25rem);
    justify-self: center;
    align-self: start;
  }

  .about-opening__image img {
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

@media (min-width: 700px) and (max-width: 900px) and (max-height: 480px) and (orientation: landscape) {
  .about-opening {
    padding-block: 2.25rem 3rem;
  }

  .about-opening__grid {
    grid-template-columns: minmax(0, 1.8fr) minmax(11rem, .8fr);
    grid-template-areas: none;
    grid-template-rows: auto;
    column-gap: 2rem;
    row-gap: 1.25rem;
    align-items: start;
    align-content: start;
  }

  .about-opening h1 {
    grid-area: auto;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .about-opening__body {
    display: contents;
  }

  .about-opening__body p {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .about-opening__body p:first-child {
    grid-column: 1;
    grid-row: 2;
  }

  .about-opening__body p:nth-child(2) {
    grid-row: 3;
  }

  .about-opening__body p:nth-child(3) {
    grid-row: 4;
  }

  .about-opening__body .about-editorial-link {
    grid-column: 1 / -1;
    grid-row: 5;
    justify-self: start;
    margin-top: 0;
  }

  .about-opening__image {
    grid-area: auto;
    grid-column: 2;
    grid-row: 2;
    width: clamp(11.25rem, 24vw, 13.75rem);
    justify-self: end;
    align-self: start;
  }

  .about-opening__image img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .about-director__grid {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.8fr);
    gap: 2rem;
    align-items: start;
  }

  .about-director__portrait {
    max-width: 12rem;
    align-self: start;
  }

  .about-director__statement {
    min-width: 0;
  }

}

@media (max-width: 480px) {
  .template-homepage .homepage-footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .template-homepage .homepage-footer__brand,
  .template-homepage .homepage-footer__group {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-editorial-link::after,
  .about-related__link::after {
    transition: none;
  }

  .about-editorial-link:hover::after,
  .about-editorial-link:focus-visible::after,
  .about-related__link:hover::after,
  .about-related__link:focus-visible::after {
    transform: none;
  }
}
