@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-display: block;
  font-weight: 600;
  src: url("/fonts/barlow-condensed-600.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-display: block;
  font-weight: 700;
  src: url("/fonts/barlow-condensed-700.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("/fonts/inter-500.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("/fonts/inter-600.woff2") format("woff2");
}

:root {
  --cream: #f7f3ec;
  --cream-deep: #f1ece4;
  --navy: #073763;
  --navy-deep: #052f58;
  --steel-blue: #3f6fa1;
  --pale-blue: #b8cbe0;
  --sage: #9bae8d;
  --sage-light: #d2ddce;
  --contour: #d8d0c5;
  --text: #1f2933;
  --body-font: "Inter", Arial, sans-serif;
  --display-font: "Barlow Condensed", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--body-font);
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: var(--cream);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 96px, 1340px);
  margin: 0 auto;
  padding-top: 27px;
}

.wordmark {
  display: inline-flex;
  color: var(--navy);
  text-decoration: none;
}

.wordmark .stacked-brand {
  font-size: 22px;
  letter-spacing: 0.035em;
  line-height: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.linkedin-text-link {
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.linkedin-text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.linkedin-button {
  position: relative;
  z-index: 5;
  display: inline-flex;
  width: fit-content;
  min-height: 61px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--navy);
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.1;
  padding: 16px 24px;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease,
    box-shadow 180ms ease;
}

.linkedin-button:hover {
  background: var(--navy-deep);
  box-shadow: 0 8px 22px rgb(5 47 88 / 18%);
  transform: translateY(-2px);
}

.linkedin-button:focus-visible,
.linkedin-text-link:focus-visible,
.wordmark:focus-visible,
.personal-link:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 4px;
}

.external-link-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.7;
}

.header-button {
  min-height: 51px;
  padding: 12px 20px;
  font-size: 17px;
}

.header-button .external-link-icon {
  width: 21px;
  height: 21px;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: min(100% - 96px, 1340px);
  margin: 0 auto;
  padding-top: 76px;
}

.hero-content h1 {
  margin: 0;
}

.stacked-brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--navy);
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.76;
  text-transform: uppercase;
}

.stacked-brand span {
  display: block;
}

.hero-brand {
  flex-direction: row;
  gap: 0.16em;
  font-size: clamp(62px, 7vw, 104px);
  line-height: 0.88;
  white-space: nowrap;
}

.hero-principle {
  max-width: 760px;
  margin: 29px 0 0;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: clamp(34px, 3.2vw, 47px);
  font-weight: 600;
  line-height: 1.02;
}

.hero-framework {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--steel-blue);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-positioning {
  max-width: 700px;
  margin: 16px 0 29px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
}

.contours {
  position: absolute;
  z-index: 1;
  width: 620px;
  height: 440px;
  border-radius: 47% 53% 38% 62%;
  background: repeating-radial-gradient(
    ellipse at 70% 38%,
    transparent 0 23px,
    rgb(143 159 125 / 20%) 24px 25px,
    transparent 26px 46px
  );
  opacity: 0.72;
  transform: rotate(-8deg);
}

.hero-contours {
  top: 66px;
  right: -104px;
}

.terrain {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 480px;
  overflow: hidden;
  pointer-events: none;
}

.terrain-layer {
  position: absolute;
  right: -13%;
  bottom: -10%;
  width: 128%;
  border-radius: 54% 41% 0 0 / 82% 74% 0 0;
  transform-origin: bottom right;
}

.terrain-layer::after {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
    ellipse at 67% 50%,
    transparent 0 38px,
    rgb(255 255 255 / 8%) 39px 40px,
    transparent 41px 70px
  );
  content: "";
}

.terrain-sage-light {
  height: 80%;
  background: var(--sage-light);
  transform: translateX(-7%) rotate(-3deg);
}

.terrain-sage {
  right: -20%;
  bottom: -14%;
  height: 69%;
  background: var(--sage);
  opacity: 0.87;
  transform: translateX(3%) rotate(-5deg);
}

.terrain-blue-light {
  right: -7%;
  bottom: -12%;
  height: 58%;
  background: var(--pale-blue);
  transform: translateX(8%) rotate(-2deg);
}

.terrain-blue {
  right: -15%;
  bottom: -9%;
  height: 48%;
  background: var(--steel-blue);
  transform: translateX(13%) rotate(-4deg);
}

.terrain-navy {
  right: -18%;
  bottom: -6%;
  height: 38%;
  background: var(--navy);
  transform: translateX(18%) rotate(-5deg);
}

.guidance {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--cream);
  padding: 74px 0 235px;
}

.guidance-inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(560px, 1.45fr);
  gap: clamp(70px, 9vw, 150px);
  width: min(100% - 112px, 1280px);
  margin: 0 auto;
}

.guidance-intro {
  padding-top: 8px;
}

