/* ST chrome system - content pages add discovery, money pages subtract exits. */
:root {
  --stc-white: var(--white, #FFFFFF);
  --stc-paper: var(--paper, #F4EFE7);
  --stc-bone: var(--bone, #EAE3D7);
  --stc-ink: var(--ink, #111111);
  --stc-soft: var(--ink-soft, #4A4A4A);
  --stc-mute: var(--ink-mute, #8C8C8C);
  --stc-rule: var(--rule, #D9D1C3);
  --stc-fire: var(--fire, #C94A1A);
  --stc-blue: var(--deep-blue, #002F4D);
  --stc-steel: var(--steel, #5C7C9F);
  --stc-ochre: var(--ochre, #C9A227);
  --stc-teal: var(--teal, #0D7377);
  --stc-oxblood: var(--oxblood, #5C1A1A);
  --stc-container: var(--container, 1180px);
  --stc-gutter: var(--gutter, clamp(20px, 4vw, 40px));
}

.st-chrome,
.st-chrome-footer {
  box-sizing: border-box;
  font-family: "Barlow", Arial, sans-serif;
}

.st-chrome *,
.st-chrome-footer * {
  box-sizing: border-box;
}

.st-chrome {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--stc-rule);
  color: var(--stc-ink);
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
}

.st-chrome__inner {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--stc-container);
  min-height: 72px;
  padding: 0 var(--stc-gutter);
}

.st-chrome__brand {
  align-items: center;
  color: var(--stc-ink);
  display: inline-flex;
  flex: 0 0 auto;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.st-chrome__brand img {
  display: block;
  height: 36px;
  width: 36px;
}

.st-chrome__brand span {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.st-chrome__nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: clamp(14px, 2.2vw, 28px);
  justify-content: flex-end;
  min-width: 0;
}

.st-chrome__nav a {
  color: var(--stc-ink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  padding: 29px 0 27px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
  white-space: nowrap;
}

.st-chrome__nav a::after {
  background: var(--stc-ink);
  bottom: 21px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.st-chrome__nav a:hover,
.st-chrome__nav a:focus-visible {
  color: var(--stc-oxblood);
}

.st-chrome__nav a:hover::after,
.st-chrome__nav a:focus-visible::after,
.st-chrome__nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.st-chrome__nav a:focus-visible,
.st-chrome-footer a:focus-visible {
  outline: 2px solid var(--stc-steel);
  outline-offset: 4px;
}

.st-chrome__cta {
  background: var(--stc-oxblood);
  border: 1px solid var(--stc-oxblood);
  color: var(--stc-white) !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.st-chrome__cta::after {
  display: none;
}

.st-chrome__cta:hover,
.st-chrome__cta:focus-visible {
  background: var(--stc-fire);
  border-color: var(--stc-fire);
  color: var(--stc-white) !important;
}

.st-chrome-footer {
  background: var(--stc-bone);
  border-top: 1px solid var(--stc-rule);
  color: var(--stc-ink);
  position: relative;
}

.st-chrome-footer--content {
  padding: 72px 0 32px;
}

.st-chrome-footer--content::before {
  background: linear-gradient(90deg, var(--stc-fire), var(--stc-blue), var(--stc-steel), var(--stc-ochre), var(--stc-teal));
  content: "";
  height: 3px;
  inset: 0 0 auto;
  position: absolute;
}

.st-chrome-footer__inner {
  margin: 0 auto;
  max-width: var(--stc-container);
  padding: 0 var(--stc-gutter);
}

.st-chrome-footer__grid {
  border-bottom: 1px solid var(--stc-rule);
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.8fr);
  padding-bottom: 46px;
}

.st-chrome-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.st-chrome-footer__brand a {
  color: var(--stc-ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  font-variation-settings: "SOFT" 50, "opsz" 40, "wght" 560;
  line-height: 1.08;
  text-decoration: none;
}

.st-chrome-footer__brand p {
  color: var(--stc-soft);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 34ch;
}

.st-chrome-footer__nav {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.st-chrome-footer__col h4 {
  color: var(--stc-ink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.st-chrome-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.st-chrome-footer__col a,
.st-chrome-footer__meta a,
.st-chrome-footer__money-links a {
  color: var(--stc-soft);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease;
}

.st-chrome-footer__col a:hover,
.st-chrome-footer__meta a:hover,
.st-chrome-footer__money-links a:hover {
  color: var(--stc-fire);
}

.st-chrome-footer__meta {
  color: var(--stc-mute);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 24px;
  justify-content: space-between;
  padding-top: 30px;
}

.st-chrome-footer--money {
  padding: 26px 0;
}

.st-chrome-footer__money {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--stc-container);
  padding: 0 var(--stc-gutter);
}

.st-chrome-footer__money-brand {
  color: var(--stc-ink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.st-chrome-footer__money-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.st-chrome-footer__money-copy {
  color: var(--stc-mute);
  font-size: 13px;
}

@media (max-width: 920px) {
  .st-chrome__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    padding: 14px var(--stc-gutter) 0;
  }

  .st-chrome__brand {
    min-height: 36px;
  }

  .st-chrome__nav {
    justify-content: flex-start;
    margin: 11px calc(-1 * var(--stc-gutter)) 0;
    max-width: none;
    overflow-x: auto;
    padding: 0 var(--stc-gutter);
    scrollbar-width: none;
  }

  .st-chrome__nav::-webkit-scrollbar {
    display: none;
  }

  .st-chrome__nav a {
    padding: 17px 0 16px;
  }

  .st-chrome__nav a::after {
    bottom: 10px;
  }

  .st-chrome-footer__grid {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .st-chrome-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .st-chrome__brand span {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .st-chrome__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 10px 0 0;
    overflow-x: visible;
    padding: 0 0 10px;
    width: 100%;
  }

  .st-chrome__nav a {
    font-size: 11px;
    letter-spacing: 0.08em;
    min-height: 0;
    padding: 4px 0;
    white-space: normal;
  }

  .st-chrome__nav a::after {
    display: none;
  }

  .st-chrome__nav .st-chrome__cta {
    padding: 9px 12px !important;
  }

  .st-chrome-footer--content {
    padding: 54px 0 28px;
  }

  .st-chrome-footer__nav {
    grid-template-columns: 1fr;
  }

  .st-chrome-footer__money {
    align-items: flex-start;
    flex-direction: column;
  }
}
