/* ============================================================================
   [Brand] Marketplace — v1 Korean editorial
   Single chunky headline font (Cabinet Grotesk 700/800) for ALL h1-h4,
   Switzer for body / UI. Full-bleed bg hero. Marketplace structure.
   ========================================================================== */

:root {
  /* Palette — warm cream + ink + single gold accent */
  --paper:      #f3ede2;
  --paper-soft: #ebe2d2;
  --paper-mid:  #ddd1bb;
  --card:       #faf5ea;
  --ink:        #1c1611;
  --ink-soft:   #5e544a;
  --ink-quiet:  #9a8d7c;
  --gold:       #a78a55;
  --moss:       #6e7a5c;
  --line:       rgba(28, 22, 17, 0.10);
  --line-strong:rgba(28, 22, 17, 0.22);
  --invert:     #faf5ea;

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Type — SINGLE display font, used on ALL headlines */
  --display: 'Cabinet Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans:    'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Geometry */
  --radius-sm:    6px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  --wrap:   1320px;
  --gutter: 32px;

  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 15px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ============================================================================
   TYPOGRAPHY — Cabinet Grotesk for every headline
   ========================================================================== */

.display, h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.0;
}
h1, h2, h3, h4 { overflow-wrap: break-word; word-wrap: break-word; }

h1 { font-size: clamp(40px, 5.2vw, 80px); line-height: 0.96; }
h2 { font-size: clamp(32px, 4.2vw, 60px); }
h3 { font-size: clamp(19px, 2vw, 26px); letter-spacing: -0.015em; line-height: 1.18; }
h4 { font-size: clamp(15px, 1.3vw, 18px); letter-spacing: -0.005em; line-height: 1.3; }

/* Gold-color emphasis (replaces fragile underline u-emph) */
.t-gold { color: var(--gold); }

p { line-height: 1.65; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.eyebrow--quiet { color: var(--ink-quiet); }
.eyebrow__kr {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--moss);
  text-transform: none;
  opacity: 0.85;
}

.lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  max-width: 56ch;
  color: var(--ink);
}

.body-lg { font-size: 17px; line-height: 1.65; max-width: 62ch; }
.body    { font-size: 15px; line-height: 1.6; max-width: 60ch; color: var(--ink); }
.body-sm { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }
.caption { font-size: 12px; line-height: 1.45; color: var(--ink-quiet); }

/* ============================================================================
   BUTTONS / LINKS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--ink); color: var(--invert); }
.btn--primary:hover { background: var(--gold); border-color: var(--gold); color: var(--invert); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--invert); }
.btn--invert { background: var(--invert); color: var(--ink); border-color: var(--invert); }
.btn--invert:hover { background: var(--gold); border-color: var(--gold); color: var(--invert); }
.btn--invert-ghost {
  background: transparent;
  color: var(--invert);
  border-color: rgba(250,245,234,0.5);
  backdrop-filter: blur(8px);
}
.btn--invert-ghost:hover { background: rgba(250,245,234,0.12); border-color: var(--invert); }
.btn--lg { padding: 18px 34px; font-size: 13px; }
.btn--sm { padding: 11px 18px; font-size: 11px; }
.btn--block { width: 100%; }

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.22s ease;
}
.link-line:hover { color: var(--gold); }
.link-line--invert { color: var(--invert); }
.link-line--invert:hover { color: var(--gold); }

/* ============================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */

.announce {
  background: var(--ink);
  color: var(--invert);
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 60;
}
.announce__inner { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.announce__text { font-family: var(--sans); font-weight: 400; }
.announce__text--kr { letter-spacing: 0.04em; color: rgba(250,245,234,0.7); }
.announce__sep { opacity: 0.4; }

/* ============================================================================
   HEADER — transparent over hero, solid otherwise
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.header--over-hero {
  background: transparent;
  border-bottom-color: transparent;
  color: var(--invert);
}
.header--over-hero.is-scrolled {
  background: var(--paper);
  color: var(--ink);
  border-bottom-color: var(--line);
}
.header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}
.header__brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: inherit;
}

.nav { display: none; gap: 28px; justify-content: center; }
@media (min-width: 980px) { .nav { display: flex; } }

.nav__item {
  font-size: 13px;
  font-weight: 500;
  color: inherit;
  padding: 6px 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: background-size 0.32s ease, opacity 0.2s ease;
}
.nav__item:hover { background-size: 100% 1px; opacity: 0.8; }
.nav__item--has-menu::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  vertical-align: middle;
}

.header__actions { display: flex; align-items: center; gap: 20px; color: inherit; }
.header__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  position: relative;
}
.header__icon:hover { opacity: 0.7; }
.header__cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--invert);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang {
  display: flex;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.7;
}
.lang__btn { padding: 4px 2px; }
.lang__btn.is-active { opacity: 1; font-weight: 600; }

.menu-toggle { display: inline-flex; }
@media (min-width: 980px) { .menu-toggle { display: none; } }

/* ============================================================================
   HERO — full viewport, bg image, overlay typography (QG pattern)
   ========================================================================== */

.hero { padding: 0; }
.hero--bg {
  position: relative;
  min-height: 100svh;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
  color: var(--invert);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,22,17,0.55) 0%, rgba(28,22,17,0.20) 28%, rgba(28,22,17,0.10) 50%, rgba(28,22,17,0.62) 100%);
}
.hero__content {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(24px, 4vw, 56px);
  padding-bottom: clamp(40px, 6vw, 80px);
  z-index: 1;
}
.hero__top { display: flex; align-items: flex-start; }
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,245,234,0.85);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero__eyebrow-kr {
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(250,245,234,0.6);
  text-transform: none;
}
.hero__bottom {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  max-width: 1000px;
}
.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6.2vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--invert);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  max-width: 14ch;
}
.hero__title-line { display: block; white-space: nowrap; }
.hero__title-line--accent { color: var(--gold); }
@media (max-width: 520px) {
  .hero__title-line { white-space: normal; }
}
.hero__bottom-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: end;
  margin-top: 8px;
}
@media (min-width: 760px) {
  .hero__bottom-row { grid-template-columns: 1fr auto; }
}
.hero__sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(250,245,234,0.88);
  max-width: 56ch;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero__badge {
  position: absolute;
  bottom: clamp(24px, 4vw, 64px);
  right: clamp(20px, 3vw, 48px);
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 22px 24px;
  background: rgba(28,22,17,0.4);
  border: 1px solid rgba(250,245,234,0.18);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2;
}
@media (min-width: 1080px) { .hero__badge { display: flex; } }
.hero__badge-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.hero__badge-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--gold);
  min-width: 60px;
}
.hero__badge-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,245,234,0.78);
}

/* ============================================================================
   MARQUEE STRIP
   ========================================================================== */

.marquee {
  background: var(--ink);
  color: var(--invert);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}
.marquee__row {
  display: flex;
  align-items: center;
  gap: 48px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee__sep {
  color: var(--gold);
  font-size: 0.6em;
  opacity: 0.7;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 24px)); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ============================================================================
   SECTION SCAFFOLD
   ========================================================================== */

.section { padding: clamp(56px, 8vw, 112px) 0; position: relative; }
.section--tight { padding: clamp(40px, 5vw, 72px) 0; }
.section--dark {
  background: var(--ink);
  color: var(--invert);
  position: relative;
  isolation: isolate;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/svg/paper-grain.svg");
  background-size: 220px;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}
.section--dark > .wrap { position: relative; z-index: 1; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--invert); }
.section--dark .eyebrow { color: rgba(250,245,234,0.7); }
.section--dark .eyebrow__kr { color: rgba(167,138,85,0.85); }
.section--dark .body-sm { color: rgba(250,245,234,0.72); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (min-width: 760px) {
  .section-head { grid-template-columns: 1fr auto; }
}
.section-head__title { max-width: 18ch; }

.section-head--split {
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(40px, 5vw, 72px);
}
@media (min-width: 900px) {
  .section-head--split {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}
.section-head--split .section-head__title { max-width: 14ch; }

/* ============================================================================
   CATEGORY TILES (4 big primary categories)
   ========================================================================== */

.cat-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px)  { .cat-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .cat-tiles { grid-template-columns: repeat(4, 1fr); } }

.cat-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--paper-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--invert);
  transition: transform 0.4s ease;
}
.cat-tile:hover { transform: translateY(-4px); }
.cat-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  z-index: 0;
}
.cat-tile:hover .cat-tile__img { transform: scale(1.05); }
.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,22,17,0) 30%, rgba(28,22,17,0.7) 100%);
  z-index: 1;
}
.cat-tile__body {
  position: relative;
  z-index: 2;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cat-tile__count {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,245,234,0.8);
}
.cat-tile__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 2.6vw, 40px);
  letter-spacing: -0.025em;
  color: var(--invert);
  line-height: 1.0;
}

