/* ============================================================
   Pleasureland — design system
   Editorial luxe: warm ivory, deep wine, champagne gold, rose.
   ============================================================ */
:root {
  --ink:    #21121b;   /* deep aubergine near-black */
  --body:   #6a5660;   /* muted mauve-grey */
  --plum:   #5b2740;   /* deep wine */
  --plum-d: #461d31;
  --rose:   #b9596f;
  --gold:   #b8965a;   /* champagne */
  --gold-l: #d9b878;
  --cream:  #fbf5ef;
  --soft:   #f4e9e1;
  --soft-2: #efe2d8;
  --line:   #e7d8cd;
  --paper:  #ffffff;
  --maxw:   1180px;
  --serif:  "Fraunces", Georgia, "Times New Roman", serif;
  --sans:   "Jost", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); color: var(--body); background: var(--cream); line-height: 1.7; font-weight: 300; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: var(--plum); text-decoration: none; }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 400; line-height: 1.08; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }
.it { font-style: italic; color: var(--plum); }

.eyebrow { display: inline-block; font-family: var(--sans); font-weight: 500; font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.eyebrow--light { color: var(--gold-l); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--sans); font-weight: 500; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; padding: 16px 30px; border: 1px solid transparent; border-radius: 2px; cursor: pointer; transition: all .25s ease; }
.btn--solid { background: var(--plum); color: var(--cream); }
.btn--solid:hover { background: var(--plum-d); transform: translateY(-1px); }
.btn--line { border-color: var(--plum); color: var(--plum); background: transparent; }
.btn--line:hover { background: var(--plum); color: var(--cream); }
.btn--lineLight { border-color: rgba(251,245,239,.45); color: var(--cream); background: transparent; }
.btn--lineLight:hover { border-color: var(--cream); background: rgba(251,245,239,.08); }

/* nav */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(251,245,239,.85); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand__mark { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--gold); border-radius: 50%; font-family: var(--serif); font-size: 1.05rem; color: var(--plum); }
.brand__name { font-family: var(--serif); font-size: 1.5rem; letter-spacing: .02em; color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); font-weight: 400; transition: color .2s; }
.nav__links a:hover { color: var(--plum); }
.nav__cta { border: 1px solid var(--plum); padding: 9px 20px !important; border-radius: 2px; }
.nav__cta:hover { background: var(--plum); color: var(--cream) !important; }

