/*
 * The accent palette is provisional until the client provides approved brand tokens.
 * Product color representation must come from approved photography, never CSS effects.
 */
:root {
  --up-ink: #181719;
  --up-ink-soft: #514a4e;
  --up-paper: #fffdfd;
  --up-surface: #f7f3f4;
  --up-line: #e4dade;
  --up-accent: #a52d62;
  --up-accent-dark: #781c45;
  --up-blush: #f3e4ea;
  --up-plum: #55304d;
  --up-sand: #eee5d9;
  --up-white: #fff;
  --up-success: #356c52;
  --up-radius-sm: 10px;
  --up-radius: 22px;
  --up-radius-lg: 40px;
  --up-shadow: 0 22px 60px rgb(55 28 41 / 9%);
  --up-container: min(1240px, calc(100vw - 48px));
  --up-display: Georgia, "Times New Roman", serif;
  --up-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--up-paper);
  color: var(--up-ink);
  font-family: var(--up-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgb(165 45 98 / 35%);
  outline-offset: 4px;
}

div[hidden] {
  display: none !important;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.up-skip-link {
  background: var(--up-white);
  left: 16px;
  padding: 12px 18px;
  position: fixed;
  top: -120px;
  z-index: 99999;
}

.up-skip-link:focus {
  top: 16px;
}

.up-container {
  margin-inline: auto;
  width: var(--up-container);
}

.up-announcement {
  background: var(--up-ink);
  color: var(--up-white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.up-announcement__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 36px;
}

.up-announcement a {
  color: inherit;
}

.up-header {
  background: rgb(255 253 253 / 94%);
  border-bottom: 1px solid var(--up-line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
}

.up-header__main {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  min-height: 88px;
}

.up-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.up-wordmark span {
  font-family: var(--up-display);
  font-size: 27px;
  letter-spacing: 0.04em;
}

.up-wordmark small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  margin-top: 8px;
}

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

.up-header-search {
  justify-self: center;
  max-width: 500px;
  width: 100%;
}

.up-header-search form,
.woocommerce-product-search,
.search-form {
  display: flex;
  position: relative;
}

.up-header-search input[type="search"] {
  background: var(--up-surface);
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 46px;
  padding: 10px 112px 10px 20px;
  width: 100%;
}

.up-header-search input[type="search"]:focus {
  background: var(--up-white);
  border-color: var(--up-accent);
  outline: none;
}

.up-header-search button,
.up-header-search input[type="submit"] {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 20px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 50%;
  transform: translateY(-50%);
}

.up-header__actions {
  align-items: center;
  display: flex;
  gap: 22px;
  white-space: nowrap;
}

.up-account-link,
.up-cart-link {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.up-cart-link__count {
  align-items: center;
  background: var(--up-accent);
  border-radius: 50%;
  color: var(--up-white);
  display: inline-flex;
  font-size: 11px;
  height: 24px;
  justify-content: center;
  min-width: 24px;
  padding: 0 5px;
}

.up-menu-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 10px 6px;
  width: 42px;
}

.up-menu-toggle > span:not(.screen-reader-text) {
  background: currentcolor;
  display: block;
  height: 1px;
  margin: 7px auto;
  transition: transform 180ms ease;
  width: 24px;
}

.up-navigation {
  border-top: 1px solid var(--up-line);
}

.up-navigation__list,
.up-navigation__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.up-navigation__list {
  align-items: center;
  display: flex;
  gap: clamp(22px, 3vw, 44px);
  justify-content: center;
  min-height: 50px;
}

.up-navigation__list > li {
  position: relative;
}

.up-navigation__list a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 0;
  text-decoration: none;
  text-transform: uppercase;
}

.up-navigation__list a:hover {
  color: var(--up-accent);
}

.up-navigation__list .sub-menu {
  background: var(--up-white);
  box-shadow: var(--up-shadow);
  display: none;
  left: -22px;
  min-width: 240px;
  padding: 10px 22px;
  position: absolute;
  top: 100%;
}

.up-navigation__list li:hover > .sub-menu,
.up-navigation__list li:focus-within > .sub-menu {
  display: block;
}

.up-kicker {
  color: var(--up-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.up-hero {
  background:
    radial-gradient(circle at 12% 88%, rgb(165 45 98 / 10%), transparent 25%),
    linear-gradient(120deg, #fffdfd 0%, #f7eff2 100%);
  overflow: hidden;
}

.up-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  min-height: min(720px, calc(100vh - 175px));
}

.up-hero__content {
  align-self: center;
  max-width: 680px;
  padding: 96px 5vw 96px 0;
}

.up-hero h1,
.up-section-heading h2,
.up-shade-finder h2,
.up-editorial h2,
.up-faq h2,
.up-page-header h1,
.up-not-found h1 {
  font-family: var(--up-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

.up-hero h1 {
  font-size: clamp(56px, 7vw, 102px);
  max-width: 780px;
}

.up-hero__lead {
  color: var(--up-ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  margin: 30px 0 36px;
  max-width: 610px;
}

.up-button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.up-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-block-components-button:not(.is-link) {
  align-items: center;
  background: var(--up-ink);
  border: 1px solid var(--up-ink);
  border-radius: 999px;
  color: var(--up-white);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 50px;
  padding: 13px 27px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.up-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wc-block-components-button:not(.is-link):hover {
  background: var(--up-accent);
  border-color: var(--up-accent);
  color: var(--up-white);
  transform: translateY(-1px);
}

.up-button--outline {
  background: transparent;
  color: var(--up-ink);
}

.up-text-link {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.up-text-link span {
  color: var(--up-accent);
  font-size: 18px;
  margin-left: 5px;
}

.up-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  list-style: none;
  margin: 52px 0 0;
  padding: 0;
}

.up-hero__meta li {
  font-size: 12px;
  font-weight: 700;
  padding-left: 16px;
  position: relative;
  text-transform: uppercase;
}

.up-hero__meta li::before {
  background: var(--up-accent);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 6px;
}

.up-hero__visual {
  align-items: center;
  background: linear-gradient(155deg, #d9b3c4 0%, #b24773 54%, #7b244e 100%);
  display: flex;
  justify-content: center;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.up-orbit {
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 50%;
  height: 510px;
  position: absolute;
  width: 510px;
}

.up-orbit--one {
  right: -140px;
  top: -90px;
}

.up-orbit--two {
  bottom: -240px;
  left: -170px;
}

.up-bottle {
  background: linear-gradient(140deg, #3c2633 0%, #130e11 62%);
  border-radius: 20px 20px 46px 46px;
  box-shadow: 0 36px 70px rgb(54 6 30 / 30%);
  color: var(--up-white);
  display: flex;
  flex-direction: column;
  height: 310px;
  justify-content: center;
  position: absolute;
  text-align: center;
  transform: rotate(5deg);
  width: 160px;
}

.up-bottle::before {
  background: #111;
  border-radius: 9px 9px 4px 4px;
  content: "";
  height: 126px;
  left: 25px;
  position: absolute;
  top: -112px;
  width: 110px;
}

.up-bottle span {
  font-family: var(--up-display);
  font-size: 29px;
  letter-spacing: 0.08em;
  line-height: 0.93;
}

.up-bottle small {
  font-size: 9px;
  letter-spacing: 0.36em;
  margin-top: 24px;
}

.up-bottle--back {
  background: linear-gradient(145deg, #cc7197, #8a2651);
  margin-left: -165px;
  margin-top: 85px;
  transform: rotate(-13deg) scale(0.85);
}

.up-bottle--front {
  margin-left: 105px;
  margin-top: -55px;
}

.up-hero__asset-note {
  bottom: 32px;
  color: rgb(255 255 255 / 82%);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  left: 32px;
  letter-spacing: 0.12em;
  position: absolute;
  right: 32px;
  text-transform: uppercase;
}

.up-hero__asset-note strong {
  color: var(--up-white);
  font-size: inherit;
}

.up-section {
  padding: clamp(80px, 9vw, 132px) 0;
}

.up-section-heading {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.up-section-heading h2,
.up-shade-finder h2,
.up-editorial h2,
.up-faq h2,
.up-page-header h1,
.up-not-found h1 {
  font-size: clamp(42px, 5vw, 68px);
  max-width: 760px;
}

.up-category-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.up-category-card {
  background: var(--up-blush);
  border-radius: var(--up-radius);
  display: flex;
  flex-direction: column;
  min-height: 390px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.up-category-card:hover {
  box-shadow: var(--up-shadow);
  transform: translateY(-5px);
}

.up-category-card--plum {
  background: #ded0da;
}

.up-category-card--sand {
  background: var(--up-sand);
}

.up-category-card--ink {
  background: var(--up-ink);
  color: var(--up-white);
}

.up-category-card__number {
  font-family: var(--up-display);
  font-size: 13px;
  position: relative;
  z-index: 2;
}

.up-category-card__swatch {
  background: linear-gradient(145deg, #d66894, #93244f);
  border: 10px solid rgb(255 255 255 / 34%);
  border-radius: 48% 52% 61% 39% / 56% 38% 62% 44%;
  height: 175px;
  margin: 8px auto 12px;
  transform: rotate(-8deg);
  transition: transform 250ms ease;
  width: 175px;
}

.up-category-card:hover .up-category-card__swatch {
  transform: rotate(2deg) scale(1.04);
}

.up-category-card--plum .up-category-card__swatch {
  background: linear-gradient(145deg, #75506e, #42253e);
}

.up-category-card--sand .up-category-card__swatch {
  background: linear-gradient(145deg, #d5b49e, #a57966);
}

.up-category-card--ink .up-category-card__swatch {
  background: linear-gradient(145deg, #4c4649, #080708);
  border-color: rgb(255 255 255 / 9%);
}

.up-category-card__content {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.up-category-card__content .up-kicker {
  color: currentcolor;
  margin-bottom: 8px;
  opacity: 0.66;
}

.up-category-card__content strong {
  font-family: var(--up-display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.08;
}

.up-category-card__content > span:last-child {
  font-size: 13px;
  margin-top: 10px;
  max-width: 220px;
  opacity: 0.75;
}

.up-category-card__arrow {
  bottom: 24px;
  font-size: 21px;
  position: absolute;
  right: 24px;
}

.up-section--shade-finder {
  background: var(--up-ink);
  color: var(--up-white);
}

.up-shade-finder {
  align-items: center;
  display: grid;
  gap: clamp(60px, 10vw, 150px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.up-shade-finder__intro > p:last-child {
  color: rgb(255 255 255 / 68%);
  max-width: 570px;
}

.up-shade-list {
  border-top: 1px solid rgb(255 255 255 / 17%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.up-shade-list a {
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 17%);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 16px;
  min-height: 76px;
  text-decoration: none;
}

.up-shade-list a:nth-child(odd) {
  border-right: 1px solid rgb(255 255 255 / 17%);
  padding-right: 20px;
}

.up-shade-list a:nth-child(even) {
  padding-left: 24px;
}

.up-shade-list a:hover {
  color: #f2b8d2;
}

.up-shade-list a span {
  background: var(--up-shade);
  border: 2px solid rgb(255 255 255 / 48%);
  border-radius: 50%;
  height: 34px;
  width: 34px;
}

.up-section--products {
  background: var(--up-paper);
}

.up-product-showcase .woocommerce {
  width: 100%;
}

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

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  margin: 0;
  padding: 0;
  width: auto;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 4 / 5;
  background: var(--up-surface);
  border-radius: var(--up-radius-sm);
  margin: 0 0 20px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.woocommerce ul.products li.product a:hover img {
  transform: translateY(-3px);
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  font-family: var(--up-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  padding: 0;
}

.woocommerce ul.products li.product .price {
  color: var(--up-accent-dark);
  font-size: 14px;
  font-weight: 800;
  margin: 8px 0 13px;
}

.woocommerce ul.products li.product .button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentcolor;
  border-radius: 0;
  color: var(--up-ink);
  font-size: 11px;
  min-height: 0;
  padding: 5px 0;
}

.woocommerce span.onsale {
  align-items: center;
  background: var(--up-accent);
  display: flex;
  font-size: 11px;
  justify-content: center;
  left: 12px;
  line-height: 1;
  min-height: 48px;
  min-width: 48px;
  top: 12px;
}

.up-editorial {
  background: var(--up-blush);
}

.up-editorial__grid {
  align-items: center;
  display: grid;
  gap: clamp(60px, 10vw, 140px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
}

.up-editorial__visual {
  min-height: 570px;
  position: relative;
}

.up-editorial__tile {
  border: 8px solid rgb(255 255 255 / 72%);
  box-shadow: 0 28px 60px rgb(73 21 47 / 15%);
  position: absolute;
}

.up-editorial__tile--a {
  background: linear-gradient(145deg, #c5507f, #68223f);
  height: 420px;
  left: 4%;
  top: 20px;
  transform: rotate(-5deg);
  width: 54%;
}

.up-editorial__tile--a::after,
.up-editorial__tile--b::after,
.up-editorial__tile--c::after {
  align-items: center;
  color: rgb(255 255 255 / 78%);
  content: "APPROVED SOCIAL ASSET";
  display: flex;
  font-size: 9px;
  inset: 0;
  justify-content: center;
  letter-spacing: 0.15em;
  position: absolute;
}

.up-editorial__tile--b {
  background: linear-gradient(145deg, #d6b4a1, #8d5f55);
  height: 325px;
  right: 4%;
  top: 150px;
  transform: rotate(7deg);
  width: 47%;
}

.up-editorial__tile--c {
  background: linear-gradient(145deg, #352d32, #090809);
  bottom: 18px;
  height: 210px;
  left: 21%;
  transform: rotate(2deg);
  width: 39%;
}

.up-editorial__content > p:not(.up-kicker) {
  color: var(--up-ink-soft);
  margin: 28px 0 32px;
}

.up-section--trust {
  padding-block: 64px;
}

.up-trust-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}

.up-trust-grid article {
  border-right: 1px solid var(--up-line);
  padding: 22px 54px;
}

.up-trust-grid article:first-child {
  padding-left: 0;
}

.up-trust-grid article:last-child {
  border-right: 0;
  padding-right: 0;
}

.up-trust-grid article > span {
  color: var(--up-accent);
  font-family: var(--up-display);
  font-size: 13px;
}

.up-trust-grid h2 {
  font-family: var(--up-display);
  font-size: 25px;
  font-weight: 400;
  margin: 13px 0 7px;
}

.up-trust-grid p {
  color: var(--up-ink-soft);
  font-size: 14px;
  margin: 0;
}

.up-faq {
  background: var(--up-surface);
}

.up-faq__grid {
  display: grid;
  gap: clamp(50px, 10vw, 150px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.up-faq__items {
  border-top: 1px solid var(--up-line);
}

.up-faq details {
  border-bottom: 1px solid var(--up-line);
  padding: 22px 0;
}

.up-faq summary {
  cursor: pointer;
  font-family: var(--up-display);
  font-size: 22px;
  list-style: none;
  padding-right: 36px;
  position: relative;
}

.up-faq summary::-webkit-details-marker {
  display: none;
}

.up-faq summary::after {
  color: var(--up-accent);
  content: "+";
  font-family: var(--up-sans);
  position: absolute;
  right: 4px;
}

.up-faq details[open] summary::after {
  content: "−";
}

.up-faq details p {
  color: var(--up-ink-soft);
  margin: 15px 36px 0 0;
}

.up-main--content,
.up-main--shop {
  min-height: 55vh;
  padding: clamp(70px, 8vw, 120px) 0;
}

.up-main--shop .woocommerce-breadcrumb {
  color: var(--up-ink-soft);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.up-main--shop .woocommerce-products-header__title,
.up-main--shop .product_title {
  font-family: var(--up-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  font-size: 13px;
  margin-bottom: 38px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  background: var(--up-white);
  border: 1px solid var(--up-line);
  border-radius: var(--up-radius-sm);
  min-height: 48px;
  padding: 11px 14px;
}

.woocommerce div.product div.images img {
  background: var(--up-surface);
  border-radius: var(--up-radius);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--up-accent-dark);
  font-size: 22px;
  font-weight: 800;
}

.woocommerce div.product form.cart .button {
  min-height: 52px;
}

.woocommerce .quantity .qty {
  border: 1px solid var(--up-line);
  border-radius: var(--up-radius-sm);
  min-height: 52px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--up-surface);
  border-top-color: var(--up-accent);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--up-accent);
}

.up-page,
.up-content-grid {
  max-width: 940px;
}

.up-page-header {
  border-bottom: 1px solid var(--up-line);
  margin-bottom: 48px;
  padding-bottom: 40px;
}

.up-prose {
  color: var(--up-ink-soft);
  font-size: 17px;
}

.up-prose > * {
  margin-inline: auto;
  max-width: 760px;
}

.up-prose > .alignwide {
  max-width: 1100px;
}

.up-prose h2,
.up-prose h3 {
  color: var(--up-ink);
  font-family: var(--up-display);
  font-weight: 400;
  line-height: 1.12;
  margin-top: 2.2em;
}

.up-prose h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.up-prose a {
  color: var(--up-accent-dark);
}

.up-featured-image {
  margin-bottom: 46px;
}

.up-post-list {
  display: grid;
  gap: 18px;
}

.up-post-card {
  border: 1px solid var(--up-line);
  border-radius: var(--up-radius);
  padding: 32px;
}

.up-post-card h2 {
  font-family: var(--up-display);
  font-size: 32px;
  margin: 0 0 12px;
}

.up-post-card h2 a {
  text-decoration: none;
}

.up-empty-state,
.up-not-found {
  background: var(--up-surface);
  border-radius: var(--up-radius);
  padding: clamp(38px, 6vw, 80px);
}

.up-not-found > p:not(.up-kicker) {
  color: var(--up-ink-soft);
  font-size: 18px;
  margin: 24px 0 34px;
}

.up-footer {
  background: #111011;
  color: var(--up-white);
  padding: 82px 0 26px;
}

.up-footer__grid {
  display: grid;
  gap: 54px;
  grid-template-columns: 1.5fr 0.75fr 0.8fr 1fr;
}

.up-wordmark--footer {
  color: var(--up-white);
}

.up-footer__brand p,
.up-footer__note p {
  color: rgb(255 255 255 / 58%);
  font-size: 14px;
  max-width: 320px;
}

.up-footer h2 {
  font-family: var(--up-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

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

.up-footer__links li + li {
  margin-top: 9px;
}

.up-footer__links a {
  color: rgb(255 255 255 / 74%);
  font-size: 14px;
  text-decoration: none;
}

.up-footer__links a:hover {
  color: var(--up-white);
}

.up-footer__bottom {
  border-top: 1px solid rgb(255 255 255 / 14%);
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin-top: 70px;
  padding-top: 22px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .up-header__main {
    gap: 20px;
    grid-template-columns: auto 1fr auto;
  }

  .up-account-link {
    display: none;
  }

  .up-hero__grid {
    grid-template-columns: 1fr 0.8fr;
  }

  .up-hero__visual {
    min-height: 570px;
  }

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

  .up-category-card {
    min-height: 370px;
  }

  .up-footer__grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --up-container: min(100% - 36px, 760px);
  }

  body.admin-bar .up-header {
    top: 46px;
  }

  .up-header__main {
    grid-template-columns: 1fr auto;
    min-height: 74px;
  }

  .up-header-search {
    display: none;
  }

  .up-menu-toggle {
    display: block;
  }

  .up-header.is-menu-open .up-menu-toggle > span:nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .up-header.is-menu-open .up-menu-toggle > span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .up-navigation {
    display: none;
    max-height: calc(100vh - 110px);
    overflow: auto;
  }

  .up-header.is-menu-open .up-navigation {
    display: block;
  }

  .up-navigation__list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 0 24px;
  }

  .up-navigation__list > li {
    border-bottom: 1px solid var(--up-line);
  }

  .up-navigation__list a {
    padding: 15px 0;
  }

  .up-navigation__list .sub-menu {
    background: transparent;
    box-shadow: none;
    display: block;
    min-width: 0;
    padding: 0 0 8px 18px;
    position: static;
  }

  .up-navigation__list .sub-menu a {
    color: var(--up-ink-soft);
    font-size: 12px;
    padding: 9px 0;
  }

  .up-hero__grid {
    display: flex;
    flex-direction: column;
  }

  .up-hero__content {
    padding: 78px 0 68px;
  }

  .up-hero__visual {
    min-height: 540px;
    width: 100%;
  }

  .up-shade-finder,
  .up-editorial__grid,
  .up-faq__grid {
    gap: 58px;
    grid-template-columns: 1fr;
  }

  .up-editorial__visual {
    min-height: 510px;
  }

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

  .up-trust-grid {
    grid-template-columns: 1fr;
  }

  .up-trust-grid article,
  .up-trust-grid article:first-child,
  .up-trust-grid article:last-child {
    border-bottom: 1px solid var(--up-line);
    border-right: 0;
    padding: 30px 0;
  }

  .up-trust-grid article:last-child {
    border-bottom: 0;
  }

  .up-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  :root {
    --up-container: calc(100% - 28px);
    --up-radius: 16px;
  }

  .up-announcement__inner {
    justify-content: center;
    min-height: 38px;
    text-align: center;
  }

  .up-announcement a {
    display: none;
  }

  .up-wordmark span {
    font-size: 23px;
  }

  .up-header__actions {
    gap: 10px;
  }

  .up-cart-link > span:first-child {
    display: none;
  }

  .up-hero h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .up-hero__lead {
    font-size: 17px;
  }

  .up-hero__meta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 38px;
  }

  .up-hero__visual {
    min-height: 465px;
  }

  .up-bottle {
    height: 270px;
    width: 140px;
  }

  .up-bottle::before {
    height: 108px;
    left: 22px;
    top: -98px;
    width: 96px;
  }

  .up-bottle--front {
    margin-left: 78px;
  }

  .up-bottle--back {
    margin-left: -125px;
  }

  .up-hero__asset-note {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }

  .up-hero__asset-note strong {
    display: none;
  }

  .up-section {
    padding: 76px 0;
  }

  .up-section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .up-section-heading h2,
  .up-shade-finder h2,
  .up-editorial h2,
  .up-faq h2,
  .up-page-header h1,
  .up-not-found h1 {
    font-size: 42px;
  }

  .up-category-grid {
    grid-template-columns: 1fr;
  }

  .up-category-card {
    min-height: 350px;
  }

  .up-shade-list {
    grid-template-columns: 1fr;
  }

  .up-shade-list a:nth-child(odd),
  .up-shade-list a:nth-child(even) {
    border-right: 0;
    padding: 0;
  }

  .woocommerce ul.products {
    gap: 30px 12px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px;
  }

  .up-editorial__visual {
    min-height: 420px;
  }

  .up-editorial__tile--a {
    height: 310px;
  }

  .up-editorial__tile--b {
    height: 240px;
    top: 120px;
  }

  .up-editorial__tile--c {
    height: 150px;
  }

  .up-footer__grid {
    grid-template-columns: 1fr;
  }

  .up-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

