:root {
  --ink: oklch(25% 0.052 247);
  --muted: oklch(43% 0.043 240);
  --line: oklch(82% 0.024 235 / 0.54);
  --blue: oklch(90% 0.045 230);
  --aqua: oklch(84% 0.066 190);
  --rose: oklch(86% 0.07 356);
  --petal: oklch(95% 0.025 18);
  --surface: oklch(99% 0.004 235);
  --white: #ffffff;
  --brand: oklch(28% 0.06 246);
  --accent: oklch(60% 0.118 351);
  --shadow-soft: 0 8px 26px oklch(30% 0.04 245 / 0.12);
  --shadow-lift: 0 24px 60px oklch(30% 0.04 245 / 0.16);
  --font-display: Didot, "Bodoni 72", "Bodoni 72 Smallcaps", "Baskerville",
    "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-body: Avenir, "Avenir Next", Optima, "Helvetica Neue", Arial,
    sans-serif;
  --z-sticky: 20;
  --z-controls: 30;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    linear-gradient(135deg, oklch(98% 0.006 236) 0%, oklch(96% 0.021 219) 38%, oklch(98% 0.014 9) 72%, #ffffff 100%);
}

html.should-show-loader,
html.should-show-loader body {
  overflow: hidden;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  opacity: 1;
  pointer-events: all;
}

html.should-show-loader .site-loader {
  display: flex;
}

.site-loader img {
  width: min(72vw, 560px);
  height: auto;
  opacity: 0;
  object-fit: contain;
  transform: scale(0.96);
  animation: loaderLogoArrive 720ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards;
}

.site-loader.is-leaving {
  animation: loaderBackdropExit 940ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.site-loader.is-leaving img {
  animation: loaderLogoExit 940ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes loaderLogoArrive {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loaderLogoExit {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  42% {
    opacity: 0.46;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes loaderBackdropExit {
  0% {
    opacity: 1;
  }

  34% {
    opacity: 0.92;
  }

  100% {
    opacity: 0;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-sticky);
  display: grid;
  width: calc(100% - clamp(20px, 4vw, 64px));
  grid-template-columns: minmax(220px, 340px) 1fr;
  align-items: center;
  gap: 24px;
  margin: clamp(10px, 1.6vw, 22px) clamp(10px, 2vw, 32px) 0;
  padding: 10px clamp(16px, 2.6vw, 30px);
  border: 1px solid oklch(100% 0 0 / 0.72);
  border-radius: 14px;
  background: oklch(100% 0 0 / 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(1.08);
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  height: 54px;
  overflow: visible;
}

.brand img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 220px;
  height: 66px;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  transform: translateY(-50%) scale(3.15);
  transform-origin: left center;
}

.mobile-nav-toggle {
  display: none;
}

.nav-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 2.5vw, 32px);
  color: oklch(30% 0.045 245 / 0.84);
  font-family: var(--font-body);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  letter-spacing: 0;
}

.nav-tabs a {
  position: relative;
  padding: 8px 0;
}

.nav-tabs a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-tabs a:hover::after {
  transform: scaleX(1);
}

.nav-tabs a[aria-current] {
  color: var(--ink);
}

.nav-tabs a[aria-current]::after {
  transform: scaleX(1);
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  min-width: 132px;
}

.language-switch::after {
  position: absolute;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  pointer-events: none;
  transform: translateY(-2px) rotate(45deg);
}

.language-switch select {
  width: 100%;
  min-height: 38px;
  padding: 0 30px 0 12px;
  border: 1px solid oklch(78% 0.028 236 / 0.66);
  border-radius: 999px;
  color: var(--ink);
  background: oklch(100% 0 0 / 0.74);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  appearance: none;
}

.language-switch select:focus-visible {
  outline: 2px solid oklch(60% 0.118 351 / 0.72);
  outline-offset: 3px;
}

.header-action,
.primary-button,
.ghost-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-action,
.primary-button {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 8px 18px oklch(27% 0.06 246 / 0.18);
}

.ghost-button {
  color: var(--brand);
  background: oklch(100% 0 0 / 0.82);
}

.header-action:hover,
.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
  background: var(--surface);
}

.hero-video-hero {
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding: clamp(132px, 13vw, 184px) clamp(22px, 6vw, 92px) clamp(64px, 9vw, 128px);
  color: var(--ink);
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: oklch(94% 0.023 222);
}

.hero-video-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 42%, oklch(87% 0.055 197 / 0.16), transparent 34%),
    linear-gradient(90deg, oklch(100% 0 0 / 0.91) 0%, oklch(100% 0 0 / 0.63) 34%, oklch(100% 0 0 / 0.16) 68%),
    linear-gradient(180deg, oklch(100% 0 0 / 0.7) 0%, oklch(96% 0.022 220 / 0.08) 48%, oklch(24% 0.05 246 / 0.14) 100%);
}

.hero-video-wash::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, oklch(99% 0.004 235 / 0.84));
  content: "";
}

.hero-video-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 670px);
  padding-top: clamp(20px, 4vw, 54px);
}

.hero-video-copy .eyebrow {
  color: oklch(36% 0.092 348);
}

