/* Studio-owned navigation. Product websites maintain their own implementations. */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  height: 72px;
  padding: 0 36px;
  position: relative;
  z-index: 10;
  background: var(--paper);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.065em;
  white-space: nowrap;
}
.wordmark img {
  width: 25px;
  height: 25px;
}
.wordmark-star {
  font-size: 13px;
  align-self: flex-start;
  margin: 4px 0 0 -6px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  margin-left: 65px;
  gap: 30px;
}
.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.025em;
  white-space: nowrap;
  padding-block: 15px;
}
.desktop-nav sup {
  font-size: 9px;
  position: relative;
  top: -2px;
  margin-left: 3px;
}
.desktop-nav a:hover {
  color: #535d48;
}
.desktop-nav a:last-child span {
  margin-left: 17px;
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: transparent;
  width: 58px;
  height: 44px;
  padding: 7px 0;
  flex-shrink: 0;
  margin-left: 28px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #151515;
  transition: transform 0.2s;
}
.menu-toggle:hover span:first-child {
  transform: translateX(-5px);
}
.menu-toggle:hover span:last-child {
  transform: translateX(5px);
}
.site-menu {
  border: 0;
  background: #171916;
  color: #f5f5ed;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100svh;
  margin: 0;
  padding: 30px 40px;
  overscroll-behavior: contain;
}
.site-menu::backdrop {
  background: #141614b3;
}
.site-menu[open] {
  display: flex;
  flex-direction: column;
}
.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.menu-close {
  background: transparent;
  color: inherit;
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 5px 0 5px 15px;
  font-size: 13px;
}
.menu-close span {
  font-size: 37px;
  font-weight: 400;
}
.site-menu nav {
  margin: auto 0;
  padding-block: 45px;
}
.site-menu nav a {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.35;
}
.site-menu nav small {
  font-size: 12px;
  letter-spacing: 0;
  color: #aaa;
}
.site-menu nav a > span {
  margin-left: auto;
  font-size: 0.6em;
  transition: transform 0.2s;
}
.site-menu nav a:hover {
  color: #d3dabf;
}
.site-menu nav a:hover > span {
  transform: translate(5px, -5px);
}
.menu-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-top: 1px solid #44483f;
  padding-top: 25px;
  gap: 30px;
}
.menu-bottom p {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}
.menu-bottom a {
  font-size: 13px;
}
.menu-bottom a span {
  margin-left: 25px;
}
body:has(.site-menu[open]) {
  overflow: hidden;
}
.site-footer {
  background: #dedfda;
  margin: 0 7px 7px;
  padding: 48px 33px 22px;
  border-radius: 24px;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 55px;
  margin-bottom: 80px;
}
.footer-top > p {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.035em;
}
.footer-top nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  font-size: 14px;
}
.footer-top nav > span {
  font-size: 10px;
  margin-bottom: 11px;
  color: #555d4d;
}
.footer-top a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer-top nav > a > span {
  margin-left: 35px;
}
.footer-top small {
  font-size: 11px;
  color: #555d4d;
  margin-top: 15px;
}
.footer-wordmark {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 18.3vw;
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.075em;
  white-space: nowrap;
  margin-left: -0.04em;
}
.footer-wordmark > span {
  font-size: 0.29em;
  line-height: 1;
  margin-top: 0.03em;
  margin-left: 0.05em;
  letter-spacing: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.02em;
  border-top: 1px solid #bfc2b8;
  padding-top: 20px;
  margin-top: 35px;
  gap: 25px;
}
.footer-bottom a {
  font-size: 11px;
  letter-spacing: 0;
}
.footer-bottom a > span {
  margin-left: 30px;
}
@media (min-width: 1800px) {
  .footer-wordmark {
    font-size: 18.6vw;
  }
  .site-header {
    padding-inline: 55px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    gap: 25px;
    padding-inline: 28px;
  }
  .desktop-nav {
    margin-left: 15px;
    gap: 25px;
  }
  .desktop-nav a {
    font-size: 12px;
  }
  .menu-toggle {
    width: 42px;
    margin-left: 5px;
  }
  .wordmark {
    font-size: 17px;
  }
  .wordmark img {
    width: 22px;
    height: 22px;
  }
  .footer-wordmark {
    font-size: 17.6vw;
  }
  .footer-top > p {
    font-size: 21px;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 64px;
    padding-inline: 20px;
    gap: 20px;
  }
  .wordmark {
    font-size: 17px;
    gap: 7px;
  }
  .wordmark img {
    width: 21px;
    height: 21px;
  }
  .desktop-nav {
    margin-left: auto;
    flex: initial;
  }
  .desktop-nav a {
    font-size: 12px;
  }
  .desktop-nav a:not(:first-child) {
    display: none;
  }
  .menu-toggle {
    width: 34px;
    height: 40px;
    margin-left: 0;
    gap: 7px;
  }
  .menu-toggle span {
    height: 1px;
  }
  .wordmark-star {
    font-size: 11px;
  }
  .site-menu {
    padding: 22px;
  }
  .menu-top {
    font-size: 11px;
  }
  .site-menu nav a {
    font-size: 48px;
    gap: 25px;
    padding-block: 8px;
  }
  .site-menu nav small {
    font-size: 10px;
  }
  .menu-bottom {
    align-items: start;
    flex-direction: column;
    gap: 30px;
  }
  .site-footer {
    margin-inline: 6px;
    border-radius: 19px;
    padding: 33px 18px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
    margin-bottom: 50px;
  }
  .footer-top > p {
    grid-column: 1/-1;
    font-size: 22px;
  }
  .footer-top nav {
    font-size: 12px;
    gap: 8px;
  }
  .footer-top nav > span {
    font-size: 9px;
    margin-bottom: 8px;
  }
  .footer-top small {
    font-size: 10px;
    line-height: 1.5;
    max-width: 140px;
  }
  .footer-wordmark {
    font-size: 16.9vw;
  }
  .footer-bottom {
    font-size: 8px;
    margin-top: 24px;
    padding-top: 17px;
    gap: 15px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom a {
    font-size: 10px;
  }
  .footer-bottom a > span {
    margin-left: 18px;
  }
  .site-menu nav a > span {
    font-size: 0.5em;
  }
}
@media (max-width: 360px) {
  .site-header {
    gap: 16px;
    padding-inline: 17px;
  }
  .wordmark {
    font-size: 15px;
  }
  .wordmark img {
    width: 18px;
    height: 18px;
  }
  .desktop-nav a {
    font-size: 10px;
  }
  .menu-toggle {
    width: 29px;
  }
  .site-menu nav a {
    font-size: 40px;
    gap: 18px;
  }
  .footer-wordmark {
    font-size: 16.6vw;
  }
}
