:root {
  --ink: #071b31;
  --ink-soft: #17324d;
  --gold: #b38243;
  --gold-light: #d4b47d;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: #d9d7d0;
  --muted: #61707d;
  --max-width: 1200px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.page-shell,
.nav-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(7, 27, 49, 0.1);
  background: rgba(255, 255, 255, 0.98);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(7, 27, 49, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand-crop {
  position: relative;
  display: block;
  width: 290px;
  height: 62px;
  overflow: hidden;
}

.brand-crop img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  max-width: none;
  transform: translate(-50%, -50%);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--gold);
}

.primary-nav .nav-cta {
  padding: 6px 0;
  border-bottom: 1px solid var(--gold);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height) - 36px);
  color: var(--white);
  overflow: hidden;
}

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

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(3, 16, 29, 0.84) 0%, rgba(3, 16, 29, 0.6) 40%, rgba(3, 16, 29, 0.04) 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 92px 0 170px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

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

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

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  letter-spacing: 0;
}

h3 {
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 500;
  line-height: 1.02;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4.3vw, 58px);
  font-weight: 500;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-gold {
  color: var(--ink);
  background: var(--gold-light);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(3, 16, 29, 0.14);
}

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

.button-gold:hover,
.button-gold:focus-visible {
  color: var(--white);
  background: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-underline-offset: 5px;
}

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

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(3, 16, 29, 0.68);
  backdrop-filter: blur(10px);
}

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

.proof-grid p {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 25px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.proof-grid p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.proof-grid strong {
  margin-bottom: 3px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.section {
  padding: 112px 0;
}

.section-intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}

.intro-grid h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 34px;
  color: var(--muted);
}

.lead-copy {
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.6;
}

.about-standards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about-standards span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.story-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  color: var(--white);
  background: var(--ink);
}

.story-image-wrap {
  min-height: 660px;
  overflow: hidden;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% center;
}

.story-copy {
  display: flex;
  align-items: center;
  padding: 80px;
}

.story-inner {
  max-width: 600px;
}

.story-copy h2 {
  max-width: 560px;
}

.story-copy > div > p:not(.eyebrow) {
  max-width: 550px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.principles {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.principles > div {
  display: grid;
  grid-template-columns: 46px 155px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.principles span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}

.principles h3,
.principles p {
  margin: 0;
}

.principles p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.interests-section {
  background: var(--paper);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 58px;
}

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

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

.interest-grid article {
  min-height: 250px;
  padding: 38px;
  border-left: 1px solid var(--line);
}

.interest-grid article:last-child {
  border-right: 1px solid var(--line);
}

.interest-grid p {
  color: var(--muted);
}

.interest-index {
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.process-section {
  color: var(--white);
  background: var(--ink);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.process-heading {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  align-self: start;
}

.process-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
}

.process-heading .text-link {
  margin-top: 20px;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list > li > span {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
}

.process-list h3 {
  font-size: 23px;
}

.process-list p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.leadership-section {
  background: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
}

.leadership-image {
  height: 650px;
  overflow: hidden;
}

.leadership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.leadership-copy h2 {
  font-size: clamp(34px, 3.5vw, 48px);
}

.person-rule {
  width: 52px;
  height: 2px;
  margin: 38px 0 26px;
  background: var(--gold);
}

.leadership-copy h3 {
  margin-bottom: 3px;
  font-size: 25px;
}

.person-title {
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 600;
}

.leadership-copy p:not(.eyebrow):not(.person-title) {
  color: var(--muted);
}

.contact-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  padding: 120px 0;
  color: var(--white);
  overflow: hidden;
}

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

.contact-background {
  object-fit: cover;
  object-position: center;
}

.contact-overlay {
  background: linear-gradient(90deg, rgba(3, 16, 29, 0.94) 0%, rgba(3, 16, 29, 0.8) 52%, rgba(3, 16, 29, 0.52) 100%);
}

.contact-grid {
  position: relative;
  display: block;
}

.contact-copy h2 {
  max-width: 760px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.contact-copy > a {
  color: var(--gold-light);
  font-weight: 600;
  text-underline-offset: 5px;
}

.contact-email {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-light);
  font-size: clamp(20px, 2.4vw, 30px);
  text-decoration: none;
}

.site-footer {
  padding: 70px 0 28px;
  color: rgba(255, 255, 255, 0.65);
  background: #04111f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 0.8fr;
  gap: 70px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--white);
  font-family: Georgia, serif;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-brand span {
  font-size: 29px;
}

.footer-brand small {
  margin-top: 8px;
  color: var(--gold-light);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-align: center;
}

.footer-grid > p {
  max-width: 470px;
}

.footer-grid nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 26px;
}

.footer-grid nav a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.footer-grid nav a:hover,
.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.footer-bottom p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .page-shell,
  .nav-shell {
    width: min(calc(100% - 40px), var(--max-width));
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 40px 24px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav a {
    width: 100%;
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .primary-nav .nav-cta {
    width: auto;
    margin-top: 24px;
    padding: 17px 4px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-grid,
  .leadership-grid {
    gap: 60px;
  }

  .story-copy {
    padding: 64px 40px;
  }

  .principles > div {
    grid-template-columns: 40px 1fr;
  }

  .principles p {
    grid-column: 2;
  }

  .process-layout {
    gap: 70px;
  }
}

@media (max-width: 760px) {
  .page-shell,
  .nav-shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .brand-crop {
    width: 225px;
    height: 52px;
  }

  .brand-crop img {
    width: 305px;
  }

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

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(3, 16, 29, 0.9) 0%, rgba(3, 16, 29, 0.62) 70%, rgba(3, 16, 29, 0.25) 100%);
  }

  .hero-content {
    align-self: flex-start;
    padding: 80px 0 230px;
  }

  h1 {
    font-size: 48px;
    line-height: 1.04;
  }

  h2 {
    font-size: 36px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    padding: 13px 0;
  }

  .proof-grid p {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 12px;
    padding: 5px 0;
    border: 0;
  }

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

  .proof-grid strong {
    font-size: 14px;
  }

  .proof-grid span {
    font-size: 12px;
  }

  .section {
    padding: 78px 0;
  }

  .intro-grid,
  .story-band,
  .interest-grid,
  .process-layout,
  .leadership-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 28px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .about-standards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-band {
    min-height: auto;
  }

  .story-image-wrap {
    min-height: 410px;
  }

  .story-copy {
    padding: 72px 16px;
  }

  .story-inner {
    width: min(100%, calc(var(--max-width) - 32px));
    margin-inline: auto;
  }

  .interest-grid article,
  .interest-grid article:last-child {
    min-height: 0;
    padding: 34px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .interest-index {
    margin-bottom: 24px;
  }

  .process-layout {
    gap: 48px;
  }

  .process-heading {
    position: static;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .leadership-image {
    height: 430px;
  }

  .leadership-grid {
    gap: 48px;
  }

  .contact-section {
    min-height: 540px;
    padding: 78px 0;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-grid nav {
    max-width: 280px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

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