/* hero */
.hero { position: relative; min-height: clamp(560px, 86vh, 820px); display: flex; align-items: center; overflow: hidden; background-image: url(/assets/img/hero.jpg); background-size: cover; background-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(28,14,22,.9) 0%, rgba(28,14,22,.66) 42%, rgba(28,14,22,.24) 80%); z-index: 1; }
.hero__inner { position: relative; z-index: 2; padding-block: 60px; }
.hero__copy { max-width: 40rem; }
.hero h1 { color: var(--cream); margin: 6px 0 26px; }
.hero h1 .it { color: var(--gold-l); }
.hero__copy > p { color: #ecdcd4; font-size: 1.16rem; max-width: 34em; font-weight: 300; }
.hero__cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* promise strip */
.promise { background: var(--ink); color: var(--soft); }
.promise__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 28px; padding-block: 20px; }
.promise__inner > div { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; color: #d8c4bb; }
.promise__ico { color: var(--gold-l); font-size: .7rem; }

/* sections */
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--soft { background: var(--soft); }
.head { max-width: 42rem; margin: 0 auto clamp(44px, 6vw, 64px); text-align: center; }
.head .sub { margin-top: 14px; font-size: 1.08rem; color: var(--body); }

/* collections */
.coll-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.coll { position: relative; display: block; min-height: 340px; border-radius: 3px; overflow: hidden; color: var(--cream); border: 1px solid var(--line); }
.coll__bg { position: absolute; inset: 0; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.coll[data-tone="a"] .coll__bg { background: radial-gradient(120% 120% at 20% 10%, #8a3a5a, #4a1f33); }
.coll[data-tone="b"] .coll__bg { background: radial-gradient(120% 120% at 20% 10%, #3a3550, #1f1b30); }
.coll[data-tone="c"] .coll__bg { background: radial-gradient(120% 120% at 20% 10%, #9a4458, #531f33); }
.coll[data-tone="d"] .coll__bg { background: radial-gradient(120% 120% at 20% 10%, #6e4a2e, #3a2616); }
.coll[data-tone="e"] .coll__bg { background: radial-gradient(120% 120% at 20% 10%, #4a5d50, #233129); }
.coll[data-tone="f"] .coll__bg { background: radial-gradient(120% 120% at 20% 10%, #7c5a86, #3c2945); }
.coll::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,10,16,.05), rgba(20,10,16,.72)); }
.coll:hover .coll__bg { transform: scale(1.06); }
.coll__body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 28px; }
.coll__kicker { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-l); }
.coll__body h3 { color: var(--cream); margin: 8px 0 8px; font-size: 1.7rem; }
.coll__body p { color: #e8dad2; font-size: .95rem; max-width: 26em; font-weight: 300; }
.coll__go { display: inline-block; margin-top: 14px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); border-bottom: 1px solid var(--gold-l); padding-bottom: 3px; }

/* feature band */
.feature { background: var(--paper); padding-block: clamp(64px, 9vw, 120px); border-block: 1px solid var(--line); }
.feature__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.feature__copy p { margin-top: 16px; font-size: 1.06rem; }
.feature__copy .eyebrow { margin-bottom: 16px; }
.feature__list { list-style: none; display: grid; gap: 8px; }
.feature__list li { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; padding: 22px 0; border-top: 1px solid var(--line); }
.feature__list li:last-child { border-bottom: 1px solid var(--line); }
.feature__list span { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); font-style: italic; }
.feature__list strong { color: var(--ink); font-weight: 500; font-family: var(--sans); }

/* journal */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post { display: block; background: var(--paper); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.post:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(33,18,27,.45); }
.post__img { aspect-ratio: 3/2; background-size: cover; background-position: center; background-color: rgba(58,26,44,.14); background-blend-mode: multiply; }
.post[data-tone="a"] .post__img { background-image: url(/assets/img/g-first.jpg); }
.post[data-tone="c"] .post__img { background-image: url(/assets/img/g-bedroom.jpg); }
.post[data-tone="e"] .post__img { background-image: url(/assets/img/g-wellness.jpg); }
.post__body { padding: 26px 26px 30px; }
.post__cat { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.post__body h3 { margin: 10px 0 10px; font-size: 1.32rem; color: var(--ink); line-height: 1.2; }
.post__body p { font-size: .96rem; }
.post__read { display: inline-block; margin-top: 16px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--plum); border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
.post[data-tone="b"] .post__img { background-image: url(/assets/img/g-evening.jpg); }
.post[data-tone="d"] .post__img { background-image: url(/assets/img/g-talking.jpg); }
.post[data-tone="f"] .post__img { background-image: url(/assets/img/g-datenight.jpg); }

/* toy of the month */
.pick { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; box-shadow: 0 30px 60px -40px rgba(33,18,27,.4); }
.pick__visual { position: relative; min-height: 380px; background-image: url(/assets/img/pick.jpg); background-size: cover; background-position: center; background-color: rgba(58,26,44,.4); background-blend-mode: multiply; display: grid; place-items: center; }
.pick__tag { position: absolute; top: 24px; left: 24px; font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-l); }
.pick__mark { font-size: 2.6rem; color: rgba(217,184,120,.5); }
.pick__body { padding: clamp(32px, 4vw, 56px); }
.pick__kicker { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.pick__body h3 { font-size: clamp(2rem, 3.4vw, 2.6rem); margin: 10px 0 16px; }
.pick__body > p { font-size: 1.06rem; }
.pick__note { margin-top: 14px !important; font-size: .94rem !important; font-style: italic; color: var(--body); }
.pick__cta { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

/* honesty statement */
.honesty { max-width: 46rem; margin-inline: auto; text-align: center; }
.honesty__rule { display: block; width: 54px; height: 2px; background: var(--gold); margin: 0 auto 22px; border-radius: 2px; }
.honesty h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.honesty p { margin-top: 16px; font-size: 1.12rem; color: var(--body); }
.honesty strong { color: var(--ink); font-weight: 500; }
.honesty em { font-style: italic; color: var(--plum); }

/* the idea */
.idea-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.idea { background: var(--paper); border: 1px solid var(--line); border-radius: 3px; padding: 36px 32px; }
.idea__n { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold); }
.idea h3 { margin: 12px 0 10px; }
.idea p { font-size: .98rem; }

/* ethos */
.ethos { position: relative; background: var(--plum); color: var(--cream); padding-block: clamp(72px, 10vw, 132px); overflow: hidden; }
.ethos::before { content: ""; position: absolute; inset: -30% -10% auto auto; width: 60vw; height: 600px; background: radial-gradient(circle at 70% 30%, rgba(217,184,120,.22), transparent 60%); }
.ethos__inner { position: relative; max-width: 46rem; margin-inline: auto; text-align: center; }
.ethos h2 { color: var(--cream); margin-bottom: 18px; }
.ethos p { color: #ecdcd4; font-size: 1.18rem; font-weight: 300; }

/* join / newsletter */
.join__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.join__copy p { margin-top: 14px; font-size: 1.06rem; }
.join__form { display: flex; flex-wrap: wrap; gap: 12px; position: relative; }
.join__form input { flex: 1; min-width: 220px; font-family: var(--sans); font-size: 1rem; padding: 16px 18px; border: 1px solid var(--line); border-radius: 2px; background: var(--paper); color: var(--ink); }
.join__form input:focus { outline: none; border-color: var(--plum); box-shadow: 0 0 0 3px rgba(91,39,64,.12); }
.join__msg { flex-basis: 100%; margin-top: 4px; font-size: .9rem; min-height: 1.1em; }
.join__msg.ok { color: var(--plum); }
.join__msg.err { color: #b3402f; }

/* footer */
.footer { background: var(--ink); color: #c9b6ad; padding-top: 64px; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; padding-bottom: 44px; }
.footer__brand { max-width: 26rem; }
.footer__brand .brand__name { color: var(--cream); }
.footer__brand p { margin-top: 12px; font-size: .95rem; font-weight: 300; }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__cols h4 { font-family: var(--sans); font-weight: 500; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 14px; }
.footer__cols a { display: block; color: #c9b6ad; font-size: .92rem; margin-bottom: 9px; font-weight: 300; }
.footer__cols a:hover { color: var(--cream); }
.footer__fine { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: #8f7d76; }
.footer__fine p { max-width: 64ch; }

/* age gate */
.agegate { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; background: rgba(20,10,16,.62); backdrop-filter: blur(14px); }
.agegate[hidden] { display: none; }
html[data-age="ok"] .agegate { display: none; }
.agegate__card { max-width: 30rem; text-align: center; background: var(--cream); border: 1px solid var(--gold); border-radius: 4px; padding: 48px 40px; box-shadow: 0 40px 90px -40px rgba(20,10,16,.7); }
.agegate__mark { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 18px; border: 1px solid var(--gold); border-radius: 50%; font-family: var(--serif); font-size: 1.5rem; color: var(--plum); }
.agegate__card h2 { font-size: 2rem; margin-bottom: 12px; }
.agegate__card p { font-size: 1rem; }
.agegate__actions { margin: 26px 0 16px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.agegate__actions .btn { width: 100%; }
.agegate__leave { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--body); }
.agegate__leave:hover { color: var(--plum); }
.agegate__fine { font-size: .78rem !important; color: var(--body); opacity: .8; }

/* reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(-18px,-12px) scale(1.04); } }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__silk { animation: none; } }

/* responsive */
@media (max-width: 920px) {
  .coll-grid, .journal-grid, .idea-grid { grid-template-columns: 1fr 1fr; }
  .feature__inner, .join__inner { grid-template-columns: 1fr; gap: 36px; }
  .pick { grid-template-columns: 1fr; }
  .pick__visual { min-height: 220px; }
}
@media (max-width: 600px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .coll-grid, .journal-grid, .idea-grid { grid-template-columns: 1fr; }
  .promise__inner { justify-content: flex-start; gap: 10px 22px; }
  .footer__inner { flex-direction: column; }
}
