:root {
  --bg: #efe6f4;
  --surface: #fffdfb;
  --ink: #1a120e;
  --muted: #3d2a22;
  --hair: #5a2800;
  --sage: #2f6b35;
  --sky: #6aaeeb;
  --lilac: #b888e8;
  --pink: #e887b5;
  --mint: #6fd4ad;
  --line: #1a120e;
  --font: "Manrope", "Segoe UI", sans-serif;
  --script: "Caveat", cursive;
  --max: 68rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.08rem;
  line-height: 1.65;
  background:
    linear-gradient(180deg, #f7eef8 0%, #e8f3fc 45%, #f7eef8 100%);
}

img { max-width: 100%; display: block; }
a { color: var(--sage); font-weight: 700; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: #000; color: #fff; padding: 0.75rem 1rem; z-index: 100;
}
.skip:focus { left: 0.75rem; top: 0.75rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border: 3px solid var(--line);
  border-radius: 0.55rem;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--line);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--line);
}
.btn--fill { background: var(--pink); }
.btn--line { background: var(--surface); }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.15rem;
  background: #fffdfb;
  border-bottom: 3px solid var(--line);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink);
}
.nav__brand img {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  background: #111;
  border: 2px solid var(--line);
}
.nav__brand span {
  font-family: var(--script);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--sage);
}

.nav__links { display: flex; align-items: center; gap: 0.9rem; }
.nav__links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}
.nav__cta {
  padding: 0.4rem 0.75rem;
  background: var(--sky);
  border: 3px solid var(--line);
  border-radius: 0.45rem;
  color: var(--ink) !important;
  box-shadow: 3px 3px 0 var(--line);
}

.nav__toggle {
  display: none;
  width: 2.4rem; height: 2.4rem;
  border: 3px solid var(--line);
  border-radius: 0.4rem;
  background: var(--lilac);
  cursor: pointer;
}
.nav__toggle span {
  display: block; width: 1rem; height: 2px; margin: 0.25rem auto; background: var(--line);
}

@media (max-width: 800px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: #fffdfb;
    border-bottom: 3px solid var(--line);
  }
  .nav.is-open .nav__links { display: flex; }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 17.5rem) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6.8rem 1.2rem 2.75rem;
}

.hero__logo {
  width: min(16.5rem, 72vw);
  justify-self: center;
  border-radius: 50%;
  background: #0c0c0c;
  border: 4px solid var(--line);
  box-shadow:
    0 0 0 6px var(--lilac),
    0 0 0 10px var(--sky),
    4px 4px 0 var(--line);
}

.hero__copy {
  background: var(--surface);
  border: 3px solid var(--line);
  border-radius: 1rem;
  padding: 1.35rem 1.4rem 1.45rem;
  box-shadow: 6px 6px 0 var(--line);
}

.hero h1 {
  margin: 0.15rem 0 0.45rem;
  font-family: var(--script);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
}

.hero__tag {
  margin: 0 0 0.65rem;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--hair);
}

.hero__lede {
  margin: 0 0 1.15rem;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.section {
  padding: 3.25rem 1.2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.section--band {
  max-width: none;
  background: #d8eefc;
  border-block: 3px solid var(--line);
}
.section--band > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.section--band .eyebrow,
.section--band h2,
.section--band .section__intro p {
  color: var(--ink);
}

.section__intro { max-width: 40rem; margin-bottom: 1.5rem; }
.section__intro h2,
.maker h2,
.files h2,
.cta h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--hair);
}
.section__intro p { margin: 0; color: var(--muted); }

.trio {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tile {
  background: var(--surface);
  border: 3px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.65rem;
  box-shadow: 4px 4px 0 var(--line);
}
.tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--line);
  border-radius: 0.55rem;
  margin-bottom: 0.7rem;
}
.tile h3 { margin: 0 0 0.2rem; font-size: 1.08rem; color: var(--ink); }
.tile p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.duo {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.note {
  border: 3px solid var(--line);
  border-radius: 0.9rem;
  padding: 1.2rem;
  box-shadow: 4px 4px 0 var(--line);
}
.note--sky { background: #cfe8fc; }
.note--lilac { background: #ead7fb; }
.note h3 { margin: 0 0 0.3rem; color: var(--ink); }
.note p { margin: 0; color: var(--muted); }

.maker {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: center;
  background: var(--surface);
  border: 3px solid var(--line);
  border-radius: 1rem;
  padding: 1.15rem;
  box-shadow: 5px 5px 0 var(--line);
}
.maker img {
  width: 6.75rem;
  height: 6.75rem;
  border-radius: 50%;
  background: #111;
  border: 3px solid var(--line);
  box-shadow: 0 0 0 4px var(--mint);
}
.maker p { margin: 0; color: var(--muted); }

.flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
}
#process .section__intro {
  margin-inline: auto;
  text-align: center;
}
.flow li {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.75rem;
  align-items: center;
  background: var(--surface);
  border: 3px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.45rem;
  box-shadow: 3px 3px 0 var(--line);
}
.flow img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--line);
  border-radius: 0.45rem;
}
.flow strong { display: block; color: var(--hair); }
.flow span { color: var(--muted); font-size: 0.95rem; }