.hero-video-copy .hero-title {
  color: oklch(24% 0.058 246);
  text-shadow: 0 1px 18px oklch(100% 0 0 / 0.6);
}

.hero-video-copy p:not(.eyebrow) {
  max-width: 55ch;
  color: oklch(31% 0.052 241);
  text-shadow: 0 1px 14px oklch(100% 0 0 / 0.56);
}

.hero-video-copy .primary-button {
  color: #ffffff;
  background: oklch(27% 0.058 246 / 0.94);
  box-shadow: 0 8px 8px oklch(24% 0.05 246 / 0.14);
}

.hero-video-copy .ghost-button {
  border-color: oklch(30% 0.05 246 / 0.42);
  color: oklch(25% 0.052 247);
  background: oklch(100% 0 0 / 0.5);
  backdrop-filter: blur(10px) saturate(1.08);
}

.hero-video-signature {
  position: absolute;
  right: clamp(22px, 5vw, 78px);
  bottom: clamp(30px, 5vw, 70px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 240px;
  color: oklch(22% 0.05 246 / 0.78);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
  text-shadow: 0 1px 14px oklch(100% 0 0 / 0.58);
}

.hero-video-signature span + span {
  color: oklch(39% 0.046 238 / 0.74);
  font-size: 0.86em;
  font-weight: 600;
}

.hero-slides {
  position: relative;
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: clamp(22px, 5vw, 76px);
  min-height: 100vh;
  padding: 132px clamp(22px, 5vw, 80px) 92px;
  background:
    linear-gradient(90deg, oklch(100% 0 0 / 0.95) 0%, oklch(100% 0 0 / 0.66) 38%, oklch(100% 0 0 / 0.08) 74%),
    linear-gradient(180deg, oklch(99% 0.006 236 / 0.2), oklch(97% 0.025 10 / 0.54)),
    var(--slide-bg) center / cover no-repeat;
  opacity: 0;
  pointer-events: none;
  transform: translateX(26px);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 0.96;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-title {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 0.96;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  text-wrap: balance;
}

.hero-copy p:not(.eyebrow),
.lead {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.72;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-product-stage {
  position: relative;
  min-height: min(72vh, 700px);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  overflow: visible;
  display: grid;
  align-items: center;
  justify-items: center;
  min-width: 0;
}

.hero-product-stage::before {
  position: absolute;
  right: 2%;
  bottom: 8%;
  z-index: 0;
  width: min(58vw, 720px);
  height: min(28vw, 330px);
  border-radius: 50%;
  background: oklch(100% 0 0 / 0.62);
  box-shadow: 0 34px 90px oklch(30% 0.044 245 / 0.14);
  content: "";
  transform: rotate(-8deg);
}

.hero-carousel-product {
  position: absolute;
  display: block;
  width: min(46vw, 560px);
  max-height: 74vh;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 34px oklch(28% 0.05 245 / 0.2));
  animation: heroProductFloat 6.4s ease-in-out infinite;
  transform-origin: center center;
}

.hero-product-collection {
  right: clamp(-10px, 2vw, 36px);
  bottom: clamp(30px, 6vw, 82px);
  width: min(60vw, 980px);
  max-height: 70vh;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px oklch(28% 0.05 245 / 0.14));
}

.hero-product-main.hero-product-377-collection {
  right: clamp(-54px, -1.5vw, -6px);
  bottom: clamp(8px, 3.6vw, 52px);
  width: min(54vw, 882px);
}

.hero-slide:hover .hero-carousel-product {
  animation-play-state: paused;
}

.hero-product-main {
  z-index: 3;
  right: clamp(10px, 4vw, 78px);
  bottom: clamp(62px, 8vw, 118px);
}

.hero-product-support {
  z-index: 2;
  width: min(34vw, 360px);
  opacity: 0.98;
}

.hero-product-serum {
  width: min(43vw, 520px);
}

.hero-product-cream {
  right: min(31vw, 430px);
  bottom: clamp(76px, 10vw, 142px);
  width: min(26vw, 320px);
}

.hero-product-pads {
  right: min(24vw, 340px);
  bottom: clamp(40px, 6vw, 92px);
  width: min(22vw, 270px);
}

.hero-product-toner,
.hero-product-cleanser,
.hero-product-mask,
.hero-product-pdrn {
  width: min(38vw, 430px);
}

.hero-product-cleanser {
  right: min(32vw, 430px);
  bottom: clamp(64px, 8vw, 120px);
}

.hero-product-mask {
  right: min(25vw, 330px);
  bottom: clamp(38px, 5vw, 74px);
  width: min(28vw, 320px);
}

.hero-product-pdrn {
  right: clamp(70px, 10vw, 170px);
  bottom: clamp(-62px, -1.8vw, -12px);
  width: min(36vw, 460px);
}

.hero-product-main.hero-product-b5-collection {
  right: clamp(-8px, 4vw, 72px);
  bottom: clamp(-34px, -0.8vw, 8px);
  width: min(45vw, 650px);
  max-height: 74vh;
}

.hero-carousel-arrows {
  position: absolute;
  right: clamp(18px, 3vw, 44px);
  bottom: clamp(28px, 5vw, 64px);
  z-index: var(--z-controls);
  display: flex;
  gap: 10px;
}

.hero-carousel-arrows button {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--brand);
  background: oklch(100% 0 0 / 0.84);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font: inherit;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.hero-carousel-arrows button:hover {
  color: var(--brand);
  background: #ffffff;
  transform: translateY(-2px);
}

.hero-carousel-arrows span {
  display: block;
  margin-top: -3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.product-family-tabs {
  position: sticky;
  top: clamp(98px, 9vw, 116px);
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: min(680px, calc(100% - 44px));
  margin: clamp(22px, 4vw, 46px) auto 0;
  padding: 0;
  border-radius: 999px;
  background: oklch(100% 0 0 / 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  visibility: visible;
}

.product-family-tabs.is-past-products {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
}

.product-family-tabs a {
  position: relative;
  display: inline-flex;
  min-width: 126px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: oklch(30% 0.045 245 / 0.62);
  background: transparent;
  box-shadow: none;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.product-family-tabs a::after {
  position: absolute;
  right: 22px;
  bottom: 10px;
  left: 22px;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.product-family-tabs a:hover,
.product-family-tabs a.is-active {
  color: var(--brand);
  background: oklch(100% 0 0 / 0.82);
}

.product-family-tabs a:hover::after,
.product-family-tabs a.is-active::after {
  transform: scaleX(1);
}

@keyframes heroProductFloat {
  0%,
  100% {
    transform: translate(var(--product-x, 0), 0) scale(1);
  }

  50% {
    transform: translate(var(--product-x, 0), -16px) scale(1.008);
  }
}

.section,
.story-section,
.usage-section,
.faq-section,
.contact-section {
  padding: clamp(78px, 10vw, 138px) clamp(22px, 5vw, 80px);
}

.standalone-main {
  padding-top: clamp(88px, 9vw, 120px);
  background: #ffffff;
}

.product-list-page {
  padding-bottom: 0;
}

.product-list-browser {
  min-height: calc(100vh - clamp(88px, 9vw, 120px));
}

.product-list-sidebar {
  align-self: start;
  width: min(100%, 280px);
}

.product-list-tabs button {
  width: 100%;
  font: inherit;
  text-align: left;
}

.product-list-tabs span {
  flex: 0 0 44px;
}

.product-list-tabs small {
  flex: 0 0 82px;
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.product-list-tabs button.is-active {
  border-color: oklch(62% 0.075 242 / 0.34);
  color: var(--accent);
  background: oklch(97% 0.014 232);
}

.product-list-panels {
  min-width: 0;
}

.product-list-panel[hidden] {
  display: none;
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 340px));
  gap: clamp(18px, 2.8vw, 34px);
  justify-content: start;
}

.product-list-card {
  display: grid;
  grid-template-rows: 320px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.product-list-image {
  position: relative;
  display: grid;
  overflow: hidden;
  height: 320px;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 50% 24%, oklch(91% 0.045 232 / 0.5), transparent 15rem),
    linear-gradient(180deg, oklch(98% 0.014 232), #ffffff);
}

.product-list-image::after {
  position: absolute;
  right: 18%;
  bottom: 28px;
  left: 18%;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, oklch(20% 0.04 245 / 0.14), transparent 68%);
  content: "";
}

.product-list-image img {
  position: relative;
  z-index: 1;
  width: min(100%, 260px);
  height: 260px;
  object-fit: contain;
}

.product-list-copy {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(22px, 3vw, 32px);
}

.product-list-copy .eyebrow {
  min-height: 1.2em;
  margin-bottom: 10px;
}

.product-list-copy h3 {
  display: -webkit-box;
  min-height: 2.32em;
  margin-bottom: 12px;
  font-size: clamp(19px, 1.75vw, 24px);
  line-height: 1.16;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-list-copy > p:not(.eyebrow) {
  display: -webkit-box;
  min-height: 5.04em;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-list-benefits {
  margin-top: 20px;
}

.product-list-link {
  min-height: 48px;
  align-self: flex-start;
  gap: 12px;
  margin-top: auto;
  padding: 0 8px 0 18px;
  color: #ffffff;
  background:
    linear-gradient(135deg, oklch(34% 0.07 246), var(--brand) 58%, oklch(43% 0.085 236));
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0 / 0.24),
    0 10px 18px oklch(27% 0.06 246 / 0.16);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.product-list-link:hover {
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0 / 0.28),
    0 14px 24px oklch(27% 0.06 246 / 0.2);
}

.product-list-link-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: oklch(100% 0 0 / 0.92);
  font-size: 18px;
  line-height: 1;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.product-list-link:hover .product-list-link-icon {
  background: #ffffff;
  transform: translateX(2px);
}

.creator-gallery-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 108px) 0 clamp(50px, 6vw, 82px);
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.54), oklch(96% 0.022 224 / 0.66));
}

.creator-gallery-copy {
  max-width: 780px;
  margin: 0 auto clamp(18px, 3.4vw, 38px);
  padding: 0 clamp(22px, 5vw, 72px);
  text-align: center;
}

.creator-gallery-copy h2 {
  margin-bottom: 0;
}

.creator-gallery {
  --creator-card-width: clamp(220px, 22vw, 334px);
  position: relative;
  padding: clamp(8px, 2.4vw, 28px) 0 4px;
}

.creator-gallery::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 4;
  height: 86px;
  background: linear-gradient(180deg, oklch(100% 0 0 / 0), oklch(96% 0.022 224 / 0.76) 72%, oklch(96% 0.022 224 / 0.94));
  pointer-events: none;
  content: "";
}

