:root {
  --berry: #771d50;
  --raspberry: #972155;
  --teal: #21495f;
  --navy: #111b40;
  --ivory: #fbf7ef;
  --ivory-soft: #f0e8dc;
  --ivory-light: #fffaf2;
  --plum: var(--berry);
  --plum-deep: var(--navy);
  --plum-soft: var(--raspberry);
  --cream: var(--ivory);
  --cream-deep: var(--ivory-soft);
  --cream-light: var(--ivory-light);
  --line: rgba(17, 27, 64, 0.18);
  --header-height: 112px;
  --gutter: clamp(1.25rem, 4vw, 4.75rem);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--plum-soft);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 300;
  padding: 0.7rem 1rem;
  background: var(--cream-light);
  color: var(--plum);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 1.25rem var(--gutter);
  background: var(--cream-light);
  color: var(--plum);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(17, 27, 64, 0.07);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  line-height: 1;
}

.brand-name {
  font-size: clamp(1.15rem, 1.9vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-role {
  margin-top: 0.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.5rem);
  align-items: center;
}

.site-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  transition: opacity 180ms ease;
}

.site-nav a:not(.nav-cta):hover {
  opacity: 0.58;
}

.nav-cta {
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  background: var(--plum);
  color: var(--cream);
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  background: var(--plum-deep);
}

.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  place-items: center;
  background: var(--plum-deep);
  color: var(--cream-light);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.65) contrast(1.04);
}

.hero-overlay {
  background: linear-gradient(155deg, rgba(17, 27, 64, 0.38), rgba(119, 29, 80, 0.86));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2 * var(--gutter)));
  padding: clamp(6rem, 10vw, 10rem) 0;
  text-align: center;
}