.files {
  display: grid;
  grid-template-columns: 1.1fr minmax(12rem, 18rem);
  gap: 1.4rem;
  align-items: center;
  max-width: 52rem;
  margin-inline: auto;
}
.files p { margin: 0 0 0.8rem; color: var(--muted); }
.files ul { margin: 0 0 1.1rem; padding-left: 1.1rem; color: var(--muted); }
.files__video {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}
.files__frame {
  width: 100%;
  max-width: 18rem;
  aspect-ratio: 9 / 16;
  background: #111;
  border: 3px solid var(--line);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--line);
}
.files__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #111;
}
.files__tiktok {
  font-size: 0.88rem;
  font-weight: 800;
}

.spines {
  display: grid;
  grid-template-columns: 1.1fr minmax(12rem, 18rem);
  gap: 1.4rem;
  align-items: center;
  max-width: 52rem;
  margin-inline: auto;
  background: linear-gradient(135deg, #fff8e0 0%, #ffe6f2 55%, #ead7fb 100%);
  border: 3px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.5rem 1.25rem;
  box-shadow: 6px 6px 0 var(--line);
}
.spines h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--hair);
}
.spines p { margin: 0 0 0.8rem; color: var(--muted); }
.spines ul { margin: 0 0 1.1rem; padding-left: 1.1rem; color: var(--muted); }
.spines__video {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}
.spines__frame {
  width: 100%;
  max-width: 18rem;
  aspect-ratio: 9 / 16;
  background: #111;
  border: 3px solid var(--line);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--line);
}
.spines__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #111;
}
.spines__tiktok {
  font-size: 0.88rem;
  font-weight: 800;
}

.recipes {
  display: grid;
  grid-template-columns: 1.1fr minmax(12rem, 18rem);
  gap: 1.4rem;
  align-items: center;
  max-width: 52rem;
  margin-inline: auto;
  background: linear-gradient(135deg, #e8f7ef 0%, #d8eefc 50%, #fff8ea 100%);
  border: 3px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.5rem 1.25rem;
  box-shadow: 6px 6px 0 var(--line);
}
.recipes h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--hair);
}
.recipes p { margin: 0 0 0.8rem; color: var(--muted); }
.recipes ul { margin: 0 0 1.1rem; padding-left: 1.1rem; color: var(--muted); }
.recipes__video {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}
.recipes__frame {
  width: 100%;
  max-width: 18rem;
  aspect-ratio: 9 / 16;
  background: #111;
  border: 3px solid var(--line);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--line);
}
.recipes__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #111;
}
.recipes__tiktok {
  font-size: 0.88rem;
  font-weight: 800;
}

.custom {
  display: grid;
  grid-template-columns: 1.1fr minmax(12rem, 18rem);
  gap: 1.4rem;
  align-items: center;
  max-width: 52rem;
  margin-inline: auto;
  background: linear-gradient(135deg, #ead7fb 0%, #ffe6f2 45%, #cfe8fc 100%);
  border: 3px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.5rem 1.25rem;
  box-shadow: 6px 6px 0 var(--line);
}
.custom h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--hair);
}
.custom p { margin: 0 0 0.8rem; color: var(--muted); }
.custom__steps {
  margin: 0 0 1.1rem;
  padding-left: 1.15rem;
  color: var(--muted);
  display: grid;
  gap: 0.45rem;
}
.custom__steps strong { color: var(--ink); }
.custom__video {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}
.custom__frame {
  width: 100%;
  max-width: 18rem;
  aspect-ratio: 9 / 16;
  background: #111;
  border: 3px solid var(--line);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--line);
}
.custom__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #111;
}
.custom__tiktok {
  font-size: 0.88rem;
  font-weight: 800;
}