.creator-gallery::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(24px, 7vw, 112px);
  opacity: 0.24;
  pointer-events: none;
  content: "";
}

.creator-gallery::after {
  right: 0;
  background: linear-gradient(270deg, oklch(96% 0.022 224 / 0.9), oklch(96% 0.022 224 / 0));
}

.creator-gallery-track {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  overflow-x: auto;
  overflow-y: visible;
  padding: 66px max(clamp(22px, 5vw, 72px), calc((100vw - var(--creator-card-width)) / 2)) 58px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.creator-gallery-track::-webkit-scrollbar {
  display: none;
}

.creator-card {
  position: relative;
  flex: 0 0 var(--creator-card-width);
  width: var(--creator-card-width);
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  scroll-snap-align: center;
  transform: translateY(0) scale(0.9);
  transform-origin: center center;
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.creator-card.is-active {
  z-index: 2;
  opacity: 1;
  filter: saturate(1.05) contrast(1.03);
  transform: translateY(-8px) scale(1.16);
}

.creator-card:not(.is-active) {
  opacity: 0.66;
  filter: saturate(0.78) contrast(0.96);
}

.creator-card-frame {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: oklch(100% 0 0 / 0.68);
  box-shadow: var(--shadow-soft);
}

.creator-card.is-active .creator-card-frame {
  box-shadow: 0 28px 70px oklch(27% 0.06 245 / 0.18);
}

.creator-card img,
.creator-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 260ms ease;
}

.creator-card.is-active .creator-video {
  opacity: 1;
}

.creator-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.18), transparent 28%, oklch(100% 0 0 / 0.2)),
    oklch(100% 0 0 / 0.38);
  transition:
    background 360ms ease,
    opacity 360ms ease;
}

