:root {
  --mst-ink: #140f10;
  --mst-ink-soft: #23191c;
  --mst-cream: #f4eee7;
  --mst-cream-strong: #e9dfd3;
  --mst-sand: #d2c0b1;
  --mst-rose: #9e6e6d;
  --mst-gold: #c9af8f;
  --mst-line: rgba(20, 15, 16, 0.12);
  --mst-white: #ffffff;
  --mst-shadow: 0 24px 80px rgba(15, 10, 11, 0.16);
  --mst-radius-sm: 18px;
  --mst-radius-lg: 34px;
  --mst-radius-pill: 999px;
  --mst-transition: 240ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mst-ink);
  background:
    radial-gradient(circle at top left, rgba(210, 192, 177, 0.3), transparent 30%),
    linear-gradient(180deg, #f8f5f0 0%, #f4eee7 38%, #f8f5f0 100%);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

body.admin-bar .site-header {
  top: 32px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--mst-transition), opacity var(--mst-transition), transform var(--mst-transition);
}

a:hover {
  color: inherit;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--mst-ink);
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.site {
  overflow: clip;
}

.site-main {
  min-height: 50vh;
}

.container,
.container-fluid {
  position: relative;
  z-index: 1;
}

.announcement-bar {
  background: rgba(20, 15, 16, 0.95);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.announcement-bar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.announcement-bar__meta {
  gap: 1.4rem;
}

.mst-front-page--reference .announcement-bar__inner {
  justify-content: center;
}

.mst-front-page--reference .announcement-bar__meta {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 238, 231, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20, 15, 16, 0.08);
  transition: background var(--mst-transition), border-color var(--mst-transition), box-shadow var(--mst-transition);
}

.site-header.is-scrolled {
  background: rgba(248, 245, 240, 0.94);
  box-shadow: 0 14px 42px rgba(20, 15, 16, 0.08);
}

.site-header__inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.site-header__brand {
  justify-self: center;
}

.custom-logo-link img,
.custom-logo {
  max-height: 48px;
  width: auto;
}

.site-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.site-brand__name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-brand__tag {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.58;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu--primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.8vw, 2rem);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.menu--primary a,
.menu--footer a,
.menu--legal a,
.menu--mobile a,
.announcement-bar a {
  position: relative;
}

.menu--primary a::after,
.menu--footer a::after,
.menu--legal a::after,
.menu--mobile a::after,
.announcement-bar a::after,
.section-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--mst-transition);
}

.menu--primary a:hover::after,
.menu--footer a:hover::after,
.menu--legal a:hover::after,
.menu--mobile a:hover::after,
.announcement-bar a:hover::after,
.section-link:hover::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}

.site-action,
.site-header__toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mst-ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
}

.site-action:hover,
.site-header__toggle:hover {
  background: rgba(20, 15, 16, 0.06);
}

.site-action svg,
.site-header__toggle svg,
.collection-card__link svg {
  width: 20px;
  height: 20px;
}

.site-action--cart {
  position: relative;
}

.site-action__count {
  position: absolute;
  right: 2px;
  top: 3px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mst-white);
  background: var(--mst-ink);
  border-radius: var(--mst-radius-pill);
  font-size: 0.68rem;
}

.offcanvas-theme {
  color: var(--mst-white);
  background:
    radial-gradient(circle at top right, rgba(158, 110, 109, 0.5), transparent 34%),
    linear-gradient(180deg, #1d1517 0%, #140f10 100%);
}

.offcanvas-theme--light {
  color: var(--mst-ink);
  background: linear-gradient(180deg, #faf8f3 0%, #f4eee7 100%);
}

.offcanvas-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.menu--mobile {
  display: grid;
  gap: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
}

.offcanvas-meta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.offcanvas-theme--light .offcanvas-meta {
  border-color: rgba(20, 15, 16, 0.1);
}

.search-form__row,
.newsletter-form__row,
.newsletter-form--inline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.search-field,
.newsletter-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 1.15rem;
  color: var(--mst-ink);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 15, 16, 0.14);
  border-radius: var(--mst-radius-pill);
}

.search-submit,
.newsletter-form button,
.button-primary,
.button-secondary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 56px;
  padding: 0 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--mst-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  transition: transform var(--mst-transition), border-color var(--mst-transition), background var(--mst-transition), color var(--mst-transition), box-shadow var(--mst-transition);
}

