@media (min-width: 1001px) {
  .site-header {
    background: rgba(255, 253, 248, 0.96);
    border-bottom-color: #ded5c5;
  }

  .nav-row {
    position: relative;
    gap: 22px;
    min-height: 92px;
    padding-right: 166px;
  }

  .site-header .brand {
    padding-right: 22px;
  }

  .brand-logo {
    width: clamp(220px, 20vw, 270px);
  }

  .desktop-nav {
    gap: 0;
    padding: 5px 7px;
    font-size: 0.78rem;
    background: #fffefa;
    border: 1px solid #e2d8c8;
    border-radius: 999px;
    box-shadow: 0 2px 0 rgba(36, 34, 29, 0.08);
  }

  .desktop-nav > a,
  .mega-trigger > a {
    padding: 9px 12px;
    border-radius: 999px;
    transition: background-color 180ms ease, color 180ms ease;
  }

  .desktop-nav > a:hover,
  .mega-trigger > a:hover {
    color: var(--ink);
    background: #fff0bd;
  }

  .header-cta {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    min-height: 54px;
    padding-inline: 18px;
    color: var(--ink);
    background: linear-gradient(135deg, #ffc900 0%, #f5ad00 100%);
    border: 1px solid #d99700;
    box-shadow: 4px 4px #24221d;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
    transform: translateY(-50%);
  }

  /* Keep the absolute CTA vertically centred when the global button hover
     animation applies its translateY transform. */
  .header-cta:hover {
    color: #fff;
    background: #24221d;
    box-shadow: 6px 6px #f2b700;
    transform: translate(-2px, -50%);
  }
}

/* Inline calls to action need a clear pause after supporting copy. */
main p + .button,
main p + a.button {
  margin-top: 16px;
}

.final-cta .button {
  margin-top: 20px;
}

@media (min-width: 1001px) and (max-width: 1120px) {
  .nav-row {
    gap: 10px;
    padding-right: 128px;
    min-height: 86px;
  }

  .site-header .brand {
    padding-right: 14px;
  }

  .brand-logo {
    width: 210px;
  }

  .desktop-nav {
    font-size: 0.72rem;
  }

  .desktop-nav > a,
  .mega-trigger > a {
    padding: 7px 8px;
  }

  .header-cta {
    min-width: 112px;
    padding-inline: 12px;
  }
}
