@import url('../fonts/gf.css');

:root {
  --black: #080909;
  --charcoal: #111212;
  --charcoal-soft: #191918;
  --ink: #171716;
  --ivory: #f5f2ec;
  --ivory-deep: #ece6dc;
  --paper: #fbfaf7;
  --white: #ffffff;
  --gold: #c7a66c;
  --gold-deep: #a98750;
  --muted: #77736d;
  --border: #ddd7cd;
  --shell: min(100% - 96px, 1710px);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: #111;
  background: #fff;
  transform: translateY(-160%);
}

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

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.utility-bar {
  position: relative;
  z-index: 40;
  height: 38px;
  color: rgba(255, 255, 255, 0.78);
  background: #020303;
}

.utility-inner {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-contact {
  display: flex;
  align-items: center;
  gap: 34px;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.025em;
  transition: color 180ms ease;
}

.utility-link:hover,
.utility-link:focus-visible {
  color: var(--gold);
}

.utility-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.55;
}

.utility-area {
  margin: 0;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-hero {
  position: relative;
  height: calc(100svh - 124px);
  min-height: 790px;
  max-height: 980px;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.hero-backdrop,
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 32%; /* Keep the 54% horizontal crop; reveal more top image so Kristen sits below navigation. */
  filter: saturate(0.88) brightness(0.72) contrast(1.05);
  transform: scale(1.002);
}

.hero-shade {
  background:
    radial-gradient(circle at 73% 37%, rgba(205, 164, 94, 0.11), transparent 27%),
    linear-gradient(90deg, rgba(4, 5, 5, 0.96) 0%, rgba(5, 6, 6, 0.87) 29%, rgba(5, 6, 6, 0.53) 47%, rgba(5, 6, 6, 0.12) 72%, rgba(5, 6, 6, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.01) 49%, rgba(0, 0, 0, 0.39) 100%);
}

.hero-shell {
  position: relative;
  z-index: 3;
  height: 100%;
}

.nav-row {
  height: 116px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand-mark {
  width: 58px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-type {
  display: grid;
  align-content: center;
}

.brand-main {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-rule {
  width: 100%;
  height: 1px;
  margin: 9px 0 6px;
  background: linear-gradient(90deg, transparent, var(--gold) 16%, var(--gold) 84%, transparent);
}

.brand-sub {
  color: var(--gold);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 1.35vw, 27px);
}

.main-nav a {
  position: relative;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: #fff;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 25px;
  height: 2px;
  background: var(--gold);
}

.nav-cta,
.footer-button {
  display: inline-grid;
  place-items: center;
  height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(199, 166, 108, 0.75);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.footer-button:hover,
.footer-button:focus-visible {
  border-color: var(--gold);
  color: #111;
  background: var(--gold);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero-copy {
  width: min(760px, 50vw);
  margin-top: clamp(56px, 7.2vh, 100px);
}

.hero-eyebrow {
  margin: 0 0 17px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(79px, 5.75vw, 111px);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: -0.025em;
}

.hero-intro {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15.5px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 29px;
}

.btn {
  min-height: 54px;
  display: inline-grid;
  place-items: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn-gold {
  color: #fff;
  background: var(--gold-deep);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gold);
  background: rgba(199, 166, 108, 0.12);
}

.hero-line {
  width: 37px;
  height: 2px;
  margin-top: 31px;
  background: var(--gold);
}

.market-note {
  margin-top: 16px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.market-note span {
  margin-inline: 9px;
  color: var(--gold);
}

.pathway-section {
  position: relative;
  z-index: 10;
  margin-top: -72px;
}

.pathway-card {
  width: min(100% - 150px, 1660px);
  margin-inline: auto;
  padding: 20px 28px 25px;
  border-radius: 4px;
  background: rgba(251, 250, 247, 0.985);
  box-shadow: 0 13px 35px rgba(30, 25, 18, 0.16);
}

.pathway-card h2 {
  margin: 0 0 17px;
  color: var(--gold-deep);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 215px;
  gap: 15px;
}

.pathway-item {
  min-width: 0;
  height: 74px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 0 19px;
  border: 1px solid #e2ddd4;
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.pathway-item:hover,
.pathway-item:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 8px 22px rgba(39, 32, 22, 0.08);
  transform: translateY(-2px);
}

.pathway-item svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pathway-item span {
  min-width: 0;
  display: grid;
}

.pathway-item small {
  margin-bottom: 4px;
  color: #8a857e;
  font-size: 7.5px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pathway-item strong {
  overflow: hidden;
  color: #252423;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pathway-item i {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 20px;
  font-style: normal;
}

.pathway-submit {
  height: 74px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  color: #fff;
  background: #242322;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.pathway-submit:hover,
.pathway-submit:focus-visible {
  background: var(--gold-deep);
}

.market-section {
  padding: 63px 0 62px;
  background: var(--paper);
}

.section-heading {
  width: min(100% - 48px, 920px);
  margin: 0 auto 35px;
  text-align: center;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--gold-deep);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 31px;
  height: 1px;
  margin: 12px auto 15px;
  background: var(--gold-deep);
}

.section-heading > span {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  color: #77716a;
  font-size: 13px;
  line-height: 1.65;
}

.market-grid {
  width: min(100% - 110px, 1650px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.market-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dfdbd3;
  background: #fff;
  box-shadow: 0 4px 14px rgba(44, 38, 30, 0.055);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.market-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 31px rgba(44, 38, 30, 0.12);
}

.market-image-link {
  position: relative;
  display: block;
  overflow: hidden;
}

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

.market-card:hover .market-image-link img {
  transform: scale(1.025);
}

.market-badge {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(4px);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-body {
  padding: 22px 22px 25px;
}

.market-kicker {
  margin: 0 0 7px;
  color: var(--gold-deep);
  font-size: 7.5px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.market-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.05;
}

.market-body > p:not(.market-kicker) {
  min-height: 62px;
  margin: 13px 0 18px;
  color: #6f6b65;
  font-size: 11.5px;
  line-height: 1.62;
}

.market-body > a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 8.5px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-body > a span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 19px;
}

.proof-section {
  padding: 47px 0 50px;
  border-top: 1px solid #ded8ce;
  border-bottom: 1px solid #ded8ce;
  background: var(--ivory);
  text-align: center;
}

.proof-inner > p {
  margin: 0 0 10px;
  color: var(--gold-deep);
  font-size: 8.5px;
  font-weight: 650;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.proof-inner blockquote {
  max-width: 1120px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(28px, 2.35vw, 43px);
  font-weight: 500;
  line-height: 1.16;
}

.proof-inner > .proof-author {
  display: block;
  margin-top: 17px;
  color: #746f68;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.6;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-inner > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 19px;
  font-size: 8.5px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-inner > a span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 19px;
}

.team-section {
  min-height: 540px;
  display: grid;
  grid-template-columns: 34% 66%;
  background: var(--black);
}

.team-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #d9d0c3;
}

.team-visual picture,
.team-visual img {
  width: 100%;
  height: 100%;
}

.team-visual img {
  object-fit: cover;
  object-position: 50% 46%;
  filter: saturate(0.88) contrast(1.02) brightness(0.9);
}

.team-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 47%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.team-caption {
  position: absolute;
  z-index: 2;
  left: 42px;
  right: 42px;
  bottom: 34px;
  color: #fff;
}

.team-caption p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 8.5px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.team-caption h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 500;
  line-height: 0.98;
}

.strategy-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 38px 34px 30px;
  color: #fff;
  background:
    radial-gradient(circle at 65% 25%, rgba(199, 166, 108, 0.055), transparent 30%),
    linear-gradient(135deg, #171716, #090a0a 75%);
}

.strategy-intro {
  max-width: 1100px;
  margin: 0 auto 4px;
  padding-inline: 18px;
  text-align: center;
}

.panel-label {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.strategy-intro > p:last-child {
  max-width: 930px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.73);
  font-size: 12.5px;
  line-height: 1.68;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.value-grid article {
  min-width: 0;
  min-height: 168px;
  padding: 28px 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.value-grid article:nth-child(2n) {
  border-right: 0;
}

.value-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.value-grid svg {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-grid h3 {
  margin: 0 0 11px;
  color: var(--gold);
  font-size: 10.8px;
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-grid p {
  max-width: 30ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10.7px;
  line-height: 1.72;
}

.strategy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 10px 0;
}

.strategy-footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.strategy-footer-tags span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.strategy-footer-link {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.strategy-footer-link span {
  margin-left: 6px;
}

.market-positioning {
  min-height: 135px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  border-bottom: 1px solid #ded8ce;
  background: var(--ivory);
}

.positioning-item {
  position: relative;
  display: grid;
  place-content: center;
  padding: 22px 18px;
  text-align: center;
}

.positioning-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  right: 0;
  bottom: 27px;
  width: 1px;
  background: #d7d0c5;
}

.positioning-item strong {
  color: #8e6f42;
  font-family: var(--serif);
  font-size: clamp(28px, 2.45vw, 47px);
  font-weight: 500;
  line-height: 1;
}

.positioning-item span {
  margin-top: 10px;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cta-section {
  min-height: 405px;
  display: grid;
  grid-template-columns: 59% 41%;
  background: #0c0d0d;
}

.cta-image {
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  filter: saturate(0.82) brightness(0.82) contrast(1.05);
}

.cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 52px clamp(46px, 5vw, 96px);
  color: #fff;
  background:
    radial-gradient(circle at 40% 40%, rgba(199, 166, 108, 0.065), transparent 34%),
    linear-gradient(125deg, #171817, #080909 72%);
}

.cta-copy > p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.cta-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(47px, 3.55vw, 69px);
  font-weight: 400;
  line-height: 0.96;
}

.cta-copy > span {
  max-width: 520px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.72;
}

.cta-copy .btn {
  min-width: 220px;
  margin-top: 25px;
}

.cta-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-text-link span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: #090a0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.65fr 0.85fr 1.25fr;
  padding: 52px 0 43px;
}

.footer-grid > div,
.footer-grid > nav {
  min-width: 0;
  padding-inline: 37px;
}

.footer-grid > :first-child {
  padding-left: 0;
}

.footer-grid > :last-child {
  padding-right: 0;
}

.footer-grid > :not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo .brand-mark {
  width: 52px;
  height: 46px;
}

.footer-logo .brand-main {
  font-size: 22px;
}

.footer-logo .brand-sub {
  font-size: 7.5px;
}

.footer-brand > p {
  max-width: 350px;
  margin: 26px 0 24px;
  font-size: 12px;
  line-height: 1.72;
}

.socials {
  display: flex;
  gap: 11px;
}

.socials a {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 166, 108, 0.58);
  border-radius: 50%;
  transition: background 180ms ease, border-color 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  border-color: var(--gold);
  background: rgba(199, 166, 108, 0.12);
}

.socials svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-col h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  margin: 0;
  color: rgba(255, 255, 255, 0.71);
  font-size: 11px;
  line-height: 1.5;
  transition: color 180ms ease;
}

.footer-col > a:hover,
.footer-col > a:focus-visible,
.footer-col p a:hover,
.footer-col p a:focus-visible {
  color: #fff;
}

.footer-contact p {
  width: 100%;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 5px;
}

.footer-contact p > a {
  align-self: center;
}

.footer-contact p span {
  display: grid;
  gap: 2px;
}

.footer-contact p strong {
  color: var(--gold);
  font-size: 7.5px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
}

.footer-button {
  width: 100%;
  max-width: 265px;
  margin-top: 13px;
}

.brokerage-note {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 8.5px;
  line-height: 1.5;
}

.brokerage-note span:first-child {
  color: var(--gold);
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8.5px;
}

.footer-bottom a {
  margin-left: 25px;
}

@media (max-width: 1500px) {
  :root {
    --shell: min(100% - 64px, 1380px);
  }

  .site-hero {
    min-height: 780px;
  }

  .nav-row {
    gap: 25px;
  }

  .brand-main {
    font-size: 22px;
  }

  .brand-mark {
    width: 52px;
    height: 46px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 8.5px;
  }

  .nav-cta {
    padding-inline: 16px;
    font-size: 8px;
  }

  .pathway-card {
    width: calc(100% - 96px);
  }

  .pathway-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) 190px;
    gap: 11px;
  }

  .pathway-item {
    padding-inline: 14px;
    gap: 11px;
  }

  .market-grid {
    width: calc(100% - 74px);
  }

  .value-grid article {
    padding-inline: 15px;
  }

  .footer-grid > div,
  .footer-grid > nav {
    padding-inline: 28px;
  }
}

@media (max-width: 1180px) {
  :root {
    --shell: calc(100% - 48px);
  }

  .main-nav,
  .nav-row > .nav-cta {
    display: none;
  }

  .nav-row {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(199, 166, 108, 0.55);
    color: #fff;
    background: rgba(0, 0, 0, 0.22);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

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

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

  .mobile-menu {
    position: absolute;
    z-index: 20;
    top: 98px;
    right: 0;
    width: min(370px, 100%);
    padding: 12px 22px 22px;
    border-top: 1px solid rgba(199, 166, 108, 0.45);
    background: rgba(8, 9, 9, 0.97);
    backdrop-filter: blur(12px);
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .mobile-menu a {
    padding: 14px 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-hero {
    height: 770px;
    min-height: 0;
    max-height: none;
  }

  .hero-photo {
    object-position: 64% 32%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 5, 5, 0.97) 0%, rgba(5, 6, 6, 0.88) 39%, rgba(5, 6, 6, 0.45) 72%, rgba(5, 6, 6, 0.18) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.13), rgba(0, 0, 0, 0.38));
  }

  .hero-copy {
    width: min(650px, 70vw);
    margin-top: 45px;
  }

  .hero-copy h1 {
    font-size: 83px;
  }

  .pathway-section {
    margin-top: -42px;
  }

  .pathway-card {
    width: calc(100% - 48px);
    padding: 22px;
  }

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

  .pathway-submit {
    grid-column: 1 / -1;
  }

  .market-grid {
    width: calc(100% - 48px);
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .market-image-link img {
    height: 265px;
  }

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

  .team-visual {
    min-height: 500px;
  }

  .team-visual img {
    object-position: center 37%;
  }

  .strategy-panel {
    padding: 44px 34px 34px;
  }






  .strategy-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  .strategy-footer-link {
    margin-top: 2px;
  }
  .market-positioning {
    grid-template-columns: 1fr 1fr;
  }

  .positioning-item:nth-child(2)::after {
    display: none;
  }

  .positioning-item:nth-child(-n + 2) {
    border-bottom: 1px solid #d7d0c5;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-image {
    height: 390px;
  }

  .cta-copy {
    min-height: 350px;
    padding: 52px 10vw;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 54px;
  }

  .footer-grid > div,
  .footer-grid > nav {
    padding: 0;
    border-left: 0 !important;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .utility-bar,
  .utility-inner {
    height: 34px;
  }

  .utility-contact {
    gap: 0;
  }

  .utility-contact .utility-link:nth-child(2),
  .utility-area {
    display: none;
  }

  .utility-link {
    font-size: 10.5px;
  }

  .site-hero {
    height: 705px;
  }

  .nav-row {
    height: 94px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 43px;
    height: 38px;
  }

  .brand-main {
    font-size: 15px;
    letter-spacing: 0.11em;
  }

  .brand-rule {
    margin: 6px 0 5px;
  }

  .brand-sub {
    font-size: 5.7px;
    letter-spacing: 0.32em;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
  }

  .mobile-menu {
    top: 82px;
    width: 100%;
  }

  .hero-photo {
    object-position: 69% 36%;
    filter: saturate(0.83) brightness(0.63) contrast(1.06);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 5, 5, 0.96) 0%, rgba(5, 6, 6, 0.84) 56%, rgba(5, 6, 6, 0.37) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45));
  }

  .hero-copy {
    width: 100%;
    margin-top: 42px;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
    font-size: 8.5px;
  }

  .hero-copy h1 {
    font-size: 56px;
    line-height: 0.91;
  }

  .hero-intro {
    max-width: 92%;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.58;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
    margin-top: 23px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 51px;
  }

  .hero-line {
    margin-top: 24px;
  }

  .market-note {
    display: none;
  }

  .pathway-section {
    margin-top: -31px;
  }

  .pathway-card {
    width: calc(100% - 18px);
    padding: 20px 13px 15px;
  }

  .pathway-card h2 {
    margin-bottom: 16px;
    font-size: 12px;
  }

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

  .pathway-item,
  .pathway-submit {
    height: 66px;
  }

  .pathway-submit {
    grid-column: auto;
  }

  .market-section {
    padding: 50px 0 48px;
  }

  .section-heading {
    width: calc(100% - 32px);
    margin-bottom: 27px;
  }

  .section-heading h2 {
    font-size: 40px;
    line-height: 0.97;
  }

  .section-heading > span {
    font-size: 12px;
  }

  .market-grid {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .market-image-link img {
    height: 230px;
  }

  .market-body > p:not(.market-kicker) {
    min-height: 0;
  }

  .proof-section {
    padding: 42px 0;
  }

  .proof-inner blockquote {
    font-size: 35px;
  }

  .proof-inner > .proof-author {
    font-size: 11.5px;
  }

  .team-visual {
    min-height: 520px;
  }

  .team-visual img {
    object-position: center top;
  }

  .team-caption {
    left: 22px;
    right: 22px;
    bottom: 25px;
  }

  .team-caption h2 {
    font-size: 34px;
  }

  .strategy-panel {
    gap: 24px;
    padding: 43px 21px 35px;
  }

  .strategy-intro {
    padding: 0;
    text-align: left;
  }

  .strategy-intro > p:last-child {
    font-size: 11.5px;
  }





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

  .value-grid article {
    min-height: 0;
    padding: 29px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .value-grid p {
    max-width: 31ch;
  }

  .strategy-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 0;
  }

  .strategy-footer-tags {
    gap: 10px;
  }

  .strategy-footer-link {
    font-size: 9.5px;
  }

  .market-positioning {
    grid-template-columns: 1fr 1fr;
  }

  .positioning-item {
    min-height: 112px;
    padding: 20px 10px;
  }

  .positioning-item strong {
    font-size: 27px;
  }

  .positioning-item span {
    font-size: 7px;
  }

  .cta-image {
    height: 270px;
  }

  .cta-image img {
    object-position: 49% center;
  }

  .cta-copy {
    min-height: 370px;
    padding: 42px 25px;
  }

  .cta-copy h2 {
    font-size: 46px;
  }

  .cta-copy > span {
    font-size: 11.5px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 43px 0 36px;
  }

  .footer-brand > p {
    max-width: 34ch;
  }

  .footer-button {
    max-width: none;
  }

  .brokerage-note,
  .footer-bottom {
    height: auto;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }

  .footer-bottom {
    gap: 14px;
  }

  .footer-bottom span:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-bottom a {
    margin-left: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* V3 content refinements */
.positioning-item strong {
  white-space: nowrap;
}
.positioning-item span {
  max-width: 29ch;
  margin-inline: auto;
  line-height: 1.45;
}
@media (max-width: 760px) {
  .proof-inner blockquote { font-size: 27px; }
  .positioning-item strong { white-space: normal; }
}

/* ========================================================================== 
   V6 — Purposeful typography system
   A restrained six-level scale replaces isolated one-off sizes. Display type
   remains editorial; labels, body copy, cards, controls, and legal text now
   repeat predictably throughout the page.
   ========================================================================== */
:root {
  --type-micro: 10px;
  --type-label: 11px;
  --type-small: 13.5px;
  --type-body: 15px;
  --type-lead: 16.5px;
  --type-card-title: 30px;
  --type-section-title: clamp(48px, 3vw, 54px);
  --type-panel-title: clamp(38px, 2.45vw, 44px);
  --tracking-label: 0.18em;
  --tracking-action: 0.12em;
  --leading-body: 1.68;
}

/* Utility, navigation, controls, and recurring labels */
.utility-area,
.hero-eyebrow,
.market-note,
.section-heading > p,
.proof-inner > p,
.team-caption p,
.panel-label,
.cta-copy > p,
.footer-col h3 {
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
}

.main-nav a,
.nav-cta,
.btn,
.pathway-submit,
.market-body > a,
.proof-inner > a,
.strategy-footer-link,
.cta-text-link {
  font-size: var(--type-label);
  letter-spacing: var(--tracking-action);
}

/* Hero and page-level editorial hierarchy */
.hero-copy h1 {
  font-size: clamp(82px, 5.45vw, 106px);
  line-height: 0.91;
}

.hero-intro {
  font-size: var(--type-lead);
  line-height: 1.68;
}

.pathway-card h2 {
  font-size: 14px;
  letter-spacing: 0.21em;
}

.pathway-item small,
.market-badge,
.market-kicker {
  font-size: var(--type-micro);
  letter-spacing: 0.13em;
}

.pathway-item strong {
  font-size: 14px;
  line-height: 1.3;
}

/* Section headings and explanatory copy */
.section-heading h2 {
  font-size: var(--type-section-title);
}

.section-heading > span {
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.market-body h3 {
  font-size: var(--type-card-title);
  line-height: 1.08;
}

.market-body > p:not(.market-kicker) {
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.proof-inner blockquote {
  font-size: var(--type-panel-title);
  line-height: 1.14;
}

.proof-inner > .proof-author {
  font-size: var(--type-label);
}

/* Team section */
.team-caption h2 {
  font-size: 44px;
  line-height: 1;
}

.strategy-intro > p:last-child {
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.value-grid h3 {
  font-size: 12.5px;
  line-height: 1.48;
}

.value-grid p {
  font-size: 14px;
  line-height: var(--leading-body);
}

.strategy-footer-tags span {
  font-size: 10px;
  letter-spacing: 0.16em;
}

/* Recognition, CTA, and footer */
.positioning-item span {
  font-size: 10px;
  line-height: 1.45;
}

.cta-copy h2 {
  font-size: clamp(50px, 3.35vw, 65px);
  line-height: 0.98;
}

.cta-copy > span {
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.footer-brand > p {
  font-size: 13.5px;
  line-height: var(--leading-body);
}

.footer-col a,
.footer-col p {
  font-size: var(--type-small);
  line-height: 1.55;
}

.footer-contact p strong {
  font-size: 9.5px;
}

.brokerage-note,
.footer-bottom {
  font-size: 10px;
}

/* Keep the portrait below navigation at every crop. The hero itself supplies
   the quiet dark header background, while the photograph begins only after
   the navigation safe zone. Top-aligned cropping prevents cover mode from
   pulling Kristen's head back underneath the header on shorter screens. */
.hero-photo {
  top: 116px;
  right: 0;
  bottom: auto;
  left: 0;
  height: calc(100% - 116px);
  object-position: 54% 0;
}

@media (max-width: 1500px) {
  .main-nav a {
    font-size: 10px;
  }

  .nav-cta {
    font-size: 10px;
  }
}

@media (max-width: 1180px) {
  .hero-photo {
    top: 116px;
    height: calc(100% - 116px);
    object-position: 64% 0;
  }
}

@media (max-width: 720px) {
  .hero-eyebrow {
    font-size: 10px;
  }

  .hero-copy h1 {
    font-size: 54px;
    line-height: 0.94;
  }

  .hero-intro {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .pathway-card h2 {
    font-size: 13px;
  }

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

  .section-heading > span,
  .market-body > p:not(.market-kicker),
  .strategy-intro > p:last-child,
  .cta-copy > span {
    font-size: 15px;
  }

  .market-body h3 {
    font-size: 28px;
  }

  .proof-inner blockquote {
    font-size: 31px;
  }

  .proof-inner > .proof-author {
    font-size: 10px;
  }

  .team-caption h2 {
    font-size: 36px;
  }

  .value-grid h3 {
    font-size: 12.5px;
  }

  .value-grid p {
    font-size: 14px;
  }

  .positioning-item span {
    font-size: 9.5px;
  }

  .cta-copy h2 {
    font-size: 45px;
  }

  .footer-col a,
  .footer-col p,
  .footer-brand > p {
    font-size: 14px;
  }

  .hero-photo {
    top: 94px;
    height: calc(100% - 94px);
    object-position: 69% 0;
  }
}