.search-submit,
.newsletter-form button,
.button-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  color: var(--mst-white);
  background: var(--mst-ink);
}

.button-primary:hover,
.button-secondary:hover,
.search-submit:hover,
.newsletter-form button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  transform: translateY(-2px);
}

.button-primary--dark {
  background: var(--mst-ink);
}

.button-secondary {
  color: var(--mst-white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary--dark {
  color: var(--mst-ink);
  background: transparent;
  border-color: rgba(20, 15, 16, 0.18);
}

.section-space {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.section-space--tight {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.section-heading,
.section-heading--split {
  margin-bottom: 2.25rem;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-heading h2,
.section-heading--split h2,
.newsletter-panel h2,
.site-footer__brand h2,
.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.section-eyebrow,
.site-footer__eyebrow,
.journal-card__meta,
.search-result__type,
.page-hero__meta,
.collection-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(20, 15, 16, 0.58);
}

.collection-card__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.section-link {
  align-self: center;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  min-height: 100vh;
  color: var(--mst-white);
  background: var(--mst-ink);
}

.hero-panel__media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 7, 0.74) 0%, rgba(8, 7, 7, 0.42) 42%, rgba(8, 7, 7, 0.14) 100%),
    linear-gradient(180deg, rgba(8, 7, 7, 0.1) 0%, rgba(8, 7, 7, 0.62) 100%);
}

.hero-panel h1,
.hero-panel .section-eyebrow,
.hero-panel p,
.hero-panel span {
  color: var(--mst-white);
}

.hero-panel__content {
  position: relative;
  padding: 10rem 0 5.5rem;
}

.hero-panel h1 {
  max-width: 14ch;
  font-size: clamp(4rem, 9vw, 8rem);
}

.hero-panel__text {
  max-width: 42rem;
  margin-top: 1.4rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-panel__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-panel__note {
  position: relative;
  margin-bottom: 5.5rem;
  padding: 1.4rem 1.5rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--mst-radius-sm);
}

.hero-panel__note span {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.service-strip {
  position: relative;
  margin-top: -2rem;
  z-index: 2;
}

.service-strip__grid {
  padding: 1.3rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  background: rgba(244, 238, 231, 0.96);
  border: 1px solid rgba(20, 15, 16, 0.08);
  border-radius: var(--mst-radius-lg);
  box-shadow: var(--mst-shadow);
}

.service-strip__grid div {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.92rem;
}

.service-strip__grid span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--mst-rose);
}

.collection-card,
.product-card,
.journal-card,
.story-split__media,
.lookbook-panel__media,
.newsletter-panel__inner,
.content-shell,
.search-result,
.empty-state,
.woocommerce-shell .woocommerce-message,
.woocommerce-shell .woocommerce-info,
.woocommerce-shell .woocommerce-error {
  border-radius: var(--mst-radius-lg);
}

.collection-card {
  min-height: 34rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--mst-white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 7, 0.1) 0%, rgba(8, 7, 7, 0.72) 100%);
}

.collection-card > * {
  position: relative;
}

.collection-card__body {
  display: grid;
  gap: 0.8rem;
}

.collection-card h3 {
  color: var(--mst-white);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.collection-card p {
  max-width: 20rem;
  color: rgba(255, 255, 255, 0.84);
}

.collection-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

.story-split__content,
.lookbook-panel__content {
  display: grid;
  gap: 1.25rem;
}

.story-split__content h2,
.lookbook-panel__content h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.story-split__media,
.lookbook-panel__media {
  overflow: hidden;
  box-shadow: var(--mst-shadow);
}

.story-split__media img,
.lookbook-panel__media img,
.journal-card__media img,
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-band {
  padding: 1.15rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(20, 15, 16, 0.1);
  border-bottom: 1px solid rgba(20, 15, 16, 0.1);
  background: rgba(255, 255, 255, 0.3);
}

.marquee-band__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: mst-marquee 26s linear infinite;
}

.marquee-band span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.product-card {
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(20, 15, 16, 0.08);
}

.product-card__media {
  aspect-ratio: 0.78;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(210, 192, 177, 0.4), rgba(244, 238, 231, 0.8));
}

