:root {
  --qle-ink: #211f1a;
  --qle-muted: #6f685f;
  --qle-soft: #f7f2ea;
  --qle-paper: #fffdf8;
  --qle-line: #ddd4c7;
  --qle-taupe: #b6a995;
  --qle-clay: #8c735f;
  --qle-charcoal: #2c2924;
  --qle-shadow: rgba(62, 49, 36, 0.08);
  color-scheme: light;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--qle-soft);
  color: var(--qle-ink);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--qle-paper);
  color: var(--qle-ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.qle-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--qle-line);
  backdrop-filter: blur(18px);
}

.qle-service-bar {
  display: none;
}

.qle-utility-bar,
.qle-brand-row,
.qle-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.qle-utility-bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  min-height: 42px;
  align-items: center;
  border-bottom: 1px solid var(--qle-line);
  color: var(--qle-muted);
  font-size: 12px;
  line-height: 1.4;
}

.qle-utility-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  align-items: center;
}

.qle-brand-row {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 78px;
  align-items: center;
}

.qle-wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.qle-menu-button {
  display: none;
  align-items: center;
  gap: 6px;
  width: max-content;
  border: 0;
  background: transparent;
  color: var(--qle-ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
}

.qle-brand-row .qle-menu-button {
  position: absolute;
  left: 32px;
}

.qle-menu-button span {
  display: block;
  width: 14px;
  height: 1px;
  background: currentColor;
}

.qle-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  min-height: 48px;
  align-items: center;
  border-top: 1px solid rgba(221, 212, 199, 0.72);
  color: var(--qle-ink);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}

.qle-nav a,
.qle-utility-links a,
.qle-region-trigger {
  transition: color 160ms ease;
}

.qle-nav a:hover,
.qle-utility-links a:hover,
.qle-region-trigger:hover {
  color: var(--qle-clay);
}

.qle-icon-link,
.qle-region-trigger {
  display: inline-flex;
  min-width: 32px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--qle-muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  padding: 0;
}

.qle-icon-link svg,
.qle-region-trigger svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.qle-region-trigger {
  gap: 5px;
  padding: 0 2px;
}

.qle-region-trigger svg:last-child {
  width: 14px;
  height: 14px;
}

.qle-region-menu {
  position: relative;
}

.qle-region-panel {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 40;
  width: 176px;
  border: 1px solid var(--qle-line);
  border-radius: 6px;
  background: var(--qle-paper);
  box-shadow: 0 16px 34px rgba(44, 41, 36, 0.12);
  color: var(--qle-charcoal);
  overflow: hidden;
}

.qle-region-panel[hidden] {
  display: none;
}

.qle-region-group {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
}

.qle-region-group + .qle-region-group {
  border-top: 1px solid var(--qle-line);
}

.qle-region-group p {
  margin: 0 0 5px;
  color: var(--qle-muted);
  font-size: 11px;
}

.qle-region-group button,
.qle-region-group a {
  display: block;
  min-height: 28px;
  border: 0;
  background: transparent;
  color: var(--qle-charcoal);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  line-height: 1.35;
  padding: 0;
  text-align: left;
  text-decoration: none;
}

.qle-region-group button.is-active {
  color: #b22d2a;
}

.qle-region-group span {
  margin-right: 5px;
  color: var(--qle-muted);
  font-size: 10px;
  text-transform: uppercase;
}

.qle-cart-icon {
  position: relative;
}

.qle-cart-icon [data-qle-cart-count] {
  position: absolute;
  top: 2px;
  right: -2px;
  display: grid;
  min-width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 999px;
  background: var(--qle-charcoal);
  color: var(--qle-paper);
  font-size: 10px;
  line-height: 1;
}

.qle-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--qle-soft), #ede5d8);
  border-bottom: 1px solid var(--qle-line);
}

.qle-hero__visual {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(120px, 0.85fr) minmax(180px, 1.2fr) minmax(120px, 0.85fr);
  gap: 18px;
  padding: 70px 8vw 46px;
  opacity: 0.72;
}

.qle-hero__panel {
  min-height: 420px;
  border: 1px solid rgba(221, 212, 199, 0.8);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.6), rgba(182, 169, 149, 0.24)),
    repeating-linear-gradient(90deg, rgba(33, 31, 26, 0.05) 0, rgba(33, 31, 26, 0.05) 1px, transparent 1px, transparent 54px);
  box-shadow: 0 26px 80px var(--qle-shadow);
}

.qle-hero__panel--left,
.qle-hero__panel--right {
  margin-top: 58px;
}

