:root {
  --black: #101010;
  --graphite: #242424;
  --cream: #f8f3ea;
  --cream-dark: #efe5d6;
  --white: #ffffff;
  --gold: #c5a16e;
  --gold-soft: rgba(197, 161, 110, .2);
  --border: rgba(16, 16, 16, .12);
  --muted: #777;
  --radius: 28px;
  --shadow: 0 28px 80px rgba(16, 16, 16, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--graphite);
  font-family: Arial, sans-serif;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.lux-container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.lux-label {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.lux-home h1,
.lux-home h2 {
  margin: 0;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
}

.lux-home h1 {
  max-width: 760px;
  font-size: clamp(48px, 6vw, 90px);
  line-height: .9;
}

.lux-home h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px var(--black);
}

.lux-home h2 {
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
}

.lux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--black);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: .25s ease;
}

.lux-btn--black {
  background: var(--black);
  color: var(--white);
}

.lux-btn--black:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.lux-btn--outline {
  background: transparent;
  color: var(--black);
}

.lux-btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

.lux-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}

.lux-more::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--gold);
}

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


/* header */

.lux-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 243, 234, .86);
  border-bottom: 1px solid rgba(16, 16, 16, .08);
  backdrop-filter: blur(18px);
}

.lux-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 30px;
}

.lux-logo,
.lux-footer__logo {
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: .9;
  letter-spacing: .12em;
  text-decoration: none;
}

.lux-logo span,
.lux-footer__logo span {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.lux-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.lux-nav a,
.lux-icon-link {
  color: var(--graphite);
  font-size: 13px;
  text-decoration: none;
  transition: .2s ease;
}

.lux-nav a:hover,
.lux-icon-link:hover {
  color: var(--gold);
}

.lux-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}



/* desktop account/cart buttons */
.lux-header-action {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(16, 16, 16, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .44);
  color: var(--black);
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition: .22s ease;
}

.lux-header-action:hover {
  border-color: var(--gold);
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.lux-header-action__icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.lux-header-action__icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.lux-header-action__icon em {
  position: absolute;
  right: -8px;
  top: -8px;
  min-width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid rgba(248, 243, 234, .95);
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.lux-header-action:hover .lux-header-action__icon em {
  border-color: var(--black);
}

.lux-header-action__text {
  font-size: 12px;
  font-weight: 600;
}

.lux-burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.lux-burger span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--black);
  transition: .25s ease;
}

body.is-menu-open .lux-burger span:first-child {
  transform: translateY(3px) rotate(45deg);
}

body.is-menu-open .lux-burger span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* hero */

.lux-hero {
  position: relative;
  min-height: 780px;
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 78% 18%, var(--gold-soft), transparent 34%),
    linear-gradient(135deg, #fbf8f2 0%, #efe3d2 100%);
}

.lux-hero::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(16, 16, 16, .08);
  pointer-events: none;
}

.lux-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: 58px;
  align-items: center;
}

.lux-hero__content p {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.75;
}

.lux-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.lux-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 760px;
  margin-top: 62px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.lux-hero__stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.lux-hero__stats span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.lux-hero__visual {
  position: relative;
  min-height: 630px;
}

.lux-hero__image {
  position: absolute;
  inset: 0 0 54px 64px;
  overflow: hidden;
  border-radius: 340px 340px 28px 28px;
  background: var(--cream-dark);
  box-shadow: var(--shadow);
}

.lux-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.lux-hero__note {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 340px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(16, 16, 16, .93);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.lux-hero__note span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.lux-hero__note strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 400;
}


/* categories */

.lux-categories {
  padding: 96px 0;
  background: var(--white);
}

.lux-categories__grid {
  display: grid;
  grid-template-columns: 1.12fr repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lux-category {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  text-decoration: none;
}

.lux-category--large {
  grid-row: span 2;
  min-height: 578px;
}

.lux-category img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: .45s ease;
}

.lux-category::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 16, 16, .85), rgba(16, 16, 16, .04));
}

.lux-category span,
.lux-category small {
  position: relative;
  z-index: 1;
}

.lux-category span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1;
}

.lux-category small {
  max-width: 280px;
  margin-top: 12px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.45;
}

.lux-category:hover img {
  transform: scale(1.06);
  opacity: .9;
}


/* about */

.lux-about {
  padding: 104px 0;
  background: var(--cream);
}

.lux-about__grid {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.lux-about__image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-dark);
  box-shadow: var(--shadow);
}

.lux-about__image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
}

.lux-about__content p {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.8;
}