.product-card__content {
  padding: 1rem 1rem 1.25rem;
}

.product-card__content h3 {
  font-size: 1.5rem;
  line-height: 1.08;
}

.product-card__content p,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin-top: 0.55rem;
  color: rgba(20, 15, 16, 0.72);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.lookbook-panel__content {
  padding: 1rem 0;
}

.journal-card {
  overflow: hidden;
  height: 100%;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 15, 16, 0.08);
}

.journal-card__media {
  display: block;
  aspect-ratio: 1.05;
  overflow: hidden;
}

.journal-card__content {
  padding: 1.4rem;
}

.journal-card__content h3,
.journal-card__content h2 {
  margin-bottom: 0.7rem;
  font-size: 2rem;
}

.newsletter-panel {
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.newsletter-panel__inner {
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(158, 110, 109, 0.24), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(233, 223, 211, 0.75));
  border: 1px solid rgba(20, 15, 16, 0.08);
  box-shadow: var(--mst-shadow);
}

.site-footer {
  position: relative;
  padding: 4.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, #1c1516 0%, #100b0c 100%);
}

.site-footer__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(158, 110, 109, 0.24), transparent 32%);
}

.site-footer h2,
.site-footer__title {
  color: var(--mst-white);
}

.site-footer__title {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.menu--footer,
.menu--legal {
  display: grid;
  gap: 0.6rem;
  font-size: 0.94rem;
}

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.menu--legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.page-hero {
  padding: 7rem 0 2rem;
}

.page-hero--compact {
  padding-top: 5rem;
}

.mst-theme-reference .page-hero--reference {
  padding-top: 4rem;
  background: #000;
}

.mst-theme-reference .page-hero--reference .section-eyebrow,
.mst-theme-reference .page-hero--reference h1,
.mst-theme-reference .page-hero--reference .page-hero__meta,
.mst-theme-reference .page-hero--reference .archive-description,
.mst-theme-reference .page-hero--reference .woocommerce-breadcrumb,
.mst-theme-reference .page-hero--reference .woocommerce-breadcrumb a {
  color: var(--mst-white);
}

.mst-theme-reference .page-hero--reference .archive-description {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-space--reference-page {
  background: linear-gradient(180deg, #faf7f2 0%, #f4eee7 100%);
}

.archive-description,
.content-shell,
.search-result,
.empty-state {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(20, 15, 16, 0.08);
}

.archive-description {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
}

.content-shell {
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--mst-shadow);
}

.content-shell--reference,
.woocommerce-shell--reference {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 15, 16, 0.08);
  box-shadow: var(--mst-shadow);
}

.content-shell--wc-page {
  padding: clamp(1rem, 3vw, 2rem);
}

.content-shell--single {
  max-width: 920px;
  margin: 0 auto;
}

.content-shell__featured-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: var(--mst-radius-sm);
}

.content-shell > * + * {
  margin-top: 1.1rem;
}

.content-shell h2,
.content-shell h3,
.content-shell h4 {
  margin-top: 2rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.content-shell ul,
.content-shell ol {
  padding-left: 1.25rem;
}

.search-results {
  display: grid;
  gap: 1rem;
}

.search-result,
.empty-state {
  padding: 1.5rem;
}

.search-result h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.pagination-wrap {
  margin-top: 2rem;
}

.pagination .nav-links,
.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0;
  border: 0;
}

.pagination .page-numbers,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 15, 16, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.woocommerce-shell .woocommerce-message,
.woocommerce-shell .woocommerce-info,
.woocommerce-shell .woocommerce-error {
  margin-bottom: 1rem;
  padding: 1rem 1.25rem 1rem 3.25rem;
  background: rgba(255, 255, 255, 0.72);
  border-top: 0;
}

.woocommerce-breadcrumb-wrap {
  margin-top: 1rem;
}

.woocommerce-breadcrumb,
.woocommerce-breadcrumb a {
  color: rgba(20, 15, 16, 0.58);
  font-size: 0.86rem;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce ul.products li.product::before,
.woocommerce ul.products li.product::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: auto;
  margin: 0;
  float: none;
  list-style: none;
}

.woocommerce ul.products li.product a {
  display: block;
  overflow: hidden;
  border-radius: var(--mst-radius-lg);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 15, 16, 0.08);
}

