@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  --ink: #111;
  --charcoal: #171717;
  --soft-ink: #303030;
  --teal: #0e5061;
  --teal-light: #dbe9ec;
  --paper: #fff;
  --warm: #f4f1ed;
  --mist: #f4f4f3;
  --line: #d7d7d4;
  --muted: #6a6a68;
  --success: #315f4b;
  --max: 1440px;
  --narrow: 1180px;
  --header-h: 136px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { color: inherit; font: inherit; }
button, select { cursor: pointer; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.2em; }
h1, h2, h3, h4 { margin: 0; font-weight: 650; line-height: 1.08; letter-spacing: -.025em; }
h1 { font-size: clamp(2.5rem, 5vw, 5.4rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.8rem); }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.7rem); }
.sr-only { position: absolute!important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -60px; padding: 12px 18px; background: #fff; color: #000; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid #45b6d1; outline-offset: 3px; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 48px), var(--narrow)); margin-inline: auto; }
.eyebrow { margin: 0 0 15px; font-size: 12px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.lede { max-width: 760px; color: var(--soft-ink); font-size: clamp(1rem, 1.35vw, 1.2rem); }
.section { padding: clamp(66px, 8vw, 122px) 0; }
.section--tight { padding: clamp(46px, 5vw, 76px) 0; }
.section--mist { background: var(--mist); }
.section--warm { background: var(--warm); }
.section--dark { color: #fff; background: var(--charcoal); }
.section--teal { color: #fff; background: var(--teal); }
.section-title { margin-bottom: 22px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head .lede { margin: 0; }
.text-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid currentColor; padding-bottom: 3px; font-size: 13px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.text-link::after { content: "→"; transition: transform .25s var(--ease); }
.text-link:hover::after { transform: translateX(5px); }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px 27px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .065em;
  text-align: center;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn:active { transform: translateY(1px); }
.btn--light { border-color: #fff; background: #fff; color: #111; }
.btn--light:hover { background: transparent; color: #fff; }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--wide { width: 100%; }
.icon-button { display: inline-grid; width: 42px; height: 42px; place-items: center; border: 0; background: transparent; color: inherit; }
.icon-button svg { width: 21px; height: 21px; stroke: currentColor; }

/* Header */
.promo-bar { position: relative; z-index: 101; min-height: 37px; display: grid; place-items: center; padding: 7px 52px; background: var(--teal); color: #fff; font-size: 12px; text-align: center; }
.promo-bar a { margin-left: 6px; border-bottom: 1px solid; font-weight: 750; }
.site-header { position: sticky; z-index: 100; top: 0; color: #fff; background: var(--charcoal); box-shadow: 0 1px rgba(255,255,255,.08); }
.header-main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 76px; gap: 30px; padding: 12px 28px; }
.header-logo { justify-self: center; }
.header-logo img { width: 310px; }
.header-utils { display: flex; align-items: center; gap: 19px; font-size: 12px; }
.header-utils--right { justify-self: end; }
.utility-link { display: inline-flex; align-items: center; gap: 7px; opacity: .9; }
.utility-link:hover { opacity: 1; text-decoration: underline; }
.utility-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; }
.nav-row { display: flex; align-items: stretch; justify-content: center; min-height: 54px; border-top: 1px solid rgba(255,255,255,.08); }
.nav-list { display: flex; align-items: stretch; justify-content: center; margin: 0; padding: 0; list-style: none; }
.nav-item { display: flex; align-items: stretch; }
.nav-link { position: relative; display: flex; align-items: center; border: 0; padding: 0 16px; background: transparent; color: #fff; font-size: 12px; font-weight: 760; letter-spacing: .035em; text-transform: uppercase; }
.nav-link::after { position: absolute; right: 16px; bottom: 9px; left: 16px; height: 1px; background: #fff; content: ""; transform: scaleX(0); transition: transform .25s var(--ease); }
.nav-link:hover::after, .nav-link[aria-expanded="true"]::after, .nav-link.is-active::after { transform: scaleX(1); }
.mega-menu { position: absolute; z-index: 110; top: 100%; right: 0; left: 0; visibility: hidden; padding: 34px max(28px, calc((100vw - var(--max))/2)); background: #fff; color: #111; opacity: 0; box-shadow: 0 18px 35px rgba(0,0,0,.16); transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility .2s; }
.nav-item:hover .mega-menu, .mega-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 42px; }
.mega-title { margin-bottom: 15px; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.mega-menu ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.mega-menu li a { color: #383838; font-size: 13px; }
.mega-menu li a:hover { color: #000; text-decoration: underline; }
.mega-feature { min-height: 180px; display: flex; flex-direction: column; justify-content: end; padding: 22px; background: linear-gradient(145deg, #dbe5e7, #b9cdd1); }
.mega-feature strong { max-width: 210px; font-size: 20px; line-height: 1.1; }
.mobile-header { display: none; min-height: 62px; align-items: center; justify-content: space-between; padding: 9px 13px; }
.mobile-header .header-logo img { width: 210px; }
.mobile-actions { display: flex; align-items: center; }
.bag-wrap { position: relative; }
.bag-count { position: absolute; top: 1px; right: 1px; min-width: 16px; height: 16px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #111; font-size: 9px; font-weight: 800; }
.mobile-drawer { position: fixed; z-index: 220; top: 0; bottom: 0; left: 0; width: min(92vw, 420px); padding: 18px; background: #fff; color: #111; overflow-y: auto; transform: translateX(-102%); transition: transform .35s var(--ease); }
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mobile-drawer-nav { margin: 0; padding: 18px 0; list-style: none; }
.mobile-drawer-nav > li { border-bottom: 1px solid var(--line); }
.mobile-drawer-nav a { display: flex; justify-content: space-between; padding: 17px 3px; font-weight: 690; text-transform: uppercase; }
.mobile-subnav { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; padding: 0 3px 17px; }
.mobile-subnav a { padding: 5px 0; color: #555; font-size: 12px; font-weight: 500; text-transform: none; }
.scrim { position: fixed; z-index: 200; inset: 0; visibility: hidden; background: rgba(0,0,0,.62); opacity: 0; transition: opacity .25s, visibility .25s; }
.scrim.is-open { visibility: visible; opacity: 1; }

/* Overlays */
.panel { position: fixed; z-index: 230; top: 0; right: 0; bottom: 0; width: min(96vw, 480px); padding: 26px; background: #fff; color: #111; overflow-y: auto; transform: translateX(103%); transition: transform .35s var(--ease); }
.panel.is-open { transform: translateX(0); }
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.panel-head h2 { font-size: 26px; }
.panel > p { margin-bottom: 28px; color: var(--muted); }
.cart-items { display: grid; gap: 18px; }
.cart-item { display: grid; grid-template-columns: 88px 1fr auto; gap: 14px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.cart-item img { width: 88px; height: 88px; background: var(--mist); object-fit: contain; }
.cart-item strong { display: block; margin-bottom: 5px; font-size: 13px; line-height: 1.3; }
.cart-remove { border: 0; background: transparent; font-size: 18px; }
.cart-summary { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--ink); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 18px; font-size: 17px; font-weight: 760; }
.empty-state { padding: 70px 15px; color: var(--muted); text-align: center; }
.search-overlay { position: fixed; z-index: 240; top: 0; right: 0; left: 0; visibility: hidden; min-height: 310px; padding: 28px max(24px, calc((100vw - var(--narrow))/2)); background: #fff; color: #111; opacity: 0; transform: translateY(-20px); transition: opacity .25s, transform .25s, visibility .25s; }
.search-overlay.is-open { visibility: visible; opacity: 1; transform: none; }
.search-head { display: flex; justify-content: space-between; margin-bottom: 34px; }
.search-field { display: flex; gap: 14px; border-bottom: 2px solid #111; }
.search-field input { flex: 1; min-width: 0; border: 0; padding: 14px 4px; background: transparent; font-size: clamp(22px, 4vw, 40px); outline: 0; }
.search-suggestions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 28px; margin-top: 25px; }
.search-suggestions a { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13px; }

/* Home hero */
.hero { position: relative; min-height: min(720px, calc(100vh - 100px)); overflow: hidden; background: #0e0e0e; color: #fff; }
.hero-track { position: relative; min-height: inherit; }
.hero-slide { position: absolute; inset: 0; display: grid; grid-template-columns: minmax(360px, .85fr) minmax(460px, 1.15fr); align-items: stretch; visibility: hidden; opacity: 0; transition: opacity .8s ease, visibility .8s; }
.hero-slide.is-active { position: relative; visibility: visible; opacity: 1; }
.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 660px; padding: 80px 5vw 100px max(30px, calc((100vw - var(--max))/2)); }
.hero-copy h1, .hero-copy h2 { max-width: 650px; margin-bottom: 23px; font-size: clamp(2.7rem, 3.9vw, 4.4rem); }
.hero-copy .lede { margin-bottom: 34px; color: #fff; font-size: clamp(1rem, 1.3vw, 1.28rem); }
.hero-media { min-height: 610px; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero-slide--offer { background: #d7d0c7; color: #111; }
.hero-slide--offer .hero-copy { order: 2; }
.hero-slide--offer .hero-media { order: 1; }
.hero-slide--offer .hero-copy .lede { color: #333; }
.hero-controls { position: absolute; z-index: 5; right: 34px; bottom: 26px; display: flex; align-items: center; gap: 10px; }
.hero-dot { width: 34px; height: 3px; border: 0; padding: 0; background: rgba(255,255,255,.45); }
.hero-dot.is-active { background: #fff; }
.hero-slide--offer ~ .hero-controls .hero-dot { background: rgba(255,255,255,.45); }
.hero-pause { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(0,0,0,.18); color: #fff; }
.hero-pause::before { content: "Ⅱ"; font-size: 11px; font-weight: 800; }
.hero-pause.is-paused::before { content: "▶"; }
.hero-progress { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; height: 2px; background: rgba(255,255,255,.2); }
.hero-progress span { display: block; width: 0; height: 100%; background: #fff; }
.hero:not(.is-paused) .hero-progress span { animation: heroProgress 6s linear infinite; }
@keyframes heroProgress { to { width: 100%; } }

.offer-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.offer-split-media img { width: 100%; height: 100%; object-fit: cover; }
.offer-split-copy { display: grid; place-content: center; padding: clamp(42px, 7vw, 110px); background: var(--warm); }
.offer-split-copy h2 { margin-bottom: 24px; }
.offer-split-copy p { max-width: 520px; }
.category-links { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-link { min-height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px; text-align: center; transition: background .25s, color .25s; }
.category-link:hover { background: var(--charcoal); color: #fff; }
.category-glyph { position: relative; width: 48px; height: 58px; border: 1px solid currentColor; border-radius: 50% 50% 42% 42%; }
.category-glyph::before { position: absolute; top: -12px; left: 17px; width: 13px; height: 17px; border: 1px solid currentColor; border-bottom: 0; content: ""; }
.category-link strong { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.science-intro { text-align: center; }
.science-intro .lede { margin: 22px auto 28px; }

/* Cards and carousels */
.carousel-shell { position: relative; }
.product-grid, .product-carousel { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.product-carousel { grid-auto-flow: column; grid-auto-columns: calc((100% - 3px)/4); grid-template-columns: none; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; }
.product-carousel::-webkit-scrollbar { display: none; }
.product-card { position: relative; min-width: 0; display: flex; flex-direction: column; padding: 18px 18px 21px; background: #fff; }
.product-card-media { position: relative; overflow: hidden; aspect-ratio: 1; margin-bottom: 18px; background: #f8f8f7; }
.product-card-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .55s var(--ease); }
.product-card:hover .product-card-media img { transform: scale(1.045); }
.product-badge { position: absolute; z-index: 2; top: 16px; left: 16px; padding: 5px 8px; background: #111; color: #fff; font-size: 9px; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.wishlist { position: absolute; z-index: 2; top: 11px; right: 11px; display: grid; width: 36px; height: 36px; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.82); font-size: 21px; }
.product-card h3 { min-height: 42px; margin-bottom: 8px; font-size: 16px; letter-spacing: -.01em; }
.product-tagline { min-height: 42px; margin-bottom: 12px; color: var(--muted); font-size: 12px; }
.rating { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; font-size: 11px; }
.stars { letter-spacing: 1px; }
.product-price { margin-top: auto; margin-bottom: 13px; font-weight: 730; }
.product-card .btn { min-height: 42px; padding: 9px 14px; font-size: 11px; }
.carousel-arrows { display: flex; gap: 8px; }
.carousel-arrow { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid #111; background: #fff; font-size: 20px; transition: .2s; }
.carousel-arrow:hover { background: #111; color: #fff; }
.content-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.content-card { display: flex; min-width: 0; flex-direction: column; background: #fff; }
.content-card img { width: 100%; aspect-ratio: 1.45; object-fit: cover; }
.content-card-body { flex: 1; padding: 26px; }
.content-card h3 { margin-bottom: 12px; }
.content-card p { color: var(--muted); font-size: 13px; }
.content-card .text-link { margin-top: auto; }
.split-feature { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split-feature--reverse .split-feature-media { order: 2; }
.split-feature-media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.split-feature-copy { display: grid; place-content: center; padding: clamp(45px, 7vw, 112px); }
.split-feature-copy h2 { margin-bottom: 24px; }
.split-feature-copy .lede { margin-bottom: 28px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.2); }
.stat { padding: 32px; background: var(--charcoal); text-align: center; }
.stat strong { display: block; margin-bottom: 5px; font-size: clamp(2rem,4vw,4rem); font-weight: 400; }
.stat span { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.treatment-pair { display: grid; grid-template-columns: 1fr 70px 1fr; gap: 20px; align-items: center; }
.treatment-pair-list { display: grid; gap: 1px; background: var(--line); }
.pair-link { display: flex; justify-content: space-between; padding: 18px 20px; background: #fff; font-weight: 620; }
.pair-link:hover { background: #111; color: #fff; }
.pair-plus { display: grid; width: 54px; height: 54px; place-items: center; margin: auto; border: 1px solid #111; border-radius: 50%; font-size: 28px; font-weight: 300; }
.trust-strip { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.trust-item { min-height: 150px; display: grid; place-items: center; gap: 8px; border-right: 1px solid var(--line); padding: 28px; text-align: center; }
.trust-item:last-child { border-right: 0; }
.trust-icon { font-size: 26px; }
.trust-item strong { font-size: 12px; text-transform: uppercase; }

/* Inner page heroes */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 0; color: var(--muted); font-size: 11px; }
.breadcrumb a:hover { color: #111; text-decoration: underline; }
.page-hero { position: relative; display: grid; min-height: 520px; grid-template-columns: 1fr 1fr; background: var(--charcoal); color: #fff; overflow: hidden; }
.page-hero--light { background: var(--warm); color: #111; }
.page-hero-copy { display: grid; align-content: center; padding: clamp(54px, 7vw, 110px) max(30px, calc((100vw - var(--max))/2)); padding-right: clamp(38px, 6vw, 90px); }
.page-hero-copy h1 { margin-bottom: 23px; font-size: clamp(2.7rem, 4.5vw, 5.1rem); }
.page-hero-copy .lede { color: inherit; }
.page-hero-media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.simple-hero { padding: clamp(58px, 8vw, 120px) 0; background: var(--warm); text-align: center; }
.simple-hero h1 { max-width: 1100px; margin: 0 auto 20px; }
.simple-hero .lede { margin-inline: auto; }
.listing-head { padding: 56px 0 40px; text-align: center; }
.listing-head h1 { margin-bottom: 18px; font-size: clamp(2.6rem, 4.5vw, 4.7rem); }
.listing-head .lede { margin-inline: auto; }
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.toolbar-group { display: flex; align-items: center; gap: 12px; }
.toolbar select, .filter-search { min-height: 42px; border: 1px solid var(--line); padding: 8px 12px; background: #fff; font-size: 12px; }
.toolbar-label { font-size: 12px; font-weight: 700; text-transform: uppercase; }
.results-count { color: var(--muted); font-size: 12px; }
.pill-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin: 30px 0 0; }
.pill-nav a, .pill-nav button { appearance: none; padding: 10px 16px; border: 1px solid #111; background: transparent; color: inherit; font: inherit; font-size: 11px; font-weight: 680; text-transform: uppercase; cursor: pointer; }
.pill-nav a:hover, .pill-nav a.is-active, .pill-nav button:hover, .pill-nav button:focus-visible { background: #111; color: #fff; }
.concern-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.concern-card { min-height: 245px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; background: #fff; transition: background .25s, color .25s; }
.concern-card:hover { background: var(--charcoal); color: #fff; }
.concern-card .number { color: var(--muted); font-size: 11px; }
.concern-card h3 { max-width: 220px; }
.concern-card span:last-child { font-size: 20px; }
.routine-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.routine-step { padding: 31px; background: #fff; }
.routine-step .step-no { display: grid; width: 34px; height: 34px; place-items: center; margin-bottom: 24px; border: 1px solid #111; border-radius: 50%; font-size: 11px; }
.routine-step h3 { margin-bottom: 12px; }
.routine-step p { color: var(--muted); font-size: 13px; }

/* Article and editorial */
.article-hero { padding: 54px 0 0; background: var(--warm); }
.article-hero-copy { max-width: 1000px; margin: 0 auto 45px; text-align: center; }
.article-hero-copy h1 { margin-bottom: 22px; font-size: clamp(2.6rem, 5vw, 5.4rem); }
.article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; color: var(--muted); font-size: 12px; }
.article-hero img { width: min(100%, 1180px); max-height: 700px; margin: 0 auto; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: center; gap: 70px; padding: 80px 24px; }
.article-toc { position: sticky; top: 180px; align-self: start; padding-top: 10px; }
.article-toc strong { display: block; margin-bottom: 16px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.article-toc a { display: block; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.article-body { font-family: Inter, Arial, sans-serif; font-size: 17px; line-height: 1.8; }
.article-body h2 { margin: 2em 0 .6em; font-family: Inter, Arial, sans-serif; font-size: clamp(1.8rem,3vw,2.8rem); }
.article-body h3 { margin: 1.7em 0 .5em; }
.article-body ul { padding-left: 22px; }
.article-body blockquote { margin: 42px 0; padding: 32px 0 32px 30px; border-left: 3px solid var(--teal); color: var(--soft-ink); font-size: 24px; line-height: 1.45; }
.article-body img { margin: 36px 0; }
.tag { display: inline-block; margin: 4px 4px 4px 0; padding: 6px 9px; background: var(--mist); font-size: 10px; text-transform: uppercase; }

/* Product detail */
.pdp { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr); gap: clamp(40px, 6vw, 90px); padding: 30px 0 90px; }
.pdp-gallery { display: grid; grid-template-columns: 82px 1fr; gap: 15px; align-self: start; }
.pdp-thumbs { display: grid; align-content: start; gap: 9px; }
.pdp-thumb { border: 1px solid var(--line); padding: 4px; background: #fff; }
.pdp-thumb.is-active { border-color: #111; }
.pdp-thumb img { aspect-ratio: 1; object-fit: contain; }
.pdp-main-image { position: relative; background: #f7f7f6; }
.pdp-main-image img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.pdp-info { position: sticky; top: 170px; align-self: start; padding: 18px 0; }
.pdp-info h1 { margin-bottom: 15px; font-size: clamp(2rem, 3vw, 3.5rem); }
.pdp-info .lede { margin-bottom: 18px; }
.pdp-price { margin: 20px 0; font-size: 20px; font-weight: 750; }
.pdp-option { margin: 22px 0; }
.pdp-option-label { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.size-option { display: inline-flex; min-width: 84px; justify-content: center; border: 1px solid #111; padding: 11px; }
.purchase-option { display: flex; gap: 10px; margin: 9px 0; padding: 14px; border: 1px solid var(--line); }
.purchase-option input { accent-color: #111; }
.quantity-row { display: grid; grid-template-columns: 112px 1fr; gap: 12px; margin-top: 17px; }
.quantity { display: grid; grid-template-columns: 34px 1fr 34px; border: 1px solid #111; }
.quantity button, .quantity input { width: 100%; border: 0; background: #fff; text-align: center; }
.pdp-note { margin-top: 15px; color: var(--muted); font-size: 11px; }
.benefit-grid { display: grid; grid-template-columns: repeat(5,1fr); border: 1px solid rgba(255,255,255,.18); }
.benefit { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; border-right: 1px solid rgba(255,255,255,.18); }
.benefit:last-child { border-right: 0; }
.benefit-icon { font-size: 24px; }
.benefit p { margin: 0; font-size: 13px; }
.ingredient-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ingredient { padding: 30px; background: var(--mist); }
.ingredient strong { display: block; margin-bottom: 10px; font-size: 18px; }
.sticky-buy { position: fixed; z-index: 80; right: 0; bottom: 0; left: 0; visibility: hidden; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding: 12px max(24px, calc((100vw - var(--narrow))/2)); background: #fff; opacity: 0; transform: translateY(100%); transition: .25s; }
.sticky-buy.is-visible { visibility: visible; opacity: 1; transform: none; }
.sticky-buy strong { font-size: 13px; }

/* Forms, locator, service pages */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 720; letter-spacing: .06em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 49px; border: 1px solid #bbb; border-radius: 0; padding: 12px; background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.locator-layout { display: grid; grid-template-columns: minmax(340px,.75fr) minmax(520px,1.25fr); min-height: 680px; }
.locator-side { padding: 42px; overflow-y: auto; }
.locator-map { position: relative; overflow: hidden; background: #d9ddd8; }
.locator-map::before, .locator-map::after { position: absolute; inset: -20%; background-image: linear-gradient(32deg, transparent 48%, rgba(255,255,255,.85) 49%, rgba(255,255,255,.85) 51%, transparent 52%), linear-gradient(112deg, transparent 48%, rgba(255,255,255,.8) 49%, rgba(255,255,255,.8) 51%, transparent 52%); background-size: 170px 150px, 210px 190px; content: ""; transform: rotate(4deg); }
.map-pin { position: absolute; z-index: 2; width: 20px; height: 20px; border: 5px solid #fff; border-radius: 50% 50% 50% 0; background: var(--teal); box-shadow: 0 3px 8px rgba(0,0,0,.3); transform: rotate(-45deg); }
.provider-list { display: grid; gap: 12px; margin-top: 24px; }
.provider { padding: 18px; border: 1px solid var(--line); }
.provider strong { display: block; margin-bottom: 5px; }
.provider p { margin: 0; color: var(--muted); font-size: 12px; }
.quiz { max-width: 900px; margin: 0 auto; }
.quiz-progress { height: 3px; margin-bottom: 44px; background: var(--line); }
.quiz-progress span { display: block; width: 20%; height: 100%; background: var(--teal); transition: width .35s; }
.quiz-step { display: none; text-align: center; }
.quiz-step.is-active { display: block; animation: fadeUp .45s var(--ease); }
.quiz-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 34px 0; }
.quiz-option { min-height: 150px; display: grid; place-items: center; border: 1px solid #111; padding: 20px; background: #fff; font-weight: 650; }
.quiz-option:hover, .quiz-option.is-selected { background: #111; color: #fff; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.timeline-item { min-height: 260px; padding: 28px; background: #fff; }
.timeline-year { display: block; margin-bottom: 60px; color: var(--teal); font-size: 32px; font-weight: 350; }
.timeline-item h3 { margin-bottom: 12px; }
.timeline-item p { color: var(--muted); font-size: 12px; }

/* Accordions */
.accordion { border-top: 1px solid var(--ink); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; padding: 22px 2px; background: transparent; font-weight: 650; text-align: left; }
.accordion-button::after { content: "+"; font-size: 23px; font-weight: 300; transition: transform .25s; }
.accordion-button[aria-expanded="true"]::after { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.accordion-panel > div { overflow: hidden; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel p { max-width: 850px; padding: 0 0 22px; color: var(--muted); }

/* Account, support and search */
.account-shell { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; max-width: 1000px; margin: 0 auto; background: var(--line); border: 1px solid var(--line); }
.account-panel { padding: clamp(35px,5vw,70px); background: #fff; }
.account-panel h2 { margin-bottom: 18px; font-size: 31px; }
.account-panel .field { margin: 15px 0; }
.support-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.support-card { min-height: 230px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; background: #fff; }
.support-card:hover { background: var(--mist); }
.search-page-form { display: flex; max-width: 850px; margin: 30px auto 0; border-bottom: 2px solid #111; }
.search-page-form input { flex: 1; min-width: 0; border: 0; padding: 15px; background: transparent; font-size: 24px; outline: 0; }
.search-page-form button { border: 0; padding: 15px; background: transparent; }

/* Footer */
.newsletter { padding: 70px 0; background: var(--teal); color: #fff; }
.newsletter-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: end; }
.newsletter h2 { margin-bottom: 14px; font-size: clamp(2rem,3vw,3.5rem); }
.newsletter-form { display: flex; border-bottom: 1px solid #fff; }
.newsletter-form input { flex: 1; min-width: 0; border: 0; padding: 16px 4px; background: transparent; color: #fff; outline: 0; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.75); }
.newsletter-form button { border: 0; padding: 14px; background: transparent; color: #fff; font-size: 13px; font-weight: 740; text-transform: uppercase; }
.site-footer { padding: 62px 0 26px; background: var(--charcoal); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(5,1fr); gap: 35px; }
.footer-brand img { width: 260px; margin-bottom: 22px; }
.footer-brand p { max-width: 270px; color: #aaa; font-size: 12px; }
.footer-col h3 { margin-bottom: 18px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-col a { color: #bdbdbd; font-size: 11px; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 20px; border-top: 1px solid #393939; color: #8e8e8e; font-size: 10px; }
.footer-region { margin-left: 12px; border: 0; border-bottom: 1px solid currentColor; padding: 0; background: transparent; color: inherit; font: inherit; cursor: pointer; }
.social-links { display: flex; gap: 14px; }
.social-links a { display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid #555; border-radius: 50%; color: #fff; }

/* Notifications */
.cookie-banner { position: fixed; z-index: 190; right: 16px; bottom: 16px; left: 16px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border: 1px solid var(--line); padding: 16px 22px; background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,.18); font-size: 11px; transition: opacity .25s, transform .25s; }
.cookie-banner.is-hidden { pointer-events: none; opacity: 0; transform: translateY(20px); }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions .btn { min-height: 38px; padding: 8px 15px; font-size: 10px; }
.toast { position: fixed; z-index: 300; right: 22px; bottom: 22px; max-width: 360px; padding: 15px 20px; background: #111; color: #fff; font-size: 12px; opacity: 0; transform: translateY(20px); transition: .3s; }
.toast.is-visible { opacity: 1; transform: none; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Responsive */
@media (max-width: 1180px) {
  .header-main, .nav-row { display: none; }
  .mobile-header { display: flex; }
  .site-header { top: 0; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .product-carousel { grid-auto-columns: calc((100% - 2px)/3); }
  .footer-grid { grid-template-columns: 1.4fr repeat(3,1fr); }
  .footer-col:nth-last-child(-n+2) { margin-top: 20px; }
  .pdp-info { top: 90px; }
}

@media (max-width: 900px) {
  .container, .container--narrow { width: min(calc(100% - 32px), var(--max)); }
  .section-head { align-items: start; flex-direction: column; }
  .hero { min-height: auto; }
  .hero-slide { grid-template-columns: 1fr; }
  .hero-copy { order: 2; max-width: none; padding: 38px 22px 80px; }
  .hero-copy h1, .hero-copy h2 { font-size: clamp(2.4rem, 10vw, 4.2rem); }
  .hero-media { min-height: 58vh; max-height: 720px; }
  .hero-slide--offer .hero-copy { order: 2; }
  .hero-slide--offer .hero-media { order: 1; }
  .hero-controls { right: 18px; bottom: 18px; }
  .offer-split, .split-feature, .page-hero { grid-template-columns: 1fr; }
  .offer-split-media { min-height: 420px; }
  .split-feature--reverse .split-feature-media { order: 0; }
  .split-feature-media img { min-height: 390px; }
  .page-hero-copy { order: 2; padding: 48px 22px 60px; }
  .page-hero-media img { min-height: 420px; }
  .category-links { grid-template-columns: repeat(3,1fr); }
  .content-cards { grid-template-columns: 1fr 1fr; }
  .concern-grid { grid-template-columns: repeat(2,1fr); }
  .routine-steps { grid-template-columns: repeat(2,1fr); }
  .treatment-pair { grid-template-columns: 1fr; }
  .pair-plus { margin-block: 4px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit { border-bottom: 1px solid rgba(255,255,255,.18); }
  .pdp { grid-template-columns: 1fr; }
  .pdp-info { position: static; }
  .article-layout { grid-template-columns: 1fr; gap: 30px; }
  .article-toc { position: static; }
  .locator-layout { grid-template-columns: 1fr; }
  .locator-map { min-height: 500px; }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: repeat(3,1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  body { font-size: 14px; }
  .promo-bar { min-height: 40px; padding-inline: 14px; font-size: 10px; }
  .mobile-header .header-logo img { width: 176px; }
  .mobile-actions .icon-button { width: 36px; }
  .hero-media { min-height: 480px; }
  .hero-media img { object-position: 51% 18%; }
  .offer-split-media { min-height: 300px; }
  .category-links { grid-template-columns: repeat(2,1fr); }
  .category-link { min-height: 145px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .product-carousel { grid-auto-columns: 79%; }
  .product-card { padding: 11px; }
  .product-card h3 { min-height: auto; font-size: 14px; }
  .product-tagline { min-height: 55px; font-size: 11px; }
  .product-card .rating { display: none; }
  .content-cards { grid-template-columns: 1fr; }
  .content-card img { aspect-ratio: 1.35; }
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 24px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item { border-bottom: 1px solid var(--line); }
  .toolbar { align-items: stretch; flex-direction: column; }
  .toolbar-group { justify-content: space-between; }
  .concern-grid, .routine-steps, .ingredient-grid { grid-template-columns: 1fr; }
  .concern-card { min-height: 190px; }
  .page-hero, .page-hero-media img { min-height: 350px; }
  .article-hero-copy { padding-inline: 18px; }
  .article-layout { padding: 55px 20px; }
  .article-body { font-size: 16px; }
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-thumbs { order: 2; grid-template-columns: repeat(3,70px); }
  .quantity-row { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit { min-height: 150px; }
  .form-grid, .account-shell { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-option { min-height: 90px; }
  .timeline { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .newsletter-form { align-items: stretch; flex-direction: column; border: 0; }
  .newsletter-form input { border-bottom: 1px solid #fff; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .search-suggestions { grid-template-columns: 1fr; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 10px; }
  .cookie-actions { justify-content: flex-end; }
  .sticky-buy { padding: 8px 12px; }
  .sticky-buy strong { display: none; }
  .sticky-buy .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
}

/* 2026 US storefront reference alignment */
:root {
  --ink: #111;
  --charcoal: #111112;
  --teal: #087fa2;
  --mist: #f5f5f5;
  --warm: #f0edf2;
  --line: #d7d7d7;
  --muted: #5d5d5d;
  --max: 1170px;
  --narrow: 1170px;
}
body { padding-bottom: 42px; font-size: 14px; line-height: 1.42; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: 0; }
h1 { font-size: clamp(2rem, 3vw, 2.55rem); }
h2 { font-size: clamp(1.65rem, 2.2vw, 2rem); }
h3 { font-size: 1rem; }
.container, .container--narrow { width: min(calc(100% - 32px), 1170px); }
.section { padding: 64px 0; }
.section--tight { padding: 46px 0; }
.lede { font-size: 16px; line-height: 1.5; }
.eyebrow { margin-bottom: 10px; font-size: 12px; letter-spacing: 0; }
.btn { min-height: 41px; padding: 10px 28px; font-size: 12px; letter-spacing: .035em; }
.text-link { font-size: 11px; letter-spacing: 0; }

/* Header */
.promo-bar {
  min-height: 38px;
  display: grid;
  grid-template-columns: 28px auto 1fr 28px;
  padding: 0 18px;
  background: var(--teal);
  font-size: 12px;
}
.promo-bar a { justify-self: center; margin: 0; border: 0; font-weight: 400; }
.promo-bar button { width: 28px; height: 34px; border: 0; padding: 0; background: transparent; color: #fff; font-size: 30px; font-weight: 200; line-height: 1; }
.promo-bar button:last-child { font-size: 26px; }
.promo-spacer { min-width: 1px; }
.promo-bar.is-hidden { display: none; }
.site-header { top: 0; background: #111112; box-shadow: none; }
.header-main {
  width: min(calc(100% - 32px), 1170px);
  min-height: 80px;
  grid-template-columns: 330px 1fr;
  gap: 30px;
  margin: 0 auto;
  padding: 11px 0 5px;
}
.header-logo { justify-self: start; }
.header-logo img { width: 300px; }
.header-utils--right { justify-self: end; align-self: center; gap: 20px; font-size: 12px; }
.utility-link { border: 0; padding: 0; background: transparent; color: #fff; white-space: nowrap; }
.utility-link svg { width: 16px; height: 16px; }
.utility-link.bag-wrap { display: inline-flex; }
.utility-link.bag-wrap > svg { width: 15px; }
.nav-row { min-height: 48px; border: 0; }
.nav-inner { width: min(calc(100% - 32px), 1170px); display: flex; align-items: stretch; justify-content: space-between; margin: 0 auto; }
.nav-list { flex: 1; justify-content: flex-start; }
.nav-item { flex: none; }
.nav-link { padding: 0 9px; font-size: 14px; font-weight: 750; letter-spacing: 0; white-space: nowrap; }
.nav-list .nav-item:first-child .nav-link { padding-left: 0; padding-right: 16px; }
.welcome-link { color: #49d4ff; }
.nav-link::after { right: 9px; bottom: 5px; left: 9px; }
.desktop-search { width: 140px; min-height: 48px; display: flex; align-items: center; gap: 6px; border: 0; padding: 0 18px; background: #dedede; color: #626262; font-size: 12px; text-align: left; }
.desktop-search svg { width: 18px; }
.mega-menu { top: 100%; padding: 30px max(24px, calc((100vw - 1170px)/2)); }
.mobile-header { min-height: 59px; padding: 7px 10px; }
.mobile-header > .icon-button { justify-self: start; }
.mobile-actions { margin-left: auto; }
.mobile-actions .icon-button { width: 34px; }
.mobile-header .header-logo { margin-left: 38px; }
.mobile-header .header-logo img { width: 155px; }

/* Homepage */
.us-home-hero { position: relative; height: 514px; overflow: hidden; background: #111; color: #fff; }
.us-home-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.34), rgba(0,0,0,0) 62%); content: ""; pointer-events: none; }
.us-home-hero video { width: 100%; height: 100%; display: block; object-fit: cover; }
.us-home-hero-copy { position: absolute; z-index: 2; top: 50%; left: max(32px, calc((100vw - 1170px)/2)); width: 650px; transform: translateY(-42%); }
.us-home-hero-copy h1 { margin-bottom: 14px; font-size: 40px; line-height: 1.38; }
.us-home-hero-copy p { margin-bottom: 40px; font-size: 16px; }
.us-home-hero-copy .btn { width: 170px; }
.video-control { position: absolute; z-index: 3; bottom: 20px; left: 20px; width: 41px; height: 41px; border: 3px solid #087fa2; border-radius: 50%; background: #fff; color: #087fa2; font-size: 13px; font-weight: 800; }
.us-welcome { position: relative; height: 280px; overflow: hidden; }
.us-welcome picture, .us-welcome img { width: 100%; height: 100%; display: block; object-fit: cover; }
.us-welcome-copy { position: absolute; top: 50%; left: max(32px, calc((100vw - 1170px)/2)); transform: translateY(-48%); }
.us-welcome-copy h2 { margin-bottom: 8px; font-size: 29px; }
.us-welcome-copy p { margin-bottom: 36px; font-size: 16px; line-height: 1.45; }
.us-welcome-copy .btn { width: 170px; border-color: #111; color: #111; }
.us-welcome-copy .btn:hover { background: #111; color: #fff; }
.home-science { padding: 46px 0 30px; text-align: center; }
.home-science h2 { margin-bottom: 6px; font-size: 30px; }
.home-science strong { display: block; margin-bottom: 22px; font-size: 13px; }
.home-science p { margin-bottom: 22px; font-size: 12px; }
.home-products { padding: 4px 0 56px; }
.home-products .product-carousel { border: 0; }
.center-action { margin-top: 32px; text-align: center; }
.home-services { padding: 58px 0 64px; border-top: 1px solid #eee; }
.home-heading { margin-bottom: 38px; text-align: center; }
.home-heading h2 { margin-bottom: 12px; }
.home-heading p { font-size: 12px; }
.home-services .content-cards { gap: 16px; }
.home-services .content-card-body { padding: 16px 0 0; }
.home-services .content-card img { aspect-ratio: 1.46; }
.home-services .content-card h3 { font-size: 14px; }
.home-services .content-card p, .home-services .content-card .eyebrow { font-size: 10px; }
.home-brand { height: 550px; display: grid; grid-template-columns: 1fr 1fr; background: #121212; color: #fff; }
.home-brand-copy { display: grid; align-content: center; padding: 60px max(40px, calc((100vw - 1170px)/2)); padding-right: 60px; }
.home-brand-copy h2 { margin-bottom: 20px; font-size: 32px; }
.home-brand-copy p { max-width: 500px; margin-bottom: 30px; font-size: 13px; }
.home-brand-media { position: relative; overflow: hidden; }
.home-brand-media img { width: 100%; height: 100%; object-fit: cover; }
.large-play { position: absolute; top: 50%; left: 50%; width: 55px; height: 55px; display: grid; place-items: center; border: 3px solid #fff; border-radius: 50%; font-size: 23px; transform: translate(-50%,-50%); }
.home-locator { min-height: 380px; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: #f6f6f6; }
.home-locator > div { display: grid; align-content: center; padding: 60px max(40px, calc((100vw - 1170px)/2)); padding-right: 40px; }
.home-locator h2 { margin-bottom: 10px; }
.home-locator p { margin-bottom: 24px; font-size: 12px; }
.home-locator img { width: 100%; height: 100%; object-fit: cover; }
.home-pair { min-height: 545px; display: grid; grid-template-columns: .8fr 1fr 70px 1fr; align-items: center; gap: 0; padding: 55px max(32px, calc((100vw - 1170px)/2)); background: #121212; color: #fff; }
.home-pair-intro h2 { margin-bottom: 26px; font-size: 27px; }
.pair-card { align-self: stretch; display: grid; grid-template-rows: 45px 1fr 45px; padding: 0 12px; font-size: 12px; }
.pair-card strong { align-self: center; text-align: center; }
.pair-card img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.pair-card span { align-self: center; font-size: 11px; text-decoration: underline; }
.home-pair .pair-plus { border-color: #fff; }
.home-impact { position: relative; height: 475px; overflow: hidden; color: #fff; }
.home-impact::after { position: absolute; inset: 0; background: rgba(0,0,0,.25); content: ""; }
.home-impact > img { width: 100%; height: 100%; object-fit: cover; }
.home-impact > div { position: absolute; z-index: 2; top: 50%; left: max(32px, calc((100vw - 1170px)/2)); transform: translateY(-50%); }
.home-impact h2 { margin-bottom: 14px; font-size: 36px; }
.home-impact p { margin-bottom: 28px; }
.home-advice { padding: 70px 0 35px; }
.advice-layout { display: grid; grid-template-columns: 270px 1fr; gap: 30px; }
.advice-intro { align-self: end; padding-bottom: 14px; }
.advice-intro h2 { margin-bottom: 10px; }
.advice-intro p { margin-bottom: 24px; font-size: 12px; }
.advice-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.advice-cards .content-card img { aspect-ratio: 1.3; }
.advice-cards .content-card-body { padding: 12px 0; }
.advice-cards .content-card h3 { font-size: 13px; }
.advice-cards .content-card p { display: none; }
.advice-cards .eyebrow, .advice-cards .text-link { font-size: 9px; }
.also-interest { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 70px; font-size: 10px; text-transform: uppercase; }
.also-interest a { text-decoration: underline; }

/* Product cards + collection pages */
.product-grid, .product-carousel { gap: 0; border: 0; background: #fff; }
.product-carousel { grid-auto-columns: 25%; }
.product-card { padding: 14px 16px 20px; }
.product-card-media { overflow: visible; margin-bottom: 24px; background: #fff; }
.product-card-media::after { position: absolute; right: 0; bottom: -11px; left: 0; height: 4px; background: linear-gradient(90deg, #087fa2 0 25%, #a5a5a5 25%); content: ""; }
.product-badge { top: 0; left: 0; padding: 0; background: transparent; color: #007a9e; font-size: 11px; }
.product-card .wishlist { top: 0; right: 0; border: 1px solid #ddd; }
.product-card h3 { min-height: 38px; margin-bottom: 8px; font-size: 14px; }
.product-tagline { min-height: 38px; margin-bottom: 10px; font-size: 11px; }
.product-price { font-size: 12px; }
.product-card .btn { min-height: 38px; background: #111; color: #fff; }
.collection-hero { position: relative; height: 268px; overflow: hidden; color: #fff; }
.collection-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.4), transparent 60%); content: ""; }
.collection-hero > img { width: 100%; height: 100%; object-fit: cover; }
.collection-hero > div { position: absolute; z-index: 2; top: 50%; left: max(32px, calc((100vw - 950px)/2)); width: 470px; transform: translateY(-50%); }
.collection-hero h1 { margin-bottom: 26px; font-size: 39px; }
.collection-hero p { max-width: 460px; font-size: 14px; }
.collection-hero a { display: inline-block; margin-top: 4px; font-size: 14px; font-weight: 700; text-decoration: underline; text-transform: uppercase; }
.collection-hero--light, .collection-hero:has(> img[alt="Advanced Skincare Backed by Science"]) { color: #111; }
.collection-hero--light::after, .collection-hero:has(> img[alt="Advanced Skincare Backed by Science"])::after { background: linear-gradient(90deg, rgba(240,237,242,.92), rgba(240,237,242,.15) 65%); }
.breadcrumb { min-height: 78px; align-items: center; padding: 20px 0; color: #111; font-size: 11px; text-decoration: none; }
.breadcrumb > span:nth-child(even) { font-size: 22px; }
.collection-section { padding: 0 0 58px; }
.collection-toolbar { min-height: 51px; display: grid; grid-template-columns: 1fr auto 210px 184px; align-items: center; gap: 0; margin-bottom: 0; background: #f1f1f1; color: #555; }
.collection-toolbar > * { height: 51px; display: flex; align-items: center; padding: 0 16px; border-right: 12px solid #fff; }
.collection-toolbar strong { color: #087fa2; font-size: 16px; font-weight: 500; }
.collection-toolbar select { flex: 1; border: 0; background: transparent; }
.collection-toolbar button { border: 0; background: #f1f1f1; font-size: 11px; }
.collection-layout { display: grid; grid-template-columns: 275px 1fr; gap: 26px; padding-top: 0; }
.filter-sidebar { padding-top: 0; }
.filter-sidebar h2 { min-height: 50px; display: flex; align-items: center; border-bottom: 1px solid #111; font-size: 20px; font-weight: 400; }
.filter-sidebar > button { width: 100%; min-height: 50px; display: flex; justify-content: space-between; align-items: center; border: 0; border-bottom: 1px solid #d0d0d0; padding: 0; background: transparent; font-size: 16px; text-align: left; }
.filter-sidebar label { display: block; margin-top: 18px; }
.filter-sidebar .filter-search { width: 100%; }
.collection-layout .product-grid { grid-template-columns: repeat(3,1fr); }
.collection-education { padding: 58px 0; background: #f4f4f4; text-align: center; }
.collection-education h2 { margin-bottom: 15px; }
.collection-education p { max-width: 760px; margin: 0 auto 24px; }
.concern-summary { padding: 22px 0 44px; text-align: center; }
.concern-summary h2 { margin-bottom: 12px; }

/* PDP */
.pdp { grid-template-columns: 1.15fr 1fr; gap: 65px; padding: 34px 0 78px; }
.pdp-gallery { grid-template-columns: 70px 1fr; gap: 22px; }
.pdp-thumbs { gap: 10px; }
.pdp-thumb { width: 70px; height: 70px; border-color: #eee; }
.pdp-main-image { background: #fff; }
.pdp-main-image img { aspect-ratio: 1; }
.pdp-main-image .product-badge { top: 14px; left: 2px; }
.pdp-main-image .wishlist { top: 4px; right: 4px; }
.pdp-info { top: 150px; padding: 5px 0; }
.pdp-formula-badge { display: inline-block; margin-bottom: 14px; padding: 7px 10px; border-radius: 5px; background: #087fa2; color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.pdp-info h1 { margin-bottom: 20px; font-size: 32px; }
.pdp-info .lede { margin-bottom: 18px; color: #111; font-size: 14px; }
.pdp-info .rating { margin: 20px 0 3px; font-size: 13px; }
.pdp-info .stars { color: #087fa2; font-size: 18px; }
.pdp-info > small { font-size: 11px; }
.pdp-description { margin: 18px 0; }
.pdp-description a { text-decoration: underline; }
.recommended { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px 18px; margin: 18px 0; font-size: 12px; }
.recommended strong { grid-column: 1 / -1; text-transform: uppercase; }
.pdp-option { margin: 16px 0; }
.size-option { min-width: 110px; min-height: 50px; align-items: center; border-color: #087fa2; background: #d8eff4; font-size: 11px; }
.subscription-callout { margin: 14px 0; border: 1px solid #111; border-radius: 4px; padding: 8px 12px; }
.quantity-row { grid-template-columns: 104px 1fr; margin-top: 40px; }
.quantity { position: relative; min-height: 50px; grid-template-columns: 34px 1fr 34px; }
.quantity label { position: absolute; top: -12px; left: 7px; padding: 0 4px; background: #fff; color: #777; font-size: 11px; }
.quantity-row .btn { background: #087fa2; border-color: #087fa2; }
.pdp-price { margin: 15px 0 4px; font-size: 15px; }
.pdp-benefits { border-top: 1px solid #eee; text-align: center; }
.pdp-benefits .section-head { justify-content: center; }
.pdp-benefits .benefit-grid { border-color: #ddd; }
.pdp-benefits .benefit { min-height: 180px; border-color: #ddd; }
.pdp-benefits .benefit-icon { color: #087fa2; }

/* Services, about, support, account */
.services-reference-hero { position: relative; height: 376px; overflow: hidden; background: #000; color: #fff; }
.services-reference-hero img { width: 100%; height: 100%; object-fit: cover; }
.services-reference-hero > div { position: absolute; top: 50%; left: max(32px, calc((100vw - 1170px)/2)); width: 580px; transform: translateY(-50%); }
.services-reference-hero h1 { margin: 15px 0 20px; font-size: 34px; }
.services-reference-hero p { font-size: 16px; line-height: 1.5; }
.services-tabs { min-height: 71px; display: flex; align-items: center; justify-content: center; gap: 70px; background: #f5f5f5; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.services-catalog { padding: 68px 0; }
.services-catalog > .container { display: grid; grid-template-columns: 280px 1fr; gap: 20px; }
.services-lead { display: grid; align-items: center; padding: 34px; background: #111; color: #fff; }
.services-lead h2 { font-size: 32px; line-height: 1.45; }
.services-catalog .content-cards { gap: 16px; }
.about-story { width: min(calc(100% - 32px), 1170px); margin: 50px auto; }
.about-story article { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 480px; }
.about-story article > div { display: grid; align-content: center; padding: 55px 100px; }
.about-story article h2 { margin-bottom: 18px; }
.about-story article img { width: 100%; height: 100%; object-fit: cover; }
.about-milestones { padding: 58px 0; background: #f4f4f4; }
.about-milestones h2 { margin-bottom: 38px; text-align: center; }
.about-milestones .container > div { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 55px; }
.about-milestones img { width: 100%; }
.about-milestones strong { font-size: 46px; }
.about-partners { width: min(calc(100% - 32px),1170px); margin: 50px auto; }
.support-page { display: grid; grid-template-columns: 374px 1fr; gap: 44px; padding: 0 0 70px; }
.support-page aside { display: grid; align-content: start; }
.support-page aside a { min-height: 51px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; padding: 12px 16px; background: #f5f5f5; font-size: 16px; }
.support-page aside a.is-active { color: #087fa2; font-weight: 700; }
.support-page article h1 { margin-bottom: 38px; font-size: 34px; }
.support-page article > p { margin-bottom: 24px; font-style: italic; }
.support-page article section h2 { margin: 22px 0 5px; color: #087fa2; font-size: 14px; }
.support-page article section p { font-size: 14px; line-height: 1.28; }
.account-page { display: grid; grid-template-columns: 413px 1fr; gap: 84px; padding: 10px 0 85px; }
.account-page h1, .account-page h2 { margin-bottom: 17px; font-size: 32px; font-weight: 400; }
.account-page p { margin-bottom: 22px; }
.account-page input:not([type="checkbox"]), .account-page select { width: 100%; min-height: 41px; margin-bottom: 18px; border: 1px solid #111; padding: 9px 14px; background: #fff; }
.account-options { display: flex; justify-content: space-between; margin-bottom: 23px; }
.account-page a { text-decoration: underline; }
.account-login .btn { margin-bottom: 22px; }
.or { position: relative; margin: 22px 0; border-top: 1px solid #aaa; text-align: center; }
.or span { position: relative; top: -11px; padding: 0 15px; background: #fff; }
.social-login { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.social-login button { min-height: 41px; border: 0; background: #087fa2; color: #fff; font-weight: 700; text-transform: uppercase; }
.account-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.birthday-fields { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.account-consent { display: flex; gap: 12px; margin: 0 10px 22px; }
.account-consent input { flex: 0 0 auto; }
.treatment-directory { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.treatment-directory a { display: grid; gap: 10px; font-weight: 700; }
.treatment-directory img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* Footer + fixed rails */
.site-footer { padding: 0 0 18px; background: #111112; }
.footer-services { display: grid; grid-template-columns: repeat(4,1fr) 1.9fr; background: #303033; }
.footer-services > * { min-height: 125px; display: grid; align-content: center; justify-items: center; gap: 8px; border-right: 1px solid #444; padding: 18px; text-align: center; }
.footer-services > *:last-child { justify-items: start; background: #111112; text-align: left; }
.footer-services span { font-size: 24px; }
.footer-services strong { font-size: 11px; }
.footer-services small { color: #aaa; font-size: 10px; }
.footer-main { padding-top: 45px; }
.footer-logo { display: inline-block; margin-bottom: 35px; }
.footer-logo img { width: 230px; }
.footer-grid { grid-template-columns: repeat(5,1fr) 1.65fr; gap: 28px; }
.footer-col h3, .footer-signup h3 { margin-bottom: 13px; font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.footer-col ul { gap: 6px; }
.footer-col a, .footer-signup { font-size: 9px; }
.footer-signup p { margin-bottom: 12px; color: #bbb; }
.footer-signup .newsletter-form { display: grid; gap: 8px; border: 0; }
.footer-signup .newsletter-form input { min-height: 30px; border: 1px solid #aaa; padding: 5px 8px; background: #fff; color: #111; }
.footer-signup .newsletter-form button { width: 100px; min-height: 33px; margin-top: 5px; border: 1px solid #aaa; padding: 5px; }
.footer-signup .social-links { margin: 18px 0; }
.footer-signup .social-links a { width: 22px; height: 22px; font-size: 9px; }
.footer-signup .footer-region { width: 100%; margin: 0; border: 1px solid #555; padding: 8px; text-align: left; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 4px 13px; margin-top: 35px; padding: 12px 0; border-top: 1px solid #444; border-bottom: 1px solid #444; color: #aaa; font-size: 8px; }
.footer-bottom { margin-top: 15px; padding: 0; border: 0; font-size: 8px; }
.bottom-rail { position: fixed; z-index: 180; right: 0; bottom: 0; left: 0; height: 42px; display: grid; grid-template-columns: 1fr 1fr 1fr; background: #111; color: #fff; }
.bottom-rail a { display: grid; place-items: center; border-right: 1px solid #777; font-size: 12px; }
.cookie-banner { z-index: 181; right: 0; bottom: 42px; left: 0; min-height: 80px; border: 0; padding: 15px 32px; background: rgba(38,42,47,.97); color: #fff; box-shadow: none; font-size: 12px; }
.cookie-banner > span { max-width: 780px; }
.cookie-banner a, .cookie-actions button:first-child { color: #fff; font-weight: 700; text-decoration: underline; }
.cookie-actions { align-items: center; gap: 34px; }
.cookie-actions button { border: 0; background: transparent; color: #fff; font-size: 16px; }
.cookie-actions button:last-child { font-size: 28px; }
.toast { bottom: 55px; }

@media (min-width: 1024px) {
  .header-main, .nav-row { display: grid; }
  .mobile-header { display: none; }
}

@media (max-width: 1023px) {
  body { padding-bottom: 42px; }
  .header-main, .nav-row { display: none; }
  .mobile-header { display: flex; }
  .site-header { position: sticky; }
  .promo-bar { min-height: 56px; grid-template-columns: 25px 1fr 25px; padding: 0 12px; }
  .promo-bar .promo-spacer { display: none; }
  .promo-bar a { max-width: 290px; line-height: 1.35; }
  .mobile-header { position: relative; }
  .mobile-header .header-logo { position: absolute; left: 50%; margin: 0; transform: translateX(-50%); }
  .mobile-header .header-logo img { width: 155px; }
  .us-home-hero { height: 576px; }
  .us-home-hero::after { background: linear-gradient(0deg, rgba(0,0,0,.82), transparent 65%); }
  .us-home-hero video { object-fit: cover; }
  .us-home-hero-copy { top: auto; right: 15px; bottom: 42px; left: 15px; width: auto; transform: none; }
  .us-home-hero-copy h1 { margin-bottom: 10px; font-size: 25px; line-height: 1.32; }
  .us-home-hero-copy h1 br, .us-home-hero-copy p br { display: none; }
  .us-home-hero-copy p { margin-bottom: 33px; font-size: 14px; }
  .us-home-hero-copy .btn { width: 169px; }
  .video-control { bottom: 9px; left: 10px; }
  .us-welcome { height: 252px; }
  .us-welcome-copy { top: 25px; left: 15px; width: 50%; transform: none; }
  .us-welcome-copy h2 { font-size: 22px; line-height: 1.35; }
  .us-welcome-copy p { display: none; }
  .us-welcome-copy .btn { margin-top: 18px; }
  .home-science { padding: 38px 15px; }
  .home-science h2 { font-size: 24px; }
  .home-products .product-carousel { grid-auto-columns: 72%; }
  .home-services { padding: 45px 0; }
  .home-heading h2 br { display: none; }
  .home-brand { height: auto; grid-template-columns: 1fr; }
  .home-brand-copy { order: 2; padding: 42px 24px 55px; }
  .home-brand-media { min-height: 330px; }
  .home-locator { grid-template-columns: 1fr; }
  .home-locator > div { padding: 42px 24px; }
  .home-locator img { min-height: 230px; }
  .home-pair { grid-template-columns: 1fr 1fr; gap: 18px; padding: 45px 16px; }
  .home-pair-intro { grid-column: 1 / -1; }
  .home-pair .pair-plus { display: none; }
  .pair-card { padding: 0; }
  .pair-card img { min-height: 180px; }
  .home-impact { height: 420px; }
  .home-impact > div { right: 20px; left: 20px; }
  .advice-layout { grid-template-columns: 1fr; }
  .advice-cards { grid-template-columns: 1fr 1fr; }
  .collection-hero { height: 350px; }
  .collection-hero > div { left: 24px; width: min(470px, calc(100% - 48px)); }
  .collection-layout { grid-template-columns: 230px 1fr; }
  .collection-layout .product-grid { grid-template-columns: repeat(2,1fr); }
  .services-tabs { gap: 26px; padding: 0 20px; overflow-x: auto; justify-content: flex-start; white-space: nowrap; }
  .services-catalog > .container { grid-template-columns: 1fr; }
  .services-lead h2 br { display: none; }
  .about-story article > div { padding: 45px; }
  .support-page { grid-template-columns: 280px 1fr; gap: 30px; }
  .account-page { grid-template-columns: 1fr 1.35fr; gap: 44px; }
  .footer-grid { grid-template-columns: repeat(3,1fr); }
  .footer-signup { grid-column: span 2; }
}

@media (max-width: 650px) {
  body { font-size: 14px; }
  .container, .container--narrow { width: calc(100% - 30px); }
  .mobile-header { min-height: 59px; padding: 7px 8px; }
  .mobile-header .header-logo { margin: 0; }
  .mobile-header .header-logo img { width: 154px; }
  .mobile-actions .icon-button { width: 31px; }
  .home-science p br { display: none; }
  .home-products { padding-bottom: 40px; }
  .home-services .content-cards { grid-template-columns: 1fr; }
  .home-brand-copy h2 { font-size: 27px; }
  .home-pair { grid-template-columns: 1fr; }
  .home-pair-intro, .home-pair .pair-card { grid-column: 1; }
  .advice-cards { grid-template-columns: 1fr; }
  .also-interest { align-items: flex-start; flex-direction: column; margin-top: 35px; }
  .collection-hero { height: 385px; }
  .collection-hero h1 { margin-bottom: 18px; font-size: 31px; }
  .collection-hero p { font-size: 13px; }
  .breadcrumb { min-height: 70px; padding: 14px 0; }
  .collection-toolbar { grid-template-columns: 1fr auto; margin-inline: -15px; }
  .collection-toolbar strong { grid-column: 1; }
  .collection-toolbar .results-count { grid-column: 2; }
  .collection-toolbar label, .collection-toolbar button { display: none; }
  .collection-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .collection-layout .product-grid { grid-template-columns: repeat(2,1fr); }
  .collection-layout .product-card { padding: 10px 8px 20px; }
  .collection-layout .product-card .btn { display: none; }
  .pdp { display: flex; flex-direction: column; gap: 20px; padding-top: 22px; }
  .pdp-info { order: -1; }
  .pdp-info h1 { font-size: 20px; }
  .pdp-info .pdp-description, .pdp-info .recommended, .pdp-info .pdp-option, .pdp-info .subscription-callout, .pdp-info .quantity-row, .pdp-info .pdp-price, .pdp-info .pdp-note { display: none; }
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-thumbs { order: 2; grid-template-columns: repeat(5,64px); overflow-x: auto; }
  .pdp-thumb { width: 64px; height: 64px; }
  .pdp-main-image .product-badge { top: 14px; }
  .pdp-main-image img { min-height: 440px; }
  .pdp-benefits { padding-top: 45px; }
  body:has(.sticky-buy) .bottom-rail { display: none; }
  .sticky-buy { z-index: 220; bottom: 0; min-height: 50px; padding: 0; }
  .sticky-buy .btn { min-height: 50px; background: #087fa2; border-color: #087fa2; }
  .services-reference-hero { height: 520px; }
  .services-reference-hero img { object-position: 68% center; opacity: .78; }
  .services-reference-hero > div { top: auto; right: 20px; bottom: 35px; left: 20px; width: auto; transform: none; }
  .services-reference-hero h1 { font-size: 29px; }
  .services-reference-hero p { font-size: 14px; }
  .services-tabs { min-height: 58px; gap: 25px; }
  .services-catalog .content-cards { grid-template-columns: 1fr; }
  .about-story article { grid-template-columns: 1fr; min-height: 0; }
  .about-story article:nth-child(odd) > div { order: 2; }
  .about-story article > div { padding: 35px 22px 48px; }
  .about-story article img { min-height: 310px; }
  .about-milestones .container > div { grid-template-columns: 1fr; }
  .support-page { grid-template-columns: 1fr; gap: 30px; }
  .support-page aside { display: none; }
  .support-page article h1 { font-size: 30px; }
  .account-page { grid-template-columns: 1fr; gap: 58px; }
  .account-fields { grid-template-columns: 1fr; }
  .birthday-fields { gap: 8px; }
  .footer-services { grid-template-columns: 1fr 1fr; }
  .footer-services > *:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-signup { grid-column: 1 / -1; }
  .footer-legal-links { line-height: 1.7; }
  .bottom-rail { grid-template-columns: 1fr 1fr; }
  .bottom-rail a:first-child { display: none; }
  .bottom-rail a { font-size: 12px; }
  .cookie-banner { align-items: flex-start; bottom: 42px; padding: 14px 18px; }
  .cookie-actions { justify-content: space-between; }
}

/* ARTUP brand story */
.artup-story-page main {
  overflow: hidden;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}
.artup-story-page .breadcrumb { background: #fff; }
.artup-kicker,
.artup-index {
  display: block;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.artup-story-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 34%, rgba(75, 222, 220, .16), transparent 27%),
    linear-gradient(125deg, #061719 0%, #092b2f 55%, #104a51 100%);
  color: #fff;
  isolation: isolate;
}
.artup-story-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}
.artup-story-hero__inner {
  width: min(calc(100% - 48px), 1170px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 55px;
  margin: 0 auto;
  padding: 74px 0 82px;
}
.artup-story-hero__copy { position: relative; z-index: 2; }
.artup-story-hero__copy .artup-kicker { margin-bottom: 38px; color: #9edee1; }
.artup-wordmark {
  display: block;
  margin-bottom: 22px;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: .42em;
}
.artup-story-hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(46px, 4.35vw, 62px);
  font-weight: 620;
  letter-spacing: -.055em;
  line-height: 1.12;
}
.artup-story-hero__copy > p {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: 17px;
  line-height: 1.85;
}
.artup-climate-art {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}
.artup-climate-art::before,
.artup-climate-art::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}
.artup-climate-art::before { inset: 9%; border: 1px dashed rgba(255,255,255,.22); }
.artup-climate-art::after { inset: 34%; background: radial-gradient(circle at 35% 30%, #d7ffff, #62bbc0 58%, #17626a); filter: blur(1px); box-shadow: 0 0 80px rgba(111, 235, 231, .22); }
.artup-orbit { position: absolute; z-index: 1; inset: 19%; border: 1px solid rgba(172,241,240,.35); border-radius: 50%; transform: rotate(28deg) scaleY(.42); }
.artup-orbit--two { inset: 27%; border-color: rgba(255,197,92,.38); transform: rotate(-38deg) scaleY(.45); }
.artup-sun { position: absolute; top: 6%; right: 7%; width: 82px; height: 82px; border-radius: 50%; background: #f7a841; box-shadow: 0 0 55px rgba(247,168,65,.45); }
.artup-bottle {
  position: absolute;
  z-index: 3;
  top: 21%;
  left: 50%;
  width: 128px;
  height: 260px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 60px 60px 25px 25px;
  background: linear-gradient(145deg, rgba(255,255,255,.28), rgba(255,255,255,.07));
  box-shadow: inset 14px 0 22px rgba(255,255,255,.1), 0 35px 55px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  transform: translateX(-50%);
}
.artup-bottle::before { position: absolute; top: -52px; width: 62px; height: 68px; border-radius: 7px 7px 2px 2px; background: #0b1214; box-shadow: inset 0 -8px rgba(255,255,255,.08); content: ""; }
.artup-bottle small { margin-bottom: 10px; font-size: 7px; letter-spacing: .14em; }
.artup-bottle strong { font-size: 20px; letter-spacing: .24em; text-indent: .24em; }
.artup-bottle span { margin-top: 8px; font-size: 7px; letter-spacing: .12em; }
.artup-temp { position: absolute; z-index: 4; padding: 13px 16px; border: 1px solid rgba(255,255,255,.3); background: rgba(3,18,20,.7); backdrop-filter: blur(8px); }
.artup-temp strong { display: block; margin-bottom: 4px; font-size: 24px; line-height: 1; }
.artup-temp span { display: block; color: rgba(255,255,255,.65); font-size: 8px; letter-spacing: .11em; line-height: 1.45; }
.artup-temp--hot { top: 18%; left: -5%; border-color: rgba(247,168,65,.55); }
.artup-temp--hot strong { color: #ffc266; }
.artup-temp--cold { right: -5%; bottom: 20%; border-color: rgba(148,235,244,.55); }
.artup-temp--cold strong { color: #9ce9ee; }
.artup-equator { position: absolute; right: 0; bottom: -31px; left: 0; color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .25em; text-align: center; }

.artup-manifesto {
  padding: 115px 0;
  background: #eef7f4;
  text-align: center;
}
.artup-manifesto .artup-kicker { margin-bottom: 30px; color: #167682; }
.artup-manifesto h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: 1.12;
}
.artup-manifesto p { margin: 0; color: #426165; font-size: 17px; letter-spacing: .05em; }

.artup-chapter { padding: 120px 0; }
.artup-chapter__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; }
.artup-chapter__title .artup-index { margin-bottom: 26px; color: #168291; }
.artup-chapter__title h2 { font-size: clamp(37px, 4vw, 58px); font-weight: 570; line-height: 1.22; }
.artup-chapter__title h2 > span,
.artup-mission h2 > span { display: block; white-space: nowrap; }
.artup-story-copy p { color: #333; font-size: 17px; line-height: 2; }
.artup-story-copy .artup-lead { color: #111; font-size: 23px; font-weight: 620; line-height: 1.65; }
.artup-story-copy .artup-emphasis { margin-top: 34px; padding: 26px 30px; border-left: 4px solid #118495; background: #edf6f5; color: #0a4a53; font-size: 20px; font-weight: 650; line-height: 1.7; }
.artup-climate-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 76px; border-top: 1px solid #b9c8c7; border-bottom: 1px solid #b9c8c7; }
.artup-climate-grid article { min-height: 230px; padding: 36px; border-right: 1px solid #b9c8c7; }
.artup-climate-grid article:last-child { border-right: 0; }
.artup-climate-grid article > span { color: #168291; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.artup-climate-grid strong { display: block; margin: 15px 0 27px; font-size: 52px; font-weight: 520; letter-spacing: -.05em; }
.artup-climate-grid p { max-width: 280px; margin: 0; color: #526165; font-size: 14px; line-height: 1.8; }

.artup-research { background: #f3f1ea; }
.artup-formula-panel { display: grid; grid-template-columns: 330px 1fr; gap: 70px; align-items: center; margin-top: 80px; padding: 65px; background: #082d32; color: #fff; }
.artup-formula-seal { position: relative; width: 245px; aspect-ratio: 1; display: grid; place-content: center; justify-self: center; border: 1px solid rgba(167,231,230,.58); border-radius: 50%; text-align: center; }
.artup-formula-seal::before,
.artup-formula-seal::after { position: absolute; border: 1px dashed rgba(167,231,230,.32); border-radius: 50%; content: ""; }
.artup-formula-seal::before { inset: 12px; }
.artup-formula-seal::after { inset: 32px; }
.artup-formula-seal span,
.artup-formula-seal small { position: relative; z-index: 1; color: #8fd6d7; font-size: 8px; letter-spacing: .2em; }
.artup-formula-seal strong { position: relative; z-index: 1; margin: 12px 0; font-size: 25px; letter-spacing: .08em; line-height: 1.05; }
.artup-formula-matrix > .artup-kicker { margin-bottom: 28px; color: #8fd6d7; }
.artup-formula-matrix > div { display: grid; grid-template-columns: repeat(3, 1fr); }
.artup-formula-matrix article { min-height: 210px; padding: 4px 24px 4px 0; border-right: 1px solid rgba(255,255,255,.2); }
.artup-formula-matrix article + article { padding-left: 24px; }
.artup-formula-matrix article:last-child { border-right: 0; }
.artup-formula-matrix article > span { color: #8fd6d7; font-size: 10px; letter-spacing: .16em; }
.artup-formula-matrix h3 { margin: 22px 0 17px; font-size: 20px; }
.artup-formula-matrix p { margin: 0; color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.8; }
.artup-sensory-line { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 25px; margin-top: 82px; }
.artup-sensory-line > div { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.artup-sensory-line span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: #158493; color: #fff; font-size: 10px; }
.artup-sensory-line strong { font-size: 20px; font-weight: 600; }
.artup-sensory-line i { height: 1px; background: #a8b8b4; }
.artup-sensory-copy { max-width: 810px; margin-top: 38px; margin-bottom: 0; color: #405b5e; font-size: 16px; line-height: 1.9; text-align: center; }

.artup-mission { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; background: #061719; color: #fff; }
.artup-mission::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,23,25,.25), #061719 60%); content: ""; }
.artup-mission__glow { position: absolute; top: 50%; left: 8%; width: min(42vw, 540px); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transform: translateY(-50%); }
.artup-mission__glow::before { position: absolute; inset: 11%; border: 1px solid rgba(255,199,100,.25); border-radius: 50%; content: ""; }
.artup-mission__glow span { width: 56%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 38% 35%, #fff1c1, #ed9c3f 48%, #ce622f 75%, transparent 76%); box-shadow: 0 0 95px rgba(239,152,54,.34); }
.artup-mission__glow strong { position: absolute; color: rgba(7,25,27,.88); font-size: clamp(32px, 4vw, 58px); letter-spacing: .25em; text-indent: .25em; }
.artup-mission__content { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; column-gap: 100px; padding: 110px 0; }
.artup-mission__content > .artup-index { grid-column: 2; margin-bottom: 25px; color: #8fd6d7; }
.artup-mission h2 { grid-column: 2; margin-bottom: 38px; font-size: clamp(42px, 4.2vw, 58px); font-weight: 540; line-height: 1.22; }
.artup-mission__copy { grid-column: 2; }
.artup-mission__copy p { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.95; }
.artup-defense-grid { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 35px; border-top: 1px solid rgba(255,255,255,.24); }
.artup-defense-grid > span { padding: 24px 16px 0 0; font-weight: 650; line-height: 1.55; }
.artup-defense-grid small { color: #8fd6d7; font-size: 8px; font-weight: 500; letter-spacing: .14em; }

.artup-closing { padding: 125px 0 145px; background: #d8eeee; text-align: center; }
.artup-closing .artup-wordmark { color: #0b6772; }
.artup-closing h2 { margin: 0 auto 32px; font-size: clamp(39px, 5.2vw, 68px); font-weight: 540; line-height: 1.28; }
.artup-closing p { margin: 0; color: #427479; font-size: 10px; font-weight: 750; letter-spacing: .24em; }

@media (max-width: 900px) {
  .artup-story-hero__inner { grid-template-columns: 1fr .78fr; gap: 20px; }
  .artup-story-hero h1 { font-size: 50px; }
  .artup-chapter__grid { gap: 45px; }
  .artup-formula-panel { grid-template-columns: 240px 1fr; gap: 35px; padding: 42px; }
  .artup-formula-seal { width: 200px; }
  .artup-mission__content { grid-template-columns: .7fr 1.3fr; gap: 50px; }
}

@media (max-width: 650px) {
  .artup-story-page .breadcrumb { min-height: 54px; }
  .artup-story-hero { min-height: 720px; align-items: stretch; }
  .artup-story-hero__inner { width: calc(100% - 30px); grid-template-columns: 1fr; align-content: start; padding: 54px 0 48px; }
  .artup-story-hero__copy .artup-kicker { margin-bottom: 24px; font-size: 9px; line-height: 1.5; }
  .artup-story-hero .artup-wordmark { margin-bottom: 17px; font-size: 15px; }
  .artup-story-hero h1 { margin-bottom: 20px; font-size: 37px; line-height: 1.2; }
  .artup-story-hero__copy > p { font-size: 14px; line-height: 1.75; }
  .artup-climate-art { width: 310px; margin: 40px auto 0; justify-self: center; }
  .artup-sun { width: 57px; height: 57px; }
  .artup-bottle { width: 83px; height: 170px; }
  .artup-bottle::before { top: -34px; width: 40px; height: 44px; }
  .artup-bottle strong { font-size: 13px; }
  .artup-temp { padding: 9px 10px; }
  .artup-temp strong { font-size: 18px; }
  .artup-temp span { font-size: 6px; }
  .artup-temp--hot { left: -1%; }
  .artup-temp--cold { right: -1%; }
  .artup-manifesto { padding: 76px 0; }
  .artup-manifesto h2 { font-size: 38px; line-height: 1.25; }
  .artup-manifesto p { font-size: 14px; }
  .artup-chapter { padding: 76px 0; }
  .artup-chapter__grid { grid-template-columns: 1fr; gap: 42px; }
  .artup-chapter__title h2 { font-size: 32px; }
  .artup-story-copy p { font-size: 15px; line-height: 1.9; }
  .artup-story-copy .artup-lead { font-size: 19px; }
  .artup-story-copy .artup-emphasis { margin-top: 26px; padding: 21px 20px; font-size: 17px; }
  .artup-climate-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .artup-climate-grid article { min-height: 0; padding: 27px 4px; border-right: 0; border-bottom: 1px solid #b9c8c7; }
  .artup-climate-grid article:last-child { border-bottom: 0; }
  .artup-climate-grid strong { margin: 9px 0 12px; font-size: 41px; }
  .artup-formula-panel { grid-template-columns: 1fr; gap: 46px; margin-top: 50px; padding: 45px 23px; }
  .artup-formula-seal { width: 190px; }
  .artup-formula-matrix > div { grid-template-columns: 1fr; }
  .artup-formula-matrix article,
  .artup-formula-matrix article + article { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .artup-formula-matrix article:last-child { border-bottom: 0; }
  .artup-formula-matrix h3 { margin: 10px 0; }
  .artup-sensory-line { grid-template-columns: 1fr; gap: 13px; margin-top: 48px; }
  .artup-sensory-line i { display: none; }
  .artup-sensory-line > div { padding: 7px 0; }
  .artup-sensory-copy { margin-top: 28px; font-size: 14px; text-align: left; }
  .artup-mission { min-height: 960px; align-items: end; }
  .artup-mission::before { background: linear-gradient(180deg, transparent 16%, #061719 47%); }
  .artup-mission__glow { top: 23%; left: 50%; width: 325px; transform: translate(-50%, -50%); }
  .artup-mission__content { width: calc(100% - 30px); grid-template-columns: 1fr; padding: 360px 0 75px; }
  .artup-mission__content > .artup-index,
  .artup-mission h2,
  .artup-mission__copy,
  .artup-defense-grid { grid-column: 1; }
  .artup-mission h2 { font-size: 32px; }
  .artup-mission__copy p { font-size: 14px; }
  .artup-defense-grid { grid-template-columns: 1fr; }
  .artup-defense-grid > span { border-bottom: 1px solid rgba(255,255,255,.18); }
  .artup-closing { padding: 82px 0 110px; }
  .artup-closing h2 { font-size: 35px; }
  .artup-closing p { font-size: 8px; line-height: 1.7; }
}