.creator-card.is-active .creator-card-overlay {
  opacity: 0;
}

.creator-play-indicator {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, oklch(100% 0 0 / 0.94), oklch(100% 0 0 / 0.66));
  box-shadow: var(--shadow-soft);
  transform: scale(1);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.creator-play-indicator::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 14px;
  height: 16px;
  background: var(--brand);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  transform: translate(-50%, -50%);
}

.creator-card.is-active .creator-play-indicator {
  opacity: 0;
  transform: scale(0.72);
}

.creator-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--brand);
  background: oklch(100% 0 0 / 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.creator-gallery-arrow:hover {
  background: #ffffff;
  box-shadow: var(--shadow-lift);
  transform: translateY(-50%) scale(1.04);
}

.creator-gallery-arrow span {
  display: block;
  margin-top: -3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.creator-gallery-arrow-prev {
  left: clamp(16px, 4vw, 58px);
}

.creator-gallery-arrow-next {
  right: clamp(16px, 4vw, 58px);
}

.creator-gallery-arrow:focus-visible {
  outline: 3px solid rgba(37, 54, 74, 0.42);
  outline-offset: 4px;
}

.creator-card:focus-visible .creator-card-frame {
  outline: 3px solid rgba(37, 54, 74, 0.42);
  outline-offset: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(34px, 5vw, 58px);
}

.contact-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 14px;
  background: oklch(98% 0.012 232);
}

.contact-card > span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-section p,
.faq-heading p,
.faq-item p,
.contact-section p {
  color: var(--muted);
  line-height: 1.8;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 88px);
  padding: clamp(82px, 10vw, 148px) clamp(22px, 5vw, 80px);
  background: #ffffff;
}

.product-section:nth-of-type(2n) {
  background: oklch(97% 0.014 232);
}

.product-media {
  position: relative;
  min-width: 0;
}

.product-media::before {
  position: absolute;
  inset: 8% 4% 6%;
  z-index: 0;
  border-radius: 18px;
  background:
    linear-gradient(135deg, oklch(100% 0 0), oklch(94% 0.033 220)),
    radial-gradient(circle at 72% 18%, oklch(89% 0.06 352 / 0.72), transparent 16rem);
  content: "";
}

.image-placeholder {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 1px dashed oklch(63% 0.043 240 / 0.42);
  border-radius: 14px;
  color: oklch(40% 0.04 245 / 0.74);
  text-align: center;
  background:
    linear-gradient(135deg, oklch(100% 0 0 / 0.7), oklch(100% 0 0 / 0.24)),
    radial-gradient(circle at 30% 20%, oklch(89% 0.06 352 / 0.72), transparent 12rem),
    radial-gradient(circle at 78% 74%, oklch(90% 0.045 230 / 0.86), transparent 14rem);
}

.image-placeholder.tall {
  min-height: 620px;
  box-shadow: var(--shadow-lift);
}

.product-visual,
.gallery-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  background: #ffffff;
}

.product-visual.tall {
  min-height: 620px;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lift);
}

.product-visual.contain {
  padding: clamp(18px, 3vw, 34px);
  object-fit: contain;
  background: oklch(100% 0 0 / 0.92);
}