.lux-about__items {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.lux-about__items div {
  padding: 22px 0;
  border-top: 1px solid var(--border);
}

.lux-about__items strong {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lux-about__items span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}


/* products */

.lux-products {
  padding: 96px 0;
  background: var(--white);
}

.lux-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lux-product {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  transition: .25s ease;
}

.lux-product:hover {
  border-color: var(--gold);
  box-shadow: 0 18px 48px rgba(16, 16, 16, .08);
  transform: translateY(-3px);
}

.lux-product__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1.12;
  border-radius: 18px;
  background: var(--cream-dark);
}

.lux-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .35s ease;
}

.lux-product:hover .lux-product__image img {
  transform: scale(1.045);
}

.lux-product__body {
  padding: 18px 8px 8px;
}

.lux-product__title {
  min-height: 46px;
  display: block;
  color: var(--black);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  text-decoration: none;
}

.lux-product__meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.lux-product__price {
  margin-top: 14px;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}


/* system */

.lux-system {
  padding: 96px 0;
  background: var(--black);
}

.lux-system__box {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
  padding: 58px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 0%, rgba(197, 161, 110, .2), transparent 32%),
    var(--black);
  color: var(--white);
}

.lux-system h2 {
  color: var(--white);
}

.lux-system p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.75;
}

.lux-system__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lux-system__steps a {
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  color: var(--white);
  text-decoration: none;
  transition: .25s ease;
}

.lux-system__steps a:hover {
  background: var(--gold);
  color: var(--black);
}

.lux-system__steps strong {
  display: block;
  margin-bottom: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.lux-system__steps span {
  display: block;
  font-size: 15px;
  font-weight: 700;
}


/* brands */

.lux-brands {
  padding: 92px 0;
  background: var(--cream);
}

.lux-brands__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.lux-brands__grid a {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  text-align: center;
  text-decoration: none;
  transition: .25s ease;
}

.lux-brands__grid a:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* consult */

.lux-consult {
  padding: 104px 0;
  background: var(--white);
}

.lux-consult__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, .72fr);
  gap: 72px;
  align-items: flex-start;
}

.lux-consult__content p {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.lux-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--cream);
}

.lux-form label {
  display: grid;
  gap: 8px;
}

.lux-form span {
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lux-form input,
.lux-form select {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  color: var(--black);
  font: inherit;
  outline: none;
}

.lux-form input:focus,
.lux-form select:focus {
  border-color: var(--gold);
}

.lux-form button {
  width: 100%;
  margin-top: 4px;
}

.lux-form small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}


/* footer */

.lux-footer {
  padding: 42px 0;
  background: var(--black);
  color: var(--white);
}

.lux-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.lux-footer__logo {
  color: var(--white);
}

.lux-footer__text {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}


/* adaptive */

@media (max-width: 1200px) {

  .lux-nav,
  .lux-header__actions {
    display: none;
  }

  .lux-burger {
    display: block;
  }

  .lux-hero__grid,
  .lux-about__grid,
  .lux-system__box,
  .lux-consult__grid {
    grid-template-columns: 1fr;
  }

  .lux-hero__visual {
    min-height: 560px;
  }

  .lux-hero__image {
    inset: 0 0 54px 0;
  }

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

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

@media (max-width: 768px) {
  .lux-container {
    width: min(100% - 24px, 1320px);
  }

  .lux-header__inner {
    min-height: 72px;
  }

  .lux-logo {
    font-size: 23px;
  }

  .lux-hero {
    min-height: auto;
    padding: 54px 0 52px;
  }

  .lux-hero::before {
    inset: 12px;
  }

  .lux-home h1 {
    font-size: clamp(39px, 10vw, 62px);
  }

  .lux-home h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .lux-hero__content p,
  .lux-about__content p,
  .lux-system p,
  .lux-consult__content p {
    font-size: 15px;
    line-height: 1.65;
  }

  .lux-hero__buttons {
    display: grid;
  }

  .lux-btn {
    width: 100%;
    min-height: 52px;
  }

  .lux-hero__stats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px;
  }

  .lux-hero__visual {
    min-height: 460px;
  }

  .lux-hero__image {
    border-radius: 220px 220px 24px 24px;
  }

  .lux-hero__note {
    right: 12px;
    max-width: none;
    padding: 22px;
  }

  .lux-section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .lux-categories,
  .lux-about,
  .lux-products,
  .lux-system,
  .lux-brands,
  .lux-consult {
    padding: 64px 0;
  }

  .lux-categories__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .lux-category,
  .lux-category--large {
    flex: 0 0 82%;
    min-height: 360px;
    scroll-snap-align: start;
  }

  .lux-category span {
    font-size: 32px;
  }

  .lux-about__image img {
    height: 430px;
  }

  .lux-products__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .lux-product {
    flex: 0 0 76%;
    scroll-snap-align: start;
  }

  .lux-system__box {
    padding: 28px;
    border-radius: 28px;
  }

  .lux-system__steps {
    grid-template-columns: 1fr;
  }

  .lux-system__steps a {
    min-height: 120px;
  }

  .lux-system__steps strong {
    margin-bottom: 22px;
  }

  .lux-brands__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .lux-brands__grid a {
    flex: 0 0 68%;
  }

  .lux-form {
    padding: 22px;
    border-radius: 24px;
  }

  .lux-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* mobile drawer */

.lux-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(16, 16, 16, .46);
  opacity: 0;
  visibility: hidden;
  transition: .28s ease;
}

