@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Prata&display=swap');

:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --reading-progress: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
}

body.sticky-visible {
  padding-bottom: 82px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #3176ff;
  outline-offset: 4px;
}

.page {
  min-height: 100vh;
}

.page-container,
.horror-container {
  width: min(100% - 32px, 1080px);
  margin-inline: auto;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  margin: 0 0 16px;
  padding: 5px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.09em;
}

.hero-intro {
  max-width: 660px;
  margin: 18px 0 0;
  font-size: clamp(1.04rem, 1rem + 0.3vw, 1.22rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 15px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button svg {
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button:active {
  transform: translateY(0);
}

.button--compact {
  min-height: 52px;
  width: 100%;
  padding-block: 12px;
  font-size: 0.92rem;
}

.reading-progress {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: color-mix(in srgb, currentColor 12%, transparent);
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: var(--reading-progress);
  height: 100%;
  transition: width 80ms linear;
}

.progress-pill {
  position: fixed;
  z-index: 20;
  top: 13px;
  right: max(12px, env(safe-area-inset-right));
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  backdrop-filter: blur(12px);
}

.sticky-cta {
  position: fixed;
  z-index: 25;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px max(12px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  transform: translateY(110%);
  transition: transform 220ms ease;
}

body.sticky-visible:not(.final-cta-visible) .sticky-cta {
  transform: translateY(0);
}

.micro-footer {
  padding: 26px 16px max(26px, env(safe-area-inset-bottom));
  font-size: 0.72rem;
  text-align: center;
  opacity: 0.55;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* DIY editorial */
.page--diy {
  --diy-ink: #171810;
  --diy-paper: #f3f1e8;
  --diy-accent: #d8ff4f;
  --diy-line: #c9c6b8;
  --diy-display-font: "Prata", "Bodoni MT", Didot, Georgia, serif;
  --diy-body-font: "Manrope", "Segoe UI Variable", "Segoe UI", sans-serif;
  color: var(--diy-ink);
  background: var(--diy-paper);
  font-family: var(--diy-body-font);
}

.page--diy .reading-progress span {
  background: #1c1e16;
}

.page--diy .progress-pill {
  color: #f8f8f1;
  background: rgb(23 24 16 / 88%);
}

.diy-hero {
  max-width: 820px;
  padding: 58px 0 24px;
}

.diy-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 9vw, 5.5rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.value-note {
  margin: 20px 0 0;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: #656356;
}

.value-note span {
  color: var(--diy-ink);
}

.diy-grid {
  display: grid;
  gap: 44px;
  padding: 14px 0 68px;
}

.media-card {
  min-width: 0;
  border-top: 1px solid var(--diy-line);
  padding-top: 12px;
}

.media-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #dedccd;
}

.media-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.media-card--video .media-card__media {
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  background: #11120e;
  box-shadow: 0 16px 40px rgb(49 43 24 / 11%);
}

.media-card__video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #11120e;
  object-fit: contain;
}

.media-card--video .media-card__badge {
  top: 10px;
  bottom: auto;
  pointer-events: none;
}

.diy-grid--videos .media-card h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
}

.media-card:hover .media-card__media img {
  transform: scale(1.018);
}

.media-card__badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #f7f8f1;
  background: rgb(23 24 16 / 88%);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.media-card__body {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding-top: 16px;
}

.media-card__number {
  padding-top: 4px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.media-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 6vw, 2.45rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.media-card p {
  max-width: 560px;
  margin: 10px 0 0;
  color: #555447;
  font-size: 0.97rem;
  line-height: 1.52;
}

.teaser {
  margin-bottom: 40px;
  overflow: hidden;
  border: 1px solid var(--diy-ink);
  border-radius: 8px;
  background: var(--diy-ink);
  color: #f7f6ee;
}

.blur-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  height: 146px;
  overflow: hidden;
  background: #34362e;
}

.blur-preview__item {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.blur-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) saturate(0.55);
  transform: scale(1.12) translateX(calc(var(--preview-index) * -1%));
  opacity: 0.6;
}

.blur-preview__item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, rgb(13 14 10 / 14%), rgb(13 14 10 / 72%));
}

