@charset "utf-8";
/* CSS Document */
@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}
.shell {
  width: min(1280px, calc(100% - 54px));
  margin: auto
}
.skip {
  position: fixed;
  left: 16px;
  top: -60px;
  background: #fff;
  padding: 12px 16px;
  z-index: 9999;
  border: 1px solid var(--ink)
}
.skip:focus {
  top: 16px
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1000;
  background: transparent
}
.progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red)
}
.ribbon {
  background: var(--navy);
  color: #fff;
  height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .18em
}
.ribbon-track {
  white-space: nowrap;
  animation: marquee 28s linear infinite
}
.ribbon b {
  color: #ff687f;
  margin: 0 22px
}
header {
  height: 94px;
  background: rgba(251, 247, 240, .94);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid rgba(20, 20, 20, .1)
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px
}
.brand {
  display: flex;
  align-items: center;
  gap: 15px
}
.brand img {
  width: 98px;
  height: 55px;
  object-fit: contain
}
.brand div {
  border-left: 1px solid var(--line);
  padding-left: 15px
}
.brand strong {
  display: block;
  font-family: Georgia, serif;
  color: var(--navy);
  font-weight: 400;
  font-size: 15px
}
.brand small {
  display: block;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: #777;
  margin-top: 4px
}
nav {
  display: flex;
  gap: 34px;
  align-items: center
}
nav a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  position: relative;
  padding: 8px 0
}
nav a:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  left: 0;
  bottom: 0;
  background: var(--red);
  transition: .25s
}
nav a:hover:after {
  width: 100%
}
.nav-cta {
  padding: 13px 17px !important;
  background: var(--ink);
  color: #fff
}
.nav-cta:after {
  display: none
}
.menu {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  position: relative
}
.menu i, .menu i:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  background: var(--ink);
  left: 9px;
  top: 16px;
  transition: .3s
}
.menu i:after {
  left: 0;
  top: 8px
}
.mobile-panel {
  display: none
}
@media(max-width:1050px) {
    .mobile-panel {
    position: fixed;
    inset: 80px 0 0;
    background: var(--cream);
    z-index: 450;
    padding: 45px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: .35s var(--ease)
  }
    
    .mobile-panel.open {
    transform: none
  }
    .mobile-panel a {
    font-family: Georgia, serif;
    font-size: 24px;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    color: var(--navy)
  }
}
@media(max-width:1020px) {
  header {
    height: 80px
  }
  .brand img {
    width: 82px
  }
  .brand div {
    display: none
  }
  body.menu-open {
    overflow: hidden
  }
  .mobile-panel {
    position: fixed;
    inset: 81px 0 0;
    background: var(--cream);
    z-index: 450;
    padding: 0px 45px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: .35s var(--ease)
  }
  .mobile-panel.open {
    transform: none
  }
  .mobile-panel a {
    font-family: Georgia, serif;
    font-size: 20px;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    color: var(--navy)
  }
}

@media(max-width:700px) {
    .mobile-panel {
    position: fixed;
    inset: 80px 0 0;
    background: var(--cream);
    z-index: 450;
    padding: 45px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: .35s var(--ease)
  }
    
    .mobile-panel.open {
    transform: none
  }
    .mobile-panel a {
    font-family: Georgia, serif;
    font-size: 24px;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    color: var(--navy)
  }
}