/* Cachebuster: cb1 */
.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.62rem 2rem 0.5rem;
  z-index: 1000;
  overflow: visible;
  isolation: isolate;
  background: transparent;
  transition:
    top 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease-in-out;
}

.header-desktop::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: -3rem;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(29, 29, 29, 0.82) 0%,
    rgba(29, 29, 29, 0.55) 46%,
    rgba(29, 29, 29, 0) 100%
  );
  transition: opacity 0.32s ease;
}

.header-desktop.scrolled::before {
  opacity: 1;
}

.header-desktop nav {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo,
.nav-logo a {
  display: inline-flex;
  align-items: center;
}

.nav-logo a {
  text-decoration: none;
}

.nav-logo img {
  display: block;
  width: 305px;
  height: auto;
}

.desktop-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.desktop-links a {
  color: #e6e6e6;
  font-size: 1.12rem;
  font-weight: 200;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.header-desktop .desktop-links > a:not(.main-cta) {
  font-size: 1.26rem;
}

.header-desktop[data-nav-tone="dark"] .desktop-links > a:not(.main-cta) {
  color: #26221c;
}

.header-desktop.scrolled .desktop-links > a:not(.main-cta) {
  color: #e6e6e6;
}

.desktop-links > a:not(.main-cta) {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.24rem;
  margin-bottom: -0.24rem;
  transition: color 0.25s ease;
}

.desktop-links > a:not(.main-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #81b435;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.desktop-links > a:not(.main-cta):hover::after,
.desktop-links > a:not(.main-cta):focus-visible::after {
  transform: scaleX(1);
}

.desktop-links .current-page {
  gap: 0.35rem;
}

.desktop-links .current-page::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #81b435;
}

.desktop-links .current-page::after {
  left: calc(8px + 0.35rem);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lang-link img {
  width: 0.78rem;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.header-desktop[data-nav-tone="dark"] .lang-link img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(10%) saturate(1319%)
    hue-rotate(345deg) brightness(96%) contrast(88%);
}

.header-desktop.scrolled .lang-link img {
  filter: brightness(0) invert(1);
}

.header-desktop .main-cta {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 0.4rem;
  padding: 0.27rem 0.27rem 0.27rem 1.1rem;
  border-radius: 1.5625rem 0 1.5625rem 1.5625rem;
  background: #143f5a;
  color: #e6e6e6;
  font-size: 1.1rem;
  font-weight: 200;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-desktop .main-cta:hover {
  transform: translateY(-0.12rem) scale(1.025);
  box-shadow: 0 0.7rem 1.4rem rgba(20, 63, 90, 0.18);
}

.header-desktop .main-cta:active {
  transform: translateY(0) scale(0.985);
}

.header-desktop .cta-icon {
  position: relative;
  width: 2.15rem;
  height: 2.15rem;
  overflow: hidden;
  border-radius: 1.5625rem 0 1.5625rem 1.5625rem;
  background: #eef0f1;
  flex: 0 0 auto;
}

.header-desktop .arrow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0.72rem;
  box-sizing: border-box;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.header-desktop .arrow-1 {
  transform: translate(0, 0);
}

.header-desktop .arrow-2 {
  transform: translate(-120%, 120%);
}

.header-desktop .main-cta:hover .arrow-1 {
  transform: translate(120%, -120%);
}

.header-desktop .main-cta:hover .arrow-2 {
  transform: translate(0, 0);
}

.nav-fullscreen-trigger {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  width: 2.69rem;
  height: 2.69rem;
  padding: 0;
  border: 0;
  border-radius: 1.5625rem 0 1.5625rem 1.5625rem;
  background: #143f5a;
  cursor: pointer;
  box-shadow: 0 0.7rem 1.3rem rgba(20, 63, 90, 0.18);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s ease;
}

.nav-fullscreen-trigger:hover {
  transform: translateY(-0.12rem) scale(1.025);
  background: #123851;
  box-shadow: 0 0.8rem 1.6rem rgba(20, 63, 90, 0.22);
}

.nav-fullscreen-trigger:active {
  transform: translateY(0) scale(0.985);
}

.nav-fullscreen-trigger:focus-visible {
  outline: 2px solid #81b435;
  outline-offset: 0.28rem;
}

.nav-fullscreen-trigger span {
  display: block;
  width: 1.28rem;
  height: 0.1rem;
  border-radius: 999px;
  background: #eef0f1;
}

.nav-fullscreen-trigger span:last-child {
  width: 0.92rem;
}

.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: auto;
  background:
    linear-gradient(135deg, rgba(239, 237, 237, 0.98) 0%, #efeded 56%),
    #efeded;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  pointer-events: none;
}

.fullscreen-menu.is-open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: all;
  transition: clip-path 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.fullscreen-menu::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 63, 90, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 63, 90, 0.06) 1px, transparent 1px);
  background-size: 7.5rem 7.5rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 72%);
}