.lux-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 190;
  width: min(390px, 88vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(197, 161, 110, .18), transparent 34%),
    #fbf8f2;
  box-shadow: 24px 0 80px rgba(16, 16, 16, .2);
  transform: translateX(-105%);
  transition: transform .34s cubic-bezier(.22, .75, .2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

body.is-menu-open .lux-drawer {
  transform: translateX(0);
}

body.is-menu-open .lux-drawer-overlay {
  opacity: 1;
  visibility: visible;
}

.lux-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.lux-drawer__logo {
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: .9;
  letter-spacing: .12em;
  text-decoration: none;
}

.lux-drawer__logo span {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.lux-drawer__close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, .65);
  cursor: pointer;
}

.lux-drawer__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--black);
}

.lux-drawer__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lux-drawer__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lux-drawer__nav {
  display: grid;
  gap: 0;
  padding: 20px 0;
}

.lux-drawer__nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 34px 0 0;
  border-bottom: 1px solid rgba(16, 16, 16, .08);
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
  text-decoration: none;
}

.lux-drawer__nav a::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: .25s ease;
}

.lux-drawer__nav a:hover {
  color: var(--gold);
}

.lux-drawer__nav a:hover::after {
  width: 28px;
}

.lux-drawer__account {
  margin-top: auto;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, .62);
}

.lux-drawer__account strong {
  display: block;
  color: var(--black);
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lux-drawer__account span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.lux-drawer__account-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.lux-drawer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
}

.lux-drawer__btn--black {
  background: var(--black);
  color: var(--white);
}

.lux-drawer__contacts {
  display: grid;
  gap: 6px;
  padding-top: 20px;
}

.lux-drawer__contacts a {
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  text-decoration: none;
}

.lux-drawer__contacts span {
  color: var(--muted);
  font-size: 12px;
}


/* bottom app nav */

.lux-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  /* body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  } */

    .lux-footer--wide {
      padding: 46px 0px 90px 0px;
    }

  .lux-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 160;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 66px;
    padding: 7px;
    border: 1px solid rgba(16, 16, 16, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 48px rgba(16, 16, 16, .16);
    backdrop-filter: blur(18px);
  }

  .lux-bottom-nav__item {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 18px;
    color: rgba(16, 16, 16, .64);
    font-size: 10px;
    line-height: 1;
    text-decoration: none;
    transition: .22s ease;
  }

  .lux-bottom-nav__item.is-active,
  .lux-bottom-nav__item:hover {
    background: var(--black);
    color: var(--white);
  }

  .lux-bottom-nav__icon {
    position: relative;
    width: 22px;
    height: 22px;
    display: block;
  }

  .lux-bottom-nav__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
  }

  .lux-bottom-nav__icon em {
    position: absolute;
    right: -8px;
    top: -7px;
    min-width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid rgba(255, 255, 255, .95);
    border-radius: 999px;
    background: var(--gold);
    color: var(--black);
    font-style: normal;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
  }

  .lux-bottom-nav__item.is-active .lux-bottom-nav__icon em,
  .lux-bottom-nav__item:hover .lux-bottom-nav__icon em {
    border-color: var(--black);
  }
}

/* fixed mobile header: on mobile only logo + burger, actions go to bottom nav/drawer */
@media (max-width: 1200px) {
  .lux-header .lux-nav,
  .lux-header .lux-header__actions {
    display: none !important;
  }

  .lux-header .lux-burger {
    display: block !important;
    flex: 0 0 44px;
  }

  .lux-header__inner {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .lux-header__inner {
    min-height: 72px;
    gap: 14px;
  }

  .lux-logo {
    min-width: 0;
    max-width: calc(100% - 64px);
    overflow: hidden;
    white-space: nowrap;
    font-size: 23px;
  }

  .lux-logo span {
    white-space: nowrap;
  }
}


/* extended footer legal links */
/* .lux-footer--wide {
  padding: 46px 0;
} */

.lux-footer__inner--legal {
  align-items: flex-start;
}

.lux-footer__brand {
  display: grid;
  gap: 14px;
  max-width: 360px;
}

.lux-footer__links {
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.lux-footer__links a {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: .2s ease;
}

.lux-footer__links a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .lux-footer__inner--legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .lux-footer__links {
    justify-content: flex-start;
    display: grid;
    gap: 10px;
  }
}
