:root {
  --plum: #5b123f;
  --plum-dark: #3c0829;
  --plum-light: #f3e8ef;
  --tan: #c79a57;
  --tan-light: #f7f0e5;
  --ink: #2a2230;
  --muted: #6c616b;
  --white: #fff;
  --line: #e6d9e0;
  --shadow: 0 18px 45px rgba(60, 8, 41, .10)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65
}

a {
  color: var(--plum);
  text-decoration: none
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: auto
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px)
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand img {
  width: 190px;
  height: auto
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px
}

.nav-links a {
  padding: 10px 12px;
  font-weight: 650;
  color: #4b3c47;
  border-radius: 8px
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--plum);
  background: var(--plum-light)
}

.nav-cta {
  background: var(--plum) !important;
  color: white !important
}

.menu-button {
  display: none;
  border: 0;
  background: var(--plum-light);
  color: var(--plum);
  font-size: 24px;
  padding: 8px 12px;
  border-radius: 8px
}

.hero,
.page-hero {
  background: linear-gradient(135deg, #fff 0%, var(--tan-light) 55%, var(--plum-light) 100%)
}

.hero {
  padding: 72px 0
}

.page-hero {
  padding: 72px 0
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--tan)
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--plum-dark);
  line-height: 1.14;
  margin: 0 0 16px
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  max-width: 850px
}

h2 {
  font-size: clamp(2rem, 3.3vw, 3.25rem)
}

h3 {
  font-size: 1.45rem
}

p {
  margin: 0 0 18px
}

.hero p,
.page-hero p {
  font-size: 1.18rem;
  max-width: 760px;
  color: #554851
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 9px;
  font-weight: 750;
  border: 2px solid var(--plum);
  transition: .2s
}

.button.primary,
.cta-band .button {
  background: var(--plum);
  color: white
}

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

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(60, 8, 41, .14)
}

section {
  padding: 76px 0
}

.section-soft {
  background: var(--plum-light)
}

.section-tan {
  background: var(--tan-light)
}

.section-plum {
  background: var(--plum-dark);
  color: white
}

.section-plum h2,
.section-plum h3 {
  color: white
}

.section-plum .eyebrow {
  color: #e7c38f
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.card {
  background: white;
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow)
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tan-light);
  color: var(--plum);
  font-weight: 850;
  margin-bottom: 18px
}

.hero-card,
.quote-panel {
  background: white;
  padding: 34px;
  border-radius: 16px;
  border-top: 5px solid var(--tan);
  box-shadow: var(--shadow)
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0
}

.hero-card li {
  display: flex;
  gap: 12px;
  margin: 13px 0
}

.check {
  color: var(--tan);
  font-weight: 900
}

.quote-panel blockquote {
  font-family: Georgia, serif;
  font-size: 1.55rem;
  color: var(--plum);
  margin: 0 0 12px
}

.quote-panel cite {
  font-style: normal;
  color: var(--muted)
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step
}

.step {
  position: relative;
  background: white;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid var(--line)
}

.step:before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--plum);
  color: white;
  font-weight: 800;
  margin-bottom: 16px
}

