:root {
  --navy-950: #060a11;
  --navy-900: #080d16;
  --navy-850: #0b111c;
  --navy-800: #0e1522;
  --navy-750: #121b2a;
  --navy-700: #172230;
  --paper: #f1f3f4;
  --mist: #c0c9d5;
  --muted: #8794a6;
  --champagne: #d8c49a;
  --champagne-light: #eadbbd;
  --line: rgba(216, 196, 154, .16);
  --line-strong: rgba(216, 196, 154, .38);
  --cool-line: rgba(192, 201, 213, .12);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shell: min(1380px, calc(100% - 64px));
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-900);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

/* Production 18+ gate. The existing app.js remembers confirmation for 30 days. */
.age-gate {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 9, 15, .91);
  backdrop-filter: blur(18px);
}

.age-gate.hidden {
  display: none;
}

.age-gate-box {
  width: min(470px, 100%);
  padding: clamp(36px, 6vw, 58px);
  border: 1px solid var(--line-strong);
  background: var(--navy-850);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .6);
  text-align: center;
}

.age-gate-box .brand-mark {
  margin-bottom: 22px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: .2em;
}

.age-gate-box .brand-mark .lure {
  color: var(--champagne);
}

.age-gate-box h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 7vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.age-gate-box p {
  max-width: 38ch;
  margin: 20px auto 30px;
  color: var(--mist);
  font-size: .9rem;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.age-button {
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.age-button--solid {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--navy-950);
}

.age-button:hover {
  border-color: var(--champagne-light);
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

p,
h1,
h2,
h3,
blockquote,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--champagne);
  color: var(--navy-950);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--champagne-light);
  outline-offset: 4px;
}

::selection {
  background: var(--champagne);
  color: var(--navy-950);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--champagne);
  font-size: .67rem;
  font-weight: 650;
  letter-spacing: .25em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

.announcement {
  position: relative;
  z-index: 201;
  display: grid;
  min-height: 31px;
  place-items: center;
  padding: 6px 24px;
  background: var(--champagne);
  color: #101621;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.announcement i {
  margin-inline: 10px;
  font-style: normal;
}

.site-header {
  position: sticky;
  z-index: 200;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 10, 17, .86);
  backdrop-filter: blur(22px) saturate(125%);
  transition: background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 10, 17, .95);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
}

.nav-shell {
  position: relative;
  display: grid;
  width: var(--shell);
  min-height: 78px;
  margin-inline: auto;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  column-gap: clamp(34px, 5vw, 82px);
}

.wordmark {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 500;
  letter-spacing: .23em;
  line-height: 1;
  white-space: nowrap;
}

.wordmark span {
  color: var(--champagne);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
}

.brand-logo {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border: 1px solid rgba(216, 196, 154, .32);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  object-fit: cover;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
}

.primary-nav > a,
.nav-trigger {
  position: relative;
  border: 0;
  background: transparent;
  color: #ccd3dd;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .17em;
  line-height: 78px;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav > a::after,
.nav-trigger::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  background: var(--champagne);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.primary-nav > a:hover,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  color: var(--paper);
}

.primary-nav > a:hover::after,
.nav-trigger:hover::after,
.nav-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-trigger span {
  display: inline-block;
  margin-left: 4px;
  color: var(--champagne);
  font-size: .8rem;
  transition: transform .25s ease;
}

.nav-trigger[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.header-help {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  color: var(--champagne-light);
  font-size: .64rem;
  font-weight: 650;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.header-help:hover {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--navy-950);
}

.nav-group {
  position: static;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: grid;
  visibility: hidden;
  padding: 42px 44px 46px;
  border: 1px solid var(--line);
  border-top: 0;
  background:
    radial-gradient(circle at 14% 5%, rgba(80, 110, 153, .12), transparent 32%),
    rgba(8, 13, 22, .985);
  box-shadow: 0 36px 70px rgba(0, 0, 0, .42);
  grid-template-columns: 1.55fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 70px);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu,
.mega-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mega-menu__intro {
  padding-right: 26px;
  border-right: 1px solid var(--line);
}

.mega-menu__intro h2 {
  margin: 13px 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.5vw, 2.55rem);
  font-weight: 400;
  line-height: 1.05;
}

.mega-menu__intro p,
.mega-menu__column p {
  color: var(--muted);
  font-size: .82rem;
}

.mega-menu__intro .text-link {
  margin-top: 20px;
}

