.btn {
  display: inline-block;
  padding: 0.9375rem 1.875rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.025rem;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-outline-navy {
  border: 1.5px solid var(--color-navy);
  color: var(--color-navy);
  padding: 0.6875rem 1.375rem;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-outline-navy:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
}

.nav {
  display: flex;
  align-items: center;
  padding: 1.125rem clamp(1.25rem, 2.7vw, 2rem);
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.25rem;
  width: 0;
  height: 1.5px;
  background: var(--color-burgundy);
  transition: width 0.25s ease, left 0.25s ease;
}

.brand.active::after {
  width: 100%;
  left: 0;
}

.brand-name {
  font-family: var(--font-wordmark);
  font-weight: 900;
  color: var(--color-burgundy);
  font-size: 1.3125rem;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  gap: clamp(1.25rem, 2.9vw, 2.125rem);
}

.nav-links-left {
  justify-content: flex-start;
}

.nav-links-right {
  justify-content: flex-end;
}

.nav-links a {
  position: relative;
  font-family: 'Commissioner', var(--font-body);
  font-size: 1rem;
  font-weight: 550;
  color: var(--color-navy);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.25rem;
  width: 0;
  height: 1.5px;
  background: var(--color-burgundy);
  transition: width 0.25s ease, left 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

.link-hover {
  position: relative;
}

.link-hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.15rem;
  width: 0;
  height: 1.5px;
  background: var(--color-burgundy);
  transition: width 0.25s ease, left 0.25s ease;
}

.link-hover:hover::after {
  width: 100%;
  left: 0;
}

.link-underline:hover {
  text-decoration: underline;
  text-decoration-color: var(--color-burgundy);
  text-underline-offset: 0.2rem;
}

.nav-cta {
  font-size: 0.9375rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-navy);
  cursor: pointer;
}

.sec-head {
  max-width: 40rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.sec-eyebrow {
  color: var(--color-burgundy);
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.sec-head h2 {
  font-size: 2.125rem;
  margin-bottom: 1rem;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
}

.scroll-cue {
  position: absolute;
  right: clamp(1.25rem, 2.7vw, 2rem);
  bottom: 1.75rem;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--color-slate);
  cursor: pointer;
  user-select: none;
}

.scroll-cue-icon {
  width: 1.125rem;
  height: 1.125rem;
  animation: scrollCueBounce 1.8s ease-in-out infinite;
}

@keyframes scrollCueBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue {
    animation: none;
  }
}

@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nav-links {
    display: none;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    background: var(--color-white);
    padding: 0.5rem 2rem 0.25rem;
  }
  .nav-links-left {
    order: 3;
  }
  .nav-links-right {
    order: 4;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-line);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    padding: 0.75rem 0;
    width: 100%;
  }
  .nav-links a.nav-cta {
    border: none;
    padding: 0.75rem 0;
  }
  .brand.active::after {
    width: 0;
  }
  .menu-toggle {
    display: block;
  }
}