.fullscreen-menu-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 1.35rem 3rem 1.65rem;
}

.fullscreen-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.fullscreen-menu-logo {
  display: inline-flex;
  align-items: center;
  width: 19rem;
}

.fullscreen-menu-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.fullscreen-menu-close {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 2.69rem;
  height: 2.69rem;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 1.5625rem 0 1.5625rem 1.5625rem;
  background: #143f5a;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s ease;
}

.fullscreen-menu-close:hover {
  transform: translateY(-0.12rem) scale(1.025);
  background: #123851;
}

.fullscreen-menu-close:focus-visible {
  outline: 2px solid #81b435;
  outline-offset: 0.28rem;
}

.fullscreen-menu-close span {
  position: absolute;
  width: 1.28rem;
  height: 0.1rem;
  border-radius: 999px;
  background: #eef0f1;
}

.fullscreen-menu-close span:first-child {
  transform: rotate(45deg);
}

.fullscreen-menu-close span:last-child {
  transform: rotate(-45deg);
}

.fullscreen-menu-layout {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1.15fr) minmax(21rem, 0.85fr);
  gap: 5rem;
  align-items: stretch;
  width: 100%;
  max-width: 112rem;
  margin: 4.2rem auto 0;
}

.fullscreen-menu-primary {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fullscreen-menu-primary a {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(38, 34, 28, 0.13);
  color: #26221c;
  font-family: "PPNeueMontreal", sans-serif;
  font-size: 2.55rem;
  font-weight: 400;
  line-height: 1.03;
  text-decoration: none;
  letter-spacing: 0;
  transition:
    color 0.32s ease,
    padding-left 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.fullscreen-menu-primary a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #81b435;
  opacity: 0;
  transform: translate(-1.2rem, -50%);
  transition:
    opacity 0.28s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.fullscreen-menu-primary a:hover,
.fullscreen-menu-primary a:focus-visible,
.fullscreen-menu-primary a[aria-current="page"] {
  color: #143f5a;
  padding-left: 1.2rem;
}

.fullscreen-menu-primary a:hover::before,
.fullscreen-menu-primary a:focus-visible::before,
.fullscreen-menu-primary a[aria-current="page"]::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.fullscreen-menu-primary a:focus-visible {
  outline: none;
}

.fullscreen-menu-primary small {
  color: rgba(38, 34, 28, 0.45);
  font-family: "Roboto", sans-serif;
  font-size: 0.96rem;
  font-weight: 200;
  line-height: 1;
}

.fullscreen-menu-panel {
  display: grid;
  align-content: center;
  gap: 1.3rem;
}

.fullscreen-menu-media {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #143f5a;
  color: #eef0f1;
}

.fullscreen-menu-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(20, 63, 90, 0) 34%,
      rgba(20, 63, 90, 0.28) 100%
    ),
    linear-gradient(90deg, rgba(20, 63, 90, 0.16), transparent 62%);
}

.fullscreen-menu-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fullscreen-menu-media div {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 1;
}

.fullscreen-menu-media strong {
  display: block;
  max-width: 18rem;
  color: #eef0f1;
  font-family: "PPNeueMontreal", sans-serif;
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.16;
}

.fullscreen-menu-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.fullscreen-menu-actions a {
  position: relative;
  min-height: 7.2rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(20, 63, 90, 0.14);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.42);
  color: #26221c;
  text-decoration: none;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.fullscreen-menu-actions a::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 1rem;
  height: 1rem;
  background: #143f5a;
  -webkit-mask: url("/assets/icons/arrow-up-right.svg") center / contain
    no-repeat;
  mask: url("/assets/icons/arrow-up-right.svg") center / contain no-repeat;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s ease;
}

.fullscreen-menu-actions a:hover,
.fullscreen-menu-actions a:focus-visible {
  transform: translateY(-0.12rem);
  border-color: rgba(129, 180, 53, 0.65);
  background: rgba(255, 255, 255, 0.68);
}