.mega-menu__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.mega-label {
  margin-bottom: 4px;
  color: var(--champagne);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.mega-menu__column a {
  color: #d6dce4;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
  transition: color .2s ease, transform .2s ease;
}

.mega-menu__column a:hover {
  color: var(--champagne-light);
  transform: translateX(4px);
}

.mega-menu__column--quiet {
  padding-left: 6px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(770px, calc(100svh - 109px));
  overflow: hidden;
  align-items: center;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-color: #111a28;
  background-image:
    radial-gradient(circle at 76% 38%, rgba(232, 219, 189, .16), transparent 20%),
    linear-gradient(110deg, rgba(7, 11, 18, .18), rgba(7, 11, 18, .55)),
    url("/assets/generated/hero-inclusive.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  animation: hero-settle 1.8s var(--ease) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 9, 15, .94) 0%, rgba(5, 9, 15, .77) 39%, rgba(5, 9, 15, .23) 70%, rgba(5, 9, 15, .08) 100%),
    linear-gradient(0deg, rgba(6, 10, 17, .82) 0%, transparent 32%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -180px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(216, 196, 154, .1);
  border-radius: 50%;
  content: "";
}

.hero-content {
  width: min(1380px, calc(100% - 64px));
  margin: -12px auto 0;
}

.hero-content > * {
  animation: rise-in .8s var(--ease) both;
}

.hero-content > .eyebrow { animation-delay: .15s; }
.hero-content > h1 { animation-delay: .24s; }
.hero-content > p { animation-delay: .33s; }
.hero-content > .hero-actions { animation-delay: .42s; }
.hero-content > .hero-promises { animation-delay: .51s; }

.hero h1 {
  max-width: 760px;
  margin: 24px 0 25px;
  font-family: var(--serif);
  font-size: clamp(4.3rem, 8.2vw, 8.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .77;
}

.hero h1 em {
  color: var(--champagne-light);
  font-weight: 400;
}

.hero-content > p {
  max-width: 610px;
  color: #c6ced9;
  font-size: clamp(.98rem, 1.25vw, 1.16rem);
  font-weight: 350;
  letter-spacing: .01em;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid rgba(216, 196, 154, .65);
  background: transparent;
  color: var(--champagne-light);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.button:hover {
  border-color: var(--champagne);
  background: rgba(216, 196, 154, .07);
  transform: translateY(-2px);
}

.button--solid {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--navy-950);
}

.button--solid:hover {
  border-color: var(--champagne-light);
  background: var(--champagne-light);
  color: var(--navy-950);
}

.button--glass {
  border-color: rgba(241, 243, 244, .28);
  background: rgba(8, 13, 22, .2);
  color: var(--paper);
  backdrop-filter: blur(8px);
}

.button--glass:hover {
  border-color: rgba(241, 243, 244, .6);
  background: rgba(8, 13, 22, .5);
}

.hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 34px;
  color: #aeb8c5;
  font-size: .7rem;
  letter-spacing: .08em;
}

.hero-promises li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-promises li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--champagne);
  content: "";
  box-shadow: 0 0 0 4px rgba(216, 196, 154, .08);
}

.scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(241, 243, 244, .65);
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: .22em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  display: block;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(241, 243, 244, .22);
}

.scroll-cue i::after {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--champagne);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 74px);
  grid-template-columns: 1.25fr .75fr;
  gap: 32px;
}

.section-heading h2,
.material-lead h2,
.review-header h2,
.private-help h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .96;
}

.section-heading > p {
  max-width: 520px;
  justify-self: end;
  color: var(--muted);
  font-size: .94rem;
}

.sensation-section {
  position: relative;
  background:
    radial-gradient(circle at 94% 4%, rgba(66, 96, 135, .11), transparent 30%),
    var(--navy-900);
}

.sensation-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.sensation-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(370px, 31vw, 470px);
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-color: rgba(18, 27, 42, .62);
  background-position: 64% center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-end;
  transition: filter .4s ease, transform .4s var(--ease);
}

.sensation-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 15, .94) 0%, rgba(5, 9, 15, .78) 44%, rgba(5, 9, 15, .28) 100%),
    linear-gradient(0deg, rgba(5, 9, 15, .94) 0%, rgba(5, 9, 15, .18) 58%, rgba(5, 9, 15, .42) 100%);
  content: "";
  transition: background .45s ease;
}

.sensation-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid transparent;
  box-shadow: inset 0 0 0 0 rgba(216, 196, 154, 0);
  content: "";
  transition: border-color .4s ease, box-shadow .4s ease;
}