.cta {
  text-align: center;
  background: #ffe6f2;
  border: 3px solid var(--line);
  border-radius: 1.1rem;
  padding: 2rem 1.2rem;
  box-shadow: 6px 6px 0 var(--line);
}
.cta img {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  background: #111;
  border: 3px solid var(--line);
}
.cta p {
  margin: 0 auto 1.1rem;
  max-width: 28rem;
  color: var(--muted);
}

.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.products--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 48rem;
  margin-inline: auto;
}
.products--trio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 58rem;
  margin-inline: auto;
}
.products--quad {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 48rem;
  margin-inline: auto;
}
.product {
  background: var(--surface);
  border: 3px solid var(--line);
  border-radius: 1rem;
  padding: 1.25rem 1.1rem 1.35rem;
  box-shadow: 5px 5px 0 var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.product h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}
.product p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}
.product .btn { align-self: flex-start; margin-top: 0.35rem; }
.product--featured {
  background: #ffe6f2;
}
.product__badge {
  margin: 0;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.55rem;
  background: var(--mint);
  border: 2px solid var(--line);
  border-radius: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.faq {
  display: grid;
  gap: 0.75rem;
  max-width: 42rem;
  margin: 0 auto;
}
.faq__item {
  background: var(--surface);
  border: 3px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  box-shadow: 4px 4px 0 var(--line);
}
.faq__item summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  float: right;
  font-weight: 800;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.shop-sticky {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 40;
  transform: translateX(-50%);
  display: none;
  padding: 0.75rem 1.15rem;
  background: var(--pink);
  color: var(--ink);
  border: 3px solid var(--line);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--line);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .shop-sticky { display: inline-flex; }
  body { padding-bottom: 4.5rem; }
}

.footer {
  text-align: center;
  padding: 2rem 1.2rem 2.75rem;
  border-top: 3px solid var(--line);
  background: #fffdfb;
  color: var(--muted);
}
.footer img {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.35rem;
  border-radius: 50%;
  background: #111;
  border: 2px solid var(--line);
}
.footer__name {
  margin: 0 0 0.2rem;
  font-family: var(--script);
  font-size: 1.55rem;
  color: var(--sage);
  font-weight: 700;
}
.footer__admin {
  margin: 1.1rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.footer__admin a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  opacity: 0.75;
}
.footer__admin a:hover {
  color: var(--ink);
  opacity: 1;
}

/* Journal TikTok scrapbook */
.section--journal {
  max-width: none;
  background:
    repeating-linear-gradient(
      transparent,
      transparent 27px,
      rgba(26, 18, 14, 0.05) 28px
    ),
    linear-gradient(180deg, #f8f1e4 0%, #f3e6d4 100%);
  border-block: 3px solid var(--line);
  padding-left: 0;
  padding-right: 0;
}
.section--journal > .section__intro,
.section--journal > .journal,
.section--journal > .journal__follow {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.journal {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 0.75rem 0.55rem;
  align-items: center;
  background: #fff8ea;
  border: 3px solid var(--line);
  border-radius: 1rem;
  padding: 1.35rem 0.85rem 1.1rem 2.35rem;
  box-shadow: 7px 7px 0 var(--line);
}

.journal__spine {
  position: absolute;
  left: 0.55rem;
  top: 1rem;
  bottom: 1rem;
  width: 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  pointer-events: none;
}
.journal__spine span {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #d8c7a8;
  border: 2px solid var(--line);
  box-shadow: inset 0 0 0 2px #fff8ea;
}

.journal__nav {
  appearance: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--line);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
  z-index: 2;
}
.journal__nav:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 4px 4px 0 var(--line);
}
.journal__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.journal__viewport {
  grid-column: 2;
  overflow: hidden;
  min-width: 0;
  touch-action: pan-y;
}

.journal__track {
  display: flex;
  transition: transform 0.4s var(--ease);
  will-change: transform;
}

.journal__page {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  background:
    repeating-linear-gradient(
      transparent,
      transparent 25px,
      rgba(106, 150, 200, 0.18) 26px
    ),
    #fffdf8;
  border: 2px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.15rem 0.9rem 0.95rem;
  box-shadow: 3px 3px 0 rgba(26, 18, 14, 0.12);
  min-width: 0;
  pointer-events: none;
}
.journal__page.is-active {
  pointer-events: auto;
}
.journal__page .journal__hand,
.journal__page .journal__note,
.journal__page .journal__link {
  text-align: center;
}
.journal__page .journal__link {
  display: block;
}