.product-video {
  height: auto;
  object-position: center center;
}

.product-cream .product-video {
  transform: scale(1.06);
  transform-origin: center center;
}

.gallery-image {
  min-height: 270px;
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
}

.image-placeholder.square {
  min-height: 240px;
  aspect-ratio: 1;
}

.image-placeholder span {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.image-placeholder strong {
  max-width: 360px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

.product-copy {
  max-width: 620px;
}

.product-copy .eyebrow {
  margin-bottom: 14px;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}

.benefit-list span {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--brand);
  background: oklch(94% 0.026 225);
  font-size: 14px;
  font-weight: 700;
}

.product-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.product-details div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-details dt {
  margin-bottom: 8px;
  font-weight: 700;
}

.product-details dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.product-actions .product-shop-button {
  margin-top: 0;
}

.product-detail-button {
  min-height: 46px;
  color: var(--brand);
  border: 1px solid var(--line);
  background: #ffffff;
  letter-spacing: 0;
  text-transform: none;
}

.product-detail-page {
  background: linear-gradient(180deg, #ffffff, oklch(97% 0.012 232));
}

.product-detail-hero,
.product-detail-section {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 86px) clamp(22px, 5vw, 72px);
}

.product-detail-hero {
  padding-top: clamp(150px, 13vw, 190px);
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(24px, 4vw, 42px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.product-breadcrumb a {
  color: var(--brand);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.product-detail-media {
  display: grid;
  min-height: clamp(360px, 46vw, 620px);
  place-items: center;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 22%, oklch(91% 0.045 232 / 0.54), transparent 18rem),
    #ffffff;
}

.product-detail-media img {
  display: block;
  width: min(100%, 420px);
  max-height: 560px;
  object-fit: contain;
}

.product-detail-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.98;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.product-detail-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: clamp(22px, 4vw, 38px);
}

.product-detail-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-detail-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: #ffffff;
  padding: 0 clamp(22px, 5vw, 72px) clamp(72px, 8vw, 110px);
}

.usage-section {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(38px, 5.5vw, 88px);
  align-items: start;
  background: linear-gradient(180deg, #ffffff, oklch(98% 0.008 230));
}

.usage-manual-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.usage-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.usage-heading {
  display: grid;
  gap: 10px;
}

.usage-heading h1 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.04;
  text-wrap: balance;
}

.usage-selector {
  display: grid;
  gap: 10px;
}

.usage-selector-option {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brand);
  background: #ffffff;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.usage-selector-option:hover {
  border-color: oklch(62% 0.075 242 / 0.3);
  background: oklch(98% 0.01 230);
}

.usage-selector-option span {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.usage-selector-option strong {
  min-width: 0;
  color: var(--brand);
  font-size: 15px;
  line-height: 1.2;
}

#usage-cleanser:checked ~ .usage-sidebar label[for="usage-cleanser"],
#usage-toner:checked ~ .usage-sidebar label[for="usage-toner"],
#usage-facial-mask:checked ~ .usage-sidebar label[for="usage-facial-mask"],
#usage-cotton-pads:checked ~ .usage-sidebar label[for="usage-cotton-pads"] {
  border-color: oklch(62% 0.075 242 / 0.34);
  color: var(--accent);
  background: oklch(97% 0.014 232);
}

.usage-manual-stage {
  display: grid;
  justify-items: center;
  min-width: 0;
}

.usage-manual-page {
  display: none;
  max-width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(10px, 1.5vw, 16px);
  border: 1px solid oklch(62% 0.075 242 / 0.18);
  border-radius: 8px;
  background: #ffffff;
}

#usage-cleanser:checked ~ .usage-manual-stage .usage-manual-page-cleanser,
#usage-toner:checked ~ .usage-manual-stage .usage-manual-page-toner,
#usage-facial-mask:checked ~ .usage-manual-stage .usage-manual-page-facial-mask,
#usage-cotton-pads:checked ~ .usage-manual-stage .usage-manual-page-cotton-pads {
  display: block;
}

.usage-manual-page img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
}

.story-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
  background: var(--brand);
  color: #ffffff;
}

.story-section .eyebrow {
  color: oklch(83% 0.09 352);
}

.story-section p {
  max-width: 820px;
  font-size: clamp(18px, 1.8vw, 24px);
}