/* ============================================================================
   PRODUCT GRID & PRODUCT CARDS
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
}
@media (min-width: 720px)  { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; } }
@media (min-width: 1080px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 48px 24px; } }

.product-card { position: relative; display: flex; flex-direction: column; }
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
}
.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.6s ease;
}
.product-card__img--alt { opacity: 0; }
.product-card:hover .product-card__img--primary { opacity: 0; }
.product-card:hover .product-card__img--alt     { opacity: 1; transform: scale(1.02); }

.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}
.badge--ink  { background: var(--ink); color: var(--invert); border-color: var(--ink); }
.badge--gold { background: var(--gold); color: var(--invert); border-color: var(--gold); }

.product-card__quickadd {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.product-card:hover .product-card__quickadd { opacity: 1; transform: translateY(0); }

.product-card__brand {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.product-card__title {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 4px;
}
.product-card__sub   { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 8px; }
.product-card__price {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-card__price-old {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-quiet);
  text-decoration: line-through;
  font-size: 12.5px;
}

/* ============================================================================
   FULL-BLEED EDITORIAL STRIP
   ========================================================================== */

.editorial-strip {
  position: relative;
  width: 100%;
  min-height: clamp(440px, 64vw, 760px);
  overflow: hidden;
  isolation: isolate;
}
.editorial-strip__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.editorial-strip__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(28,22,17,0) 30%, rgba(28,22,17,0.65) 100%);
  padding: clamp(28px, 4vw, 64px) 0;
}
.editorial-strip__inner { width: 100%; }
.editorial-strip__copy {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.editorial-strip__kr {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,245,234,0.7);
}
.editorial-strip__title {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.94;
  color: var(--invert);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.editorial-strip__sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(250,245,234,0.82);
  max-width: 52ch;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ============================================================================
   ROUTINE BUILDER
   ========================================================================== */

.routine {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px)  { .routine { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .routine { grid-template-columns: repeat(5, 1fr); gap: 12px; } }

.routine-step {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
}
.routine-step:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 36px -28px rgba(28,22,17,0.4);
}
.routine-step__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-mid);
  overflow: hidden;
}
.routine-step__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.routine-step:hover .routine-step__media img { transform: scale(1.04); }
.routine-step__body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.routine-step__num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--gold);
  margin-bottom: 6px;
}
.routine-step__kr {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--moss);
  margin-bottom: 4px;
}
.routine-step__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.routine-step__sub {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 4px;
}
.routine-cta {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}

/* ============================================================================
   INGREDIENT SPOTLIGHT — magazine layout
   ========================================================================== */

.ingredient-spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 72px);
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 900px) {
  .ingredient-spotlight {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }
}
.ingredient-spotlight__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-mid);
  overflow: hidden;
}
@media (min-width: 900px) {
  .ingredient-spotlight__media { aspect-ratio: auto; min-height: 540px; }
}
.ingredient-spotlight__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ingredient-spotlight__body {
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.ingredient-spotlight__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(42px, 5.4vw, 84px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--ink);
}
.ingredient-spotlight__lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46ch;
}
.ingredient-spotlight__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.ingredient-spotlight__fact-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--gold);
  margin-bottom: 6px;
}
.ingredient-spotlight__fact-num span {
  font-size: 0.6em;
  color: var(--ink-quiet);
  margin-left: 2px;
}
.ingredient-spotlight__fact-label {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.ingredient-spotlight__ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Ingredient row (chips) */
.ingredient-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 720px)  { .ingredient-row { grid-template-columns: repeat(5, 1fr); } }
.ingredient-chip {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ingredient-chip:hover { border-color: var(--gold); transform: translateY(-3px); }
.ingredient-chip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--paper-mid);
}
.ingredient-chip__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 2px; }
.ingredient-chip__kr {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--moss);
}
.ingredient-chip h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
}