.sensation-card:hover {
  z-index: 1;
  filter: saturate(1.08) brightness(1.06);
  transform: translateY(-5px);
}

.sensation-card:hover::before {
  background:
    linear-gradient(90deg, rgba(5, 9, 15, .9) 0%, rgba(5, 9, 15, .68) 44%, rgba(5, 9, 15, .14) 100%),
    linear-gradient(0deg, rgba(5, 9, 15, .92) 0%, rgba(5, 9, 15, .1) 60%, rgba(5, 9, 15, .34) 100%);
}

.sensation-card:hover::after {
  border-color: rgba(216, 196, 154, .38);
  box-shadow: inset 0 0 42px rgba(216, 196, 154, .06);
}

.sensation-card--vibrators { background-image: url("/assets/generated/sensation-vibrators.webp"); }
.sensation-card--strokers { background-image: url("/assets/generated/sensation-strokers.webp"); }
.sensation-card--anal { background-image: url("/assets/generated/sensation-anal.webp"); }
.sensation-card--strapons { background-image: url("/assets/generated/sensation-strapons.webp"); }
.sensation-card--chastity { background-image: url("/assets/generated/sensation-chastity.webp"); }
.sensation-card--bondage { background-image: url("/assets/generated/sensation-bondage.webp"); }

.sensation-number {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: .78rem;
  font-style: italic;
  letter-spacing: .08em;
}

.sensation-icon {
  position: absolute;
  top: 32px;
  right: 34px;
  color: rgba(216, 196, 154, .46);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

.sensation-icon--small { font-size: 2.3rem; }
.sensation-icon--turn { transform: rotate(-18deg); }

.sensation-card h3 {
  margin-top: auto;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.8vw, 2.7rem);
  font-weight: 400;
  line-height: .98;
}

.sensation-card p {
  max-width: 31ch;
  margin-top: 17px;
  color: var(--muted);
  font-size: .81rem;
  line-height: 1.6;
}

.card-link,
.scene-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--champagne-light);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.card-link {
  margin-top: 22px;
  opacity: .72;
  transition: opacity .2s ease, gap .2s ease;
}

.sensation-card:hover .card-link {
  gap: 14px;
  opacity: 1;
}

.text-link {
  width: max-content;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover {
  border-color: var(--champagne-light);
  color: var(--paper);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy-950);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: grid;
  min-height: 148px;
  align-items: center;
  padding: 24px clamp(22px, 3vw, 42px);
  grid-template-columns: auto 1fr;
  gap: 18px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
}

.trust-mark {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: .68rem;
  font-style: italic;
  place-items: center;
}

.trust-item h3 {
  color: #e4e7eb;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.trust-item p {
  margin-top: 6px;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.5;
}

.product-section {
  background:
    linear-gradient(180deg, var(--navy-850), var(--navy-900));
}

.product-section .section-heading .text-link {
  justify-self: end;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.product-card {
  min-width: 0;
}

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(216, 196, 154, .1);
  background-color: #e7e8e9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: border-color .3s ease, transform .45s var(--ease), filter .45s ease;
}

.product-image::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 18, .12), transparent 60%, rgba(7, 11, 18, .36)),
    radial-gradient(circle at 50% 38%, transparent 10%, rgba(7, 11, 18, .12) 100%);
  content: "";
  transition: background .4s ease;
}

.product-card:hover .product-image {
  border-color: rgba(216, 196, 154, .34);
  filter: saturate(1.06) brightness(1.04);
  transform: translateY(-5px);
}

.product-image--luoyi {
  background-image: url("/assets/products/luoyi.jpg");
}

.product-image--beibei {
  background-image: url("/assets/products/beibei.jpg");
}

.product-image--yueqian {
  background-image: url("/assets/products/yueqian.jpg");
}

.product-image--youmeng {
  background-image: url("/assets/products/youmeng.jpg");
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(216, 196, 154, .35);
  background: rgba(6, 10, 17, .62);
  color: var(--champagne-light);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(241, 243, 244, .28);
  border-radius: 50%;
  background: rgba(6, 10, 17, .35);
  color: var(--paper);
  font-size: .85rem;
  opacity: 0;
  place-items: center;
  transform: translateY(7px);
  transition: opacity .3s ease, transform .3s var(--ease), background .3s ease;
  backdrop-filter: blur(8px);
}

.product-card:hover .product-arrow {
  opacity: 1;
  transform: translateY(0);
}

.product-copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 21px 2px 16px;
}

.product-copy h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}

.product-copy p {
  margin-top: 4px;
  color: var(--muted);
  font-size: .72rem;
}