.section-eyebrow {
  margin: 0;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sage-rule {
  width: 124px;
  height: 2px;
  margin: 28px 0 24px;
  background: var(--sage);
}

.guidance-intro h2 {
  max-width: 400px;
  margin: 0;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 45px;
  font-weight: 600;
  line-height: 1.18;
}

.guidance-intro p {
  max-width: 385px;
  margin: 21px 0 0;
  font-size: 17px;
  line-height: 1.65;
}

.resources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--sage);
}

.resource {
  min-height: 160px;
  padding: 31px 42px 26px;
  border-bottom: 1px solid var(--sage);
}

.resource:nth-child(odd) {
  padding-left: 26px;
  border-right: 1px solid var(--sage);
}

.resource h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.06;
}

.resource p {
  max-width: 300px;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.topic-band {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  min-height: 67px;
  border-bottom: 1px solid var(--sage);
  padding: 0 24px;
}

.topic-band span {
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.guidance-contours {
  top: -146px;
  right: -78px;
}

.guidance-terrain {
  z-index: 2;
  height: 260px;
}

.guidance-terrain .terrain-layer {
  bottom: -27%;
  width: 133%;
}

.guidance-terrain .terrain-sage-light {
  height: 116%;
}

.guidance-terrain .terrain-sage {
  height: 100%;
}

.guidance-terrain .terrain-blue-light {
  height: 86%;
}

.guidance-terrain .terrain-blue {
  height: 72%;
}

.guidance-terrain .terrain-navy {
  height: 60%;
}

.audience {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  padding: 92px 0 96px;
}

.audience-inner {
  width: min(100% - 112px, 1180px);
  margin: 0 auto;
}

.audience-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: end;
  gap: 60px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgb(210 221 206 / 45%);
}

.audience .section-eyebrow {
  color: var(--sage-light);
  font-size: 22px;
}

.audience-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(42px, 4.5vw, 63px);
  font-weight: 600;
  line-height: 0.98;
}

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

.audience-card {
  min-height: 250px;
  padding: 35px 34px 8px;
  border-right: 1px solid rgb(210 221 206 / 35%);
}

.audience-card:first-child {
  padding-left: 0;
}

.audience-card:last-child {
  border-right: 0;
}

.audience-card > span {
  color: var(--sage);
  font-family: var(--display-font);
  font-size: 17px;
  letter-spacing: 0.08em;
}

.audience-card h3 {
  margin: 35px 0 12px;
  font-family: var(--display-font);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
}

.audience-card p {
  max-width: 300px;
  margin: 0;
  color: rgb(247 243 236 / 82%);
  font-size: 15px;
  line-height: 1.6;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
  padding: 104px 0;
}

.about-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 180px minmax(0, 700px);
  align-items: center;
  gap: clamp(48px, 6vw, 84px);
  width: min(100% - 112px, 1150px);
  margin: 0 auto;
}

.about-photo-frame {
  position: relative;
  width: 180px;
}

.about-photo-frame::after {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 52%;
  height: 52%;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  content: "";
}

.about-photo {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgb(7 55 99 / 14%);
  border-radius: 6px;
  box-shadow: 0 22px 55px rgb(5 47 88 / 14%);
}

.about-copy {
  position: relative;
}

.about-eyebrow {
  margin: 0 0 14px;
  color: var(--steel-blue);
  font-family: var(--display-font);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 580px;
  margin: 0;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: clamp(43px, 4.4vw, 62px);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 0.98;
}

.about-copy .sage-rule {
  margin: 27px 0 25px;
}

.about-copy > p:not(.about-eyebrow) {
  max-width: 610px;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
}

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

.personal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--sage);
  text-underline-offset: 5px;
}

.personal-link .external-link-icon {
  width: 18px;
  height: 18px;
}

.about-contours {
  top: -148px;
  right: -110px;
  opacity: 0.48;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}

.footer-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr minmax(430px, 0.78fr);
  align-items: center;
  gap: 96px;
  width: min(100% - 112px, 1110px);
  min-height: 240px;
  margin: 0 auto;
}

.site-footer h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 600;
  line-height: 1.04;
}

.site-footer p {
  max-width: 510px;
  margin: 13px 0 0;
  color: rgb(247 243 236 / 78%);
  font-size: 15px;
  line-height: 1.55;
}

.footer-rule {
  width: 110px;
  height: 2px;
  margin-top: 20px;
  background: var(--sage);
}

.footer-button {
  width: 100%;
  min-height: 92px;
  border-color: var(--cream);
  background: var(--cream);
  color: var(--navy);
  font-size: 28px;
}

.footer-button:hover {
  background: #fff;
}

.footer-contours {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
    ellipse at 3% 70%,
    transparent 0 31px,
    rgb(155 174 141 / 16%) 32px 33px,
    transparent 34px 62px
  );
  opacity: 0.6;
}