/* ============================================================================
   AI CONSULTANT BLOCK
   ========================================================================== */

.ai-block {
  background: var(--ink);
  color: var(--invert);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ai-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/svg/paper-grain.svg");
  background-size: 200px;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
@media (min-width: 900px) {
  .ai-block { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.ai-block__copy { display: flex; flex-direction: column; gap: 22px; max-width: 520px; position: relative; z-index: 1; }
.ai-block__eyebrow { color: rgba(250,245,234,0.7); }
.ai-block__eyebrow-kr { color: rgba(167,138,85,0.85); }
.ai-block__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 4.2vw, 60px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--invert);
}
.ai-block__lede { color: rgba(250,245,234,0.78); }
.ai-block__ctas { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.ai-block__visual {
  position: relative;
  aspect-ratio: 5 / 6;
  background: rgba(250,245,234,0.06);
  border: 1px solid rgba(250,245,234,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.ai-block__visual-asset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
}

/* ============================================================================
   BRAND STRIP
   ========================================================================== */

.brand-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .brand-strip {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .brand-tile--main {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.brand-tile {
  position: relative;
  background: var(--paper-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: transform 0.4s ease, filter 0.4s ease;
  isolation: isolate;
}
@media (min-width: 760px) {
  .brand-tile--main { aspect-ratio: auto; height: 100%; min-height: 620px; }
}
.brand-tile:hover { transform: translateY(-4px); filter: brightness(1.04); }
.brand-tile__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.brand-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,22,17,0) 35%, rgba(28,22,17,0.62) 100%);
  z-index: 1;
}
.brand-tile__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--invert);
}
.brand-tile__brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 2.8vw, 44px);
  letter-spacing: -0.035em;
  color: var(--invert);
  line-height: 0.96;
}
.brand-tile__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,245,234,0.85);
}
.brand-tile__cta {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--invert);
  border-bottom: 1px solid var(--invert);
  align-self: flex-start;
  padding-bottom: 2px;
}

/* ============================================================================
   JOURNAL CARDS — 3 magazine teaser cards
   ========================================================================== */

.journal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .journal { grid-template-columns: repeat(3, 1fr); } }
.journal-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: var(--ink);
}
.journal-card__media {
  aspect-ratio: 4 / 3;
  background: var(--paper-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.journal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.journal-card:hover .journal-card__media img { transform: scale(1.03); }
.journal-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.journal-card__meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.journal-card__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 1.8vw, 25px);
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
  transition: color 0.22s ease;
}
.journal-card:hover .journal-card__title { color: var(--gold); }

/* ============================================================================
   COMMUNITY VIDEOS
   ========================================================================== */

.community { position: relative; }
.community__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 28vw, 360px);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
}
.video-card {
  position: relative;
  aspect-ratio: 9 / 14;
  background: var(--paper-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
}
.video-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--paper-mid);
}
.video-card__poster { z-index: 1; transition: opacity 0.3s ease; }
.video-card.is-playing .video-card__poster { opacity: 0; pointer-events: none; }
.video-card__play {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  background: rgba(28,22,17,0.78);
  color: var(--invert);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.22s ease;
}
.video-card__play:hover { background: var(--gold); }
.video-card__product {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  background: rgba(250,245,234,0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 10px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease;
}
.video-card__product:hover { transform: translateY(-2px); }
.video-card__product-img {
  width: 48px;
  height: 48px;
  background: var(--paper-mid);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
}
.video-card__product-title { font-size: 12.5px; font-weight: 500; line-height: 1.25; margin-bottom: 2px; }
.video-card__product-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  color: var(--gold);
}
.video-card__product-add {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ============================================================================
   STORY STRIP
   ========================================================================== */

.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .story { grid-template-columns: 1fr 1.1fr; }
}
.story__visual {
  aspect-ratio: 4 / 5;
  background: var(--paper-soft);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story__copy { display: flex; flex-direction: column; gap: 20px; }
.story__title {
  max-width: 14ch;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 64px);
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.story__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(250,245,234,0.18);
}
.story__fact-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gold);
}
.story__fact-label {
  font-size: 12px;
  color: rgba(250,245,234,0.72);
  margin-top: 8px;
  letter-spacing: 0.06em;
}