.blur-preview__item span {
  position: absolute;
  z-index: 1;
  right: 7px;
  bottom: 7px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.blur-preview__item i {
  display: none;
}

.teaser__content {
  padding: 27px 20px 24px;
  text-align: center;
}

.teaser__count {
  margin: 0 0 10px;
  color: var(--diy-accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.teaser h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 9vw, 4.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.teaser__content > p:not(.teaser__count) {
  max-width: 490px;
  margin: 14px auto 22px;
  color: #cacbbf;
  line-height: 1.52;
}

.page--diy .button--primary {
  width: 100%;
  color: #13150f;
  background: var(--diy-accent);
}

.page--diy .button--primary:hover {
  background: #e3ff7a;
}

.teaser small,
.horror-cliffhanger small {
  display: block;
  margin-top: 10px;
  font-size: 0.7rem;
  opacity: 0.58;
}

.page--diy .sticky-cta {
  border-top: 1px solid #34362e;
  background: rgb(23 24 16 / 94%);
  backdrop-filter: blur(12px);
}

/* DIY reference-led editorial layout */
.diy-editorial {
  width: min(calc(100% - 40px), 1080px);
  margin-inline: auto;
  padding-block: 22px 30px;
}

.diy-editorial-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid #e5ddcf;
  border-radius: 12px 12px 0 0;
  background: #f7f2e8;
  box-shadow: 0 22px 70px rgb(96 74 42 / 10%);
}

.diy-editorial-hero__media,
.diy-editorial-hero__shade {
  position: absolute;
  inset: 0;
  margin: 0;
}

.diy-editorial-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.diy-editorial-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, #f7f2e8 0%, rgb(247 242 232 / 99%) 29%, rgb(247 242 232 / 90%) 42%, rgb(247 242 232 / 20%) 64%, transparent 76%),
    linear-gradient(180deg, transparent 68%, rgb(247 242 232 / 18%));
}

.diy-editorial-hero__content {
  position: relative;
  z-index: 2;
  width: 48%;
  padding: 42px 28px 48px;
}

.diy-editorial-kicker {
  margin: 0;
  color: #5c643d;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.diy-editorial-hero h1 {
  margin: 34px 0 24px;
  color: #30351f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.3rem, 7.2vw, 5.9rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.diy-editorial-hero h1 span {
  display: block;
}

.diy-editorial-hero h1 .accent {
  color: #b95024;
}

.diy-editorial-ornament {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  width: min(310px, 90%);
  color: #7e8852;
}

.diy-editorial-ornament i {
  height: 1px;
  background: currentColor;
}

.diy-editorial-ornament span {
  position: relative;
  width: 38px;
  height: 20px;
  background: linear-gradient(165deg, transparent 45%, currentColor 47%, currentColor 52%, transparent 54%) center / 31px 16px no-repeat;
}

.diy-editorial-ornament span::before,
.diy-editorial-ornament span::after {
  position: absolute;
  width: 15px;
  height: 8px;
  border-radius: 100% 0 100% 0;
  background: currentColor;
  content: "";
}

.diy-editorial-ornament span::before {
  top: 1px;
  left: 5px;
  transform: rotate(28deg);
}

.diy-editorial-ornament span::after {
  right: 4px;
  bottom: 1px;
  transform: rotate(-152deg);
}

.diy-editorial-deck {
  max-width: 365px;
  margin: 23px 0 0;
  color: #2b2d25;
  font-size: 1.15rem;
  line-height: 1.55;
}

.diy-video-showcase {
  padding: 48px 28px 58px;
  border-inline: 1px solid #e5ddcf;
  background: rgb(255 253 248 / 84%);
}

.diy-video-showcase__header {
  max-width: 680px;
  margin: 0 auto 38px;
  text-align: center;
}

.diy-video-showcase__header h2 {
  margin: 10px 0 11px;
  color: #30351f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.diy-video-showcase__header > p:last-child {
  margin: 0;
  color: #666454;
  line-height: 1.5;
}

.diy-video-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.diy-video-card {
  min-width: 0;
  padding: 0 24px;
}

.diy-video-card + .diy-video-card {
  border-left: 1px solid #ded2be;
}

.diy-video-card__media {
  position: relative;
  max-width: 286px;
  margin-inline: auto;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  background: #11120e;
  box-shadow: 0 16px 38px rgb(56 43 22 / 14%);
}

.diy-video-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  background: #11120e;
  object-fit: contain;
}

.diy-video-card__media > span {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fffef7;
  background: rgb(49 54 32 / 88%);
  font-size: 0.68rem;
  font-weight: 750;
  pointer-events: none;
}

.diy-video-card__copy {
  max-width: 290px;
  margin: 19px auto 0;
  text-align: center;
}

.diy-video-card__copy > p {
  margin: 0 0 4px;
  color: #667044;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.diy-video-card h3 {
  margin: 0;
  color: #282a20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.08;
}

.diy-video-card__copy div {
  margin-top: 12px;
  color: #4f5047;
  font-size: 0.94rem;
  line-height: 1.5;
}

.diy-editorial-takeaway {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 14px;
  padding: 28px 44px;
  border: 1px solid #e4d6c1;
  border-radius: 12px;
  background: #f5ebdf;
}

.diy-editorial-takeaway > span {
  color: #77834d;
  font: 5.6rem/1 Georgia, serif;
  text-align: center;
  transform: rotate(-13deg);
}

.diy-editorial-takeaway h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: #333823;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.05rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.diy-editorial-cta {
  position: relative;
  min-height: 300px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 14px;
  color: #fffdf6;
  background: #78805a url('/images/diy/diy-editorial-hero.webp') center 56% / cover no-repeat;
}

.diy-editorial-cta__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(75 81 50 / 78%), rgb(104 112 70 / 92%) 29%, rgb(104 112 70 / 94%) 71%, rgb(75 81 50 / 78%)),
    rgb(92 99 60 / 34%);
}

.diy-editorial-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 690px;
  margin-inline: auto;
  padding: 38px 30px 32px;
  text-align: center;
}