.qle-hero__panel--center {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 253, 248, 0.78), transparent 34%),
    linear-gradient(180deg, #d4c8b8, #f2eadf);
}

.qle-hero__content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 72px;
  text-align: center;
}

.qle-kicker {
  margin: 0 0 16px;
  color: var(--qle-clay);
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.qle-hero h1,
.qle-editorial h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.qle-hero h1 {
  font-size: 58px;
  line-height: 1.05;
}

.qle-hero p:not(.qle-kicker) {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--qle-muted);
  font-size: 16px;
  line-height: 1.8;
}

.qle-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.qle-button {
  display: inline-flex;
  min-width: 148px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--qle-charcoal);
  padding: 0 22px;
  font-size: 12px;
  text-transform: uppercase;
}

.qle-button--dark {
  background: var(--qle-charcoal);
  color: var(--qle-paper);
}

.qle-button--light {
  background: rgba(255, 253, 248, 0.72);
  color: var(--qle-charcoal);
}

.qle-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 32px;
  border-bottom: 1px solid var(--qle-line);
}

.qle-assurance article {
  min-height: 150px;
  padding: 0 30px;
  border-right: 1px solid var(--qle-line);
}

.qle-assurance article:first-child {
  padding-left: 0;
}

.qle-assurance article:last-child {
  border-right: 0;
  padding-right: 0;
}

.qle-assurance span {
  color: var(--qle-taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.qle-assurance h2 {
  margin: 16px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
}

.qle-assurance p,
.qle-editorial p {
  margin: 0;
  color: var(--qle-muted);
  font-size: 15px;
  line-height: 1.75;
}

.qle-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 32px 80px;
  align-items: start;
}

.qle-editorial h2 {
  font-size: 38px;
  line-height: 1.16;
}

@media (max-width: 900px) {
  .qle-utility-bar,
  .qle-brand-row,
  .qle-nav {
    padding-right: 20px;
    padding-left: 20px;
  }

  .qle-utility-bar {
    gap: 12px;
  }

  .qle-brand-row {
    min-height: 68px;
  }

  .qle-menu-button {
    display: inline-flex;
  }

  .qle-brand-row .qle-menu-button {
    left: 20px;
  }

  .qle-wordmark {
    font-size: 23px;
  }

  .qle-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding-top: 4px;
    padding-bottom: 12px;
    text-align: center;
  }

  .qle-header.is-nav-open .qle-nav {
    display: flex;
  }

  .qle-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(221, 212, 199, 0.62);
  }

  .qle-hero {
    min-height: 560px;
  }

  .qle-hero__visual {
    grid-template-columns: 1fr 1.2fr;
    padding: 54px 20px 40px;
  }

  .qle-hero__panel--right {
    display: none;
  }

  .qle-hero h1 {
    font-size: 42px;
  }

  .qle-assurance,
  .qle-editorial {
    grid-template-columns: 1fr;
  }

  .qle-assurance article {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--qle-line);
  }

  .qle-assurance article:first-child {
    padding-top: 0;
  }

  .qle-assurance article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 560px) {
  .qle-utility-links {
    gap: 8px;
  }

  .qle-brand-row {
    min-height: 66px;
  }

  .qle-menu-button {
    overflow: hidden;
    width: 34px;
    height: 34px;
    padding: 0;
    text-indent: 60px;
  }

  .qle-menu-button span {
    position: absolute;
    margin-left: 9px;
  }

  .qle-menu-button span:nth-child(1) {
    transform: translateY(-5px);
  }

  .qle-menu-button span:nth-child(3) {
    transform: translateY(5px);
  }

  .qle-region-trigger span {
    display: none;
  }

  .qle-region-panel {
    right: -58px;
  }

  .qle-wordmark {
    font-size: 18px;
  }

  .qle-hero__content {
    width: min(100% - 32px, 720px);
    padding-bottom: 52px;
  }

  .qle-hero h1 {
    font-size: 34px;
  }

  .qle-hero p:not(.qle-kicker) {
    font-size: 15px;
  }

  .qle-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .qle-button {
    width: min(100%, 260px);
  }

  .qle-assurance,
  .qle-editorial {
    padding-right: 20px;
    padding-left: 20px;
  }

  .qle-editorial h2 {
    font-size: 30px;
  }
}

.qle-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.qle-product-card {
  border: 1px solid var(--qle-line);
  background: var(--qle-paper);
}