.price {
  color: var(--champagne-light);
  font-family: var(--serif);
  font-size: 1.16rem;
}

.product-meta {
  display: grid;
  padding-top: 13px;
  border-top: 1px solid var(--cool-line);
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-meta div {
  min-width: 0;
}

.product-meta dt {
  color: #6f7c8e;
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-meta dd {
  margin-top: 3px;
  overflow: hidden;
  color: #aeb8c5;
  font-size: .67rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.curated-section {
  border-top: 1px solid var(--line);
  background: var(--navy-950);
}

.section-heading--center {
  display: flex;
  max-width: 780px;
  align-items: center;
  flex-direction: column;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow::before {
  display: none;
}

.section-heading--center p {
  max-width: 570px;
  margin-top: 18px;
  justify-self: auto;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.scene-card {
  position: relative;
  min-height: clamp(520px, 48vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(216, 196, 154, .12);
  background: var(--navy-750);
  isolation: isolate;
}

.scene-image,
.scene-gradient {
  position: absolute;
  inset: 0;
}

.scene-image {
  z-index: -2;
  background-position: center;
  background-size: cover;
  filter: saturate(.84) brightness(.78);
  transform: scale(1.01);
  transition: transform .9s var(--ease), filter .6s ease;
}

.scene-card--men .scene-image {
  background-image: linear-gradient(rgba(11, 17, 28, .06), rgba(11, 17, 28, .08)), url("/assets/generated/scene-men.webp");
}

.scene-card--partner .scene-image {
  background-image: linear-gradient(rgba(11, 17, 28, .05), rgba(11, 17, 28, .09)), url("/assets/generated/scene-partner.webp");
}

.scene-card--kink .scene-image {
  background-image: linear-gradient(rgba(11, 17, 28, .04), rgba(11, 17, 28, .08)), url("/assets/generated/scene-sculpted.webp");
}

.scene-gradient {
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(6, 10, 17, .95) 0%, rgba(6, 10, 17, .65) 35%, rgba(6, 10, 17, .08) 72%),
    linear-gradient(90deg, rgba(6, 10, 17, .2), transparent 60%);
}

.scene-card:hover .scene-image {
  filter: saturate(.95) brightness(.9);
  transform: scale(1.045);
}

.scene-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(28px, 3vw, 45px);
}

.scene-copy .eyebrow::before {
  display: none;
}

.scene-copy h3 {
  margin: 12px 0 13px;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4vw, 4.3rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: .9;
}

.scene-copy p {
  max-width: 38ch;
  color: #c1c9d4;
  font-size: .79rem;
  line-height: 1.65;
}

.scene-link {
  margin-top: 23px;
  transition: gap .2s ease;
}

.scene-card:hover .scene-link {
  gap: 15px;
}

.material-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 0% 100%, rgba(56, 86, 124, .13), transparent 33%),
    var(--navy-850);
}

.material-section::after {
  position: absolute;
  top: 40px;
  left: 43%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(216, 196, 154, .055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.material-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(70px, 10vw, 170px);
}

.material-lead {
  position: sticky;
  top: 135px;
}

.material-lead h2 {
  max-width: 520px;
}

.material-lead p {
  max-width: 520px;
  margin: 25px 0 34px;
  color: var(--muted);
  font-size: .91rem;
}

.material-list {
  border-top: 1px solid var(--line);
}

.material-row {
  display: grid;
  min-height: 142px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 50px 1fr 50px;
  gap: 18px;
  transition: padding .3s var(--ease), background .3s ease;
}

.material-row:hover {
  padding-inline: 15px;
  background: rgba(216, 196, 154, .035);
}

.material-index {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: .76rem;
  font-style: italic;
}

.material-row h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.material-row p {
  max-width: 48ch;
  margin-top: 5px;
  color: var(--muted);
  font-size: .76rem;
}

.material-action {
  display: grid;
  width: 39px;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--champagne);
  font-size: .8rem;
  place-items: center;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.material-row:hover .material-action {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--navy-950);
}

.review-section {
  background: var(--navy-900);
}

.review-header {
  position: relative;
  margin-bottom: 50px;
}

.review-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 8px;
}

.review-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--champagne);
  cursor: pointer;
  place-items: center;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.review-controls button:hover {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--navy-950);
}

.review-stage {
  position: relative;
  min-height: 335px;
  padding: clamp(34px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 0%, rgba(77, 107, 149, .14), transparent 35%),
    var(--navy-850);
}