.diy-editorial-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.diy-editorial-cta p {
  max-width: 560px;
  margin: 13px auto 21px;
  color: #f2efe3;
  font-size: 1.04rem;
  line-height: 1.5;
}

.page--diy .diy-editorial-cta__button {
  width: min(100%, 500px);
  min-height: 72px;
  border: 1px solid #e27a31;
  border-radius: 20px;
  color: #fffdf8;
  background: linear-gradient(110deg, #cb551d, #e97225 45%, #f08c3b 52%, #d95d1e 70%, #cb551d);
  background-size: 220% 100%;
  box-shadow: 0 12px 28px rgb(64 40 18 / 25%), inset 0 1px 0 rgb(255 255 255 / 28%);
  font-size: 1.3rem;
  animation: diy-cta-shimmer 3.6s ease-in-out infinite;
}

.page--diy .diy-editorial-cta__button:hover {
  background-position: 0 50%;
  box-shadow: 0 15px 34px rgb(64 40 18 / 32%), inset 0 1px 0 rgb(255 255 255 / 32%);
}

.diy-editorial-cta small {
  margin-top: 10px;
  color: rgb(255 253 246 / 68%);
  font-size: 0.68rem;
}

@keyframes diy-cta-shimmer {
  0%,
  18% {
    background-position: 100% 50%;
  }

  68%,
  100% {
    background-position: 0 50%;
  }
}

.diy-more-finds {
  margin-top: 14px;
  padding: 30px 32px 26px;
  border: 1px solid #e3d4bf;
  border-radius: 12px;
  background: #f6eee2;
}

.diy-more-finds__header {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.diy-more-finds__header > div {
  max-width: 720px;
}

.diy-more-finds__header h2 {
  margin: 7px 0 8px;
  color: #333823;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.diy-more-finds__header p:last-child {
  margin: 0;
  color: #656353;
  line-height: 1.5;
}

.diy-more-finds__header strong {
  flex: 0 0 auto;
  color: #78814f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.3rem;
  font-weight: 500;
  line-height: 1;
}

.diy-more-finds__grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.diy-blurred-find {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgb(94 93 67 / 18%);
  border-radius: 8px;
  background: #d8d3c3;
}

.diy-blurred-find::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgb(42 44 28 / 4%), rgb(42 44 28 / 30%));
}

.diy-blurred-find img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3.5px) saturate(0.65);
  transform: scale(1.09);
}

.diy-blurred-find figcaption {
  position: absolute;
  z-index: 1;
  right: 7px;
  bottom: 6px;
  color: #fffdf5;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 8px rgb(0 0 0 / 55%);
}

.diy-more-finds__action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 30px;
  align-items: center;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #ddcdb5;
}

