@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #76736f;
  --line: #dedbd6;
  --paper: #fff;
  --soft: #f4f3f0;
  --sand: #d8c5ae;
  --content: min(1440px, calc(100vw - 40px));
  --hero-frame-gap: 16px;
  --radius-soft: 12px;
  --ease: cubic-bezier(0.22, 0.74, 0.19, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.cart-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: var(--content);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: #fff;
  color: #111;
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}
.hero {
  position: relative;
  width: auto;
  height: max(820px, calc(100vh - 32px));
  min-height: 700px;
  margin: var(--hero-frame-gap) var(--hero-frame-gap) 0;
  overflow: hidden;
  border-radius: var(--radius-soft);
  background: #4e3c30;
  color: #fff;
}
.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(17, 12, 8, 0.5) 0%,
      rgba(17, 12, 8, 0.15) 43%,
      rgba(17, 12, 8, 0.03) 75%
    ),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  transition:
    opacity 1s var(--ease),
    visibility 1s;
}
.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.desktop-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
  padding: 0 30px;
}
.nav-group {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-group-right {
  justify-content: flex-end;
}
.nav-group a {
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 0.01em;
}
.nav-group a,
.collection-menu-trigger,
.nav-icon {
  transition: opacity 0.3s;
}
.nav-group a:hover,
.collection-menu-trigger:hover,
.nav-icon:hover {
  opacity: 0.62;
}
.collection-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.collection-menu-trigger svg {
  width: 13px;
  height: 13px;
  transition: transform 0.3s var(--ease);
}
.collection-menu-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.wordmark {
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-optical-sizing: auto;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.14em;
  line-height: 1;
}
.mobile-brand-logo {
  display: none;
}
.nav-icon {
  display: grid;
  width: 22px;
  height: 22px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.nav-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}
.menu-toggle,
.mobile-menu {
  display: none;
}
.mega-menu {
  position: absolute;
  top: 84px;
  right: 0;
  left: 0;
  z-index: 9;
  visibility: hidden;
  padding: 38px 32px 32px;
  transform: translateY(-12px);
  opacity: 0;
  background: #f1ede7;
  color: var(--ink);
  box-shadow: 0 22px 55px rgba(29, 23, 18, 0.16);
  transition:
    opacity 0.32s var(--ease),
    transform 0.32s var(--ease),
    visibility 0.32s;
}
.mega-menu[aria-hidden="false"] {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}
.mega-menu-inner {
  display: grid;
  max-width: 1380px;
  grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.48fr) minmax(260px, 0.72fr);
  gap: clamp(38px, 5vw, 78px);
  margin-inline: auto;
}
.mega-menu-label {
  display: block;
  margin-bottom: 20px;
  color: #716b64;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.mega-menu-categories nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 42px;
}
.mega-menu-categories a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 13px 0 15px;
  border-top: 1px solid #d4cec5;
}
.mega-menu-categories strong {
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}
.mega-menu-categories span {
  grid-column: 1;
  margin-top: 3px;
  color: #716b64;
  font-size: 11px;
}
.mega-menu-categories svg {
  width: 16px;
  height: 16px;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  transition: transform 0.3s var(--ease);
}
.mega-menu-categories a:hover svg,
.mega-menu-categories a:focus-visible svg,
.mega-menu-feature:hover > svg,
.mega-menu-feature:focus-visible > svg {
  transform: translate(3px, -3px);
}
.mega-menu-shortcuts {
  display: flex;
  flex-direction: column;
}
.mega-menu-shortcuts a {
  padding: 10px 0;
  border-top: 1px solid #d4cec5;
  font-size: 13px;
  font-weight: 550;
}
.mega-menu-feature {
  position: relative;
  display: block;
  min-height: 190px;
  overflow: hidden;
  border-radius: 10px;
  background: #ddd3c7;
  color: #fff;
}
.mega-menu-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(23, 17, 13, 0.68), transparent 75%);
}
.mega-menu-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.mega-menu-feature:hover img {
  transform: scale(1.025);
}
.mega-menu-feature > span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.mega-menu-feature small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mega-menu-feature strong {
  max-width: 190px;
  font-size: 14px;
  font-weight: 650;
}
.mega-menu-feature > svg {
  position: absolute;
  right: 18px;
  bottom: 19px;
  z-index: 3;
  width: 17px;
  height: 17px;
  transition: transform 0.3s var(--ease);
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: 48px;
  bottom: 174px;
  max-width: 660px;
}
.hero-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-optical-sizing: auto;
  font-size: 96px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.79;
  text-transform: uppercase;
}
.hero-copy > p:not(.hero-kicker) {
  max-width: 500px;
  margin: 25px 0 27px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.86);
}
.split-button {
  display: inline-grid;
  min-height: 48px;
  grid-template-columns: auto 42px;
  align-items: stretch;
  padding: 3px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.split-button-label {
  display: flex;
  align-items: center;
  padding: 0 18px;
}
.split-button-icon {
  display: grid;
  min-width: 42px;
  place-items: center;
  border-radius: 5px;
  background: #111;
  color: #fff;
  transition:
    background 0.35s,
    color 0.35s;
}
.split-button-icon svg {
  width: 17px;
  height: 17px;
  transition: transform 0.35s var(--ease);
}
.split-button:hover .split-button-icon {
  background: #b69a7c;
}
.split-button:hover .split-button-icon svg {
  transform: translateX(2px);
}
.split-button-light {
  border-color: rgba(255, 255, 255, 0.82);
}
.hero-features {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 126px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(0deg, rgba(35, 25, 18, 0.32), transparent);
}
.hero-feature {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 20px 32px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background 0.35s var(--ease);
}
.hero-feature:last-child {
  border-right: 0;
}
.hero-feature::before,
.hero-feature::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  transform-origin: left;
}
.hero-feature::before {
  background: rgba(255, 255, 255, 0.22);
}
.hero-feature::after {
  background: #fff;
  transform: scaleX(0);
}
.hero-feature.is-active::after {
  animation: hero-progress 7s linear forwards;
}
.hero-feature:hover,
.hero-feature.is-active {
  background: rgba(18, 13, 9, 0.14);
}
.hero-feature-index {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
}
.hero-feature-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}
.hero-feature strong {
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-optical-sizing: auto;
  font-size: 24px;
  font-weight: 400;
}
.hero-feature-copy > span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}
.hero-feature svg {
  width: 19px;
  height: 19px;
  opacity: 0.72;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.hero-feature:hover svg,
.hero-feature.is-active svg {
  opacity: 1;
  transform: translate(2px, -2px);
}
@keyframes hero-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.ticker {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  overflow: hidden;
  border-bottom: 1px solid #ece9e5;
  color: #5e5b57;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  white-space: nowrap;
}
.section-space {
  padding-block: 128px;
}
.category-section {
  padding-bottom: 0;
}
.category-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}
.category-intro h2 {
  margin: 0;
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.category-intro p {
  margin: 13px 0 0;
  color: var(--muted);
}
.category-grid {
  display: grid;
  height: 680px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(290px, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.category-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-soft);
  background: #ddd7ce;
  color: #fff;
}
.category-card-tall {
  grid-row: 1 / 3;
}
.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(21, 16, 12, 0.68), rgba(21, 16, 12, 0.03) 64%);
  transition: background 0.4s var(--ease);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.category-card:hover img {
  transform: scale(1.025);
}
.category-card:hover::after {
  background: linear-gradient(0deg, rgba(21, 16, 12, 0.76), rgba(21, 16, 12, 0.06) 68%);
}
.category-card-copy {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.category-card-copy small {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.category-card-copy strong {
  max-width: calc(100% - 36px);
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(27px, 2.8vw, 42px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}
.category-card:not(.category-card-tall) .category-card-copy strong {
  font-size: clamp(23px, 2vw, 30px);
}
.category-card > svg {
  position: absolute;
  right: 25px;
  bottom: 29px;
  z-index: 3;
  width: 20px;
  height: 20px;
  transition: transform 0.35s var(--ease);
}
.category-card:hover > svg,
.category-card:focus-visible > svg {
  transform: translate(3px, -3px);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}
.section-head h2,
.featured-copy h2,
.campaign-copy h2,
.instagram-head h2 {
  margin: 0;
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-optical-sizing: auto;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.section-head p {
  max-width: 440px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}
.view-all {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}
.product-track {
  display: grid;
  grid-auto-columns: calc((100% - 42px) / 4);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.product-track::-webkit-scrollbar {
  display: none;
}
.product-card {
  min-width: 0;
  border-radius: var(--radius-soft);
  scroll-snap-align: start;
}
.product-media {
  position: relative;
}
.product-photo {
  position: relative;
  display: block;
  aspect-ratio: 0.79;
  overflow: hidden;
  border-radius: var(--radius-soft);
  background: #f4f4f2;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-photo:hover img {
  transform: scale(1.025);
}
.product-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s;
}
.heart:hover {
  transform: scale(1.14);
}
.heart.is-active {
  color: #a55a55;
}
.add-to-cart {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(27, 21, 16, 0.14);
  cursor: pointer;
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.add-to-cart:hover,
.add-to-cart.is-added {
  background: var(--ink);
  color: #fff;
}
.add-to-cart:hover {
  transform: translateY(-2px);
}
.add-to-cart svg {
  width: 20px;
  height: 20px;
}
.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 2px 0;
}
.product-meta > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.product-meta a {
  font-size: 14px;
  font-weight: 600;
}
.product-meta span {
  margin-top: 2px;
  color: #8b8883;
  font-size: 12px;
}
.product-meta strong {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.slider-footer {
  display: grid;
  grid-template-columns: minmax(160px, 340px) auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
}
.slider-line {
  height: 2px;
  background: #dedbd6;
}
.slider-line span {
  display: block;
  width: 32%;
  height: 100%;
  background: #111;
}
.slider-count {
  font-size: 20px;
}
.slider-count small {
  margin-left: 4px;
  color: #b5b1ab;
  font-size: 12px;
}
.slider-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.slider-buttons button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid #dedbd6;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  transition:
    background 0.3s,
    color 0.3s;
}
.slider-buttons button:last-child,
.slider-buttons button:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}
.featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 700px;
  background: #e6ddd3;
  border-radius: var(--radius-soft);
  overflow: hidden;
}
.featured-media {
  position: relative;
  min-width: 0;
  min-height: 700px;
  overflow: hidden;
  background: #eee;
}
.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-media > span {
  position: absolute;
  bottom: 20px;
  left: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.featured-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 10.5%;
  background: #dfd1c1;
}
.overline {
  margin: 0 0 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.featured-copy h2 {
  font-size: 96px;
  text-transform: uppercase;
}
.featured-copy > p:not(.overline) {
  max-width: 460px;
  margin: 28px 0 18px;
  color: #5f574e;
  font-size: 16px;
  line-height: 1.75;
}
.featured-price {
  margin-bottom: 29px;
  font-size: 16px;
  font-weight: 650;
}
.campaign {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius-soft);
  background: #cfb697;
}
.campaign > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.campaign::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(64, 43, 28, 0.3), transparent 64%);
}
.campaign-copy {
  position: absolute;
  top: 50%;
  left: 6.2%;
  z-index: 2;
  max-width: 540px;
  transform: translateY(-50%);
  color: #fff;
}
.campaign-copy h2 {
  font-size: 72px;
  text-transform: uppercase;
}
.campaign-copy > p:not(.overline) {
  max-width: 360px;
  margin: 18px 0 27px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.86);
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-block: 88px 105px;
  padding: 45px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.benefit {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 24px;
  text-align: center;
}
.benefit:not(:last-child) {
  border-right: 1px solid var(--line);
}
.benefit svg {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  fill: none;
  stroke: #151515;
  stroke-width: 1.25;
}
.benefit strong {
  font-size: 14px;
  font-weight: 650;
}
.benefit span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}
.testimonials {
  margin-bottom: 130px;
  padding: 92px clamp(34px, 6vw, 92px) 88px;
  border-radius: var(--radius-soft);
  background: #f1ede7;
  color: var(--ink);
}
.testimonials-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 70px;
}
.testimonials-head h2 {
  margin: 0;
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-optical-sizing: auto;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.94;
}
.testimonials-head p {
  max-width: 430px;
  margin: 0 0 22px;
  color: #68635d;
  font-size: 14px;
}
.testimonials-head a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid #a8a096;
  font-size: 13px;
  font-weight: 650;
}
.testimonials-head a svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.testimonials-head a:hover svg {
  transform: translateX(4px);
}
.testimonials-viewport {
  margin-top: 68px;
  padding-top: 42px;
  overflow: hidden;
  border-top: 1px solid #d4cec5;
  outline-offset: 5px;
  touch-action: pan-y;
}
.testimonials-list {
  display: grid;
  grid-auto-columns: calc(100% / 3);
  grid-auto-flow: column;
  transition: transform 0.65s var(--ease);
}
.testimonials-list figure {
  display: flex;
  min-width: 0;
  min-height: 310px;
  flex-direction: column;
  margin: 0;
  padding: 0 38px;
}
.testimonials-list figure + figure {
  border-left: 1px solid #d4cec5;
}
.testimonials-list figure:nth-child(3n + 1) {
  padding-left: 0;
  border-left: 0;
}
.testimonials-list figure:nth-child(3n) {
  padding-right: 0;
}
.review-rating {
  display: flex;
  gap: 3px;
  color: #302d29;
}
.review-rating svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke-width: 1.3;
}
.testimonials-list blockquote {
  margin: 24px 0 0;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(21px, 1.7vw, 25px);
  font-weight: 450;
  letter-spacing: -0.02em;
  line-height: 1.48;
}
.testimonials-list figcaption {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 36px;
}
.review-author {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}
.review-author strong {
  font-size: 13px;
  font-weight: 650;
}
.review-author > span {
  color: #77716b;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.review-verified {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  color: #5f5a54;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.review-verified svg {
  width: 15px;
  height: 15px;
}
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 42px;
}
.testimonials-status {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #5f5a54;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
}
.testimonials-progress {
  display: block;
  width: 150px;
  height: 1px;
  overflow: hidden;
  background: #d4cec5;
}
.testimonials-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0.5);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
}
.testimonials-buttons {
  display: flex;
  gap: 8px;
}
.testimonials-buttons button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid #cfc8bf;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.testimonials-buttons button:hover,
.testimonials-buttons button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.testimonials-buttons svg {
  width: 18px;
  height: 18px;
}
.instagram {
  padding-bottom: 130px;
}
.instagram-head {
  text-align: center;
}
.instagram-head p {
  margin: 0 0 5px;
  color: #88847f;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.instagram-head h2 {
  font-size: 36px;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 36px;
}
.instagram-grid a {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f2f1ee;
}
.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s var(--ease),
    filter 0.5s;
}
.instagram-grid a:hover img {
  transform: scale(1.035);
  filter: saturate(0.82);
}
.site-footer {
  margin: 0 var(--hero-frame-gap) var(--hero-frame-gap);
  overflow: hidden;
  border-radius: var(--radius-soft);
  background: #f1ede7;
  color: var(--ink);
}
.site-footer .wrap {
  width: min(1340px, calc(100% - 80px));
}
.footer-presentation {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  padding-block: 112px 92px;
  border-bottom: 1px solid #d4cec5;
}
.footer-presentation h2 {
  max-width: 850px;
  margin: 0;
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-optical-sizing: auto;
  font-size: clamp(60px, 6.7vw, 104px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.88;
}
.footer-collection-link {
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid #a8a096;
  border-bottom: 1px solid #a8a096;
  font-size: 13px;
  font-weight: 650;
}
.footer-collection-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s var(--ease);
}
.footer-collection-link:hover svg {
  transform: translate(3px, -3px);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1.15fr;
  gap: 70px;
  padding-block: 82px 96px;
}
.footer-wordmark {
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-optical-sizing: auto;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.14em;
  line-height: 1;
}
.footer-brand p,
.footer-contact p {
  margin: 22px 0 0;
  color: #68635d;
  font-size: 14px;
  line-height: 1.8;
}
.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.footer-column h2 {
  margin: 0 0 13px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-column a {
  color: #56524d;
  font-size: 14px;
}
.footer-column a:hover {
  text-decoration: underline;
}
.footer-email {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #a8a096;
  color: var(--ink) !important;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid #d4cec5;
  color: #77716b;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  opacity: 0;
  background: rgba(21, 17, 14, 0.42);
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s;
}
.cart-overlay[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 81;
  display: flex;
  width: min(460px, 100vw);
  height: 100dvh;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  box-shadow: -24px 0 60px rgba(31, 23, 17, 0.16);
  transform: translateX(100%);
  transition: transform 0.42s var(--ease);
}
.cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}
.cart-drawer-header {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-header p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cart-drawer-header h2 {
  margin: 0;
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-optical-sizing: auto;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}
.cart-drawer-close {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.cart-drawer-close:hover {
  background: var(--ink);
  color: #fff;
}
.cart-drawer-close svg {
  width: 20px;
  height: 20px;
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 28px 28px;
}
.cart-notice {
  min-height: 44px;
  margin: 0 -28px 22px;
  padding: 13px 28px;
  background: #f1ede7;
  color: #514a43;
  font-size: 12px;
  font-weight: 600;
}
.cart-notice:empty {
  min-height: 0;
  margin-bottom: 0;
  padding-block: 0;
}
.cart-items {
  display: grid;
  gap: 0;
}
.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-image {
  display: block;
  align-self: start;
  aspect-ratio: 0.79;
  overflow: hidden;
  border-radius: 10px;
  background: var(--soft);
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.cart-item-brand {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
}
.cart-item-name {
  font-size: 16px;
  font-weight: 650;
}
.cart-item-category {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}
.cart-item-price {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 650;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
}
.cart-quantity {
  display: grid;
  grid-template-columns: 32px 32px 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.cart-quantity button {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.cart-quantity button:hover {
  background: var(--soft);
}
.cart-quantity svg {
  width: 14px;
  height: 14px;
}
.cart-quantity span {
  text-align: center;
  font-size: 14px;
  font-weight: 650;
}
.cart-remove {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cart-empty {
  display: grid;
  min-height: 360px;
  align-content: center;
  justify-items: center;
  padding: 40px 0;
  text-align: center;
}
.cart-empty[hidden] {
  display: none;
}
.cart-empty > svg {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  stroke-width: 1.3;
}
.cart-empty h3 {
  margin: 0;
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}
.cart-empty p {
  max-width: 280px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.cart-drawer-footer {
  padding: 22px 28px 26px;
  border-top: 1px solid var(--line);
  background: #faf9f7;
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 16px;
}
.cart-total strong {
  font-size: 20px;
}
.cart-checkout,
.cart-basket-link {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
}
.cart-checkout {
  gap: 12px;
  background: var(--ink);
  color: #fff;
}
.cart-checkout:hover {
  background: #34302c;
}
.cart-checkout svg {
  width: 18px;
  height: 18px;
}
.cart-basket-link {
  min-height: auto;
  margin-top: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 1000px) {
  :root {
    --content: calc(100vw - 28px);
  }
  .hero {
    height: 760px;
    min-height: 0;
  }
  .desktop-nav {
    display: none;
  }
  .mega-menu {
    display: none;
  }
  .site-header {
    height: 70px;
  }
  .menu-toggle {
    position: absolute;
    top: 17px;
    right: 18px;
    z-index: 12;
    display: block;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
  }
  .mobile-brand-logo {
    position: absolute;
    top: 16px;
    left: 20px;
    z-index: 12;
    display: block;
    font-family: "Bodoni Moda", Didot, Georgia, serif;
    font-optical-sizing: auto;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -0.14em;
    line-height: 1;
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 11;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: #eee8df;
    color: #151515;
    transition:
      opacity 0.4s,
      visibility 0.4s;
  }
  .mobile-menu[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
  }
  .mobile-menu-inner {
    width: min(760px, calc(100% - 80px));
  }
  .mobile-menu-inner > p {
    margin: 0 0 28px;
    color: #716b64;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .mobile-menu-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #d4cec5;
  }
  .mobile-menu-categories a {
    padding: 18px 0;
    border-bottom: 1px solid #d4cec5;
    font-family: "Bodoni Moda", Didot, Georgia, serif;
    font-optical-sizing: auto;
    font-size: 42px;
  }
  .mobile-menu-categories a:nth-child(odd) {
    border-right: 1px solid #d4cec5;
  }
  .mobile-menu-categories a:nth-child(even) {
    padding-left: 28px;
  }
  .mobile-menu-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 32px;
  }
  .mobile-menu-secondary a {
    font-size: 13px;
    font-weight: 600;
  }
  .hero-copy {
    left: 30px;
    bottom: 160px;
  }
  .hero-copy h1,
  .hero-copy h2 {
    font-size: 80px;
  }
  .hero-features {
    height: 114px;
  }
  .hero-feature {
    gap: 14px;
    padding: 16px 18px;
  }
  .hero-feature strong {
    font-size: 20px;
  }
  .hero-feature-copy > span {
    font-size: 12px;
  }
  .product-track {
    grid-auto-columns: calc((100% - 14px) / 2);
  }
  .category-grid {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 390px);
  }
  .category-card-tall {
    grid-row: auto;
  }
  .featured {
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }
  .featured-media {
    min-height: 600px;
  }
  .featured-copy {
    padding: 50px 8%;
  }
  .featured-copy h2 {
    font-size: 72px;
  }
  .campaign-copy h2 {
    font-size: 64px;
  }
  .campaign {
    height: 450px;
  }
  .benefits {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .benefit:nth-child(2) {
    border-right: 0;
  }
  .benefit:nth-child(n + 3) {
    padding-top: 38px;
    border-top: 1px solid var(--line);
  }
  .testimonials-list {
    grid-auto-columns: 50%;
  }
  .testimonials-list figure {
    padding: 0 24px;
    border-left: 1px solid #d4cec5;
  }
  .testimonials-list figure:nth-child(2n + 1) {
    padding-left: 0;
    border-left: 0;
  }
  .testimonials-list figure:nth-child(2n) {
    padding-right: 0;
  }
  .testimonials-list figcaption {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
@media (max-width: 640px) {
  :root {
    --content: calc(100vw - 20px);
    --hero-frame-gap: 10px;
  }
  .hero {
    height: 680px;
  }
  .hero-slide {
    background-position: 62% center;
  }
  .hero-slide::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(26, 17, 12, 0.6), transparent 70%);
  }
  .hero-copy {
    left: 22px;
    right: 22px;
    bottom: 112px;
  }
  .hero-copy > p:not(.hero-kicker) {
    max-width: 320px;
    margin-block: 18px;
  }
  .hero-features {
    height: 86px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-feature {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px;
    padding: 12px 10px;
  }
  .hero-feature strong {
    font-size: 15px;
    line-height: 1.1;
  }
  .hero-feature-copy > span,
  .hero-feature svg {
    display: none;
  }
  .hero-feature-index {
    font-size: 10px;
  }
  .ticker {
    justify-content: flex-start;
    padding-inline: 24px;
  }
  .ticker div:nth-child(n + 3) {
    display: none;
  }
  .section-space {
    padding-block: 86px;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .category-intro {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .category-intro h2 {
    font-size: 48px;
  }
  .category-grid {
    grid-template-rows: repeat(2, 240px);
    gap: 7px;
  }
  .category-card-copy {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
  .category-card-copy small {
    display: none;
  }
  .category-card-copy strong,
  .category-card:not(.category-card-tall) .category-card-copy strong {
    max-width: calc(100% - 24px);
    font-size: 24px;
    line-height: 0.98;
  }
  .category-card > svg {
    right: 12px;
    bottom: 15px;
    width: 17px;
    height: 17px;
  }
  .section-head h2 {
    font-size: 48px;
  }
  .view-all {
    margin: 0;
  }
  .product-track {
    grid-auto-columns: 82%;
    gap: 10px;
  }
  .product-photo {
    aspect-ratio: 0.78;
  }
  .slider-footer {
    grid-template-columns: 1fr auto;
    margin-top: 30px;
  }
  .slider-count {
    display: none;
  }
  .slider-buttons {
    grid-column: 2;
  }
  .featured {
    grid-template-columns: 1fr;
  }
  .featured-media {
    min-height: 480px;
  }
  .featured-copy {
    padding: 65px 28px;
  }
  .featured-copy h2 {
    font-size: 72px;
  }
  .campaign {
    height: 610px;
  }
  .campaign > img {
    object-position: 68% center;
  }
  .campaign::after {
    background: linear-gradient(
      0deg,
      rgba(47, 31, 20, 0.62),
      rgba(47, 31, 20, 0.08) 75%
    );
  }
  .campaign-copy {
    top: auto;
    right: 20px;
    bottom: 34px;
    left: 20px;
    transform: none;
  }
  .campaign-copy h2 {
    font-size: 48px;
  }
  .benefits {
    grid-template-columns: 1fr;
    margin-block: 70px;
  }
  .testimonials {
    margin-bottom: 90px;
    padding: 64px 24px 60px;
  }
  .testimonials-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .testimonials-head h2 {
    font-size: 48px;
  }
  .testimonials-viewport {
    margin-top: 48px;
    padding-top: 34px;
  }
  .testimonials-list {
    grid-auto-columns: 100%;
  }
  .testimonials-list figure,
  .testimonials-list figure:nth-child(n) {
    min-height: 320px;
    padding: 0;
    border-top: 0;
    border-left: 0;
  }
  .testimonials-list blockquote {
    font-size: 22px;
  }
  .testimonials-list figcaption {
    margin-top: 34px;
    padding-top: 0;
  }
  .testimonials-controls {
    margin-top: 34px;
  }
  .testimonials-progress {
    width: 92px;
  }
  .benefit {
    padding-block: 30px !important;
    border-top: 0 !important;
    border-right: 0 !important;
  }
  .benefit:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }
  .instagram {
    padding-bottom: 90px;
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }
  .instagram-grid a:first-child {
    grid-column: 1/3;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 64px 72px;
  }
  .site-footer .wrap {
    width: calc(100% - 40px);
  }
  .footer-presentation {
    align-items: flex-start;
    flex-direction: column;
    gap: 48px;
    padding-block: 76px 64px;
  }
  .footer-presentation h2 {
    font-size: 54px;
  }
  .footer-collection-link {
    width: 100%;
  }
  .footer-brand {
    padding-bottom: 10px;
  }
  .footer-bottom {
    padding-inline: 4px;
  }
  .cart-drawer-header {
    min-height: 96px;
    padding: 20px;
  }
  .cart-drawer-body {
    padding: 0 20px 20px;
  }
  .cart-notice {
    margin-inline: -20px;
    padding-inline: 20px;
  }
  .cart-item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
  }
  .cart-drawer-footer {
    padding: 20px;
  }
  .mobile-menu-inner {
    width: calc(100% - 40px);
  }
  .mobile-menu-inner > p {
    margin-bottom: 18px;
  }
  .mobile-menu-categories a {
    padding: 14px 0;
    font-size: 31px;
  }
  .mobile-menu-categories a:nth-child(even) {
    padding-left: 18px;
  }
  .mobile-menu-secondary {
    gap: 10px 20px;
    margin-top: 24px;
  }
}
.product-card {
  position: relative;
}
.menu-open .mobile-brand-logo,
.menu-open .menu-toggle {
  color: #151515;
}
.menu-open .menu-toggle {
  border-color: rgba(21, 21, 21, 0.35);
}
@media (max-width: 640px) {
  .hero-copy h1,
  .hero-copy h2 {
    font-size: 48px;
    line-height: 0.84;
    letter-spacing: -0.04em;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-slide,
  .product-photo img,
  .instagram-grid img,
  .hero-feature::after {
    animation: none;
    transition: none;
  }
}

/* Lucide icon system and split CTA refinement */
.lucide {
  display: block;
  flex: 0 0 auto;
}
.nav-group a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-group a svg {
  width: 13px;
  height: 13px;
}
.nav-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.ticker > div {
  display: flex;
  align-items: center;
  gap: 40px;
}
.ticker-spark {
  width: 11px;
  height: 11px;
  color: #bdb7af;
}
.view-all svg,
.footer-email svg {
  width: 17px;
  height: 17px;
  transition: transform 0.3s;
}
.view-all:hover svg,
.footer-email:hover svg {
  transform: translateX(4px);
}

.heart {
  display: grid;
  padding: 0;
  place-items: center;
}
.heart svg {
  width: 20px;
  height: 20px;
  transition: fill 0.25s;
}
.heart.is-active svg {
  fill: currentColor;
}
.slider-buttons button svg {
  width: 17px;
  height: 17px;
}
.benefit svg {
  stroke-width: 1.5;
}

@media (max-width: 1000px) {
  .menu-toggle {
    border-radius: 6px;
  }
  .menu-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s;
  }
  .menu-toggle .menu-close-icon {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] .menu-open-icon {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] .menu-close-icon {
    opacity: 1;
  }
}
@media (max-width: 640px) {
  .ticker > div:nth-child(2) .ticker-spark {
    display: none;
  }
}