.story-section > p {
  max-width: 760px;
  color: oklch(93% 0.016 240);
  font-family: Optima, "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.72;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background:
    linear-gradient(180deg, #ffffff, oklch(98% 0.012 232)),
    radial-gradient(circle at 12% 18%, oklch(89% 0.06 352 / 0.34), transparent 24rem);
}

.faq-heading {
  position: sticky;
  top: 118px;
}

.faq-heading p:not(.eyebrow) {
  max-width: 520px;
  font-size: clamp(17px, 1.35vw, 20px);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: oklch(100% 0 0 / 0.78);
  box-shadow: 0 14px 34px oklch(30% 0.04 245 / 0.08);
}

.faq-item summary {
  cursor: pointer;
  padding: 22px clamp(20px, 3vw, 30px);
  color: var(--brand);
  font-weight: 800;
  line-height: 1.4;
}

.faq-item summary::marker {
  color: var(--accent);
}

.faq-item p {
  margin: 0;
  padding: 0 clamp(20px, 3vw, 30px) 24px;
}

.contact-section {
  text-align: center;
  background:
    linear-gradient(180deg, #ffffff, oklch(96% 0.018 224));
}

.contact-section > p:not(.eyebrow) {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.contact-email-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 30px auto 0;
}

.contact-email-link {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--brand);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-email-link:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.contact-email-link span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--accent);
  background: oklch(95% 0.025 18);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid {
  max-width: 860px;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  margin-top: clamp(32px, 5vw, 58px);
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.shop-panel {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 32px;
  border-radius: 14px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 14%, oklch(72% 0.16 31 / 0.42), transparent 9rem),
    radial-gradient(circle at 18% 86%, oklch(74% 0.12 351 / 0.42), transparent 8rem),
    var(--brand);
  box-shadow: var(--shadow-lift);
}

.shop-panel-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-platform-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 30px oklch(12% 0.025 245 / 0.24);
}

.shop-platform-icon + .shop-platform-icon {
  margin-left: -16px;
}

.shop-platform-icon svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.shop-platform-icon-dark {
  color: oklch(18% 0.01 245);
}

.shop-platform-icon-warm {
  color: oklch(66% 0.2 32);
}

.shop-panel > span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #ffffff;
}

.contact-card strong {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.contact-card p {
  margin-bottom: 26px;
}

.shop-links {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.shop-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 18px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--shop-link-bg, oklch(18% 0.01 245));
  box-shadow: 0 8px 14px var(--shop-link-shadow, oklch(18% 0.01 245 / 0.16));
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.shop-link-shopee {
  --shop-link-bg: oklch(66% 0.2 32);
  --shop-link-shadow: oklch(66% 0.2 32 / 0.18);
  grid-column: 1 / -1;
}

.shop-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px var(--shop-link-shadow, oklch(18% 0.01 245 / 0.18));
}

.shop-link svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

.shop-link span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.legal-page {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  justify-items: center;
  padding: clamp(150px, 13vw, 190px) clamp(22px, 5vw, 80px) clamp(80px, 9vw, 132px);
  background: linear-gradient(180deg, #ffffff, oklch(97% 0.012 232));
}

.legal-hero {
  width: min(100%, 1120px);
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.98;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.7;
}

.legal-content {
  width: min(100%, 1120px);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.legal-content h2 {
  margin: clamp(30px, 4vw, 44px) 0 12px;
  font-family: var(--font-body);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: 0;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content dd {
  color: var(--muted);
  line-height: 1.8;
}

.legal-content a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: oklch(60% 0.118 351 / 0.42);
  text-underline-offset: 4px;
}

.legal-definition-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.legal-definition-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.legal-definition-list dt {
  color: var(--brand);
  font-weight: 800;
}

.legal-definition-list dd {
  margin: 0;
}

.legal-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

.legal-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 15px;
}

.legal-table th,
.legal-table td {
  padding: 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--brand);
  background: oklch(97% 0.014 232);
  font-weight: 800;
}

.site-footer {
  padding: clamp(64px, 7vw, 96px) clamp(22px, 5vw, 72px) clamp(30px, 4vw, 46px);
  color: oklch(88% 0.018 240);
  background:
    radial-gradient(circle at 10% 12%, oklch(55% 0.13 351 / 0.3), transparent 23rem),
    radial-gradient(circle at 88% 10%, oklch(54% 0.09 220 / 0.22), transparent 20rem),
    linear-gradient(135deg, oklch(22% 0.055 246), oklch(15% 0.038 246));
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(180px, 0.75fr) minmax(190px, 0.82fr) minmax(220px, 0.9fr);
  gap: clamp(34px, 5vw, 84px);
  width: min(100%, 1240px);
  margin: 0 auto;
  padding-bottom: clamp(46px, 6vw, 72px);
}

.footer-brand-block,
.footer-company,
.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand-block strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.96;
}

.footer-brand-block p {
  max-width: 410px;
  margin: 0;
  color: oklch(88% 0.018 240 / 0.82);
  font-size: 16px;
  line-height: 1.72;
}