.fullscreen-menu-actions a:hover::after,
.fullscreen-menu-actions a:focus-visible::after {
  transform: translate(0.14rem, -0.14rem);
  background: #81b435;
}

.fullscreen-menu-actions a:focus-visible,
.fullscreen-menu-secondary a:focus-visible,
.fullscreen-menu-footer a:focus-visible {
  outline: 2px solid #81b435;
  outline-offset: 0.2rem;
}

.fullscreen-menu-actions span,
.fullscreen-menu-actions small {
  display: block;
}

.fullscreen-menu-actions span {
  max-width: 10rem;
  font-family: "PPNeueMontreal", sans-serif;
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.08;
}

.fullscreen-menu-actions small {
  margin-top: 0.65rem;
  color: rgba(38, 34, 28, 0.62);
  font-size: 0.9rem;
  font-weight: 200;
  line-height: 1.2;
}

.fullscreen-menu-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.6rem;
  padding-top: 0.5rem;
  text-align: left;
}

.fullscreen-menu-secondary > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.62rem;
}

.fullscreen-menu-secondary span {
  margin-bottom: 0.25rem;
  color: rgba(38, 34, 28, 0.5);
  font-size: 0.86rem;
  font-weight: 200;
  line-height: 1;
}

.fullscreen-menu-secondary > div:not(.fullscreen-menu-socials) a {
  width: max-content;
  max-width: 100%;
  color: #26221c;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.24;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.fullscreen-menu-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.fullscreen-menu-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.fullscreen-menu-social-links img {
  display: block;
}

.fullscreen-menu-secondary > div:not(.fullscreen-menu-socials) a:hover {
  color: #143f5a;
  transform: translateX(0.18rem);
}

.fullscreen-menu-social-links a:hover {
  transform: translateY(-0.12rem);
}

.fullscreen-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 112rem;
  margin: 2.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(38, 34, 28, 0.13);
  color: rgba(38, 34, 28, 0.62);
}

.fullscreen-menu-footer a {
  color: inherit;
  font-size: 0.98rem;
  font-weight: 200;
  line-height: 1;
  text-decoration: none;
  transition: color 0.25s ease;
}

.fullscreen-menu-footer a:hover {
  color: #143f5a;
}

.fullscreen-menu-footer span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.fullscreen-menu-footer span a[aria-current="page"] {
  color: #143f5a;
}

html.fullscreen-menu-is-open,
html.fullscreen-menu-is-open body,
body.fullscreen-menu-is-open {
  overflow: hidden;
}

.quickcheck-fixed-cta {
  position: fixed;
  right: 2rem;
  bottom: 1.8rem;
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.62rem;
  width: max-content;
  max-width: calc(100vw - 4rem);
  padding: 0.58rem 0.32rem 0.58rem 1rem;
  overflow: hidden;
  border: 0;
  border-radius: 1.55rem 0 1.55rem 1.55rem;
  background:
    linear-gradient(90deg, #143f5a 0%, rgba(129, 180, 53, 0.98) 100%),
    #143f5a;
  box-shadow:
    0 1rem 2.2rem rgba(20, 63, 90, 0.28),
    0 0 0 0.46rem rgba(129, 180, 53, 0.14);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(0);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease;
}

.quickcheck-fixed-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 44%,
    transparent 72%
  );
  transform: translateX(-115%);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.quickcheck-fixed-cta:hover,
.quickcheck-fixed-cta:focus-visible {
  transform: translateY(-0.16rem) scale(1.02);
  box-shadow:
    0 1.15rem 2.5rem rgba(20, 63, 90, 0.34),
    0 0 0 0.58rem rgba(129, 180, 53, 0.2);
}

.quickcheck-fixed-cta:hover::before,
.quickcheck-fixed-cta:focus-visible::before {
  transform: translateX(115%);
}

.quickcheck-fixed-cta:active {
  transform: translateY(0) scale(0.99);
}

.quickcheck-fixed-cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 0.24rem;
}

.quickcheck-fixed-cta__copy,
.quickcheck-fixed-cta__copy strong,
.quickcheck-fixed-cta__copy small {
  position: relative;
  z-index: 1;
  display: block;
}

.quickcheck-fixed-cta__copy {
  flex: 1 1 auto;
  min-width: 0;
}