.qle-product-card__image,
.qle-product-detail__image {
  display: grid;
  min-height: 280px;
  place-items: center;
  border-bottom: 1px solid var(--qle-line);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.86), rgba(182, 169, 149, 0.24)),
    repeating-linear-gradient(90deg, rgba(33, 31, 26, 0.04) 0, rgba(33, 31, 26, 0.04) 1px, transparent 1px, transparent 42px);
  color: var(--qle-clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.qle-product-card__body {
  padding: 18px;
}

.qle-product-card__brand,
.qle-product-card__meta,
.qle-product-card__price,
.qle-product-detail__translation,
.qle-size-note {
  color: var(--qle-muted);
  font-size: 14px;
  line-height: 1.6;
}

.qle-product-card h3 {
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.25;
}

.qle-brand-block + .qle-brand-block {
  margin-top: 44px;
}

.qle-brand-block h2 {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.qle-empty-state {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  border: 1px solid var(--qle-line);
  padding: 34px;
  text-align: center;
}

.qle-product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.85fr);
  gap: 54px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0;
}

.qle-product-detail__image {
  min-height: 620px;
  border: 1px solid var(--qle-line);
}

.qle-product-detail__info h1 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
}

.qle-product-detail__info p {
  line-height: 1.75;
}

.qle-product-facts {
  display: grid;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid var(--qle-line);
}

.qle-product-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--qle-line);
  padding: 13px 0;
}

.qle-product-facts dt {
  color: var(--qle-muted);
}

.qle-product-facts dd {
  margin: 0;
}

.qle-product-form {
  display: grid;
  gap: 12px;
}

.qle-product-form select {
  min-height: 44px;
  border: 1px solid var(--qle-line);
  border-radius: 0;
  background: var(--qle-paper);
  color: var(--qle-ink);
  font: inherit;
}

@media (max-width: 760px) {
  .qle-product-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .qle-product-detail__image {
    min-height: 360px;
  }

  .qle-product-detail__info h1 {
    font-size: 34px;
  }
}

.qle-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.qle-cart-list {
  display: grid;
  gap: 14px;
}

.qle-cart-row,
.qle-cart-summary {
  border: 1px solid var(--qle-line);
  background: var(--qle-paper);
  padding: 22px;
}

.qle-cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.qle-cart-row h2,
.qle-cart-summary h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.25;
}

.qle-cart-row p {
  margin: 0;
  color: var(--qle-muted);
  line-height: 1.6;
}

.qle-cart-row__price {
  display: grid;
  gap: 7px;
  justify-items: end;
  text-align: right;
}

.qle-cart-row__price span {
  color: var(--qle-muted);
  font-size: 14px;
}

.qle-text-button {
  border: 0;
  background: transparent;
  color: var(--qle-clay);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  padding: 4px 0;
  text-decoration: underline;
}

.qle-cart-summary {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 18px;
}

.qle-cart-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.qle-cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(221, 212, 199, 0.72);
  padding-bottom: 10px;
}

.qle-cart-summary dd {
  margin: 0;
  text-align: right;
}

@media (max-width: 760px) {
  .qle-cart-layout,
  .qle-cart-row {
    grid-template-columns: 1fr;
  }

  .qle-cart-row__price {
    justify-items: start;
    text-align: left;
  }

  .qle-cart-summary {
    position: static;
  }
}

.qle-lookup-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 28px;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  align-items: start;
}

.qle-lookup-form,
.qle-lookup-card,
.qle-lookup-result {
  border: 1px solid var(--qle-line);
  background: var(--qle-paper);
  padding: 24px;
}

.qle-lookup-form {
  display: grid;
  gap: 16px;
}

.qle-lookup-form label {
  display: grid;
  gap: 8px;
  color: var(--qle-charcoal);
  font-size: 12px;
  text-transform: uppercase;
}

.qle-lookup-form input {
  min-height: 46px;
  border: 1px solid var(--qle-line);
  background: #fffdf8;
  color: var(--qle-ink);
  font: inherit;
  font-size: 15px;
  padding: 0 12px;
}

.qle-lookup-result {
  min-height: 160px;
  color: var(--qle-muted);
}

.qle-lookup-result.is-error {
  color: var(--qle-clay);
}

.qle-lookup-card {
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
}

.qle-lookup-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.qle-lookup-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.qle-lookup-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(221, 212, 199, 0.72);
  padding-bottom: 10px;
}

.qle-lookup-card dd {
  margin: 0;
  text-align: right;
}

.qle-lookup-card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .qle-lookup-layout {
    grid-template-columns: 1fr;
  }
}