.diy-more-finds__action p {
  margin: 0 0 5px;
  color: #6c7448;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.diy-more-finds__action h3 {
  margin: 0;
  color: #333823;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.page--diy .diy-more-finds__button {
  width: 100%;
  min-height: 58px;
  border: 1px solid #df742d;
  border-radius: 14px;
  color: #fffdf8;
  background: linear-gradient(110deg, #cb551d, #e97225 45%, #f08c3b 52%, #d95d1e 70%, #cb551d);
  background-size: 220% 100%;
  box-shadow: 0 8px 20px rgb(89 54 22 / 18%), inset 0 1px 0 rgb(255 255 255 / 25%);
  font-size: 0.96rem;
  animation: diy-cta-shimmer 3.6s ease-in-out infinite;
}

.page--diy .diy-more-finds__button:hover {
  background-position: 0 50%;
  box-shadow: 0 10px 24px rgb(89 54 22 / 24%), inset 0 1px 0 rgb(255 255 255 / 30%);
}

.diy-more-finds__action small {
  display: block;
  margin-top: 7px;
  color: #817c6d;
  font-size: 0.65rem;
  text-align: center;
}

@media (min-width: 760px) and (max-width: 900px) {
  .diy-more-finds__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .diy-editorial {
    width: min(calc(100% - 24px), 1080px);
    padding-top: 12px;
  }

  .diy-editorial-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .diy-editorial-hero__content {
    order: 1;
    width: 100%;
    padding: 26px 22px 28px;
  }

  .diy-editorial-hero__media {
    position: relative;
    order: 2;
    inset: auto;
    aspect-ratio: 4 / 3;
  }

  .diy-editorial-hero__media img {
    object-position: 66% center;
  }

  .diy-editorial-hero__shade {
    display: none;
  }

  .diy-editorial-hero h1 {
    margin: 22px 0 17px;
    font-size: clamp(3rem, 14.3vw, 4.1rem);
    line-height: 0.92;
  }

  .diy-editorial-deck {
    font-size: 1.02rem;
  }

  .diy-video-showcase {
    padding: 38px 18px 44px;
  }

  .diy-video-showcase__header {
    margin-bottom: 30px;
  }

  .diy-video-showcase__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .diy-video-card {
    padding: 0;
  }

  .diy-video-card + .diy-video-card {
    padding-top: 34px;
    border-top: 1px solid #ded2be;
    border-left: 0;
  }

  .diy-video-card__media {
    width: min(100%, 330px);
  }

  .diy-editorial-takeaway {
    grid-template-columns: 70px 1fr;
    gap: 18px;
    padding: 24px 20px;
  }

  .diy-editorial-takeaway > span {
    font-size: 4rem;
  }

  .diy-editorial-takeaway h2 {
    font-size: 1.75rem;
  }

  .diy-editorial-cta {
    min-height: 390px;
    background-position: 69% center;
  }

  .diy-editorial-cta__content {
    justify-content: center;
    min-height: 390px;
    padding: 34px 20px;
  }

  .page--diy .diy-editorial-cta__button {
    min-height: 64px;
    border-radius: 16px;
    font-size: 1.08rem;
  }

  .diy-more-finds {
    padding: 24px 18px 20px;
  }

  .diy-more-finds__header {
    gap: 16px;
    align-items: flex-start;
  }

  .diy-more-finds__header h2 {
    font-size: 2rem;
  }

  .diy-more-finds__header strong {
    font-size: 3.1rem;
  }

  .diy-more-finds__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .diy-more-finds__action {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
    padding-top: 18px;
  }

  .diy-more-finds__action h3 {
    font-size: 1.4rem;
  }

  .page--diy .diy-more-finds__button {
    min-height: 56px;
    border-radius: 13px;
  }
}

@media (max-width: 370px) {
  .diy-editorial-hero h1 {
    font-size: 2.75rem;
  }

  .diy-editorial-kicker {
    font-size: 0.67rem;
  }

  .diy-editorial-takeaway {
    grid-template-columns: 1fr;
  }

  .diy-editorial-takeaway > span {
    display: none;
  }
}

/* DIY dark continuation teaser */
.page--diy .diy-editorial :is(h1, h2, h3),
.page--diy .diy-video-card__copy > p {
  font-family: var(--diy-display-font);
}

.diy-more-finds {
  padding: 0;
  overflow: hidden;
  border: 1px solid #292b23;
  border-radius: 8px;
  color: #f7f5ed;
  background: #11130d;
  box-shadow: 0 18px 45px rgb(47 43 28 / 15%);
}

.diy-more-finds__grid {
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 2px;
  height: 150px;
  margin: 0;
  overflow: hidden;
  background: #080a07;
}

.diy-blurred-find {
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: #25281f;
}

.diy-blurred-find + .diy-blurred-find {
  border-left: 1px solid #36382f;
}

.diy-blurred-find::after {
  background: linear-gradient(180deg, rgb(10 12 8 / 18%), rgb(10 12 8 / 66%));
}

.diy-blurred-find img {
  filter: blur(5px) saturate(0.48) brightness(0.62);
  transform: scale(1.13);
}

.diy-more-finds__content {
  padding: 28px 24px 22px;
  text-align: center;
}

.diy-more-finds__content > p {
  margin: 0 0 11px;
  color: #d8ff4f;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diy-more-finds__content h2 {
  margin: 0;
  color: #f7f5ed;
  font-family: var(--diy-display-font);
  font-size: clamp(2.35rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.diy-more-finds__content > div {
  margin: 13px 0 20px;
  color: #d2d3ca;
  font-size: 0.95rem;
  line-height: 1.5;
}

.page--diy .diy-more-finds__button {
  width: 100%;
  min-height: 60px;
  margin: 0;
  border: 1px solid #d8ff4f;
  border-radius: 7px;
  color: #11130d;
  background: #d8ff4f;
  box-shadow: none;
  font-family: var(--diy-body-font);
  font-size: 0.98rem;
  animation: none;
}

.page--diy .diy-more-finds__button:hover {
  color: #11130d;
  background: #e3ff7a;
  box-shadow: 0 8px 22px rgb(216 255 79 / 13%);
}

.diy-more-finds__content small {
  display: block;
  margin-top: 10px;
  color: #77796f;
  font-size: 0.63rem;
}

@media (max-width: 759px) {
  .diy-more-finds__grid {
    grid-template-columns: repeat(9, 25%);
    gap: 2px;
    height: 128px;
  }

  .diy-more-finds__content {
    padding: 26px 18px 20px;
  }

  .diy-more-finds__content h2 {
    max-width: 310px;
    margin-inline: auto;
    font-size: clamp(1.95rem, 9vw, 2.3rem);
  }

  .diy-more-finds__content > div {
    margin-bottom: 18px;
    font-size: 0.9rem;
  }

  .page--diy .diy-more-finds__button {
    min-height: 58px;
    border-radius: 7px;
    font-size: 0.9rem;
  }
}

/* Horror editorial */
.page--horror {
  --horror-paper: #0d0e0d;
  --horror-ink: #e8e4da;
  --horror-muted: #a9a49b;
  --horror-accent: #c9ad72;
  --horror-line: #30312d;
  color: var(--horror-ink);
  background: var(--horror-paper);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.horror-container {
  max-width: 700px;
}

.horror-hero__copy {
  max-width: 820px;
  padding-top: 68px;
}

.page--horror .header-badge {
  min-height: 0;
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--horror-accent);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.horror-hero h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(2.5rem, 5.2vw, 4.75rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.horror-hero h1 span {
  display: block;
}

.page--horror .hero-intro {
  max-width: 660px;
  margin-top: 24px;
  color: var(--horror-muted);
  font-size: clamp(1.12rem, 1.03rem + 0.35vw, 1.34rem);
  line-height: 1.55;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 24px 0 36px;
  color: var(--horror-muted);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-meta span:first-child {
  color: var(--horror-accent);
}

.horror-cover {
  position: relative;
  width: min(calc(100% - 32px), 1080px);
  margin: 0 auto 76px;
}

.horror-cover img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.horror-cover figcaption,
.story-section__media figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 16px;
  padding: 10px 0 0;
  color: #8f8b84;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
}

.editorial-figure figcaption a {
  color: #b5aa91;
  text-underline-offset: 3px;
}

.media-disclosure {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  padding: 6px 8px;
  border: 1px solid rgb(232 228 218 / 26%);
  border-radius: 2px;
  color: #e5e0d4;
  background: rgb(13 14 13 / 82%);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.6rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.story {
  max-width: 700px;
}

.story-section {
  margin-bottom: 76px;
}

.story-section__eyebrow,
.cliffhanger-label {
  margin: 0 0 13px;
  color: var(--horror-accent);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-section h2 {
  max-width: 620px;
  margin: 0 0 24px;
  color: #eee9de;
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.story-section > p:not(.story-section__eyebrow) {
  margin: 0 0 1.2em;
  color: #d4d0c7;
  font-size: clamp(1.125rem, 1.03rem + 0.4vw, 1.38rem);
  line-height: 1.7;
}

.story-section blockquote {
  width: min(850px, calc(100% + 140px));
  margin: 48px 0 50px -70px;
  padding: 28px 0;
  border-top: 1px solid var(--horror-line);
  border-bottom: 1px solid var(--horror-line);
  color: #e9e3d7;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.story-section__media {
  position: relative;
  width: 100%;
  margin: 46px 0 0;
}

.story-section__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.editorial-figure--reconstruction img {
  filter: sepia(0.14) saturate(0.72) contrast(1.04);
}

.editorial-figure--wide {
  left: 50%;
  width: min(calc(100vw - 48px), 1040px);
  transform: translateX(-50%);
}

.editorial-figure--offset {
  width: min(800px, calc(100% + 100px));
  margin-left: -20px;
}

.story-pivot {
  margin: 4px 0 76px;
  padding: 26px 0 0;
  border-top: 1px solid #6e634b;
}

.story-pivot p {
  margin: 0 0 13px;
  color: var(--horror-accent);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-pivot h2 {
  margin: 0;
  color: #f1ebdf;
  max-width: 620px;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.story-pivot span {
  display: block;
  max-width: 620px;
  margin-top: 14px;
  color: #c9c4ba;
  font-size: clamp(1.125rem, 1.04rem + 0.3vw, 1.3rem);
  line-height: 1.65;
}

.page--horror-short .horror-cover {
  margin-bottom: 54px;
}

.page--horror-short .story-pivot {
  margin-top: 0;
  margin-bottom: 64px;
}

.page--horror-short .horror-cliffhanger {
  margin-top: 0;
}

.horror-cliffhanger {
  margin-top: 18px;
  padding-bottom: 76px;
}

.horror-cliffhanger__content {
  max-width: 700px;
  padding-top: 30px;
  border-top: 1px solid var(--horror-line);
}

.horror-cliffhanger h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.horror-cliffhanger__content > p:not(.cliffhanger-label) {
  max-width: 580px;
  margin: 18px 0 22px;
  color: var(--horror-muted);
  font-size: clamp(1.06rem, 1rem + 0.25vw, 1.2rem);
  line-height: 1.65;
}

.page--horror .button--editorial {
  width: auto;
  min-height: 42px;
  padding: 6px 0 4px;
  border-bottom: 1px solid var(--horror-accent);
  border-radius: 0;
  color: var(--horror-accent);
  background: transparent;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 750;
}

.page--horror .button--editorial:hover {
  color: #e2c98f;
  background: transparent;
}

.page--horror .micro-footer {
  color: var(--horror-muted);
  border-top: 1px solid #242521;
  background: var(--horror-paper);
}

.horror-sources {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.horror-sources a {
  color: var(--horror-ink);
  text-underline-offset: 3px;
}

.horror-sources a:hover {
  color: var(--horror-accent);
}

/* Horror reference-led case layout */
.case-page {
  --case-bg: #080a08;
  --case-panel: #0d100d;
  --case-ink: #eee8dc;
  --case-muted: #bcb5aa;
  --case-gold: #d6b75f;
  --case-line: #4a493f;
  color: var(--case-ink);
  background:
    radial-gradient(circle at 50% 6%, rgb(27 31 25 / 58%), transparent 33%),
    var(--case-bg);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.case-shell {
  width: min(calc(100% - 72px), 1390px);
  margin-inline: auto;
}

.case-kicker {
  margin: 0;
  color: var(--case-gold);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #0a0c09;
}

.case-hero__media,
.case-hero__shade {
  position: absolute;
  inset: 0;
}

.case-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 51%;
  filter: sepia(0.72) grayscale(0.54) brightness(0.72) contrast(1.2);
}

.case-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, #070907 0%, rgb(7 9 7 / 98%) 20%, rgb(7 9 7 / 86%) 40%, rgb(7 9 7 / 36%) 64%, rgb(7 9 7 / 4%) 82%),
    linear-gradient(180deg, rgb(4 5 4 / 20%), transparent 45%, rgb(4 5 4 / 28%));
}

.case-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 590px;
  padding-block: 44px;
}

.case-hero__rule {
  width: min(680px, 52%);
  padding-left: 28px;
  border-left: 2px solid var(--case-gold);
}

.case-hero h1 {
  margin: 26px 0 22px;
  color: #f4eee2;
  font-size: clamp(4rem, 5.65vw, 5.4rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.case-hero h1 span {
  display: block;
}

.case-hero__deck {
  margin: 0;
  color: #d4cdc1;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.case-media__disclosure {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 12px;
  padding: 6px 8px;
  border: 1px solid rgb(238 232 220 / 32%);
  color: #eee8dc;
  background: rgb(5 7 5 / 78%);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-hero > .case-media__disclosure,
.case-mystery > .case-media__disclosure {
  top: auto;
  right: 18px;
  bottom: 14px;
  left: auto;
}

.case-chronicle {
  display: grid;
  grid-template-columns: minmax(320px, 0.38fr) minmax(0, 0.62fr);
  grid-template-areas:
    "intro footprints"
    "crime family";
  gap: 32px 56px;
  padding-top: 38px;
}

.case-chronicle__intro {
  grid-area: intro;
}

.case-intro {
  max-width: 440px;
  margin: 16px 0 22px;
  color: #d5cec2;
  font-size: 1.08rem;
  line-height: 1.55;
}

.case-facts {
  max-width: 430px;
}

.case-fact {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 11px 0 16px;
}

.case-fact > span {
  color: var(--case-gold);
  font-size: 1.65rem;
  line-height: 1.1;
}

.case-fact > div {
  padding-bottom: 16px;
  border-bottom: 1px solid #6d6141;
}

.case-fact:last-child > div {
  border-bottom-color: transparent;
}

.case-fact h3 {
  margin: 0 0 7px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}

.case-fact p,
.case-crime p,
.case-aftermath p,
.case-mystery p,
.case-cta p {
  margin: 0;
  color: var(--case-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.case-media {
  position: relative;
  min-width: 0;
  margin: 0;
}

.case-media--footprints {
  grid-area: footprints;
}

.case-media--family {
  grid-area: family;
  width: 86%;
  justify-self: end;
}

.case-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: sepia(0.78) grayscale(0.32) brightness(0.84) contrast(1.15);
}

.case-media--footprints img {
  aspect-ratio: 1.95 / 1;
}

.case-media--family img {
  aspect-ratio: 1.58 / 1;
}

.case-media figcaption {
  margin-top: 8px;
  color: #89847a;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.67rem;
  line-height: 1.4;
}

.case-crime {
  grid-area: crime;
  align-self: start;
  padding-top: 28px;
  border-top: 1px solid var(--case-line);
}

.case-crime h2,
.case-aftermath h2,
.case-cta h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.9rem, 2.6vw, 2.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.case-crime p {
  max-width: 390px;
  font-size: 1rem;
}

.case-aftermath {
  display: grid;
  grid-template-columns: 0.95fr 1fr 0.85fr;
  gap: 38px;
  align-items: stretch;
  margin-top: 38px;
  padding-block: 34px;
  border-top: 1px solid var(--case-line);
  border-bottom: 1px solid var(--case-line);
}

.case-aftermath__intro {
  padding-right: 18px;
}

.case-aftermath__intro p:last-child {
  max-width: 340px;
  font-size: 1.02rem;
}

.case-signals {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0 34px;
  border-right: 1px solid var(--case-gold);
  border-left: 1px solid var(--case-line);
  list-style: none;
}

.case-signals li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  color: #ddd5c7;
  font-size: 0.96rem;
}

.case-signals svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--case-gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-aftermath blockquote {
  align-self: center;
  margin: 0;
  color: #f0e9dc;
  font-size: clamp(1.6rem, 2.45vw, 2.45rem);
  font-style: italic;
  line-height: 1.35;
}

.case-mystery {
  position: relative;
  min-height: 255px;
  margin-top: 32px;
  overflow: hidden;
  background: #0b0d0b;
}

.case-mystery__media,
.case-mystery__shade {
  position: absolute;
  inset: 0;
}

.case-mystery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: sepia(0.65) grayscale(0.38) brightness(0.58) contrast(1.15);
}

.case-mystery__shade {
  z-index: 1;
  background: linear-gradient(90deg, rgb(5 7 5 / 88%), rgb(5 7 5 / 55%) 62%, rgb(5 7 5 / 32%));
}

.case-mystery__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 39px 90px 44px;
}

.case-mystery h2 {
  margin: 15px 0 14px;
  font-size: clamp(3rem, 5vw, 4.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.case-mystery p:last-child {
  max-width: 820px;
  color: #d2cabd;
  font-size: 1.02rem;
}

.case-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  margin-top: 32px;
  padding: 28px 62px;
  border: 1px solid #a68942;
  border-radius: 3px;
  background: rgb(12 15 12 / 88%);
}

.case-cta h2 {
  margin-top: 12px;
}

.case-cta p {
  max-width: 620px;
  font-size: 0.98rem;
}

.case-cta__action {
  text-align: center;
}

.page--horror .case-cta__button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 64px;
  border: 1px solid #e1c26d;
  border-radius: 14px;
  color: #17140d;
  background: linear-gradient(110deg, #d8af50 0%, #efd17c 34%, #fff0b2 48%, #e9c568 62%, #d8af50 100%);
  background-size: 230% 100%;
  box-shadow: 0 10px 30px rgb(190 145 45 / 16%), inset 0 1px 0 rgb(255 255 255 / 35%);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 850;
  animation: case-cta-shimmer 3.2s ease-in-out infinite;
}

.page--horror .case-cta__button:hover {
  border-color: #f3d98f;
  box-shadow: 0 13px 36px rgb(211 166 62 / 25%), inset 0 1px 0 rgb(255 255 255 / 45%);
}

@keyframes case-cta-shimmer {
  0%,
  18% {
    background-position: 100% 50%;
  }

  62%,
  100% {
    background-position: 0 50%;
  }
}

.case-cta small {
  display: block;
  margin-top: 12px;
  color: #9d978c;
  font-size: 0.72rem;
}

.case-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  padding-block: 24px 34px;
  color: #77746d;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.68rem;
}

.case-footer a {
  color: #9b9589;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .case-shell {
    width: min(calc(100% - 40px), 720px);
  }

  .case-hero {
    min-height: 620px;
  }

  .case-hero__content {
    align-items: flex-end;
    min-height: 620px;
    padding-bottom: 48px;
  }

  .case-hero__media img {
    object-position: 64% center;
  }

  .case-hero__shade {
    background:
      linear-gradient(90deg, rgb(7 9 7 / 94%), rgb(7 9 7 / 63%) 72%, rgb(7 9 7 / 30%)),
      linear-gradient(180deg, rgb(4 5 4 / 8%) 28%, rgb(4 5 4 / 92%) 86%);
  }

  .case-hero__rule {
    width: min(650px, 92%);
  }

  .case-hero h1 {
    font-size: clamp(3.5rem, 9vw, 4.7rem);
  }

  .case-chronicle {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "footprints"
      "crime"
      "family";
    gap: 34px;
  }

  .case-facts,
  .case-intro,
  .case-crime p {
    max-width: none;
  }

  .case-media--family {
    width: 88%;
  }

  .case-aftermath {
    grid-template-columns: 1fr;
  }

  .case-signals {
    padding: 24px 0;
    border-top: 1px solid var(--case-line);
    border-right: 0;
    border-bottom: 1px solid var(--case-gold);
    border-left: 0;
  }

  .case-aftermath blockquote {
    max-width: 620px;
  }

  .case-mystery__content {
    padding-inline: 42px;
  }

  .case-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .case-shell {
    width: calc(100% - 28px);
  }

  .case-hero {
    min-height: 590px;
  }

  .case-hero__content {
    min-height: 590px;
    padding-bottom: 34px;
  }

  .case-hero__rule {
    width: 100%;
    padding-left: 18px;
  }

  .case-hero h1 {
    margin-block: 20px 18px;
    max-width: 100%;
    font-size: clamp(2.25rem, 11.5vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .case-hero__deck {
    max-width: 330px;
    font-size: 1.02rem;
  }

  .case-hero > .case-media__disclosure {
    right: 10px;
    bottom: 8px;
  }

  .case-chronicle {
    padding-top: 30px;
  }

  .case-intro {
    font-size: 1rem;
  }

  .case-fact {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .case-fact > span {
    font-size: 1.45rem;
  }

  .case-fact h3 {
    font-size: 1.18rem;
  }

  .case-fact p,
  .case-crime p,
  .case-aftermath p,
  .case-mystery p,
  .case-cta p {
    font-size: 0.96rem;
  }

  .case-media--footprints,
  .case-media--family {
    width: calc(100% + 28px);
    margin-left: -14px;
  }

  .case-media figcaption {
    padding-inline: 14px;
  }

  .case-aftermath {
    gap: 28px;
    padding-block: 30px;
  }

  .case-aftermath blockquote {
    font-size: 1.75rem;
  }

  .case-mystery {
    min-height: 400px;
  }

  .case-mystery__media img {
    object-position: 58% center;
  }

  .case-mystery__shade {
    background: linear-gradient(180deg, rgb(5 7 5 / 34%), rgb(5 7 5 / 90%) 72%);
  }

  .case-mystery__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
    padding: 28px 22px;
  }

  .case-mystery h2 {
    font-size: 2.8rem;
  }

  .case-cta {
    gap: 24px;
    padding: 24px 20px;
  }

  .page--horror .case-cta__button {
    min-height: 58px;
    border-radius: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page--horror .case-cta__button {
    animation: none;
    background-position: 50% 50%;
  }
}

.analytics-debug {
  position: fixed;
  z-index: 60;
  right: 10px;
  bottom: 10px;
  width: min(340px, calc(100% - 20px));
  max-height: 52vh;
  overflow: auto;
  padding: 12px;
  border: 1px solid #9ddc44;
  border-radius: 6px;
  color: #eef3e6;
  background: rgb(5 7 5 / 96%);
  box-shadow: 0 8px 32px rgb(0 0 0 / 45%);
  font: 0.72rem/1.4 ui-monospace, "Cascadia Code", Consolas, monospace;
}

.analytics-debug strong,
.analytics-debug span {
  display: block;
}

.analytics-debug strong {
  color: #b9f36e;
}

.analytics-debug pre {
  margin: 8px 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.analytics-debug ul {
  margin: 5px 0 0;
  padding-left: 18px;
}

.not-found {
  display: grid;
  place-content: center;
  min-height: 100vh;
  padding: 24px;
  color: #171810;
  background: #f3f1e8;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 10vw, 5rem);
}

.not-found .button {
  margin-top: 14px;
  color: #f8f8f1;
  background: #171810;
}

@media (min-width: 700px) {
  .page-container,
  .horror-container {
    width: min(100% - 64px, 1080px);
  }

  .diy-hero,
  .horror-hero__copy {
    padding-top: 82px;
  }

  .diy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 24px;
  }

  .diy-grid--videos {
    gap: 46px 24px;
  }

  .teaser__content {
    padding: 44px;
  }

  .page--diy .teaser .button {
    width: auto;
    min-width: min(100%, 420px);
  }

  .blur-preview {
    height: 240px;
  }

  .horror-cover {
    margin-bottom: 84px;
  }
}

@media (min-width: 769px) {
  body.sticky-visible {
    padding-bottom: 0;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1100px) {
  .diy-hero {
    padding-top: 96px;
  }

  .diy-grid {
    gap: 72px 32px;
  }

  .diy-grid--videos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .media-card:nth-child(even) {
    transform: translateY(80px);
  }

  .media-card:nth-child(even).reveal {
    transform: translateY(96px);
  }

  .media-card:nth-child(even).reveal.is-visible {
    transform: translateY(80px);
  }

  .diy-grid--videos .media-card:nth-child(even),
  .diy-grid--videos .media-card:nth-child(even).reveal.is-visible {
    transform: none;
  }

  .diy-grid--videos .media-card:nth-child(even).reveal:not(.is-visible) {
    transform: translateY(16px);
  }

  .teaser {
    margin-top: 70px;
  }

  .horror-cover {
    margin-top: 0;
  }
}

@media (max-width: 699px) {
  .horror-hero__copy {
    padding-top: 44px;
  }

  .page--horror .header-badge {
    max-width: 290px;
    margin-bottom: 18px;
    line-height: 1.45;
  }

  .horror-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    line-height: 1.03;
  }

  .page--horror .hero-intro {
    margin-top: 20px;
    font-size: 1.12rem;
    line-height: 1.58;
  }

  .story-meta {
    margin: 22px 0 30px;
    font-size: 0.65rem;
  }

  .horror-cover {
    width: 100%;
    margin-bottom: 58px;
  }

  .horror-cover figcaption {
    padding-inline: 16px;
  }

  .story-section {
    margin-bottom: 60px;
  }

  .story-section h2 {
    margin-bottom: 19px;
  }

  .story-section > p:not(.story-section__eyebrow) {
    font-size: 1.14rem;
    line-height: 1.68;
  }

  .story-section blockquote {
    width: 100%;
    margin: 38px 0 40px;
    padding: 24px 0;
    font-size: 1.85rem;
    line-height: 1.28;
  }

  .editorial-figure--wide,
  .editorial-figure--offset {
    left: auto;
    width: calc(100% + 32px);
    margin-left: -16px;
    transform: none;
  }

  .story-section__media figcaption {
    padding-inline: 16px;
  }

  .story-pivot {
    margin-bottom: 60px;
  }

  .page--horror-short .horror-cover {
    margin-bottom: 50px;
  }

  .page--horror-short .story-pivot {
    margin-bottom: 56px;
  }

  .horror-cliffhanger {
    padding-bottom: 58px;
  }

  .horror-cliffhanger__content {
    padding-top: 26px;
  }

  .horror-cliffhanger h2 {
    font-size: 2.25rem;
  }

  .horror-sources {
    line-height: 1.45;
  }
}

@media (max-width: 370px) {
  .page-container,
  .horror-container {
    width: min(100% - 24px, 1080px);
  }

  .diy-hero h1,
  .horror-hero h1 {
    font-size: 2.15rem;
  }

  .header-badge {
    font-size: 0.6rem;
  }

  .media-card__body {
    grid-template-columns: 34px 1fr;
    gap: 8px;
  }

  .button {
    padding-inline: 13px;
    font-size: 0.94rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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