.hero-kicker,
.section-label,
.footer-label {
  margin-bottom: 1.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1120px;
  margin: 0 auto 2rem;
  font-size: clamp(2.7rem, 5.5vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.8rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-cream {
  background: var(--cream);
  color: var(--plum);
}

.button-ghost {
  background: rgba(247, 245, 242, 0.15);
  color: var(--cream);
}

.button-ghost:hover {
  background: var(--cream);
  color: var(--plum);
}

.button-plum {
  background: var(--plum);
  color: var(--cream);
}

.button-plum:hover {
  background: var(--plum-deep);
}

.display-heading {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.4vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.display-heading em {
  color: var(--plum-soft);
  font-weight: 400;
}

.philosophy {
  padding: clamp(7rem, 12vw, 12rem) var(--gutter);
  background: var(--cream);
  text-align: center;
}

.philosophy .section-label {
  color: var(--raspberry);
}

.philosophy .display-heading {
  max-width: 1200px;
  margin-right: auto;
  margin-bottom: clamp(4rem, 7vw, 7rem);
  margin-left: auto;
}

.philosophy-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 980px;
  margin: 0 auto;
  padding-top: 2rem;
  color: var(--plum-deep);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  text-align: left;
}

.about {
  padding: clamp(7rem, 11vw, 11rem) var(--gutter);
  background: var(--teal);
  color: var(--ivory);
}

.about .section-label,
.about .display-heading,
.about-copy,
.about-lead {
  color: var(--ivory);
}

.about-copy > p:not(.about-lead) {
  color: rgba(251, 247, 239, 0.88);
}

.about-heading,
.services-heading {
  max-width: 1080px;
  margin: 0 auto clamp(5rem, 8vw, 8rem);
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.about-portrait {
  position: relative;
  aspect-ratio: 0.78;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--cream);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.about-copy {
  color: var(--ivory);
}

.about-lead {
  margin-bottom: 1.5rem;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.about-copy > p:not(.about-lead) {
  max-width: 640px;
  margin-bottom: 2.5rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.outcome-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.outcome-list li {
  padding: 0.72rem 0 0.72rem 0.35rem;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

.outcome-list li::marker {
  color: #efb5d0;
  font-size: 0.82em;
}

.services {
  padding: clamp(7rem, 11vw, 11rem) var(--gutter);
  background: var(--cream-light);
}

.services .section-label {
  color: var(--raspberry);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.service-image {
  aspect-ratio: 1;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: var(--cream-deep);
}

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

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-card-career .service-image img {
  object-position: 50% 40%;
  transform: scale(1.24);
  transform-origin: 50% 40%;
}

.service-card-career:hover .service-image img {
  transform: scale(1.29);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card > p {
  flex: 1;
  margin-bottom: 1.5rem;
  color: var(--plum-deep);
  font-size: 0.96rem;
}

.card-link {
  display: flex;
  align-items: center;
  padding: 0.9rem 1rem;
  background: var(--berry);
  color: var(--ivory);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.service-card-career .card-link {
  background: var(--raspberry);
}

.service-card:nth-child(2) .card-link {
  background: var(--teal);
}

.service-card:nth-child(3) .card-link {
  background: var(--navy);
}

.card-link:hover {
  opacity: 0.82;
}

.depth {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  padding: clamp(6rem, 10vw, 11rem) var(--gutter);
  background: var(--navy);
  color: var(--cream);
}

.depth-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.depth .display-heading {
  max-width: 800px;
  margin-bottom: 3rem;
}

.depth-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 760px;
  margin-bottom: 2.5rem;
  color: var(--cream-deep);
}

.depth .section-label {
  color: #efb5d0;
}

.depth-portrait {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--plum-deep);
}

.depth-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 21%;
  transform: scale(1.38);
  transform-origin: 50% 21%;
}

.book-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding: clamp(7rem, 11vw, 11rem) var(--gutter);
  background: var(--ivory-soft);
}

.book-visual {
  display: grid;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  place-items: center;
  background: var(--cream-light);
}

.book-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-copy {
  max-width: none;
  padding: clamp(2.5rem, 5vw, 5.25rem);
  background: var(--berry);
  color: var(--ivory);
}

.book-copy .section-label {
  color: #efb5d0;
}

.book-copy .display-heading {
  margin-bottom: 1.25rem;
}

.book-subtitle {
  margin-bottom: 2rem;
  color: #f4cadc;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.book-copy > p:not(.section-label):not(.book-subtitle):not(.contributor-note) {
  margin-bottom: 1.35rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.contributor-note {
  max-width: 560px;
  margin-bottom: 2.25rem;
  padding: 1.2rem 1.4rem;
  border-radius: 0.6rem;
  background: var(--teal);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  line-height: 1.25;
}

.book-copy .button-plum {
  background: var(--ivory);
  color: var(--berry);
}

.book-copy .button-plum:hover {
  background: var(--ivory-light);
}

.image-break {
  position: relative;
  min-height: 75svh;
  overflow: hidden;
  background: var(--plum-deep);
}

.image-break img {
  width: 100%;
  height: 75svh;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.78);
}

.closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 86svh;
  padding: clamp(7rem, 13vw, 13rem) var(--gutter);
  background: var(--raspberry);
  color: var(--ivory);
  text-align: center;
}

.closing .display-heading {
  max-width: 1100px;
  margin-bottom: 2rem;
}

.closing-copy {
  max-width: 640px;
  margin-bottom: 2.5rem;
  color: rgba(251, 247, 239, 0.9);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.closing .button-plum {
  background: var(--navy);
  color: var(--ivory);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 4rem;
  padding: clamp(5rem, 9vw, 9rem) var(--gutter) 2rem;
  background: var(--plum-deep);
  color: var(--cream);
}

.footer-main {
  align-self: end;
}

.footer-brand {
  display: block;
  margin-bottom: 1.4rem;
  font-size: clamp(2.6rem, 6.2vw, 6.6rem);
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}

.footer-main p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--cream-deep);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-label {
  color: var(--plum-soft);
}

.footer-nav a {
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.copyright {
  grid-column: 1 / -1;
  margin: 4rem 0 0;
  padding-top: 1rem;
  color: var(--cream-deep);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

@media (max-width: 980px) {
  .about-grid {
    gap: 3rem;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.75rem);
    margin: 2rem auto 0;
  }

  .depth {
    grid-template-columns: 1fr 0.8fr;
    gap: 3rem;
  }

  .depth-text {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 86px;
  }

  .site-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .brand-name {
    font-size: 0.86rem;
    letter-spacing: 0.1em;
  }

  .brand-role {
    margin-top: 0.45rem;
    font-size: 0.52rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0.55rem;
    align-items: center;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-icon,
  .menu-icon::after {
    display: block;
    width: 1.25rem;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 200ms ease;
  }

  .menu-icon::after {
    transform: translateY(5px);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon::after {
    transform: rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    justify-content: center;
    padding: var(--gutter);
    background: var(--plum);
    color: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    padding: 0;
    border: 0;
    font-family: var(--serif);
    font-size: clamp(2.7rem, 12vw, 4.8rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: none;
  }

  .site-header:has(.site-nav.is-open) {
    background: var(--plum);
    color: var(--cream);
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-content {
    padding: 5rem 0;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 9.5vw, 3.4rem);
  }

  .hero-intro {
    max-width: 31rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: min(100%, 360px);
  }

  .display-heading {
    font-size: clamp(2.9rem, 12vw, 4.8rem);
  }

  .philosophy-copy {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

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

  .about-portrait {
    aspect-ratio: 0.78;
  }

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

  .service-card:last-child {
    grid-column: auto;
    width: auto;
    margin: 0;
  }

  .service-card {
    margin-bottom: 3rem;
  }

  .service-image {
    aspect-ratio: 1.08;
  }

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

  .depth-copy {
    padding: 0;
  }

  .depth-portrait {
    aspect-ratio: 1;
  }

  .depth-portrait img {
    transform: scale(1.38);
  }

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

  .book-copy {
    max-width: none;
  }

  .image-break,
  .image-break img {
    min-height: 62svh;
    height: 62svh;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    font-size: clamp(3rem, 15vw, 5.5rem);
  }

  .copyright {
    grid-column: auto;
    margin-top: 2rem;
  }
}

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

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

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