/* Site-wide header, navigation, sections and footer layout. */

.announcement {
  min-height: 36px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  font-size: 13px;
  padding: 7px 20px;
}

.announcement button {
  color: #e3dcc9;
  text-decoration: underline;
  font-size: 12px;
}

.header {
  height: 100px;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,.97);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #ecece6;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 118px;
  height: auto;
  object-fit: contain;
}

.header nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.header nav button {
  padding: 0;
}

.header nav a:hover,
.text-link:hover {
  color: #917238;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.bag {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.bag span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  background: var(--cream);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 12px;
}

.menu-btn {
  display: none;
}

.mobile-nav {
  padding: 20px 6%;
  background: #fff;
  position: sticky;
  top: 80px;
  z-index: 19;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a,
.mobile-nav button {
  display: block;
  padding: 12px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 40px;
}

.section-head>.text-link {
  flex-shrink: 0;
}

.section-head>p {
  font-size: 15px;
  line-height: 1.8;
  max-width: 330px;
  margin-bottom: 6px;
}

.section-head .eyebrow {
  margin-bottom: 18px;
}

footer {
  padding: 65px 5% 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: .8fr 1.3fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-top>.brand {
  width: max-content;
}

.footer-top>p {
  font-size: 14px;
}

.footer-top strong {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 15px;
}

.footer-top>div a,
.footer-top>div button {
  display: block;
  font-size: 13px;
  margin: 9px 0;
  padding: 0;
  text-align: left;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  margin-top: 55px;
  padding-top: 20px;
  font-size: 11px;
  color: var(--muted);
}

.footer-bottom button {
  font-size: 11px;
}

.header > .brand {
  width: 130px;
  height: 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header > .brand img {
  width: 130px !important;
  height: auto !important;
  max-width: none;
  transform: scale(3.4);
  transform-origin: center;
}
