.theme-luxsite {
  --lux-white: #ffffff;
  --lux-ink: #111111;
  --lux-muted: #686866;
  --lux-mist: #f5f5f3;
  --lux-soft: #eeeeeb;
  --lux-line: #d8d8d5;
  --lux-focus: #234f80;
  --lux-header-desktop: 160px;
  --lux-header-mobile: 65px;
  --lux-font-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  --lux-font-serif: "Songti SC", "STSong", "Noto Serif CJK SC", "Times New Roman", Georgia, serif;
  min-width: 320px;
  overflow-x: clip;
  color: var(--lux-ink);
  background: var(--lux-white);
  font-family: var(--lux-font-sans);
  font-size: 14px;
  line-height: 1.55;
  color-scheme: light;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.theme-luxsite * {
  box-sizing: border-box;
}

.theme-luxsite a {
  color: inherit;
}

.theme-luxsite a:hover {
  color: inherit;
}

.theme-luxsite :focus-visible {
  outline: 2px solid var(--lux-focus);
  outline-offset: 4px;
}

.theme-luxsite .lux-shell {
  width: min(calc(100% - 40px), 1440px);
  margin-inline: auto;
}

.theme-luxsite .lux-content-root {
  position: relative;
  z-index: 1;
  min-height: 40vh;
  background: var(--lux-white);
}

.theme-luxsite:not(.page-home) .lux-content-root {
  padding-top: var(--lux-header-desktop);
}

.theme-luxsite .lux-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1300;
  padding: 10px 14px;
  color: var(--lux-ink);
  background: var(--lux-white);
  border: 1px solid var(--lux-ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.theme-luxsite .lux-skip-link:focus {
  transform: translateY(0);
}

.theme-luxsite .lux-image-shell {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--lux-soft);
}

.theme-luxsite .lux-image-shell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-js .theme-luxsite .lux-image-shell img {
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 500ms ease, transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-js .theme-luxsite .lux-image-shell.is-loaded img {
  opacity: 1;
  transform: scale(1);
}

.theme-luxsite .lux-image-shell.is-error::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  content: "Image unavailable";
  color: var(--lux-muted);
  background: var(--lux-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lux-js .theme-luxsite [data-lux-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Header */
.theme-luxsite .lux-site-header {
  position: fixed !important;
  inset: 0 0 auto;
  z-index: 1020;
  height: var(--lux-header-desktop);
  color: var(--lux-white);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.theme-luxsite:not(.page-home) .lux-site-header,
.theme-luxsite .lux-site-header.is-solid,
.theme-luxsite .lux-site-header:has(.lux-nav-dropdown[open]),
.theme-luxsite.lux-menu-open .lux-site-header {
  color: var(--lux-ink);
  background: var(--lux-white);
  border-bottom-color: var(--lux-line);
}

.theme-luxsite .lux-header-main {
  position: relative;
  z-index: 30;
  display: grid;
  height: 100px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
}

.theme-luxsite .lux-header-left,
.theme-luxsite .lux-header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
}

.theme-luxsite .lux-header-left {
  justify-content: flex-start;
  gap: 8px;
}

.theme-luxsite .lux-header-actions {
  justify-content: flex-end;
  gap: 7px;
}

.theme-luxsite .lux-desktop-tool,
.theme-luxsite .lux-utility-menu summary {
  color: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.theme-luxsite .lux-wordmark {
  display: block;
  max-width: min(44vw, 430px);
  justify-self: center;
  overflow: hidden;
  color: inherit;
  font-family: var(--lux-font-serif);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-luxsite .lux-wordmark span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-luxsite .lux-wordmark img {
  display: block;
  width: auto;
  max-width: min(30vw, 230px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
  transition: filter 260ms ease;
}

.theme-luxsite.page-home:not(.lux-menu-open) .lux-site-header:not(.is-solid):not(:has(.lux-nav-dropdown[open])) .lux-wordmark img {
  filter: brightness(0) invert(1);
}

.theme-luxsite .lux-header-icon,
.theme-luxsite .lux-mobile-account,
.theme-luxsite .lux-menu-toggle {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: none;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
}

.theme-luxsite .lux-header-icon svg,
.theme-luxsite .lux-mobile-account svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-luxsite .lux-header-icon::after,
.theme-luxsite .lux-mobile-account::after,
.theme-luxsite .lux-desktop-tool::after {
  position: absolute;
  right: 6px;
  bottom: 3px;
  left: 6px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.theme-luxsite .lux-header-icon:hover::after,
.theme-luxsite .lux-header-icon:focus-visible::after,
.theme-luxsite .lux-mobile-account:hover::after,
.theme-luxsite .lux-mobile-account:focus-visible::after,
.theme-luxsite .lux-desktop-tool:hover::after,
.theme-luxsite .lux-desktop-tool:focus-visible::after {
  transform: scaleX(1);
}

.theme-luxsite .lux-mobile-account,
.theme-luxsite .lux-menu-toggle {
  display: none;
}

.theme-luxsite .lux-cart-link .cart-badge-quantity:not(:empty) {
  position: absolute;
  top: 0;
  right: -1px;
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  padding-inline: 3px;
  color: var(--lux-white);
  background: var(--lux-ink);
  border: 1px solid var(--lux-white);
  border-radius: 50%;
  font-size: 9px;
  line-height: 1;
}

.theme-luxsite .lux-utility-menu {
  position: relative;
}

.theme-luxsite .lux-utility-menu summary {
  padding: 12px 0;
  list-style: none;
  cursor: pointer;
}

.theme-luxsite .lux-utility-menu summary::-webkit-details-marker {
  display: none;
}

.theme-luxsite .lux-utility-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  width: 240px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 22px;
  color: var(--lux-ink);
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.09);
}

.theme-luxsite .lux-utility-panel > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.theme-luxsite .lux-utility-panel strong {
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-luxsite .lux-utility-panel a {
  color: var(--lux-muted);
  font-size: 12px;
  text-decoration: none;
}

.theme-luxsite .lux-desktop-nav {
  position: relative;
  z-index: 20;
  display: flex;
  width: calc(100% - 40px);
  height: 60px;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.8vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.theme-luxsite:not(.page-home) .lux-desktop-nav,
.theme-luxsite .lux-site-header.is-solid .lux-desktop-nav,
.theme-luxsite .lux-site-header:has(.lux-nav-dropdown[open]) .lux-desktop-nav {
  border-top-color: var(--lux-line);
}

.theme-luxsite .lux-desktop-nav > a,
.theme-luxsite .lux-nav-dropdown > summary {
  position: relative;
  display: inline-flex;
  height: 60px;
  align-items: center;
  gap: 6px;
  color: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  list-style: none;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.theme-luxsite .lux-nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.theme-luxsite .lux-desktop-nav > a::after,
.theme-luxsite .lux-nav-dropdown > summary::after {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.theme-luxsite .lux-desktop-nav > a:hover::after,
.theme-luxsite .lux-desktop-nav > a:focus-visible::after,
.theme-luxsite .lux-nav-dropdown > summary:hover::after,
.theme-luxsite .lux-nav-dropdown > summary:focus-visible::after,
.theme-luxsite .lux-nav-dropdown[open] > summary::after {
  transform: scaleX(1);
}

.theme-luxsite .lux-nav-badge {
  position: absolute;
  top: 4px;
  left: 100%;
  padding: 2px 4px;
  color: var(--lux-badge-color, #fff);
  background: var(--lux-badge-bg, #111);
  font-size: 7px;
  letter-spacing: 0.06em;
  line-height: 1;
}

.theme-luxsite .lux-nav-mega {
  position: fixed;
  top: var(--lux-header-desktop);
  left: 50%;
  z-index: 25;
  width: min(1025px, calc(100vw - 40px));
  max-height: calc(100dvh - var(--lux-header-desktop) - 20px);
  overflow-y: auto;
  padding: 44px 50px 34px;
  color: var(--lux-ink);
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
}

.theme-luxsite .lux-nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.theme-luxsite .lux-nav-mega-grid section {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.theme-luxsite .lux-nav-mega-grid h2 {
  margin: 0 0 8px;
  color: var(--lux-ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.theme-luxsite .lux-nav-mega-grid a {
  color: var(--lux-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.theme-luxsite .lux-nav-mega-grid a:hover {
  color: var(--lux-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.theme-luxsite .lux-nav-visual-group {
  grid-column: span 2;
}

.theme-luxsite .lux-nav-image {
  width: 100%;
}

.theme-luxsite .lux-nav-image img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.theme-luxsite .lux-nav-parent-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--lux-ink);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.theme-luxsite .lux-mobile-menu,
.theme-luxsite .lux-menu-backdrop {
  display: none;
}

/* Shared home typography */
.theme-luxsite .lux-home-main h1,
.theme-luxsite .lux-home-main h2,
.theme-luxsite .lux-home-main h3,
.theme-luxsite .lux-home-main p {
  margin-top: 0;
}

.theme-luxsite .lux-home-main h1,
.theme-luxsite .lux-home-main h2 {
  font-family: var(--lux-font-serif);
  font-weight: 400;
}

.theme-luxsite .lux-outline-button {
  display: inline-flex;
  min-width: 102px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--lux-white);
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease, background-color 200ms ease;
}

.theme-luxsite .lux-outline-button:hover,
.theme-luxsite .lux-outline-button:focus-visible {
  color: var(--lux-ink);
  background: var(--lux-white);
}

/* Full-screen editorial media */
.theme-luxsite .lux-hero,
.theme-luxsite .lux-campaign,
.theme-luxsite .lux-craft {
  position: relative;
  display: grid;
  min-height: 100dvh;
  overflow: hidden;
  place-items: center;
  color: var(--lux-white);
  background: #25231f;
}

.theme-luxsite .lux-hero-media,
.theme-luxsite .lux-campaign-media,
.theme-luxsite .lux-craft-media,
.theme-luxsite .lux-hero-scrim,
.theme-luxsite .lux-campaign-scrim,
.theme-luxsite .lux-craft-scrim {
  position: absolute;
  inset: 0;
}

.theme-luxsite .lux-hero-media img {
  object-position: 52% center;
}

.theme-luxsite .lux-campaign-media img {
  object-position: center;
}

.theme-luxsite .lux-craft-media img {
  object-position: 48% center;
}

.theme-luxsite .lux-hero-scrim,
.theme-luxsite .lux-campaign-scrim,
.theme-luxsite .lux-craft-scrim {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.03) 40%, rgba(0, 0, 0, 0.4) 100%);
}

.theme-luxsite .lux-hero-content,
.theme-luxsite .lux-campaign-content,
.theme-luxsite .lux-craft-content {
  position: absolute;
  right: 20px;
  bottom: clamp(72px, 11vh, 118px);
  left: 20px;
  z-index: 2;
  text-align: center;
}

.theme-luxsite .lux-hero-content h1,
.theme-luxsite .lux-campaign-content h2,
.theme-luxsite .lux-craft-content h2 {
  max-width: 1000px;
  margin: 0 auto 24px;
  color: var(--lux-white);
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: 0.025em;
  line-height: 1.08;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.22);
}

/* Collection rail */
.theme-luxsite .lux-collection-section {
  padding: 100px 0 110px;
  background: var(--lux-white);
}

.theme-luxsite .lux-collection-section > h2,
.theme-luxsite .lux-category-section > h2,
.theme-luxsite .lux-product-section > h2 {
  margin: 0 20px 42px;
  color: var(--lux-ink);
  font-family: var(--lux-font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.theme-luxsite .lux-rail-wrap {
  position: relative;
}

.theme-luxsite .lux-collection-rail,
.theme-luxsite .lux-category-rail {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.theme-luxsite .lux-collection-rail::-webkit-scrollbar,
.theme-luxsite .lux-category-rail::-webkit-scrollbar {
  display: none;
}

.theme-luxsite .lux-collection-rail {
  gap: 18px;
  padding-inline: max(64px, calc((100vw - 1370px) / 2));
}

.theme-luxsite .lux-collection-card {
  display: block;
  width: clamp(260px, 22vw, 318px);
  flex: 0 0 clamp(260px, 22vw, 318px);
  color: var(--lux-ink);
  scroll-snap-align: center;
  text-align: center;
  text-decoration: none;
}

.theme-luxsite .lux-collection-card .lux-image-shell {
  aspect-ratio: 1 / 1;
}

.theme-luxsite .lux-collection-card strong {
  display: block;
  margin-top: 17px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.theme-luxsite .lux-collection-card img,
.theme-luxsite .lux-category-card img,
.theme-luxsite .lux-promo-pair img {
  transition: opacity 500ms ease, transform 1100ms cubic-bezier(0.16, 1, 0.3, 1), filter 450ms ease;
}

.theme-luxsite .lux-collection-card:hover img,
.theme-luxsite .lux-category-card:hover img,
.theme-luxsite .lux-promo-pair > a:hover img {
  transform: scale(1.025);
  filter: brightness(0.97);
}

.theme-luxsite .lux-rail-arrow {
  position: absolute;
  top: calc(50% - 30px);
  z-index: 3;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  padding: 0 0 5px;
  color: var(--lux-ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--lux-line);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.theme-luxsite .lux-rail-arrow--prev {
  left: 25px;
}

.theme-luxsite .lux-rail-arrow--next {
  right: 25px;
}

/* Category focus */
.theme-luxsite .lux-category-section {
  padding: 96px 0 112px;
  overflow: hidden;
  background: var(--lux-white);
}

.theme-luxsite .lux-category-viewport {
  position: relative;
}

.theme-luxsite .lux-category-rail {
  gap: 34px;
  padding-inline: max(20px, calc((100vw - min(50vw, 720px)) / 2));
}

.theme-luxsite .lux-category-card {
  display: block;
  width: min(50vw, 720px);
  flex: 0 0 min(50vw, 720px);
  scroll-snap-align: center;
  text-align: center;
  text-decoration: none;
}

.theme-luxsite .lux-category-card .lux-image-shell {
  aspect-ratio: 1 / 1;
}

.theme-luxsite .lux-category-card strong {
  display: block;
  margin-top: 26px;
  font-family: var(--lux-font-serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.theme-luxsite .lux-category-card small,
.theme-luxsite .lux-feature-product small,
.theme-luxsite .lux-editorial-overlay small,
.theme-luxsite .lux-promo-pair small {
  display: inline-block;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.theme-luxsite .lux-rail-dots {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 30px;
}

.theme-luxsite .lux-rail-dots i {
  width: 5px;
  height: 5px;
  background: var(--lux-line);
  border-radius: 50%;
}

.theme-luxsite .lux-rail-dots i:first-child {
  background: var(--lux-ink);
}

/* Editorial product grid */
.theme-luxsite .lux-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--lux-mist);
}

.theme-luxsite .lux-editorial-grid > a {
  position: relative;
  display: flex;
  min-width: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  color: var(--lux-ink);
  text-decoration: none;
}

.theme-luxsite .lux-editorial-media > .lux-image-shell {
  position: absolute;
  inset: 0;
}

.theme-luxsite .lux-editorial-overlay {
  position: absolute;
  right: 36px;
  bottom: 45px;
  left: 36px;
  z-index: 1;
  color: var(--lux-white);
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
}

.theme-luxsite .lux-editorial-overlay strong {
  display: block;
  font-family: var(--lux-font-serif);
  font-size: clamp(34px, 4.2vw, 66px);
  font-weight: 400;
  line-height: 1.04;
}

.theme-luxsite .lux-feature-product {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 6vw, 92px);
  background: var(--lux-mist);
  text-align: center;
}

.theme-luxsite .lux-feature-product .lux-image-shell {
  width: min(72%, 430px);
  aspect-ratio: 1 / 1;
  margin-bottom: 30px;
  background: transparent;
}

.theme-luxsite .lux-feature-product .lux-image-shell img {
  object-fit: contain;
}

.theme-luxsite .lux-feature-product strong {
  font-family: var(--lux-font-serif);
  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.15;
}

/* Store products */
.theme-luxsite .lux-product-section {
  padding-top: 78px;
  background: var(--lux-white);
}

.theme-luxsite .lux-product-triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-luxsite .lux-product-card {
  position: relative;
  min-width: 0;
  padding-bottom: 34px;
  text-align: center;
}

.theme-luxsite .lux-product-card > .lux-image-shell {
  aspect-ratio: 1 / 1;
  background: #fafafa;
}

.theme-luxsite .lux-product-card > .lux-image-shell img {
  object-fit: contain;
}

.theme-luxsite .lux-product-card h3 {
  margin: 19px 20px 5px;
  font-family: var(--lux-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.theme-luxsite .lux-product-card h3 a,
.theme-luxsite .lux-login-price {
  text-decoration: none;
}

.theme-luxsite .lux-product-card p,
.theme-luxsite .lux-login-price {
  margin: 0;
  color: var(--lux-muted);
  font-family: var(--lux-font-serif);
  font-size: 13px;
}

.theme-luxsite .lux-empty-state {
  display: grid;
  min-height: 280px;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 30px;
  color: var(--lux-muted);
  background: var(--lux-mist);
  text-align: center;
}

.theme-luxsite .lux-empty-state p {
  margin: 0;
}

.theme-luxsite .lux-empty-state a {
  color: var(--lux-ink);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Story and promotions */
.theme-luxsite .lux-story {
  display: grid;
  min-height: min(60vw, 860px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--lux-mist);
}

.theme-luxsite .lux-story-media {
  min-height: 100%;
}

.theme-luxsite .lux-story-copy {
  display: flex;
  max-width: 560px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(55px, 8vw, 120px);
}

.theme-luxsite .lux-story-copy h2 {
  margin: 0 0 32px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
}

.theme-luxsite .lux-story-copy p {
  max-width: 430px;
  margin-bottom: 34px;
  color: var(--lux-muted);
  font-size: 13px;
  line-height: 1.9;
}

.theme-luxsite .lux-story-copy a,
.theme-luxsite .lux-service-strip a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 6px;
}

.theme-luxsite .lux-promo-pair {
  display: grid;
  width: min(calc(100% - 48px), 1008px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 8vw, 110px);
  margin-inline: auto;
  padding: 94px 0 105px;
}

.theme-luxsite .lux-promo-pair > a {
  display: block;
  text-align: center;
  text-decoration: none;
}

.theme-luxsite .lux-promo-pair .lux-image-shell {
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  margin-inline: auto;
}

.theme-luxsite .lux-promo-pair strong {
  display: block;
  margin-top: 25px;
  font-family: var(--lux-font-serif);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.1;
}

.theme-luxsite .lux-service-strip {
  display: grid;
  min-height: 210px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--lux-white);
}

.theme-luxsite .lux-service-strip > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 60px;
  background: var(--lux-mist);
  text-align: center;
}

.theme-luxsite .lux-service-strip strong {
  font-family: var(--lux-font-serif);
  font-size: 22px;
  font-weight: 400;
}

.theme-luxsite .lux-service-strip p {
  max-width: 480px;
  margin: 9px 0 15px;
  color: var(--lux-muted);
  font-size: 12px;
}

/* Footer */
.theme-luxsite .lux-site-footer {
  color: var(--lux-ink);
  background: var(--lux-white);
  border-top: 1px solid var(--lux-line);
}

.theme-luxsite .lux-footer-home {
  height: 90px;
  border-bottom: 1px solid var(--lux-line);
}

.theme-luxsite .lux-footer-home a {
  display: flex;
  width: min(calc(100% - 40px), 1440px);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  color: var(--lux-muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.theme-luxsite .lux-footer-grid {
  display: grid;
  min-height: 258px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px;
  padding-top: 54px;
  padding-bottom: 45px;
}

.theme-luxsite .lux-footer-group button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 18px;
  padding: 0;
  color: var(--lux-ink);
  background: transparent;
  border: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: left;
  text-transform: uppercase;
}

.theme-luxsite .lux-footer-group button b {
  display: none;
}

.theme-luxsite .lux-footer-group > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.theme-luxsite .lux-footer-group > div a,
.theme-luxsite .lux-footer-group > div p {
  margin: 0;
  color: var(--lux-muted);
  font-size: 11px;
  line-height: 1.65;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.theme-luxsite .lux-footer-group > div a:hover {
  color: var(--lux-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.theme-luxsite .lux-footer-group button span {
  font-size: 11px;
}

.theme-luxsite .lux-footer-brand {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: var(--lux-ink);
  border-top: 1px solid var(--lux-line);
  font-family: var(--lux-font-serif);
  text-align: center;
  text-decoration: none;
}

.theme-luxsite .lux-footer-brand span {
  max-width: 100%;
  font-size: clamp(28px, 4vw, 58px);
  letter-spacing: 0.09em;
  line-height: 1.1;
}

.theme-luxsite .lux-footer-brand > img {
  display: block;
  width: min(388px, 76vw);
  height: auto;
  max-height: 73px;
  object-fit: contain;
}

.theme-luxsite .lux-footer-brand small {
  margin-top: 17px;
  font-family: var(--lux-font-sans);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.theme-luxsite .lux-footer-legal {
  min-height: 64px;
  color: var(--lux-white);
  background: var(--lux-ink);
}

.theme-luxsite .lux-footer-legal .lux-shell {
  display: grid;
  min-height: 64px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  font-size: 9px;
  letter-spacing: 0.07em;
}

.theme-luxsite .lux-footer-legal p {
  margin: 0;
  text-align: center;
}

.theme-luxsite .lux-footer-legal a {
  color: inherit;
}

.theme-luxsite .lux-footer-legal img {
  width: auto;
  max-width: 220px;
  max-height: 30px;
  object-fit: contain;
}

/* Search overlay and commerce fallback pages */
.theme-luxsite #offcanvas-search-top {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  color: var(--lux-ink);
  background: var(--lux-white);
  border: 0;
}

.theme-luxsite #offcanvas-search-top .offcanvas-header {
  min-height: var(--lux-header-desktop);
  padding: 20px 34px;
  border-bottom: 1px solid var(--lux-line);
}

.theme-luxsite #offcanvas-search-top .offcanvas-body {
  padding: 50px max(20px, 7vw);
}

.theme-luxsite #offcanvas-search-top input {
  min-height: 70px;
  border: 0;
  border-bottom: 1px solid var(--lux-ink);
  border-radius: 0;
  box-shadow: none;
  font-family: var(--lux-font-serif);
  font-size: clamp(27px, 4vw, 56px);
}

.theme-luxsite:not(.page-home) .lux-content-root > .container,
.theme-luxsite:not(.page-home) .lux-content-root > .container-fluid {
  padding-top: clamp(32px, 5vw, 74px);
  padding-bottom: clamp(55px, 8vw, 110px);
}

.theme-luxsite .btn,
.theme-luxsite .form-control,
.theme-luxsite .form-select,
.theme-luxsite .card,
.theme-luxsite .product-wrap,
.theme-luxsite .dropdown-menu {
  border-radius: 0;
}

.theme-luxsite .btn-primary,
.theme-luxsite .btn-dark {
  color: var(--lux-white);
  background: var(--lux-ink);
  border-color: var(--lux-ink);
}

.theme-luxsite .btn-primary:hover,
.theme-luxsite .btn-dark:hover {
  color: var(--lux-white);
  background: #383838;
  border-color: #383838;
}

.theme-luxsite .product-wrap .name,
.theme-luxsite .product-wrap .product-name {
  letter-spacing: 0.04em;
}

@media (max-width: 1180px) {
  .theme-luxsite .lux-desktop-nav {
    gap: 18px;
  }

  .theme-luxsite .lux-desktop-nav > a,
  .theme-luxsite .lux-nav-dropdown > summary {
    font-size: 10px;
    letter-spacing: 0.11em;
  }
}

@media (max-width: 1024px) {
  .theme-luxsite:not(.page-home) .lux-content-root {
    padding-top: var(--lux-header-mobile);
  }

  .theme-luxsite .lux-site-header {
    height: var(--lux-header-mobile);
  }

  .theme-luxsite .lux-header-main {
    width: calc(100% - 28px);
    height: var(--lux-header-mobile);
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: clamp(8px, 3vw, 18px);
  }

  .theme-luxsite .lux-desktop-nav,
  .theme-luxsite .lux-desktop-tool,
  .theme-luxsite .lux-utility-menu,
  .theme-luxsite .lux-desktop-account {
    display: none;
  }

  .theme-luxsite .lux-header-left,
  .theme-luxsite .lux-header-actions {
    gap: 0;
  }

  .theme-luxsite .lux-menu-toggle,
  .theme-luxsite .lux-mobile-account {
    display: inline-grid;
  }

  .theme-luxsite .lux-wordmark {
    max-width: min(40vw, 190px);
    font-size: clamp(16px, 4.1vw, 23px);
    letter-spacing: 0.08em;
  }

  .theme-luxsite .lux-wordmark img {
    max-width: min(38vw, 160px);
    max-height: 32px;
  }

  .theme-luxsite .lux-header-icon,
  .theme-luxsite .lux-mobile-account,
  .theme-luxsite .lux-menu-toggle {
    width: 34px;
    height: 42px;
  }

  .theme-luxsite .lux-header-icon svg,
  .theme-luxsite .lux-mobile-account svg {
    width: 19px;
    height: 19px;
  }

  .theme-luxsite .lux-menu-toggle span {
    position: absolute;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .theme-luxsite .lux-menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .theme-luxsite .lux-menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .theme-luxsite .lux-menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .theme-luxsite .lux-menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .theme-luxsite .lux-mobile-menu {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 15;
    display: block;
    width: min(315px, calc(100vw - 75px));
    height: 100dvh;
    overflow: hidden;
    color: var(--lux-ink);
    background: var(--lux-white);
    border-right: 1px solid var(--lux-line);
    visibility: hidden;
    transform: translateX(-102%);
    pointer-events: none;
    transition: visibility 0s linear 350ms, transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .theme-luxsite .lux-mobile-menu.is-open {
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    transition-delay: 0s;
  }

  .theme-luxsite .lux-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: block;
    background: rgba(0, 0, 0, 0.58);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0s linear 300ms, opacity 300ms ease;
  }

  .theme-luxsite.lux-menu-open .lux-menu-backdrop {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .theme-luxsite .lux-mobile-root,
  .theme-luxsite .lux-mobile-panel {
    position: absolute;
    inset: var(--lux-header-mobile) 0 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--lux-white);
  }

  .theme-luxsite .lux-mobile-root > nav {
    padding: 14px 20px 30px;
  }

  .theme-luxsite .lux-mobile-root > nav > a,
  .theme-luxsite .lux-mobile-root > nav > button {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--lux-ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--lux-line);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
  }

  .theme-luxsite .lux-mobile-root > nav > button b {
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 400;
  }

  .theme-luxsite .lux-mobile-utilities {
    display: grid;
    gap: 0;
    margin-top: auto;
    border-top: 1px solid var(--lux-line);
  }

  .theme-luxsite .lux-mobile-commerce,
  .theme-luxsite .lux-mobile-locales {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 19px 20px;
  }

  .theme-luxsite .lux-mobile-commerce {
    justify-content: space-between;
    border-bottom: 1px solid var(--lux-line);
  }

  .theme-luxsite .lux-mobile-commerce a {
    position: relative;
    color: var(--lux-ink);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .theme-luxsite .lux-mobile-commerce .cart-badge-quantity:not(:empty) {
    margin-left: 4px;
    font-size: 9px;
  }

  .theme-luxsite .lux-mobile-locales a {
    color: var(--lux-muted);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .theme-luxsite .lux-mobile-panel {
    z-index: 2;
    visibility: hidden;
    transform: translateX(100%);
    pointer-events: none;
    transition: visibility 0s linear 300ms, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .theme-luxsite .lux-mobile-panel[aria-hidden="false"] {
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    transition-delay: 0s;
  }

  .theme-luxsite .lux-mobile-panel > header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: grid;
    min-height: 58px;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    background: var(--lux-white);
    border-bottom: 1px solid var(--lux-line);
  }

  .theme-luxsite .lux-mobile-panel > header button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0 0 4px;
    color: var(--lux-ink);
    background: transparent;
    border: 0;
    font-family: Georgia, serif;
    font-size: 30px;
  }

  .theme-luxsite .lux-mobile-panel > header strong {
    grid-column: 2;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
  }

  .theme-luxsite .lux-mobile-panel-content {
    padding: 20px 20px 35px;
  }

  .theme-luxsite .lux-mobile-parent-link {
    display: block;
    margin-bottom: 24px;
    color: var(--lux-ink);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-decoration: underline;
    text-transform: uppercase;
    text-underline-offset: 5px;
  }

  .theme-luxsite .lux-mobile-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 19px 0;
    border-top: 1px solid var(--lux-line);
  }

  .theme-luxsite .lux-mobile-group h2 {
    margin: 0 0 7px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .theme-luxsite .lux-mobile-group a {
    color: var(--lux-muted);
    font-size: 12px;
    text-decoration: none;
  }

  .theme-luxsite .lux-mobile-image img {
    display: block;
    width: 100%;
    max-height: 210px;
    object-fit: cover;
  }

  .theme-luxsite.lux-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .theme-luxsite .lux-rail-arrow {
    display: none;
  }

  .theme-luxsite #offcanvas-search-top .offcanvas-header {
    min-height: var(--lux-header-mobile);
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .theme-luxsite .lux-shell {
    width: calc(100% - 40px);
  }

  .theme-luxsite .lux-hero-content,
  .theme-luxsite .lux-campaign-content,
  .theme-luxsite .lux-craft-content {
    bottom: 72px;
  }

  .theme-luxsite .lux-hero-content h1,
  .theme-luxsite .lux-campaign-content h2,
  .theme-luxsite .lux-craft-content h2 {
    margin-bottom: 20px;
    font-size: clamp(28px, 8vw, 36px);
    letter-spacing: 0.035em;
    line-height: 1.08;
  }

  .theme-luxsite .lux-outline-button {
    min-width: 96px;
    height: 39px;
    padding-inline: 13px;
    font-size: 9px;
  }

  .theme-luxsite .lux-collection-section {
    padding: 98px 0 102px;
  }

  .theme-luxsite .lux-collection-section > h2,
  .theme-luxsite .lux-category-section > h2,
  .theme-luxsite .lux-product-section > h2 {
    margin-bottom: 30px;
    font-size: 11px;
  }

  .theme-luxsite .lux-collection-rail {
    gap: 14px;
    padding-inline: 20vw;
  }

  .theme-luxsite .lux-collection-card {
    width: 60vw;
    flex-basis: 60vw;
  }

  .theme-luxsite .lux-collection-card strong {
    margin-top: 15px;
  }

  .theme-luxsite .lux-category-section {
    padding: 74px 0 86px;
  }

  .theme-luxsite .lux-category-rail {
    gap: 14px;
    padding-inline: 20vw;
  }

  .theme-luxsite .lux-category-card {
    width: 60vw;
    flex-basis: 60vw;
  }

  .theme-luxsite .lux-category-card strong {
    margin-top: 18px;
    font-family: var(--lux-font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .theme-luxsite .lux-category-card small {
    margin-top: 8px;
    font-size: 9px;
  }

  .theme-luxsite .lux-rail-dots {
    margin-top: 23px;
  }

  .theme-luxsite .lux-editorial-grid {
    grid-template-columns: 1fr;
  }

  .theme-luxsite .lux-editorial-grid > a {
    aspect-ratio: auto;
  }

  .theme-luxsite .lux-editorial-grid > a:nth-child(1) { order: 1; }
  .theme-luxsite .lux-editorial-grid > a:nth-child(2) { order: 2; }
  .theme-luxsite .lux-editorial-grid > a:nth-child(3) { order: 4; }
  .theme-luxsite .lux-editorial-grid > a:nth-child(4) { order: 3; }

  .theme-luxsite .lux-editorial-media {
    min-height: 143vw;
  }

  .theme-luxsite .lux-editorial-overlay {
    right: 22px;
    bottom: 34px;
    left: 22px;
  }

  .theme-luxsite .lux-editorial-overlay strong {
    font-size: 34px;
  }

  .theme-luxsite .lux-feature-product {
    min-height: 545px;
    padding: 44px 24px 38px;
  }

  .theme-luxsite .lux-feature-product .lux-image-shell {
    width: min(100%, 390px);
    margin-bottom: 22px;
  }

  .theme-luxsite .lux-feature-product strong {
    font-family: var(--lux-font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .theme-luxsite .lux-craft-media img {
    object-position: 38% center;
  }

  .theme-luxsite .lux-product-section {
    padding-top: 58px;
  }

  .theme-luxsite .lux-product-triptych {
    grid-template-columns: 1fr;
  }

  .theme-luxsite .lux-product-card {
    padding-bottom: 34px;
  }

  .theme-luxsite .lux-story {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .theme-luxsite .lux-story-media {
    min-height: 119vw;
  }

  .theme-luxsite .lux-story-copy {
    min-height: 390px;
    padding: 58px 30px 62px;
  }

  .theme-luxsite .lux-story-copy h2 {
    margin-bottom: 25px;
    font-size: 42px;
  }

  .theme-luxsite .lux-promo-pair {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 70px 0 80px;
  }

  .theme-luxsite .lux-promo-pair .lux-image-shell {
    width: 100%;
    max-width: none;
  }

  .theme-luxsite .lux-promo-pair strong {
    margin-top: 20px;
    font-size: 28px;
  }

  .theme-luxsite .lux-service-strip {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .theme-luxsite .lux-service-strip > div {
    min-height: 228px;
    padding: 38px 25px;
  }

  .theme-luxsite .lux-service-strip > div:first-child {
    min-height: 236px;
  }

  .theme-luxsite .lux-footer-home {
    height: 78px;
  }

  .theme-luxsite .lux-footer-grid {
    display: block;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .theme-luxsite .lux-footer-group {
    border-bottom: 1px solid var(--lux-line);
  }

  .theme-luxsite .lux-footer-group button {
    display: flex;
    width: 100%;
    min-height: 57px;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    color: var(--lux-ink);
    background: transparent;
    border: 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-align: left;
    text-transform: uppercase;
  }

  .theme-luxsite .lux-footer-group button b {
    display: block;
    font-size: 18px;
    font-weight: 300;
    transition: transform 180ms ease;
  }

  .theme-luxsite .lux-footer-group.is-open button b {
    transform: rotate(45deg);
  }

  .theme-luxsite .lux-footer-group > div {
    display: none;
    padding: 1px 0 25px 16px;
  }

  .theme-luxsite .lux-footer-group.is-open > div {
    display: flex;
  }

  .theme-luxsite .lux-footer-brand {
    min-height: 210px;
    border-top: 0;
  }

  .theme-luxsite .lux-footer-brand span {
    font-size: clamp(28px, 9vw, 40px);
  }

  .theme-luxsite .lux-footer-legal .lux-shell {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding-top: 24px;
    padding-bottom: 24px;
    text-align: center;
  }

  .theme-luxsite .lux-footer-legal img {
    max-width: 190px;
  }
}

@media (max-width: 420px) {
  .theme-luxsite .lux-header-main {
    width: calc(100% - 20px);
  }

  .theme-luxsite .lux-header-icon,
  .theme-luxsite .lux-mobile-account,
  .theme-luxsite .lux-menu-toggle {
    width: 31px;
  }

  .theme-luxsite .lux-wordmark {
    max-width: 148px;
    font-size: 17px;
  }

  .theme-luxsite .lux-wordmark img {
    max-width: 140px;
    max-height: 28px;
  }

  .theme-luxsite .lux-hero-media img {
    object-position: 58% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-luxsite *,
  .theme-luxsite *::before,
  .theme-luxsite *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .lux-js .theme-luxsite [data-lux-reveal],
  .lux-js .theme-luxsite .lux-image-shell img {
    opacity: 1;
    transform: none;
  }
}