/* ============================================================================
   NEWSLETTER
   ========================================================================== */

.newsletter { text-align: center; max-width: 600px; margin: 0 auto; }
.newsletter__title { margin-bottom: 16px; margin-top: 12px; }
.newsletter__lede { color: var(--ink-soft); margin-bottom: 32px; }
.newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border-bottom: 1px solid var(--ink);
  align-items: center;
}
.newsletter__input {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 4px;
  background: transparent;
  border: none;
  color: var(--ink);
  outline: none;
}
.newsletter__input::placeholder { color: var(--ink-quiet); }
.newsletter__submit {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 16px;
  color: var(--ink);
  transition: color 0.22s ease;
}
.newsletter__submit:hover { color: var(--gold); }
.newsletter__legal {
  font-size: 11px;
  color: var(--ink-quiet);
  margin-top: 16px;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--ink);
  color: var(--invert);
  padding: clamp(56px, 7vw, 96px) 0 32px;
  position: relative;
  isolation: isolate;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/svg/paper-grain.svg");
  background-size: 220px;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.footer > .wrap { position: relative; z-index: 1; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250,245,234,0.12);
}
@media (min-width: 760px) {
  .footer__top { grid-template-columns: 1.5fr repeat(4, 1fr); gap: 48px; }
}
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,245,234,0.6);
  margin-bottom: 16px;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__list a { font-size: 13.5px; color: var(--invert); opacity: 0.85; transition: opacity 0.2s ease, color 0.2s ease; }
.footer__list a:hover { opacity: 1; color: var(--gold); }
.footer__brandmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.footer__manifesto {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(250,245,234,0.75);
  max-width: 32ch;
}
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,245,234,0.55);
}
.footer__payments { display: flex; gap: 12px; align-items: center; }
.footer__payment-tag {
  padding: 6px 10px;
  border: 1px solid rgba(250,245,234,0.2);
  border-radius: var(--radius-sm);
  font-size: 10px;
  letter-spacing: 0.14em;
}

/* ============================================================================
   CATEGORY (PLP) — kept for category.html
   ========================================================================== */
.crumb { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 24px; }
.crumb a:hover { color: var(--gold); }
.crumb__sep { margin: 0 8px; opacity: 0.4; }
.category-head { padding: clamp(40px, 5vw, 64px) 0; border-bottom: 1px solid var(--line); }
.category-head__title { margin-bottom: 16px; max-width: 16ch; }
.category-head__lede  { color: var(--ink-soft); max-width: 60ch; }
.plp { display: grid; grid-template-columns: 1fr; gap: 40px; padding: clamp(32px, 4vw, 56px) 0 clamp(64px, 8vw, 96px); }
@media (min-width: 980px) { .plp { grid-template-columns: 240px 1fr; gap: 56px; } }
.filter-rail { display: flex; flex-direction: column; gap: 32px; }
.filter-group__title { font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.filter-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.filter-list label { display: flex; align-items: center; gap: 10px; font-size: 13.5px; cursor: pointer; transition: color 0.2s ease; }
.filter-list label:hover { color: var(--gold); }
.filter-list input { accent-color: var(--ink); }
.filter-count { color: var(--ink-quiet); font-size: 12px; margin-left: auto; }
.plp__main { display: flex; flex-direction: column; gap: 24px; }
.plp__bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.plp__count { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; }
.plp__sort { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); background: transparent; border: 1px solid var(--line-strong); padding: 8px 14px; border-radius: var(--radius-pill); cursor: pointer; }
.pagination { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 24px; }
.pagination__btn { font-family: var(--display); font-size: 12px; font-weight: 700; padding: 10px 14px; border-radius: var(--radius-pill); border: 1px solid var(--line); color: var(--ink); }
.pagination__btn:hover { border-color: var(--gold); color: var(--gold); }
.pagination__btn.is-active { background: var(--ink); color: var(--invert); border-color: var(--ink); }