.woocommerce ul.products li.product a img {
  margin: 0;
  aspect-ratio: 0.78;
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 1rem 1rem 0;
  font-size: 1.6rem;
}

.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-left: 1rem;
  margin-right: 1rem;
}

.woocommerce ul.products li.product .button {
  margin-bottom: 1rem;
}

.single-product div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.single-product div.product div.images,
.single-product div.product div.summary {
  width: auto;
  float: none;
}

.single-product div.product .product_title {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.single-product div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(20, 15, 16, 0.14);
  background: rgba(255, 255, 255, 0.76);
}

.woocommerce .quantity .qty {
  width: 86px;
}

.woocommerce-tabs,
.woocommerce div.product .woocommerce-product-gallery__image img,
.woocommerce form.checkout,
.woocommerce-account .woocommerce,
.cart-collaterals,
.shop_table {
  border-radius: var(--mst-radius-lg);
}

.woocommerce table.shop_table {
  background: rgba(255, 255, 255, 0.62);
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(20, 15, 16, 0.08);
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  padding: 1rem;
}

.wc-block-cart,
.wc-block-checkout,
.wc-block-components-sidebar,
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  color: var(--mst-ink);
}

.wc-block-components-main,
.wc-block-components-sidebar,
.wc-block-cart__totals-title,
.wc-block-checkout__sidebar,
.wc-block-components-order-summary,
.wc-block-components-totals-wrapper {
  background: transparent;
}

