body.public-standard {
  --chrome-ink: #243a32;
  --chrome-ink-soft: #5f7069;
  --chrome-cream: #fbf7ee;
  --chrome-paper: #fffdf8;
  --chrome-forest: #26483c;
  --chrome-forest-deep: #1e382f;
  --chrome-terra: #ce6f4e;
  --chrome-butter: #f4d995;
  --chrome-peach: #efb49d;
  --chrome-line: rgba(36, 58, 50, 0.15);
  --chrome-shadow: 0 22px 50px rgba(36, 58, 50, 0.11);
  --chrome-serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --chrome-sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
  background: var(--chrome-cream);
  color: var(--chrome-ink);
  font-family: var(--chrome-sans);
}

body.public-standard .shell {
  width: min(1180px, calc(100% - 48px));
}

body.public-standard .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--chrome-line);
  background: rgba(251, 247, 238, 0.95);
  backdrop-filter: blur(14px);
}

body.public-standard .site-header__inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 35px;
}

body.public-standard .site-header__brand-lockup,
body.public-standard .site-header .brand {
  width: max-content;
}

body.public-standard .brand {
  gap: 5px;
}

body.public-standard .site-header .brand-mark,
body.public-standard .site-footer .brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

body.public-standard .site-header .brand-wordmark-image,
body.public-standard .site-footer .brand-wordmark-image {
  width: auto;
  height: 31px;
}

body.public-standard .nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: nowrap;
}

body.public-standard .nav a {
  position: relative;
  padding: 0;
  color: var(--chrome-ink);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  text-align: left;
}

body.public-standard .nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--chrome-terra);
  transition: right 180ms ease;
}

body.public-standard .nav a:not(.nav-cta):hover::after,
body.public-standard .nav a:not(.nav-cta):focus-visible::after,
body.public-standard .nav a.is-active::after {
  right: 0;
}

body.public-standard .nav .nav-talk {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
}

body.public-standard .nav .nav-cta {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--chrome-terra);
  box-shadow: 0 9px 18px rgba(38, 72, 60, 0.12);
  color: #fff !important;
  font-size: 11px;
  font-weight: 750 !important;
}

body.public-standard .nav .nav-cta:hover {
  background: #b95f43;
  filter: none;
}

body.public-standard .nav-toggle {
  border-color: var(--chrome-line);
  background: var(--chrome-paper);
  color: var(--chrome-ink);
}

body.public-standard .site-footer {
  border-top: 0;
  background: var(--chrome-forest-deep);
  color: rgba(255, 255, 255, 0.72);
}

body.public-standard .site-footer__inner {
  padding: 70px 0 0;
}

body.public-standard .footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.5fr);
  gap: 80px;
  align-items: start;
  padding-bottom: 62px;
}

body.public-standard .footer-brand-block {
  display: grid;
  gap: 18px;
  max-width: 360px;
}

body.public-standard .site-footer .brand {
  color: #fff;
}

body.public-standard .site-footer .brand-mark img,
body.public-standard .site-footer .brand-wordmark-image {
  filter: none;
}

body.public-standard .footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font: italic 18px/1.55 var(--chrome-serif);
}

body.public-standard .footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
}

body.public-standard .footer-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.public-standard .footer-group__title {
  margin: 0 0 9px;
  color: var(--chrome-butter);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.public-standard .footer-group a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
}

body.public-standard .footer-group a:hover,
body.public-standard .footer-group a.is-active {
  color: #fff;
}

body.public-standard .footer-meta {
  min-height: 65px;
  margin: 0;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

body.public-standard .footer-meta a {
  color: inherit;
}

body.public-standard .footer-meta b {
  color: var(--chrome-peach);
}

body.public-standard .nav a:focus-visible,
body.public-standard .footer-group a:focus-visible {
  outline: 2px solid var(--chrome-terra);
  outline-offset: 5px;
}

@media (max-width: 1100px) {
  body.public-standard .nav {
    gap: 20px;
  }

  body.public-standard .nav .nav-talk {
    margin-left: 8px;
  }
}

@media (max-width: 980px) {
  body.public-standard .site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  body.public-standard .nav-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--chrome-line);
    border-radius: 50%;
  }

  body.public-standard .nav-toggle__line {
    width: 19px;
    height: 1.5px;
    background: currentColor;
  }

  body.public-standard .nav {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: auto;
    padding: 14px 22px;
    border: 1px solid var(--chrome-line);
    border-radius: 16px;
    background: var(--chrome-paper);
    box-shadow: var(--chrome-shadow);
  }

  body.public-standard .nav.is-open {
    display: flex;
  }

  body.public-standard .nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--chrome-line);
    text-align: left;
  }

  body.public-standard .nav a:not(.nav-cta)::after {
    display: none;
  }

  body.public-standard .nav .nav-talk {
    display: none;
  }

  body.public-standard .nav .nav-cta {
    width: auto;
    margin-top: 9px;
    border-bottom: 0;
    text-align: center;
  }
}

@media (max-width: 720px) {
  body.public-standard .shell {
    width: min(100% - 28px, 1180px);
  }

  body.public-standard .site-header__inner {
    min-height: 72px;
  }

  body.public-standard .site-header .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  body.public-standard .site-header .brand-wordmark-image {
    height: 26px;
  }

  body.public-standard .nav {
    top: 72px;
  }

  body.public-standard .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 50px;
  }

  body.public-standard .footer-brand-block {
    justify-items: start;
    text-align: left;
  }

  body.public-standard .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 22px;
    width: 100%;
  }

  body.public-standard .footer-group:last-child {
    grid-column: 1 / -1;
  }

  body.public-standard .footer-meta {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  body.public-standard .site-header .brand-wordmark-image {
    height: 24px;
  }
}