@media (max-width: 980px) {
  .hero {
    min-height: 860px;
  }

  .site-header,
  .hero-content {
    width: min(100% - 56px, 900px);
  }

  .site-nav {
    gap: 18px;
  }

  .linkedin-text-link {
    display: none;
  }

  .hero-content {
    padding-top: 105px;
  }

  .hero-brand {
    font-size: clamp(52px, 8vw, 78px);
  }

  .guidance {
    padding-top: 68px;
  }

  .guidance-inner {
    grid-template-columns: 1fr;
    gap: 54px;
    width: min(100% - 64px, 760px);
  }

  .guidance-intro {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    column-gap: 50px;
  }

  .section-eyebrow,
  .sage-rule {
    grid-column: 1;
  }

  .guidance-intro h2,
  .guidance-intro p {
    grid-column: 2;
  }

  .guidance-intro h2 {
    grid-row: 1;
    align-self: end;
  }

  .guidance-intro p {
    grid-row: 2;
  }

  .footer-inner {
    width: min(100% - 64px, 760px);
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 0;
  }

  .audience-inner {
    width: min(100% - 64px, 820px);
  }

  .audience-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about {
    padding: 84px 0;
  }

  .about-inner {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 44px;
    width: min(100% - 64px, 820px);
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 800px;
  }

  .site-header,
  .hero-content {
    width: calc(100% - 40px);
  }

  .site-header {
    padding-top: 19px;
  }

  .wordmark {
    font-size: inherit;
  }

  .wordmark .stacked-brand {
    font-size: 18px;
  }

  .header-button {
    min-height: 44px;
    max-width: 158px;
    gap: 8px;
    padding: 9px 12px;
    font-size: 14px;
    text-align: center;
  }

  .header-button .external-link-icon {
    width: 17px;
    height: 17px;
  }

  .hero-content {
    padding-top: 82px;
  }

  .hero-brand {
    gap: 0.13em;
    font-size: clamp(30px, 9.5vw, 42px);
  }

  .hero-principle {
    max-width: 520px;
    margin-top: 25px;
    font-size: clamp(31px, 9.6vw, 40px);
  }

  .hero-framework {
    font-size: 16px;
  }

  .hero-positioning {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.52;
  }

  .hero-content > .linkedin-button {
    max-width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    font-size: 17px;
    text-align: center;
  }

  .hero-contours {
    top: 84px;
    right: -315px;
  }

  .hero-terrain {
    height: 325px;
  }

  .terrain-layer {
    right: -70%;
    width: 190%;
  }

  .guidance {
    min-height: 1110px;
    padding: 58px 0 210px;
  }

  .guidance-inner {
    width: calc(100% - 40px);
    gap: 42px;
  }

  .guidance-intro {
    display: block;
  }

  .sage-rule {
    margin: 23px 0 21px;
  }

  .guidance-intro h2 {
    font-size: 33px;
  }

  .guidance-intro p {
    font-size: 16px;
  }

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

  .resource {
    min-height: 0;
    padding: 24px 4px 26px;
  }

  .resource:nth-child(odd) {
    padding-left: 4px;
    border-right: 0;
  }

  .resource h3 {
    font-size: 25px;
  }

  .topic-band {
    grid-column: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 22px;
    padding: 19px 4px;
  }

  .topic-band span {
    font-size: 18px;
  }

  .guidance-terrain {
    height: 210px;
  }

  .audience {
    padding: 66px 0 70px;
  }

  .audience-inner {
    width: calc(100% - 40px);
  }

  .audience-heading {
    padding-bottom: 30px;
  }

  .audience-heading h2 {
    font-size: 42px;
  }

  .audience .section-eyebrow {
    font-size: 20px;
  }

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

  .audience-card,
  .audience-card:first-child {
    min-height: 0;
    padding: 27px 0 30px;
    border-right: 0;
    border-bottom: 1px solid rgb(210 221 206 / 30%);
  }

  .audience-card:last-child {
    border-bottom: 0;
  }

  .audience-card h3 {
    margin-top: 15px;
  }

  .about {
    padding: 68px 0 76px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 45px;
    width: calc(100% - 40px);
  }

  .about-photo-frame {
    width: 145px;
    margin: 0 auto;
  }

  .about-photo-frame::after {
    right: -10px;
    bottom: -10px;
  }

  .about-eyebrow {
    font-size: 15px;
    line-height: 1.35;
  }

  .about-copy h2 {
    font-size: 43px;
  }

  .about-copy > p:not(.about-eyebrow) {
    font-size: 15.5px;
    line-height: 1.66;
  }

  .site-footer h2 {
    font-size: 36px;
  }

  .footer-inner {
    width: calc(100% - 40px);
    gap: 30px;
    padding: 52px 0;
  }

  .footer-button {
    min-height: 76px;
    font-size: 22px;
    padding: 16px;
    text-align: center;
  }
}

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

  .linkedin-button {
    transition: none;
  }

  .linkedin-button:hover {
    transform: none;
  }
}