.cta-band {
  background: linear-gradient(120deg, var(--plum-dark), var(--plum));
  padding: 36px 40px;
  border-radius: 18px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.cta-band h2 {
  color: white;
  font-size: 2.2rem
}

.cta-band .button {
  background: var(--tan);
  border-color: var(--tan);
  color: var(--plum-dark);
  white-space: nowrap
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 950px;
  margin: auto
}

.team-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.team-photo {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  object-position: center top;
  background: var(--tan-light)
}

.team-content {
  padding: 30px
}

.team-title {
  font-weight: 800;
  color: var(--tan);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.form-full {
  grid-column: 1/-1
}

label {
  display: block;
  font-weight: 750;
  margin-bottom: 6px;
  color: var(--plum-dark)
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cdbfc7;
  border-radius: 8px;
  font: inherit
}

textarea {
  min-height: 140px
}

.site-footer {
  background: #2a071d;
  color: #eee3e9;
  padding: 55px 0 22px
}

.site-footer h4 {
  color: white
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 35px
}

.footer-logo {
  width: 180px;
  background: white;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 15px
}

.footer-links {
  display: grid;
  gap: 8px
}

.footer-links a {
  color: #eadce4
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin-top: 35px;
  padding-top: 20px;
  color: #cdbdc6;
  font-size: .9rem
}

@media(max-width:860px) {
  .menu-button {
    display: block
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    background: white;
    padding: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    border-radius: 12px;
    flex-direction: column;
    align-items: stretch
  }

  .nav-links.open {
    display: flex
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr
  }

  .cards,
  .steps {
    grid-template-columns: 1fr 1fr
  }

  .team-grid {
    grid-template-columns: 1fr
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column
  }

  .brand img {
    width: 155px
  }
}

@media(max-width:600px) {
  .container {
    width: min(100% - 28px, 1120px)
  }

  .hero {
    padding: 62px 0
  }

  .page-hero,
  section {
    padding: 55px 0
  }

  .cards,
  .steps,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .form-full {
    grid-column: auto
  }

  h1 {
    font-size: 2.55rem
  }

  .nav-wrap {
    min-height: 74px
  }
}


/* Leadership page */
.leadership-section {
  padding-bottom: 68px
}

.featured-team {
  max-width: 1120px;
  gap: 28px;
  align-items: start
}

.flow-card {
  display: block;
  padding: 28px;
  overflow: hidden
}

.flow-photo {
  float: left;
  width: 42%;
  max-width: 230px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 0 28px 18px 0;
  border-radius: 10px;
  background: transparent;
}

.flow-content {
  padding: 0
}

.flow-content h2 {
  font-size: clamp(1.75rem, 2.3vw, 2.35rem);
  margin-top: 5px
}

.flow-content p {
  margin-bottom: 18px
}

.flow-card:after {
  content: "";
  display: block;
  clear: both
}

.advisor-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  margin: 58px auto 30px;
  max-width: 960px
}

.advisor-heading span {
  height: 1px;
  background: var(--tan)
}

.advisor-heading h2 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  font-size: 1rem;
  color: var(--plum);
  white-space: nowrap
}

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  max-width: 900px;
  margin: auto;
  text-align: center
}

.advisor-photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 16px;
  border-radius: 8px;
  background: var(--tan-light)
}

.advisor-card h3 {
  font-size: 1.55rem;
  margin-bottom: 8px
}

.advisor-title {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-size: .78rem;
  color: var(--tan)
}

.advisor-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed #cdbfc7;
  color: var(--muted);
  font-weight: 700
}

@media(max-width:900px) {
  .flow-photo {
    width: 38%;
    max-width: 210px
  }

  .advisor-grid {
    gap: 24px
  }
}

@media(max-width:700px) {
  .flow-card {
    padding: 22px
  }

  .flow-photo {
    float: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 24px
  }

  .advisor-heading {
    grid-template-columns: 1fr
  }

  .advisor-heading span {
    display: none
  }

  .advisor-heading h2 {
    white-space: normal
  }

  .advisor-grid {
    grid-template-columns: 1fr
  }

  .advisor-photo {
    max-width: 240px
  }
}

/* Prevent page-to-page navigation movement */
html {
  scrollbar-gutter: stable
}

body {
  overflow-y: scroll
}

.brand {
  display: block;
  flex: 0 0 190px
}

.brand img {
  width: 190px;
  height: auto;
  display: block
}

.nav-wrap {
  height: 88px;
  min-height: 88px
}

.nav-links a {
  box-sizing: border-box
}

@media(max-width:860px) {
  .brand {
    flex-basis: 155px
  }

  .brand img {
    width: 155px
  }
}

@media(max-width:600px) {
  .nav-wrap {
    height: 74px;
    min-height: 74px
  }
}