.review-mark {
  position: absolute;
  top: 12px;
  right: 48px;
  color: rgba(216, 196, 154, .09);
  font-family: var(--serif);
  font-size: 13rem;
  line-height: 1;
}

.review blockquote {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.12;
}

.review footer {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 28px;
  margin-top: 42px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.review footer span:first-child {
  color: var(--champagne-light);
}

.review.is-entering {
  animation: review-in .45s var(--ease) both;
}

.review-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(216, 196, 154, .08);
}

.review-progress i {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--champagne);
  transition: transform .4s var(--ease);
}

.private-help {
  padding: clamp(70px, 8vw, 110px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgba(216, 196, 154, .055), transparent 46%),
    var(--navy-750);
}

.private-help__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1.15fr .7fr auto;
  gap: clamp(28px, 5vw, 75px);
}

.private-help h2 {
  max-width: 680px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.private-help__inner > p {
  max-width: 420px;
  color: var(--mist);
  font-size: .86rem;
}

.site-footer {
  padding: 90px 0 28px;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(36px, 6vw, 90px);
}

.wordmark--footer {
  display: inline-block;
  font-size: 1.8rem;
}

.brand-logo--footer {
  width: 72px;
  height: 72px;
}

.footer-brand > p {
  max-width: 360px;
  margin-top: 20px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.footer-social a,
.footer-column a {
  color: var(--muted);
  font-size: .74rem;
  transition: color .2s ease;
}

.footer-social a {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  color: var(--champagne-light);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-social a:hover,
.footer-column a:hover {
  color: var(--paper);
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #667286;
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
}

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.065); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-line {
  0% { transform: translateX(-24px); }
  55%, 100% { transform: translateX(50px); }
}

@keyframes review-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1120px) {
  .nav-shell {
    column-gap: 30px;
  }

  .primary-nav {
    gap: 23px;
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .trust-item:first-child,
  .trust-item:last-child {
    padding-inline: clamp(22px, 3vw, 42px);
  }

  .private-help__inner {
    grid-template-columns: 1.15fr .85fr;
  }

  .private-help__inner .button {
    width: max-content;
    grid-column: 2;
  }
}

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .announcement {
    min-height: 28px;
    font-size: .53rem;
  }

  .announcement i {
    margin-inline: 5px;
  }

  .nav-shell {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .header-help {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: none;
    color: var(--mist);
    cursor: pointer;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
  }

  .menu-toggle__icon {
    display: grid;
    width: 23px;
    gap: 6px;
  }

  .menu-toggle__icon i {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--champagne);
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    display: block;
    visibility: hidden;
    width: 100vw;
    height: calc(100svh - 68px);
    overflow-y: auto;
    padding: 30px 20px 80px;
    background: rgba(6, 10, 17, .985);
    opacity: 0;
    transform: translate(-50%, -8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .primary-nav > a,
  .nav-trigger {
    display: flex;
    width: 100%;
    min-height: 57px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    line-height: 1;
  }

  .primary-nav > a::after,
  .nav-trigger::after {
    display: none;
  }

  .nav-group {
    position: relative;
  }

  .mega-menu {
    position: static;
    display: none;
    visibility: visible;
    padding: 25px 18px 32px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(18, 27, 42, .44);
    box-shadow: none;
    grid-template-columns: 1fr 1fr;
    opacity: 1;
    transform: none;
  }

  .mega-menu.is-open {
    display: grid;
  }

  .nav-group:hover .mega-menu:not(.is-open) {
    display: none;
  }

  .mega-menu__intro {
    grid-column: 1 / -1;
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mega-menu__column--quiet {
    grid-column: 1 / -1;
    padding: 16px 0 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: min(740px, calc(100svh - 96px));
  }

  .hero-content {
    width: var(--shell);
  }

  .hero h1 {
    font-size: clamp(4.2rem, 14vw, 7rem);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 9, 15, .93) 0%, rgba(5, 9, 15, .7) 58%, rgba(5, 9, 15, .2) 100%),
      linear-gradient(0deg, rgba(6, 10, 17, .82) 0%, transparent 38%);
  }

  .sensation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 54px;
  }

  .scene-grid {
    grid-template-columns: 1fr;
  }

  .scene-card {
    min-height: 610px;
  }

  .material-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .material-lead {
    position: static;
  }

  .private-help__inner {
    grid-template-columns: 1fr;
  }

  .private-help__inner .button {
    width: max-content;
    grid-column: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 18px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .announcement {
    padding-inline: 12px;
    letter-spacing: .1em;
  }

  .announcement p span:nth-of-type(2),
  .announcement p i:first-of-type {
    display: none;
  }

  .wordmark {
    font-size: 1.22rem;
  }

  .brand-lockup {
    gap: 9px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-logo--footer {
    width: 64px;
    height: 64px;
  }

  .primary-nav {
    padding-inline: 16px;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .mega-menu__column--quiet,
  .mega-menu__intro {
    grid-column: auto;
  }

  .hero {
    min-height: 700px;
    align-items: end;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 9, 15, .97) 0%, rgba(5, 9, 15, .78) 52%, rgba(5, 9, 15, .24) 100%),
      linear-gradient(90deg, rgba(5, 9, 15, .44), rgba(5, 9, 15, .18));
  }

  .hero-content {
    margin: 0 auto;
    padding-bottom: 64px;
  }

  .hero h1 {
    margin: 19px 0 22px;
    font-size: clamp(3.9rem, 21vw, 5.3rem);
    line-height: .8;
  }

  .hero-content > p {
    font-size: .91rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-promises {
    gap: 8px 18px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading > p,
  .section-heading .text-link {
    justify-self: start;
  }

  .section-heading h2,
  .material-lead h2,
  .review-header h2,
  .private-help h2 {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
  }

  .sensation-grid {
    grid-template-columns: 1fr;
  }

  .sensation-card {
    min-height: 390px;
    padding: 28px;
    background-position: 62% center;
  }

  .sensation-card h3 {
    font-size: 2.4rem;
  }

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

  .trust-item + .trust-item,
  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-item {
    min-height: 118px;
    padding-inline: 0 !important;
  }

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

  .product-image {
    aspect-ratio: 4 / 4.7;
  }

  .scene-card {
    min-height: 540px;
  }

  .scene-copy {
    padding: 26px;
  }

  .scene-copy h3 {
    font-size: 3.2rem;
  }

  .material-row {
    min-height: 134px;
    grid-template-columns: 34px 1fr 36px;
    gap: 10px;
  }

  .material-row h3 {
    font-size: 1.45rem;
  }

  .review-header {
    padding-bottom: 68px;
  }

  .review-controls {
    right: auto;
    left: 0;
  }

  .review-stage {
    min-height: 420px;
    padding: 36px 26px 54px;
  }

  .review blockquote {
    font-size: 2.15rem;
  }

  .review footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }

  .private-help__inner .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ---- newsletter opt-in (footer) ---- */
.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; }
.footer-optin { display: grid; grid-template-columns: 2fr 3fr;
  gap: clamp(24px, 5vw, 70px); align-items: start;
  padding: 0 0 46px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.footer-optin h3 { margin: 0 0 8px; color: var(--ink, #eef2f7);
  font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.optin-copy p { margin: 0; max-width: 34ch; line-height: 1.6; }
.optin-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.optin-row { display: flex; gap: 10px; flex-wrap: wrap; }
.optin-row input[type=email] { flex: 1 1 220px; min-width: 0; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 3px; background: rgba(255,255,255,.04);
  color: var(--ink, #eef2f7); font: inherit; font-size: 14px; }
.optin-row input[type=email]:focus { outline: none; border-color: var(--champagne, #d8c49a); }
.optin-row button { padding: 12px 26px; border: 0; border-radius: 3px;
  background: var(--champagne, #d8c49a); color: #0e1420; font: inherit; font-size: .62rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }
.optin-row button:hover { background: var(--champagne-bright, #e5d4ae); }
.optin-row button:disabled { opacity: .5; cursor: default; }
.optin-consent { display: flex; gap: 10px; align-items: flex-start;
  margin-top: 14px; line-height: 1.55; cursor: pointer; }
.optin-consent input { margin-top: 3px; flex: 0 0 auto; accent-color: var(--champagne, #d8c49a); }
.optin-fine { margin: 9px 0 0; color: #667286; font-size: 12px; line-height: 1.55; }
.optin-fine a { color: #8b98ab; text-decoration: underline; }
.optin-msg { margin: 10px 0 0; font-size: 13px; min-height: 1em; }
.optin-msg.is-ok { color: var(--champagne-bright, #e5d4ae); }
.optin-msg.is-err { color: #e08a8a; }
@media (max-width: 860px) {
  .footer-optin { grid-template-columns: 1fr; gap: 20px; padding-bottom: 36px; }
}

.sensation-card--torso .sensation-image, .sensation-card--torso { background-image: url("/assets/generated/scene-sculpted.webp"); }
