:root {
  --pg-teal: #1d6b62;
  --pg-teal-dark: #134e48;
  --pg-silver: #9ca3af;
  --pg-silver-light: #e5e7eb;
  --pg-bg: #ffffff;
  --pg-bg-alt: #f9fafb;
  --pg-text: #1f2937;
  --pg-text-light: #4b5563;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--pg-bg);
  padding: 1rem 0;
  font-family: ui-sans-serif, system-ui, sans-serif;
  width: 100%;
}

.site-header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--pg-silver-light);
  border-radius: 9999px;
  background-color: var(--pg-bg-alt);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--pg-teal);
  font-weight: 700;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-stretch: condensed;
  font-size: 1.25rem;
}

.site-brand svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.site-nav {
  display: none;
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
}

.site-nav__link {
  text-decoration: none;
  color: var(--pg-text);
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav__link:hover {
  color: var(--pg-teal);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__cta {
  display: none;
}

@media (min-width: 900px) {
  .site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    background-color: var(--pg-teal);
    color: #ffffff;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.2s;
  }

  .site-header__cta:hover {
    background-color: var(--pg-teal-dark);
  }
}

.site-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

@media (min-width: 900px) {
  .site-burger {
    display: none;
  }
}

.site-burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--pg-teal);
  border-radius: 9999px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
}

.site-mobile-nav[hidden] {
  display: none;
}

.site-mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(4px);
}

.site-mobile-nav__panel {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--pg-bg);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.site-mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.site-mobile-nav__brand {
  font-weight: 700;
  color: var(--pg-teal);
  font-size: 1.5rem;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-stretch: condensed;
}

.site-mobile-nav__close {
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: var(--pg-text);
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.site-mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}

.site-mobile-nav__link {
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--pg-text);
  font-weight: 600;
}

.site-mobile-nav__footer {
  margin-top: auto;
  padding-top: 2rem;
}

.site-mobile-nav__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
  background-color: var(--pg-teal);
  color: #ffffff;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
}

.site-footer {
  background-color: var(--pg-bg-alt);
  border-top: 1px solid var(--pg-silver-light);
  padding: 4rem 0 2rem;
  font-family: ui-sans-serif, system-ui, sans-serif;
  color: var(--pg-text);
}

.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.site-footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__brand {
  color: var(--pg-teal);
  font-size: 1.5rem;
  font-weight: 700;
  font-stretch: condensed;
}

.site-footer__summary {
  color: var(--pg-text-light);
  line-height: 1.6;
  max-width: 400px;
  margin: 0;
}

.site-footer__contact {
  margin-top: 0.5rem;
}

.site-footer__contact-link {
  color: var(--pg-teal);
  text-decoration: none;
  font-weight: 600;
}

.site-footer__contact-link:hover {
  text-decoration: underline;
}

.site-footer__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pg-text);
  margin: 0 0 1.25rem;
  font-stretch: condensed;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__link {
  color: var(--pg-text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__link:hover {
  color: var(--pg-teal);
}

.site-footer__bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid var(--pg-silver-light);
  text-align: center;
}

.site-footer__copyright {
  color: var(--pg-silver);
  font-size: 0.875rem;
  margin: 0;
}

[data-mobile-nav][hidden],
[data-mobile-nav].hidden {
  display: none
}

[data-mobile-nav][data-mobile-open="1"] {
  display: block
}

.max_5 {
  max-width: 280px;
}