.wc-block-components-product-name,
.wc-block-components-order-summary .wc-block-components-order-summary-item__description {
  color: var(--mst-ink);
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-address-card,
.wc-block-components-totals-coupon,
.wc-block-components-totals-item,
.wc-block-components-panel,
.wc-block-components-checkout-step {
  border-radius: 20px;
}

.wc-block-components-button,
.wc-block-components-checkout-place-order-button {
  min-height: 56px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mst-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1199.98px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-header__brand {
    justify-self: start;
  }

  .hero-panel__content {
    padding-top: 8rem;
  }

  .service-strip__grid,
  .newsletter-panel__inner,
  .single-product div.product {
    grid-template-columns: 1fr;
  }

  .section-heading--split,
  .site-footer__bottom {
    flex-direction: column;
    align-items: start;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  body.admin-bar .site-header {
    top: 0;
  }

  .announcement-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .site-header__inner {
    min-height: 76px;
    gap: 0.75rem;
  }

  .site-brand__name {
    font-size: 1.35rem;
  }

  .site-brand__tag {
    display: none;
  }

  .hero-panel h1,
  .section-heading h2,
  .section-heading--split h2,
  .story-split__content h2,
  .lookbook-panel__content h2,
  .newsletter-panel h2,
  .page-hero h1,
  .site-footer__brand h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero-panel__note {
    margin-top: 1rem;
  }

  .search-form__row,
  .newsletter-form__row,
  .newsletter-form--inline {
    flex-direction: column;
    align-items: stretch;
  }

  .collection-card {
    min-height: 28rem;
  }

  .product-card__content h3,
  .journal-card__content h3,
  .journal-card__content h2 {
    font-size: 1.65rem;
  }

  .menu--legal {
    display: grid;
  }
}

.home-reference {
  padding-bottom: clamp(4rem, 7vw, 6rem);
  background:
    linear-gradient(180deg, #000 0%, #000 26rem, #faf7f2 26rem, #f4eee7 100%);
}

.site-header--reference {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
}

.site-header--reference.is-scrolled {
  background: rgba(0, 0, 0, 0.96);
  box-shadow: none;
}

.site-header--reference .site-brand__name,
.site-header--reference .site-action,
.site-header--reference .site-header__toggle,
.site-header--reference .menu--primary-reference a,
.site-header--reference .site-header__locale a {
  color: var(--mst-white);
}

.site-header--reference .site-brand__name {
  font-size: clamp(2.8rem, 4.2vw, 4.1rem);
  letter-spacing: -0.05em;
  text-transform: none;
}

.site-header--reference .custom-logo-link img,
.site-header--reference .custom-logo {
  filter: brightness(0) invert(1);
}

.site-header__reference-top {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.site-header__reference-mobile {
  display: none;
}

.site-header__locale {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.menu--primary-reference {
  width: 100%;
  justify-content: center;
  gap: clamp(1rem, 1.5vw, 1.7rem);
  padding: 1rem 0 1.3rem;
  color: var(--mst-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.menu--primary-reference .menu-item {
  position: relative;
}

.menu--primary-reference .menu-item + .menu-item::before {
  content: "";
  position: absolute;
  left: -0.8rem;
  top: 50%;
  width: 1px;
  height: 1.2rem;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.24);
}

.reference-top-hero {
  position: relative;
  background: #000;
}

.reference-top-hero .carousel,
.reference-top-hero .carousel-inner,
.reference-top-hero .carousel-item,
.reference-top-hero__slide {
  height: min(76vh, 920px);
}

.reference-top-hero__slide {
  position: relative;
}

.reference-top-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-top-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.reference-top-hero__content {
  position: absolute;
  left: 50%;
  bottom: 5rem;
  z-index: 2;
  display: grid;
  gap: 1rem;
  justify-items: center;
  width: min(100%, 32rem);
  transform: translateX(-50%);
  text-align: center;
}

.reference-top-hero__content .reference-label,
.reference-top-hero__content h2 {
  color: var(--mst-white);
}

.reference-top-hero__content h2 {
  font-size: clamp(3.4rem, 6vw, 5.2rem);
}

.reference-top-hero__cta {
  min-width: 19rem;
  min-height: 54px;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mst-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
}

.reference-top-hero__indicators {
  bottom: 1.6rem;
}

.reference-top-hero__indicators button {
  width: 3.4rem !important;
  height: 4px !important;
  margin: 0 0.3rem !important;
  border: 0 !important;
  border-radius: 999px;
}

.reference-social-rail {
  position: absolute;
  left: 1.4rem;
  bottom: 2rem;
  gap: 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  z-index: 2;
}

.reference-social-rail a,
.reference-social-rail__icon {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reference-social-rail a:hover {
  opacity: 0.72;
}

.reference-social-rail svg {
  width: 100%;
  height: 100%;
  display: block;
}

.reference-hero {
  padding-top: 1.5rem;
}

.reference-hero__grid,
.reference-categories__grid,
.reference-promo__grid,
.reference-services__grid,
.reference-products__grid {
  display: grid;
  gap: 1rem;
}

.reference-hero__grid {
  grid-template-columns: 1.25fr 1fr 1fr;
  min-height: 38rem;
}

.reference-hero-card,
.reference-category-card,
.reference-promo-card,
.reference-newsletter__inner,
.reference-brand__inner,
.reference-campaign__content,
.reference-campaign__media,
.reference-product-card {
  overflow: hidden;
  border-radius: 28px;
}

.reference-hero-card {
  position: relative;
  min-height: 32rem;
  padding: 1.4rem;
  display: flex;
  align-items: end;
  color: var(--mst-white);
  background-position: center;
  background-size: cover;
}

.reference-hero-card--1 {
  min-height: 38rem;
}

.reference-hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 7, 0.08) 0%, rgba(8, 7, 7, 0.76) 100%);
}

.reference-hero-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
}

.reference-label {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 15, 16, 0.6);
}

.reference-hero-card .reference-label,
.reference-category-card .reference-label {
  color: rgba(255, 255, 255, 0.7);
}

.reference-hero-card h2,
.reference-campaign__content h2,
.reference-brand h2,
.reference-newsletter h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.reference-hero-card p {
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.82);
}

.reference-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

.reference-link svg {
  width: 18px;
  height: 18px;
}

.reference-section,
.reference-categories,
.reference-campaign,
.reference-brand,
.reference-promo,
.reference-services,
.reference-newsletter {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.reference-section__header,
.reference-brand__inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
}

.reference-section__header {
  margin-bottom: 1.4rem;
}

.reference-section__header h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.reference-products__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.reference-product-card {
  display: block;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 15, 16, 0.08);
}

.reference-product-card__media {
  aspect-ratio: 0.76;
  background: linear-gradient(140deg, rgba(210, 192, 177, 0.4), rgba(244, 238, 231, 0.88));
}

.reference-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-product-card__content {
  padding: 0.9rem 1rem 1.2rem;
}