/* PDP kept */
.pdp { display: grid; grid-template-columns: 1fr; gap: 40px; padding: clamp(32px, 4vw, 56px) 0 clamp(56px, 7vw, 96px); }
@media (min-width: 900px) { .pdp { grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; } }
.pdp-gallery { display: flex; flex-direction: column; gap: 12px; }
.pdp-gallery__main { aspect-ratio: 4 / 5; background: var(--paper-soft); background-size: cover; background-position: center; border-radius: var(--radius-md); overflow: hidden; }
.pdp-gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pdp-gallery__thumb { aspect-ratio: 1 / 1; background: var(--paper-soft); background-size: cover; background-position: center; border-radius: var(--radius-sm); border: 1px solid transparent; cursor: pointer; transition: border-color 0.2s ease; }
.pdp-gallery__thumb.is-active { border-color: var(--gold); }
.pdp-gallery__thumb:hover { border-color: var(--line-strong); }
.pdp-buy { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.pdp-buy__brand { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.pdp-buy__title { margin-bottom: 8px; }
.pdp-buy__sub { font-size: 15px; color: var(--ink-soft); }
.pdp-buy__rating { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-soft); }
.pdp-buy__rating span:first-child { color: var(--gold); letter-spacing: 0.1em; }
.pdp-buy__price-row { display: flex; align-items: baseline; gap: 12px; font-family: var(--display); font-size: 34px; font-weight: 800; letter-spacing: -0.025em; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--gold); }
.pdp-buy__price-old { font-family: var(--sans); font-size: 15px; color: var(--ink-quiet); text-decoration: line-through; font-weight: 400; letter-spacing: 0; }
.pdp-buy__option-group { display: flex; flex-direction: column; gap: 10px; }
.pdp-buy__option-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.pdp-buy__options { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-buy__option { font-size: 13px; padding: 10px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius-pill); cursor: pointer; transition: border-color 0.2s ease, color 0.2s ease; }
.pdp-buy__option:hover { border-color: var(--gold); color: var(--gold); }
.pdp-buy__option.is-active { background: var(--ink); color: var(--invert); border-color: var(--ink); }
.pdp-buy__cta-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: var(--radius-pill); height: 50px; }
.qty__btn { width: 40px; height: 100%; font-size: 16px; }
.qty__val { width: 32px; text-align: center; font-size: 14px; font-weight: 600; }
.pdp-meta { display: flex; flex-direction: column; gap: 14px; padding-top: 8px; }
.pdp-meta__row { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.pdp-meta__row:last-child { border-bottom: none; }
.pdp-meta__label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); padding-top: 2px; }
.pdp-meta__value { color: var(--ink); line-height: 1.55; }
.tabs { border-top: 1px solid var(--line); margin-top: clamp(48px, 6vw, 80px); padding-top: 32px; }
.tabs__nav { display: flex; gap: 24px; border-bottom: 1px solid var(--line); margin-bottom: 32px; overflow-x: auto; }
.tabs__tab { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 2px; color: var(--ink-soft); border-bottom: 1px solid transparent; margin-bottom: -1px; white-space: nowrap; transition: color 0.2s ease, border-color 0.2s ease; }
.tabs__tab:hover { color: var(--ink); }
.tabs__tab.is-active { color: var(--ink); border-bottom-color: var(--gold); }
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; }
.pdp-ingredients { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0; }
@media (min-width: 760px) { .pdp-ingredients { grid-template-columns: repeat(4, 1fr); } }
.pdp-ingredient { text-align: center; padding: 28px 18px; background: var(--paper-soft); border-radius: var(--radius-md); }
.pdp-ingredient__art { width: 88px; height: 88px; margin: 0 auto 14px; background-size: cover; background-position: center; border-radius: var(--radius-pill); background-color: var(--paper-mid); }
.pdp-ingredient__name { font-family: var(--display); font-size: 19px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 6px; }
.pdp-ingredient__role { font-size: 11.5px; color: var(--ink-soft); letter-spacing: 0.12em; text-transform: uppercase; }

/* ============================================================================
   FADE-UP
   ========================================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s cubic-bezier(.2,.6,.2,1), transform 0.6s cubic-bezier(.2,.6,.2,1);
  will-change: opacity, transform;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-up.is-visible { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
}

/* ============================================================================
   MISC
   ========================================================================== */

.is-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
::-webkit-scrollbar { height: 6px; width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-soft); }