.qle-payment-tabs {
  display: grid;
  gap: 24px;
}

.qle-payment-account[hidden] {
  display: none;
}

.qle-payment-account .qle-kicker {
  margin-bottom: 12px;
}

.qle-size-guide-table {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--qle-line);
  background: var(--qle-paper);
}

.qle-size-guide-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.qle-size-guide-table th,
.qle-size-guide-table td {
  border-bottom: 1px solid var(--qle-line);
  padding: 18px 22px;
  text-align: center;
  font-size: 15px;
}

.qle-size-guide-table th {
  background: #f1ece4;
  color: var(--qle-charcoal);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.qle-size-guide-table th:first-child,
.qle-size-guide-table td:first-child {
  background: #a65a4e;
  color: #fffdf8;
  font-weight: 600;
}

.qle-size-disclaimer,
.qle-policy-copy {
  width: min(820px, calc(100% - 48px));
  margin: 24px auto 0;
  color: var(--qle-muted);
  line-height: 1.8;
}

.qle-policy-copy h2 {
  margin: 28px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--qle-ink);
}

.qle-wordmark--logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(280px, 46vw);
}

.qle-wordmark--logo img {
  display: block;
  width: 100%;
  height: auto;
}

.admin-brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-brand-lockup img {
  width: 210px;
  max-width: 36vw;
  height: auto;
}

@media (max-width: 560px) {
  .qle-wordmark--logo {
    width: min(220px, 54vw);
  }

  .admin-brand-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .admin-brand-lockup img {
    max-width: 240px;
    width: 72vw;
  }
}


.qle-account-shell {
  display: grid;
  gap: 28px;
}

.qle-account-intro {
  max-width: 720px;
}

.qle-account-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qle-account-form,
.qle-account-card {
  border: 1px solid var(--qle-line);
  padding: 24px;
  background: var(--qle-paper);
}

.qle-account-form {
  display: grid;
  gap: 16px;
}

.qle-account-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.qle-account-form input {
  border: 1px solid var(--qle-line);
  background: #fff;
  padding: 12px;
  font: inherit;
}

.qle-account-status {
  border: 1px solid var(--qle-line);
  padding: 12px;
  margin-top: 18px;
}

.qle-account-status.is-error {
  border-color: #9b4b3f;
  color: #9b4b3f;
}

@media (max-width: 760px) {
  .qle-account-grid {
    grid-template-columns: 1fr;
  }
}


.qle-price-original {
  color: #8a8177;
  display: inline-block;
  margin-right: 10px;
  text-decoration: line-through;
}

.qle-price-discount {
  color: #8f3f32;
  display: inline-block;
  font-weight: 600;
}


.qle-region-group a[aria-current="true"],
.qle-region-group button[aria-current="true"] {
  color: var(--qle-clay);
}

.qle-footer {
  border-top: 1px solid var(--qle-line);
  background: #fbf7f0;
  color: var(--qle-charcoal);
}

.qle-footer__inner {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(140px, 1fr));
  gap: 44px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 44px;
}

.qle-footer section {
  display: grid;
  align-content: start;
  gap: 11px;
}

.qle-footer__brand {
  max-width: 300px;
}

.qle-footer__logo {
  display: inline-flex;
  width: 210px;
  max-width: 100%;
  margin-bottom: 8px;
}

.qle-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.qle-footer h2 {
  margin: 0 0 8px;
  color: var(--qle-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.qle-footer a,
.qle-footer p {
  margin: 0;
  color: var(--qle-muted);
  font-size: 13px;
  line-height: 1.75;
}

.qle-footer a {
  width: fit-content;
  transition: color 160ms ease;
}

.qle-footer a:hover {
  color: var(--qle-clay);
}

.qle-footer section p {
  display: flex;
  gap: 9px;
  align-items: baseline;
}

.qle-footer section p span {
  min-width: 14px;
  color: var(--qle-clay);
  font-size: 13px;
  line-height: 1;
}

.qle-footer__bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid rgba(221, 212, 199, 0.8);
  padding: 24px 0 30px;
  text-align: center;
}

.qle-footer__bottom p {
  margin: 0;
  color: #958b7f;
  font-size: 12px;
  letter-spacing: .04em;
}

@media (max-width: 900px) {
  .qle-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }
}

@media (max-width: 560px) {
  .qle-footer__inner {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 1180px);
    padding: 42px 0 34px;
  }

  .qle-footer__brand {
    max-width: none;
  }

  .qle-footer__bottom {
    width: min(100% - 40px, 1180px);
    text-align: left;
  }
}