.reference-product-card__content h3 {
  font-size: 1.35rem;
  line-height: 1.06;
}

.reference-product-card__content p {
  margin-top: 0.45rem;
  color: rgba(20, 15, 16, 0.66);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.reference-categories__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reference-category-card {
  position: relative;
  min-height: 26rem;
  display: flex;
  align-items: end;
  padding: 1.5rem;
  background-position: center;
  background-size: cover;
  color: var(--mst-white);
}

.reference-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 7, 0.08) 0%, rgba(8, 7, 7, 0.64) 100%);
}

.reference-category-card__body {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 1.2rem;
}

.reference-category-card__body h3 {
  color: var(--mst-white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-align: center;
}

.reference-category-card__cta {
  min-width: 18rem;
  min-height: 54px;
  padding: 0 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mst-white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 700;
}

.reference-category-card--small {
  min-height: 20rem;
}

.reference-campaign__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.reference-campaign__content {
  height: 100%;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  align-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(20, 15, 16, 0.08);
  border-left: 0;
}

.reference-brand__inner {
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 15, 16, 0.08);
  box-shadow: var(--mst-shadow);
}

.reference-brand__copy {
  max-width: 46rem;
}

.reference-brand__text {
  max-width: 27rem;
}

.reference-promo__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reference-promo-card {
  min-height: 18rem;
  padding: 1.5rem;
  display: grid;
  align-content: end;
  gap: 0.7rem;
  background:
    radial-gradient(circle at top right, rgba(158, 110, 109, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(233, 223, 211, 0.74));
  border: 1px solid rgba(20, 15, 16, 0.08);
}

.reference-promo-card h3 {
  font-size: 2.2rem;
}

.reference-services__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(20, 15, 16, 0.08);
  border-bottom: 1px solid rgba(20, 15, 16, 0.08);
}

.reference-services__grid div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.reference-services__grid span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--mst-rose);
}

.reference-newsletter__inner {
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.5rem;
  background: linear-gradient(145deg, #181214 0%, #100b0c 100%);
  color: var(--mst-white);
  box-shadow: var(--mst-shadow);
}

.reference-newsletter .reference-label,
.reference-newsletter h2 {
  color: var(--mst-white);
}

.reference-newsletter .newsletter-form input {
  background: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1199.98px) {
  .reference-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .site-header--reference .site-header__reference-top {
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
  }

  .site-header__reference-mobile {
    display: block;
  }

  .site-header--reference .site-header__locale,
  .site-header--reference .site-header__reference-nav {
    display: none !important;
  }

  .site-header--reference .site-header__brand {
    justify-self: center;
  }

  .reference-hero__grid,
  .reference-products__grid,
  .reference-categories__grid,
  .reference-promo__grid,
  .reference-services__grid,
  .reference-newsletter__inner {
    grid-template-columns: 1fr;
  }

  .reference-section__header,
  .reference-brand__inner {
    flex-direction: column;
    align-items: start;
  }

  .reference-campaign__content {
    border-left: 1px solid rgba(20, 15, 16, 0.08);
    border-top: 0;
  }
}

@media (max-width: 767.98px) {
  .home-reference {
    background:
      linear-gradient(180deg, #000 0%, #000 18rem, #faf7f2 18rem, #f4eee7 100%);
  }

  .reference-hero {
    padding-top: 0.75rem;
  }

  .reference-top-hero .carousel,
  .reference-top-hero .carousel-inner,
  .reference-top-hero .carousel-item,
  .reference-top-hero__slide {
    height: 56vh;
  }

  .reference-top-hero__content {
    width: calc(100% - 2rem);
    bottom: 3rem;
  }

  .reference-top-hero__content h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .reference-top-hero__cta {
    min-width: 14rem;
  }

  .reference-category-card__cta {
    min-width: 14rem;
  }

  .reference-hero-card,
  .reference-hero-card--1,
  .reference-category-card,
  .reference-category-card--small,
  .reference-promo-card {
    min-height: 22rem;
  }

  .reference-hero-card h2,
  .reference-campaign__content h2,
  .reference-brand h2,
  .reference-newsletter h2,
  .reference-section__header h2 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .reference-campaign__content,
  .reference-brand__inner,
  .reference-newsletter__inner {
    padding: 1.5rem;
  }
}