.footer-shop-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.footer-shop-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid oklch(100% 0 0 / 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: oklch(100% 0 0 / 0.08);
  font-weight: 800;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer-shop-links a:hover {
  border-color: oklch(100% 0 0 / 0.34);
  background: oklch(100% 0 0 / 0.14);
  transform: translateY(-1px);
}

.footer-company > span,
.footer-links > span,
.footer-contact > span {
  color: oklch(83% 0.09 352);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-company strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.45;
}

.footer-company small {
  color: oklch(88% 0.018 240 / 0.72);
  font-size: 14px;
}

.footer-links {
  font-weight: 800;
}

.footer-links a,
.footer-contact a {
  color: oklch(92% 0.014 240 / 0.84);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
  text-decoration-color: currentColor;
}

.footer-language-switch {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.footer-language-switch > span {
  color: oklch(83% 0.09 352);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-language-switch::after {
  position: absolute;
  right: 14px;
  bottom: 17px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid oklch(96% 0.01 240 / 0.86);
  border-bottom: 1.5px solid oklch(96% 0.01 240 / 0.86);
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.footer-language-switch select {
  width: min(100%, 230px);
  min-height: 46px;
  padding: 0 38px 0 14px;
  border: 1px solid oklch(100% 0 0 / 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: oklch(100% 0 0 / 0.08);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  appearance: none;
}

.footer-language-switch select:focus-visible {
  outline: 2px solid oklch(83% 0.09 352 / 0.72);
  outline-offset: 3px;
}

.footer-language-switch option {
  color: var(--brand);
  background: #ffffff;
}

.footer-bottom {
  display: flex;
  width: min(100%, 1240px);
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid oklch(100% 0 0 / 0.14);
}

.footer-bottom div {
  display: grid;
  gap: 10px;
}

.footer-bottom p {
  max-width: 820px;
  margin: 0;
  color: oklch(88% 0.018 240 / 0.7);
  font-size: 12px;
  line-height: 1.68;
}

.footer-bottom span {
  flex: 0 0 auto;
  color: oklch(88% 0.018 240 / 0.64);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 920px) {
  .site-header {
    z-index: 40;
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 12px;
    width: calc(100% - 24px);
    margin: 12px;
    padding: 10px 14px 10px 18px;
    backdrop-filter: none;
  }

  .brand {
    height: 58px;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 46;
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    align-self: center;
    border: 1px solid oklch(78% 0.028 236 / 0.58);
    border-radius: 999px;
    color: var(--brand);
    background: oklch(100% 0 0 / 0.82);
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    position: absolute;
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .mobile-nav-toggle span + span {
    transform: translateY(6px);
  }

  .mobile-nav-toggle span:first-child {
    transform: translateY(-6px);
  }

  .site-header.is-nav-open .mobile-nav-toggle span:first-child {
    transform: translateY(0) rotate(45deg);
  }

  .site-header.is-nav-open .mobile-nav-toggle span + span {
    transform: translateY(0) rotate(-45deg);
  }

  .nav-tabs {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: grid;
    width: min(82vw, 320px);
    align-content: start;
    justify-content: stretch;
    gap: 4px;
    padding: 112px 22px 28px;
    border-right: 1px solid oklch(86% 0.02 236 / 0.82);
    border-radius: 0 18px 18px 0;
    background: oklch(100% 0 0 / 0.96);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
    font-size: 16px;
    transform: translateX(-106%);
    transition:
      transform 220ms ease,
      visibility 220ms ease;
    visibility: hidden;
  }

  .site-header.is-nav-open .nav-tabs {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-nav-open {
    overflow: hidden;
  }

  .mobile-nav-open::before {
    position: fixed;
    inset: 0;
    z-index: 35;
    background: oklch(12% 0.03 245 / 0.24);
    content: "";
  }

  .nav-tabs a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0 4px;
  }

  .language-switch {
    width: 100%;
    min-width: 0;
    margin: 14px 0 0;
  }

  .language-switch::after {
    right: 14px;
    width: 7px;
    height: 7px;
  }

  .language-switch select {
    min-height: 44px;
    padding-right: 36px;
    padding-left: 14px;
    font-size: 14px;
  }

  .hero,
  .product-section,
  .usage-section,
  .story-section,
  .faq-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 20px;
    padding-top: 138px;
    padding-bottom: 96px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-video-hero {
    min-height: 100svh;
    align-items: flex-end;
    padding: 142px 22px 88px;
  }

  .hero-video {
    object-position: 57% center;
  }

  .hero-video-wash {
    background:
      linear-gradient(180deg, oklch(100% 0 0 / 0.88) 0%, oklch(100% 0 0 / 0.5) 28%, oklch(100% 0 0 / 0.22) 56%, oklch(98% 0.012 230 / 0.82) 100%),
      linear-gradient(90deg, oklch(100% 0 0 / 0.56), oklch(100% 0 0 / 0.08));
  }

  .hero-video-copy {
    max-width: 560px;
    padding-top: 0;
  }

  .hero-video-copy p:not(.eyebrow) {
    display: block;
    max-width: 40ch;
  }

  .hero-video-copy .hero-actions {
    display: flex;
  }

  .hero-video-signature {
    display: none;
  }

  .hero-copy p:not(.eyebrow) {
    display: none;
  }

  .hero-actions {
    display: none;
  }

  .hero-product-stage {
    min-height: 44vh;
  }

  .hero-product-stage::before {
    right: 50%;
    bottom: 7%;
    width: min(84vw, 520px);
    height: min(38vw, 210px);
    transform: translateX(50%) rotate(-6deg);
  }

  .hero-carousel-product {
    max-height: 44vh;
  }

  .hero-product-main {
    right: auto;
    left: 50%;
    bottom: 30px;
    --product-x: -50%;
  }

  .hero-product-serum,
  .hero-product-collection,
  .hero-product-pdrn,
  .hero-product-toner {
    width: min(60vw, 360px);
  }

  .hero-product-collection {
    right: auto;
    left: 50%;
    bottom: 10px;
    width: min(88vw, 620px);
    max-height: 42vh;
    --product-x: -50%;
  }

  .hero-product-main.hero-product-377-collection {
    bottom: -6px;
    width: min(79vw, 558px);
  }

  .hero-product-main.hero-product-b5-collection {
    bottom: -38px;
    width: min(70vw, 360px);
    max-height: 44vh;
  }

  .hero-product-pdrn {
    right: auto;
    left: 50%;
    bottom: -38px;
    width: min(56vw, 340px);
    --product-x: -50%;
  }

  .hero-product-cream,
  .hero-product-cleanser {
    right: 54%;
    bottom: 48px;
    width: min(32vw, 190px);
  }

  .hero-product-pads,
  .hero-product-mask {
    right: 17%;
    bottom: 22px;
    width: min(34vw, 190px);
  }

  .hero-carousel-arrows {
    right: 18px;
    bottom: 92px;
  }

  .product-family-tabs {
    top: 104px;
    overflow-x: visible;
    justify-content: center;
    max-width: calc(100% - 28px);
    margin-top: 34px;
  }

  .product-family-tabs a {
    min-width: 104px;
  }

  .creator-gallery {
    --creator-card-width: clamp(210px, 46vw, 286px);
  }

  .creator-gallery-arrow {
    width: 46px;
    height: 46px;
  }

  .creator-gallery-arrow span {
    font-size: 36px;
  }

  .product-section.media-right .product-copy {
    order: 2;
  }

  .product-section.media-right .product-media {
    order: 1;
  }

  .product-detail-grid,
  .product-detail-list,
  .product-detail-gallery {
    grid-template-columns: 1fr;
  }

  .product-copy {
    max-width: none;
  }

  .product-list-browser {
    grid-template-columns: 1fr;
  }

  .product-list-sidebar {
    width: 100%;
  }

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

  .product-list-image {
    height: 280px;
  }

  .product-list-image img {
    height: 226px;
  }

  .usage-sidebar {
    position: static;
  }

  .usage-selector {
    display: grid;
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .usage-selector-option {
    width: 100%;
    min-width: 0;
  }

  .product-list-tabs .usage-selector-option {
    width: 100%;
  }

  .usage-selector-option:hover {
    transform: none;
  }

  .faq-heading {
    position: static;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 230px;
    height: 76px;
    transform: translateY(-50%) scale(1.78);
  }

  .brand {
    height: 64px;
  }

  h1,
  .hero-title {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-slide {
    padding-right: 18px;
    padding-left: 18px;
    background:
      linear-gradient(180deg, oklch(100% 0 0 / 0.96) 0%, oklch(100% 0 0 / 0.78) 48%, oklch(100% 0 0 / 0.24) 100%),
      var(--slide-bg) center / cover no-repeat;
  }

  .hero-video-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-video-copy .hero-title {
    max-width: 9ch;
  }

  .hero-video-copy p:not(.eyebrow) {
    max-width: 31ch;
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-video-copy .hero-actions {
    gap: 10px;
  }

  .hero-video-copy .primary-button,
  .hero-video-copy .ghost-button {
    min-height: 42px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 12px;
  }

  .hero-copy p:not(.eyebrow),
  .lead {
    font-size: 16px;
  }

  .hero-product-stage {
    min-height: 34vh;
  }

  .hero-product-serum,
  .hero-product-collection,
  .hero-product-pdrn,
  .hero-product-toner {
    width: min(64vw, 270px);
  }

  .hero-product-collection {
    width: min(94vw, 390px);
    max-height: 34vh;
  }

  .hero-product-main.hero-product-b5-collection {
    bottom: -28px;
    width: min(78vw, 300px);
  }

  .hero-product-pdrn {
    bottom: -28px;
    width: min(58vw, 260px);
  }

  .hero-carousel-arrows button {
    width: 40px;
    height: 40px;
  }

  .product-family-tabs a {
    min-width: 30%;
    min-height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }

  .usage-manual-page {
    padding: 8px;
  }

  .creator-gallery-section {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .creator-gallery {
    --creator-card-width: min(76vw, 292px);
  }

  .creator-gallery-track {
    gap: 16px;
    padding-top: 52px;
    padding-bottom: 46px;
  }

  .creator-gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .creator-gallery-arrow-prev {
    left: 10px;
  }

  .creator-gallery-arrow-next {
    right: 10px;
  }

  .creator-gallery-arrow span {
    font-size: 32px;
  }

  .creator-card-frame {
    border-radius: 12px;
  }

  .image-placeholder.tall {
    min-height: 460px;
  }

  .product-visual.tall {
    min-height: 460px;
  }

  .product-details {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .shop-panel {
    padding: 24px;
  }

  .legal-definition-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .shop-links {
    grid-template-columns: 1fr;
  }

  .contact-email-list {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-email-link {
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    border-radius: 16px;
  }

  .shop-link-shopee {
    grid-column: auto;
  }

  .site-footer {
    padding-bottom: 46px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .creator-gallery-track {
    scroll-behavior: auto;
  }

  .creator-card,
  .creator-video,
  .creator-card-overlay,
  .creator-play-indicator,
  .creator-gallery-arrow,
  .hero-slide,
  .hero-video,
  .hero-carousel-product {
    transition: none;
  }

  .hero-carousel-product {
    animation: none;
  }

  .hero-video {
    animation: none;
  }
}
