.site-header {
  border-bottom: 1px solid rgba(18, 59, 91, 0.12);
  background: rgba(247, 245, 239, 0.96);
}

.header-inner {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.875rem);
}

.primary-nav a:not(.button) {
  color: var(--color-ink);
  font-size: 0.875rem;
  text-decoration: none;
  text-underline-offset: 0.3em;
}

.primary-nav a:not(.button):hover {
  text-decoration: underline;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-navy);
  font-size: 1.125rem;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand img {
  width: 2.875rem;
  height: 2.875rem;
  object-fit: contain;
}

.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.65rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--color-navy);
  font-size: 0.875rem;
  text-decoration: none;
}

.text-link:hover {
  border-bottom-width: 2px;
}

.play-badge {
  display: inline-block;
  line-height: 0;
}

.play-badge img {
  width: auto;
  height: 3.25rem;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 7px solid #061925;
  border-radius: 1.5rem;
  background: #061925;
  box-shadow: var(--shadow-phone);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  background: var(--color-deep-navy);
  color: rgba(255, 255, 255, 0.72);
  padding-block: 1.75rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

@media (max-width: 42.5rem) {
  .primary-nav a:not(.button) {
    display: none;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