.journal__status {
  grid-column: 1 / -1;
  margin: 0.15rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.journal__tab {
  position: absolute;
  top: -0.7rem;
  right: 0.9rem;
  margin: 0;
  padding: 0.2rem 0.55rem;
  background: #ffe3f0;
  border: 2px solid var(--line);
  border-radius: 0.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.journal__hand {
  margin: 0 0 0.75rem;
  font-family: var(--script);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1.1;
}

.journal__tape {
  position: absolute;
  top: 0.35rem;
  left: 50%;
  width: 4.5rem;
  height: 0.85rem;
  transform: translateX(-50%) rotate(-2deg);
  opacity: 0.9;
  border: 1px solid rgba(26, 18, 14, 0.15);
}
.journal__tape--pink {
  background: repeating-linear-gradient(
    -45deg,
    #f7b6d2,
    #f7b6d2 6px,
    #fce0ec 6px,
    #fce0ec 12px
  );
}
.journal__tape--mint {
  background: repeating-linear-gradient(
    45deg,
    #9fe6c9,
    #9fe6c9 6px,
    #d8f7ea 6px,
    #d8f7ea 12px
  );
  transform: translateX(-50%) rotate(3deg);
}
.journal__tape--lilac {
  background: repeating-linear-gradient(
    -30deg,
    #d2b4f0,
    #d2b4f0 6px,
    #ebe0fa 6px,
    #ebe0fa 12px
  );
}
.journal__tape--peach {
  background: repeating-linear-gradient(
    35deg,
    #ffc49a,
    #ffc49a 6px,
    #ffe3cf 6px,
    #ffe3cf 12px
  );
  transform: translateX(-50%) rotate(-4deg);
}
.journal__tape--sky {
  background: repeating-linear-gradient(
    -40deg,
    #9fd4ff,
    #9fd4ff 6px,
    #d7eeff 6px,
    #d7eeff 12px
  );
  transform: translateX(-50%) rotate(2deg);
}

.journal__frame {
  position: relative;
  background: #111;
  border: 3px solid var(--line);
  border-radius: 0.65rem;
  overflow: hidden;
  box-shadow: inset 0 0 0 3px #fffdf8;
  aspect-ratio: 9 / 16;
  max-height: 34rem;
  max-width: 22rem;
  width: 100%;
  margin: 0 auto;
}

.journal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #111;
}

.ms-tiktok {
  width: 100%;
  height: 100%;
}
.ms-tiktok__stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #1a1a1a;
}
.ms-tiktok__poster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #1a1a1a;
  color: #fff;
  overflow: hidden;
}
.ms-tiktok__poster img,
.ms-tiktok__ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ms-tiktok__ph {
  background:
    radial-gradient(circle at 30% 20%, #3a3a3a, transparent 45%),
    linear-gradient(160deg, #2a2a2a, #111);
}
.ms-tiktok__play {
  position: relative;
  z-index: 1;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.ms-tiktok__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.7rem 0 0.7rem 1.15rem;
  border-color: transparent transparent transparent #111;
}
.ms-tiktok__hint {
  position: absolute;
  z-index: 1;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.ms-tiktok__frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #111;
}
.ms-tiktok__frame[hidden],
.ms-tiktok__poster[hidden] {
  display: none !important;
}
.ms-tiktok__blocked {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  background: rgba(18, 18, 18, 0.92);
  color: #fff;
}
.ms-tiktok__blocked[hidden] {
  display: none !important;
}
.ms-tiktok__blocked p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}
.ms-tiktok.is-playing .ms-tiktok__poster {
  display: none !important;
}

.journal__note {
  margin: 0.75rem 0 0.35rem;
  font-family: var(--script);
  font-size: 1.2rem;
  color: var(--hair);
}

.journal__link {
  font-size: 0.88rem;
  font-weight: 800;
}

.journal__follow {
  margin-top: 1.1rem;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
html.js .reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__actions { justify-content: center; }
  .trio, .duo, .files, .products, .spines, .recipes, .custom { grid-template-columns: 1fr; }
  .journal {
    padding-left: 2.15rem;
    padding-right: 0.55rem;
    gap: 0.55rem 0.35rem;
  }
  .journal__nav {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.15rem;
  }
  .maker {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .journal__track { transition: none; }
}