.quickcheck-fixed-cta__copy strong {
  font-family: "PPNeueMontreal", sans-serif;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.05;
  white-space: nowrap;
}

.quickcheck-fixed-cta__copy small {
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 200;
  line-height: 1.1;
}

.quickcheck-fixed-cta__icon {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 auto;
  width: 2.72rem;
  height: 2.72rem;
  place-items: center;
  border-radius: 1.55rem 0 1.55rem 1.55rem;
  background: #ffffff;
}

.quickcheck-fixed-cta__icon::after {
  content: "";
  width: 0.76rem;
  height: 0.76rem;
  background: #81b435;
  -webkit-mask: url("/assets/icons/arrow-up-right.svg") center / contain
    no-repeat;
  mask: url("/assets/icons/arrow-up-right.svg") center / contain no-repeat;
  transition:
    background-color 0.3s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.quickcheck-fixed-cta:hover .quickcheck-fixed-cta__icon::after,
.quickcheck-fixed-cta:focus-visible .quickcheck-fixed-cta__icon::after {
  background: #143f5a;
  transform: translate(0.1rem, -0.1rem);
}

body.fullscreen-menu-is-open .quickcheck-fixed-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.6rem);
}

@media only screen and (max-width: 640px) {
  .quickcheck-fixed-cta {
    right: 0.9rem;
    bottom: calc(0.9rem + env(safe-area-inset-bottom));
    max-width: calc(100vw - 1.8rem);
    padding: 0.5rem 0.28rem 0.5rem 0.86rem;
    gap: 0.5rem;
    border-radius: 1.35rem 0 1.35rem 1.35rem;
  }

  .quickcheck-fixed-cta__copy strong {
    font-size: 0.98rem;
    line-height: 1;
  }

  .quickcheck-fixed-cta__copy small {
    margin-top: 0.22rem;
    font-size: 0.76rem;
  }

  .quickcheck-fixed-cta__icon {
    width: 2.34rem;
    height: 2.34rem;
    border-radius: 1.35rem 0 1.35rem 1.35rem;
  }

  .quickcheck-fixed-cta__icon::after {
    width: 0.68rem;
    height: 0.68rem;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .nav-logo img {
    width: 285px;
  }

  .desktop-links {
    gap: 0.85rem;
  }

  .desktop-links a {
    font-size: 1.02rem;
  }

  .header-desktop .desktop-links > a:not(.main-cta) {
    font-size: 1.05rem;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1380px) {
  .header-desktop {
    padding: 0.55rem 1.35rem 0.42rem;
  }

  .nav-logo img {
    width: 14rem;
  }

  .desktop-links {
    gap: 0.58rem;
  }

  .desktop-links a {
    font-size: 0.94rem;
  }

  .header-desktop .desktop-links > a:not(.main-cta) {
    font-size: 0.96rem;
  }

  .fullscreen-menu-shell {
    padding-inline: 1.4rem;
  }

  .fullscreen-menu-logo {
    width: 15rem;
  }

  .fullscreen-menu-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.92fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .fullscreen-menu-primary a {
    padding-block: 0.68rem;
    font-size: 2.35rem;
  }

  .fullscreen-menu-media {
    min-height: 16rem;
  }

  .fullscreen-menu-actions {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px),
  only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape),
  (max-width: 768px) {
  .header-desktop,
  .fullscreen-menu {
    display: none !important;
  }

  .mobile-header {
    display: block;
  }
}

/* Refined desktop fullscreen menu: image-free, calm and typographic. */
@media only screen and (min-width: 1025px) {
  .fullscreen-menu {
    background: #f2f0ee;
  }

  .fullscreen-menu::before {
    background:
      radial-gradient(
        circle at 84% 14%,
        rgba(129, 180, 53, 0.1),
        transparent 27rem
      ),
      linear-gradient(
        90deg,
        transparent 0,
        transparent 61.5%,
        rgba(20, 63, 90, 0.07) 61.5%,
        rgba(20, 63, 90, 0.07) calc(61.5% + 1px),
        transparent calc(61.5% + 1px)
      );
    mask-image: none;
  }

  .fullscreen-menu-shell {
    padding: 1.6rem 3rem 1.35rem;
  }

  .fullscreen-menu-logo {
    width: clamp(14.5rem, 17vw, 18rem);
  }

  .fullscreen-menu-close {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(20, 63, 90, 0.32);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: none;
  }

  .fullscreen-menu-close span {
    background: #143f5a;
  }

  .fullscreen-menu-close:hover {
    background: #143f5a;
    transform: rotate(5deg);
  }

  .fullscreen-menu-close:hover span {
    background: #eef0f1;
  }

  .fullscreen-menu-layout {
    grid-template-columns: minmax(0, 1.16fr) minmax(21rem, 0.84fr);
    gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
    max-width: 112rem;
    margin-top: clamp(2rem, 5vh, 4.5rem);
  }

  .fullscreen-menu-primary {
    justify-content: center;
    border-top: 1px solid rgba(38, 34, 28, 0.12);
  }

  .fullscreen-menu-primary a {
    padding: clamp(0.58rem, 1.05vh, 0.92rem) 0;
    font-size: clamp(2.05rem, 2.55vw, 3.3rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
  }

  .fullscreen-menu-primary a:hover,
  .fullscreen-menu-primary a:focus-visible,
  .fullscreen-menu-primary a[aria-current="page"] {
    padding-left: 1.35rem;
  }

  .fullscreen-menu-primary small {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .fullscreen-menu-panel {
    align-content: center;
    gap: 1rem;
    padding-left: clamp(3.5rem, 4vw, 5rem);
  }

  .fullscreen-menu-media {
    min-height: 0;
    padding: 0.35rem 0 1.7rem 0.85rem;
    overflow: visible;
    border: 0;
    border-bottom: 1px solid rgba(38, 34, 28, 0.13);
    border-radius: 0;
    background: transparent;
    color: #143f5a;
  }

  .fullscreen-menu-media::before {
    content: "";
    position: absolute;
    top: 0.42rem;
    bottom: 1.75rem;
    left: 0;
    width: 3px;
    border-radius: 999px;
    background: #81b435;
  }

  .fullscreen-menu-media::after {
    content: none;
  }

  .fullscreen-menu-media img {
    display: none !important;
  }

  .fullscreen-menu-media div {
    position: static;
  }

  .fullscreen-menu-media strong {
    max-width: 27rem;
    color: #143f5a;
    font-size: clamp(1.35rem, 1.55vw, 1.75rem);
    line-height: 1.12;
    text-wrap: balance;
  }

  .fullscreen-menu-actions {
    gap: 0.75rem;
  }

  .fullscreen-menu-actions a {
    min-height: 7.4rem;
    padding: 1rem;
    border-color: rgba(20, 63, 90, 0.13);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
  }

  .fullscreen-menu-actions a:first-child {
    border-color: #143f5a;
    background: #143f5a;
    color: #eef0f1;
  }

  .fullscreen-menu-actions a:first-child small {
    color: rgba(238, 240, 241, 0.65);
  }

  .fullscreen-menu-actions a:first-child::after {
    background: #81b435;
  }

  .fullscreen-menu-actions a:hover,
  .fullscreen-menu-actions a:focus-visible {
    border-color: rgba(129, 180, 53, 0.72);
    background: rgba(255, 255, 255, 0.82);
  }

  .fullscreen-menu-actions a:first-child:hover,
  .fullscreen-menu-actions a:first-child:focus-visible {
    border-color: #123851;
    background: #123851;
  }

  .fullscreen-menu-secondary {
    margin-top: 0.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(38, 34, 28, 0.13);
  }

  .fullscreen-menu-footer {
    max-width: 112rem;
    margin-top: 1.5rem;
    padding-top: 0.9rem;
  }
}

@media only screen and (min-width: 1025px) and (max-height: 760px) {
  .fullscreen-menu-shell {
    padding-top: 0.9rem;
    padding-bottom: 0.8rem;
  }

  .fullscreen-menu-layout {
    margin-top: 1.2rem;
  }

  .fullscreen-menu-primary a {
    padding-block: 0.42rem;
    font-size: 1.95rem;
  }

  .fullscreen-menu-media {
    padding-bottom: 1rem;
  }

  .fullscreen-menu-media::before {
    bottom: 1rem;
  }

  .fullscreen-menu-media strong {
    font-size: 1.18rem;
  }

  .fullscreen-menu-actions a {
    min-height: 5.6rem;
  }

  .fullscreen-menu-secondary {
    padding-top: 0.8rem;
  }

  .fullscreen-menu-footer {
    margin-top: 0.8rem;
  }
}
