@import url("/assets/css/base.css");

.sw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--sw-radius);
  font-family: var(--sw-font-display);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.sw-button--primary {
  background: var(--sw-teal);
  color: var(--sw-white);
}

.sw-button--primary:hover {
  background: var(--sw-teal-hover);
  color: var(--sw-white);
}

.sw-button--secondary {
  background: transparent;
  border-color: var(--sw-teal);
  color: var(--sw-teal);
}

.sw-button--secondary:hover {
  border-color: var(--sw-teal-hover);
  color: var(--sw-teal-hover);
}

.sw-card {
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-radius-card);
  background: transparent;
}

.sw-dark-editorial {
  background: var(--sw-graphite);
  color: var(--sw-white);
}

.sw-dark-editorial :where(h1, h2, h3) {
  color: var(--sw-white);
  font-family: var(--sw-font-editorial);
  font-weight: 400;
}

.sw-dark-editorial :where(p) {
  color: rgba(255, 255, 255, .8);
  font-family: var(--sw-font-body);
}

.sw-dark-editorial .sw-dark-editorial__kicker {
  color: #78b9c2;
  font-family: var(--sw-font-display);
}

.sw-dark-editorial__item {
  color: #78b9c2;
}

.sw-dark-editorial__item::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.sw-eyebrow {
  font-family: var(--sw-font-display);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--sw-teal);
}

.sw-rule {
  border: 0;
  border-top: 1px solid var(--sw-border);
  margin: 0;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  border-bottom: 1px solid var(--sw-border);
}

.site-header__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sw-space-6);
}

.site-header--home .site-header__inner {
  min-height: 104px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
}

.site-header__brand img {
  width: 152px;
}

.site-header--home .site-header__brand img {
  width: 184px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.site-header__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--sw-graphite);
  font-family: var(--sw-font-display);
  font-weight: 500;
  text-decoration: none;
}

.site-header__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--sw-teal);
}

.site-header__link--cta {
  min-height: 48px;
  padding-inline: 22px;
  border-radius: var(--sw-radius);
  background: var(--sw-teal);
  color: var(--sw-white);
}

.site-header__link--cta:hover {
  background: var(--sw-teal-hover);
  color: var(--sw-white);
}

.site-header__toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--sw-border-strong);
  border-radius: var(--sw-radius);
  background: var(--sw-white);
  color: var(--sw-graphite);
}

.site-footer {
  border-top: 1px solid var(--sw-border);
  padding-block: var(--sw-space-16);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, .8fr) minmax(220px, .8fr);
  gap: var(--sw-space-12);
}

.site-footer__brand,
.site-footer__meta,
.site-footer__nav {
  display: grid;
  align-content: start;
  gap: var(--sw-space-3);
}

.site-footer__brand p {
  max-width: 420px;
  color: var(--sw-text-muted);
}

.site-footer__heading {
  margin: 0 0 var(--sw-space-1);
  color: var(--sw-graphite);
  font-family: var(--sw-font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.site-footer__meta p {
  color: var(--sw-text-muted);
}

.site-footer__copyright {
  margin-top: var(--sw-space-2);
}

.site-footer a {
  width: fit-content;
  color: var(--sw-graphite);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--sw-teal);
}

.site-footer__social {
  display: flex;
  gap: var(--sw-space-1);
  margin-top: var(--sw-space-2);
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: var(--sw-radius);
}

.site-footer__social-link::before {
  content: "";
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.site-footer__social-link:hover {
  background: var(--sw-teal-soft);
}

.site-footer__social-link--linkedin::before {
  -webkit-mask-image: url("/assets/icons/lucide/linkedin.svg");
  mask-image: url("/assets/icons/lucide/linkedin.svg");
}

.site-footer__social-link--instagram::before {
  -webkit-mask-image: url("/assets/icons/lucide/instagram.svg");
  mask-image: url("/assets/icons/lucide/instagram.svg");
}

.cta-band {
  padding-block: var(--sw-space-20);
  border-top: 1px solid var(--sw-border);
}

.cta-band__inner {
  display: grid;
  gap: var(--sw-space-6);
  max-width: 760px;
}

.form-field {
  display: grid;
  gap: var(--sw-space-2);
}

.form-field__label {
  font-weight: 600;
}

.form-field__control {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--sw-border-strong);
  border-radius: var(--sw-radius);
  background: var(--sw-white);
  color: var(--sw-graphite);
  font: inherit;
  padding: 10px 12px;
}

.form-field__help {
  color: var(--sw-text-muted);
  font-size: .95rem;
}

.form-field__error {
  min-height: 1.4em;
  color: #8A1F11;
  font-size: .95rem;
}

@media (max-width: 899px) {
  .site-header__inner,
  .site-header--home .site-header__inner {
    min-height: 72px;
  }

  .site-header__brand img,
  .site-header--home .site-header__brand img {
    width: 132px;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .js .site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__nav {
    display: grid;
    flex-basis: 100%;
    gap: var(--sw-space-2);
    padding-block: var(--sw-space-3);
  }

  .js .site-header__nav {
    position: absolute;
    inset: 72px var(--sw-gutter) auto var(--sw-gutter);
    z-index: 10;
    padding: var(--sw-space-4);
    border: 1px solid var(--sw-border);
    border-radius: var(--sw-radius-card);
    background: var(--sw-page-bg);
  }

  .js .site-header__toggle[aria-expanded="false"] + .site-header__nav {
    display: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

[data-form-status] {
  white-space: pre-line;
}
