/*
Theme Name: Cinefable
Theme URI: https://cinefable.com/
Author: Rehan Anjum
Description: A custom editorial WordPress theme for Cinefable. Remarkable, But Real.
Version: 1.1.4
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: cinefable
*/

:root {
  --cf-bg: #E6ECEA;
  --cf-surface: #F7F9F7;
  --cf-ink: #161C1E;
  --cf-deep: #17363B;
  --cf-secondary: #4D6668;
  --cf-accent: #B4523E;
  --cf-highlight: #6F8E87;
  --cf-soft: #D9E1DE;
  --cf-border: #C4CFCC;
  --cf-muted: #687476;
  --cf-max: 1240px;
  --cf-reading: 780px;
  --cf-radius: 5px;
  --cf-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --cf-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cf-bg);
  color: var(--cf-ink);
  font-family: var(--cf-sans);
  font-size: 18px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--cf-accent); color: var(--cf-surface); }

.cf-wrap {
  width: min(calc(100% - 40px), var(--cf-max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(230,236,234,.96);
  border-bottom: 1px solid rgba(196,207,204,.75);
  transition: padding .28s ease, background .28s ease, box-shadow .28s ease;
}
.site-header.cf-scrolled { box-shadow: 0 8px 28px rgba(22,28,30,.06); }
.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height .28s ease;
}
.site-header.cf-scrolled .site-header__inner { min-height: 68px; }
.site-branding { min-width: 0; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { max-height: 46px; width: auto; }
.site-title {
  margin: 0;
  font-family: var(--cf-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
}
.site-title a { text-decoration: none; }
.site-description {
  margin: 5px 0 0;
  color: var(--cf-muted);
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.primary-navigation ul,
.footer-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}
.primary-navigation a,
.footer-navigation a {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
}
.primary-navigation a::after,
.footer-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--cf-accent);
  transition: right .25s ease;
}
.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.footer-navigation a:hover::after,
.footer-navigation a:focus-visible::after { right: 0; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius);
  background: transparent;
  color: var(--cf-deep);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* Front page hero */
.cf-hero {
  position: relative;
  overflow: hidden;
  background: var(--cf-deep);
  color: var(--cf-surface);
  min-height: min(820px, calc(100svh - 80px));
  display: grid;
  align-items: stretch;
}
.cf-hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(247,249,247,.12);
  border-radius: 50%;
  right: -180px;
  top: -160px;
}
.cf-hero::after {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(180,82,62,.55);
  border-radius: 50%;
  right: -50px;
  top: -45px;
}
.cf-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr);
  gap: clamp(60px,8vw,140px);
  align-items: end;
  padding-block: clamp(90px,12vw,150px) 80px;
}
.cf-kicker {
  margin: 0 0 28px;
  color: #AFC0BC;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.cf-hero h1 {
  margin: 0;
  max-width: 890px;
  font-family: var(--cf-serif);
  font-size: clamp(58px, 8.4vw, 126px);
  line-height: .94;
  font-weight: 500;
  letter-spacing: -.055em;
}
.cf-hero h1 em {
  color: var(--cf-accent);
  font-style: normal;
}
.cf-hero__copy {
  max-width: 670px;
  margin-top: 42px;
  color: #D8E1DE;
  font-size: clamp(18px,1.6vw,22px);
}
.cf-hero__copy p { margin: 0 0 18px; }
.cf-hero__copy p:last-child { margin-bottom: 0; }
.cf-hero__evidence {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid rgba(247,249,247,.2);
  padding-left: 34px;
  padding-bottom: 6px;
}
.cf-evidence-label {
  color: #9DB0AB;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 20px;
}
.cf-evidence-list { display: grid; gap: 0; }
.cf-evidence-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(247,249,247,.13);
  color: #D8E1DE;
  font-size: 13px;
}
.cf-evidence-row span:first-child { color: var(--cf-accent); font-variant-numeric: tabular-nums; }
.cf-scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 1px;
  height: 36px;
  background: rgba(247,249,247,.28);
  overflow: hidden;
}
.cf-scroll-cue::after {
  content: "";
  position: absolute;
  left: 0; top: -14px;
  width: 1px; height: 14px;
  background: var(--cf-surface);
  animation: cfScroll 1.8s infinite ease-in-out;
}
@keyframes cfScroll { to { transform: translateY(54px); } }

/* Intro */
.cf-intro {
  padding: clamp(90px, 12vw, 170px) 0;
  background: var(--cf-bg);
  position: relative;
}
.cf-intro__grid {
  display: grid;
  grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr);
  gap: clamp(50px,8vw,130px);
  align-items: start;
}
.cf-intro__label {
  position: sticky;
  top: 110px;
  color: var(--cf-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.cf-intro__statement {
  margin: 0;
  max-width: 900px;
  font-family: var(--cf-serif);
  font-size: clamp(40px,5.2vw,76px);
  line-height: 1.03;
  letter-spacing: -.04em;
  font-weight: 500;
}
.cf-intro__statement strong { color: var(--cf-accent); font-weight: 500; }

/* Category editorial run */
.cf-explore { background: var(--cf-surface); }
.cf-explore__head {
  padding: 100px 0 64px;
  border-bottom: 1px solid var(--cf-border);
}
.cf-explore__head h2 {
  margin: 0;
  font-family: var(--cf-serif);
  font-size: clamp(46px,6vw,84px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 500;
}
.cf-category {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--cf-border);
  background: var(--cf-surface);
}
.cf-category:nth-child(even) { background: var(--cf-bg); }
.cf-category--dark {
  background: var(--cf-deep) !important;
  color: var(--cf-surface);
  border-color: rgba(247,249,247,.15);
}
.cf-category__inner {
  width: min(calc(100% - 40px), var(--cf-max));
  margin-inline: auto;
  padding-block: clamp(90px,11vw,150px);
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 120px minmax(0,1fr) max-content;
  gap: clamp(28px,3vw,54px);
  align-items: center;
}
.cf-category__number {
  font-family: var(--cf-serif);
  font-size: clamp(68px,8vw,118px);
  line-height: .8;
  letter-spacing: -.06em;
  color: var(--cf-border);
  font-variant-numeric: tabular-nums;
}
.cf-category--dark .cf-category__number { color: rgba(247,249,247,.18); }
.cf-category__content {
  min-width: 0;
  max-width: 680px;
}
.cf-category__content h3 {
  margin: 0 0 24px;
  max-width: 820px;
  font-family: var(--cf-serif);
  font-size: clamp(42px,5vw,72px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 500;
}
.cf-category__content p {
  max-width: 780px;
  margin: 0;
  color: var(--cf-secondary);
  font-size: clamp(17px,1.4vw,20px);
}
.cf-category--dark .cf-category__content p { color: #C6D2CF; }
.cf-category__link {
  justify-self: end;
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}
.cf-category__link::after {
  content: "→";
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.cf-category__link:hover::after,
.cf-category__link:focus-visible::after {
  transform: translateX(6px);
  background: currentColor;
  color: var(--cf-surface);
}
.cf-category--dark .cf-category__link:hover::after,
.cf-category--dark .cf-category__link:focus-visible::after { color: var(--cf-deep); }

/* Category art directions */
.cf-art { position: absolute; inset: 0; pointer-events: none; opacity: .9; }
.cf-art--history::before,
.cf-art--history::after {
  content: "";
  position: absolute;
  top: 15%; bottom: 15%;
  width: 1px;
  background: var(--cf-border);
}
.cf-art--history::before { left: 11%; }
.cf-art--history::after { right: 12%; }
.cf-art--history span {
  position: absolute;
  right: 7%; top: 16%;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--cf-muted);
  writing-mode: vertical-rl;
}
.cf-art--space::before,
.cf-art--space::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(247,249,247,.15);
  border-radius: 50%;
  transform: rotate(-14deg);
}
.cf-art--space::before { width: 640px; height: 260px; right: -80px; top: 45px; }
.cf-art--space::after { width: 410px; height: 410px; right: 60px; bottom: -240px; border-color: rgba(180,82,62,.5); }
.cf-art--tech {
  background-image: linear-gradient(rgba(77,102,104,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(77,102,104,.13) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 40%, #000 100%);
}
.cf-art--games::before {
  content: "";
  position: absolute;
  width: 420px; height: 220px;
  right: 6%; top: 50%; transform: translateY(-50%);
  border: 1px solid var(--cf-border);
  border-radius: 26px;
  box-shadow: inset 0 0 0 28px transparent;
}
.cf-art--games::after {
  content: "";
  position: absolute;
  width: 84px; height: 84px;
  right: calc(6% + 72px); top: calc(50% - 42px);
  border: 1px solid var(--cf-accent);
  border-radius: 50%;
}
.cf-art--places { opacity: .65; }
.cf-art--places::before {
  content: "";
  position: absolute;
  width: 640px; height: 360px;
  right: -90px; top: 50%; transform: translateY(-50%) rotate(-8deg);
  border: 1px solid var(--cf-highlight);
  border-radius: 48% 52% 44% 56% / 62% 38% 62% 38%;
  box-shadow: 0 0 0 38px rgba(111,142,135,.12), 0 0 0 76px rgba(111,142,135,.08), 0 0 0 114px rgba(111,142,135,.05);
}
.cf-art--haunted::before {
  content: "";
  position: absolute;
  right: 7%; bottom: 0;
  width: 360px; height: 360px;
  border: 1px solid rgba(247,249,247,.17);
  background: linear-gradient(to bottom, transparent 0 74%, rgba(247,249,247,.08) 74% 75%, transparent 75%);
  clip-path: polygon(8% 100%, 8% 28%, 28% 28%, 28% 10%, 72% 10%, 72% 28%, 92% 28%, 92% 100%);
}
.cf-art--survival::before {
  content: "";
  position: absolute;
  left: 11%; right: 7%; top: 50%;
  height: 1px;
  background: var(--cf-border);
  transform: rotate(-7deg);
  transform-origin: center;
}
.cf-art--survival::after {
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  border: 2px solid var(--cf-accent);
  border-radius: 50%;
  right: 16%; top: 37%;
  background: var(--cf-surface);
}

/* Truth section */
.cf-truth {
  background: var(--cf-accent);
  color: var(--cf-surface);
  position: relative;
  overflow: hidden;
}
.cf-truth::before {
  content: none;
  position: absolute;
  right: -40px;
  top: 40px;
  font-size: clamp(60px,10vw,150px);
  font-weight: 700;
  letter-spacing: -.06em;
  color: rgba(247,249,247,.07);
  white-space: nowrap;
}
.cf-truth__grid {
  position: relative;
  z-index: 2;
  padding-block: clamp(100px,13vw,180px);
  display: grid;
  grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr);
  gap: clamp(55px,8vw,130px);
  align-items: start;
}
.cf-truth h2 {
  margin: 0;
  font-family: var(--cf-serif);
  font-size: clamp(52px,6.4vw,90px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 500;
}
.cf-truth__copy { max-width: 760px; font-size: clamp(18px,1.6vw,22px); }
.cf-truth__copy p { margin: 0 0 20px; }

/* About section */
.cf-about {
  background: var(--cf-deep);
  color: var(--cf-surface);
  padding: clamp(100px,13vw,170px) 0;
}
.cf-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px,8vw,130px);
  align-items: end;
}
.cf-about h2 {
  margin: 0;
  font-family: var(--cf-serif);
  font-size: clamp(50px,6vw,82px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 500;
}
.cf-about__copy { max-width: 710px; color: #CDD7D4; }
.cf-about__link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--cf-surface);
  text-decoration: none;
  border-bottom: 1px solid var(--cf-accent);
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
}

/* Inner pages */
.cf-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--cf-deep);
  color: var(--cf-surface);
  padding: clamp(100px,12vw,155px) 0 70px;
}
.cf-page-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(247,249,247,.12);
  border-radius: 50%;
  right: -240px;
  bottom: -310px;
}
.cf-page-hero__eyebrow {
  color: #AFC0BC;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 24px;
}
.cf-page-hero h1 {
  margin: 0;
  max-width: 940px;
  font-family: var(--cf-serif);
  font-size: clamp(54px,7vw,100px);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 500;
}
.cf-page-body {
  background: var(--cf-surface);
  padding: clamp(70px,9vw,120px) 0 clamp(100px,12vw,150px);
}
.cf-page-content {
  width: min(calc(100% - 40px), var(--cf-reading));
  margin-inline: auto;
}
.cf-page-content > *:first-child { margin-top: 0; }
.cf-page-content h2,
.cf-page-content h3,
.cf-page-content h4 {
  font-family: var(--cf-serif);
  color: var(--cf-deep);
  font-weight: 500;
  letter-spacing: -.025em;
}
.cf-page-content h2 { font-size: clamp(34px,4vw,48px); margin: 68px 0 18px; line-height: 1.08; }
.cf-page-content h3 { font-size: clamp(26px,3vw,34px); margin: 48px 0 14px; line-height: 1.15; }
.cf-page-content p { margin: 0 0 24px; }
.cf-page-content a { color: var(--cf-deep); text-decoration-color: var(--cf-accent); text-underline-offset: 3px; }
.cf-page-content blockquote {
  margin: 48px 0;
  padding: 0 0 0 28px;
  border-left: 2px solid var(--cf-accent);
  font-family: var(--cf-serif);
  font-size: 1.35em;
  line-height: 1.45;
}
.cf-page-content hr { border: 0; border-top: 1px solid var(--cf-border); margin: 56px 0; }
.cf-page-content ul, .cf-page-content ol { padding-left: 1.3em; }
.cf-page-content table { width: 100%; border-collapse: collapse; margin: 36px 0; font-size: 16px; }
.cf-page-content th, .cf-page-content td { border-bottom: 1px solid var(--cf-border); padding: 14px 12px; text-align: left; vertical-align: top; }
.cf-page-content th { color: var(--cf-deep); }

/* Category archive */
.cf-archive-hero {
  background: var(--cf-deep);
  color: var(--cf-surface);
  padding: clamp(100px,12vw,155px) 0 80px;
}
.cf-archive-hero__index {
  color: var(--cf-accent);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cf-archive-hero h1 {
  margin: 0;
  max-width: 1000px;
  font-family: var(--cf-serif);
  font-size: clamp(54px,7vw,100px);
  line-height: .96;
  letter-spacing: -.05em;
  font-weight: 500;
}
.cf-archive-description {
  margin-top: 30px;
  max-width: 760px;
  color: #CED8D5;
}
.cf-archive-list { background: var(--cf-surface); }
.cf-archive-item {
  border-bottom: 1px solid var(--cf-border);
}
.cf-archive-item a {
  width: min(calc(100% - 40px), var(--cf-max));
  margin-inline: auto;
  padding: clamp(48px,6vw,78px) 0;
  display: grid;
  grid-template-columns: 130px minmax(0,1fr) 54px;
  gap: clamp(25px,4vw,60px);
  align-items: start;
  text-decoration: none;
}
.cf-archive-meta {
  color: var(--cf-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.cf-archive-item h2 {
  margin: 0;
  max-width: 900px;
  font-family: var(--cf-serif);
  color: var(--cf-deep);
  font-size: clamp(34px,4vw,54px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 500;
}
.cf-archive-excerpt { margin-top: 14px; max-width: 720px; color: var(--cf-secondary); font-size: 16px; }
.cf-archive-arrow {
  width: 46px; height: 46px;
  border: 1px solid var(--cf-border);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: transform .25s ease, border-color .25s ease;
}
.cf-archive-item a:hover .cf-archive-arrow { transform: translateX(7px); border-color: var(--cf-accent); }

/* PublisherOS pass-through */
.publisheros-pass-through { background: var(--cf-surface); min-height: 60vh; }
.publisheros-pass-through .entry-content { width: 100%; margin: 0; }
.publisheros-pass-through .entry-content > * { max-width: 100%; }

/* Footer */
.site-footer {
  background: #112C30;
  color: #C9D4D1;
  border-top: 1px solid rgba(247,249,247,.08);
  padding: 70px 0 34px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 54px;
}
.site-footer__brand {
  font-family: var(--cf-serif);
  color: var(--cf-surface);
  font-size: clamp(38px,4vw,56px);
  letter-spacing: -.04em;
  line-height: 1;
}
.site-footer__tagline { margin-top: 12px; color: #91A7A2; font-size: 14px; }
.site-footer__note { margin-top: 30px; max-width: 600px; color: #AABAB6; font-size: 14px; }
.footer-navigation { justify-self: end; }
.footer-navigation ul { flex-wrap: wrap; justify-content: flex-end; row-gap: 18px; }
.site-footer__bottom {
  border-top: 1px solid rgba(247,249,247,.11);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #819792;
  font-size: 12px;
}

/* Reveal motion */
.cf-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
.cf-reveal.cf-visible { opacity: 1; transform: translateY(0); }
.cf-reveal-delay-1 { transition-delay: .08s; }
.cf-reveal-delay-2 { transition-delay: .16s; }
.cf-reveal-delay-3 { transition-delay: .24s; }
.cf-parallax { transform: translate3d(0,var(--cf-parallax,0px),0); will-change: transform; }

/* Pagination */
.navigation.pagination { padding: 56px 20px 90px; background: var(--cf-surface); }
.nav-links { width: min(100%, var(--cf-max)); margin-inline: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.page-numbers { min-width: 42px; height: 42px; border: 1px solid var(--cf-border); display: inline-grid; place-items: center; text-decoration: none; padding: 0 12px; }
.page-numbers.current { background: var(--cf-deep); color: var(--cf-surface); border-color: var(--cf-deep); }

/* Forms */
.cf-page-content input:not([type="checkbox"]):not([type="radio"]),
.cf-page-content textarea,
.cf-page-content select {
  width: 100%;
  border: 1px solid var(--cf-border);
  background: var(--cf-surface);
  color: var(--cf-ink);
  border-radius: var(--cf-radius);
  padding: 13px 14px;
}
.cf-page-content button,
.cf-page-content input[type="submit"] {
  border: 1px solid var(--cf-deep);
  background: var(--cf-deep);
  color: var(--cf-surface);
  border-radius: var(--cf-radius);
  padding: 13px 20px;
  cursor: pointer;
}

/* Accessibility */
.screen-reader-text {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: var(--cf-surface);
  clip: auto !important;
  clip-path: none;
  color: var(--cf-deep);
  display: block;
  font-size: 14px;
  height: auto;
  left: 8px;
  padding: 12px 16px;
  top: 8px;
  width: auto;
  z-index: 99999;
}
:focus-visible { outline: 2px solid var(--cf-accent); outline-offset: 4px; }

/* Keep long category CTAs in their own lane before the mobile navigation breakpoint. */
@media (max-width: 1120px) {
  .cf-category__inner { grid-template-columns: 90px minmax(0,1fr); }
  .cf-category__content { max-width: 760px; }
  .cf-category__link { grid-column: 2; justify-self: start; margin-top: 18px; }
}

@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; }
  .primary-navigation {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--cf-bg);
    border-bottom: 1px solid var(--cf-border);
    padding: 20px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .primary-navigation.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-navigation ul { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cf-hero__grid { grid-template-columns: 1fr; align-items: end; }
  .cf-hero__evidence { border-left: 0; border-top: 1px solid rgba(247,249,247,.2); padding: 28px 0 0; max-width: 680px; }
  .cf-intro__grid, .cf-truth__grid, .cf-about__inner, .site-footer__top { grid-template-columns: 1fr; }
  .cf-intro__label { position: static; }
  .footer-navigation { justify-self: start; }
  .footer-navigation ul { justify-content: flex-start; }
}

@media (max-width: 680px) {
  body { font-size: 17px; }
  .cf-wrap, .cf-category__inner, .cf-archive-item a, .cf-page-content { width: min(calc(100% - 28px), var(--cf-max)); }
  .site-header__inner { min-height: 70px; }
  .site-description { display: none; }
  .cf-hero { min-height: auto; }
  .cf-hero__grid { padding-block: 92px 74px; gap: 62px; }
  .cf-hero::before { width: 420px; height: 420px; right: -240px; top: -110px; }
  .cf-hero::after { width: 260px; height: 260px; right: -90px; top: -20px; }
  .cf-evidence-row { grid-template-columns: 58px 1fr; font-size: 12px; }
  .cf-intro { padding: 84px 0; }
  .cf-explore__head { padding: 75px 0 42px; }
  .cf-category { min-height: 500px; }
  .cf-category__inner { grid-template-columns: 1fr; gap: 24px; padding-block: 80px; }
  .cf-category__number { font-size: 66px; }
  .cf-category__link { grid-column: 1; }
  .cf-art--games::before { width: 240px; height: 130px; right: -60px; opacity: .55; }
  .cf-art--games::after { right: 10px; opacity: .55; }
  .cf-art--places::before { width: 360px; height: 220px; right: -180px; opacity: .55; }
  .cf-art--haunted::before { width: 230px; height: 230px; right: -50px; opacity: .6; }
  .cf-truth__grid, .cf-about__inner { padding-block: 90px; }
  .cf-archive-item a { grid-template-columns: 1fr 46px; }
  .cf-archive-meta { grid-column: 1 / -1; }
  .cf-archive-arrow { grid-column: 2; grid-row: 2; }
  .site-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .cf-reveal { opacity: 1; transform: none; }
  .cf-parallax { transform: none !important; }
}


/* ==========================================================
   Cinefable 1.1 — Prestige editorial art direction
   Sleepborn-level restraint, Cinefable-native composition.
   ========================================================== */

/* Header refinement */
.site-header {
  background: rgba(230,236,234,.92);
  backdrop-filter: blur(16px) saturate(118%);
  -webkit-backdrop-filter: blur(16px) saturate(118%);
  border-bottom-color: rgba(77,102,104,.18);
}
.site-header.cf-scrolled {
  background: rgba(247,249,247,.94);
  box-shadow: 0 12px 36px rgba(22,28,30,.045);
}
.site-header__inner { min-height: 78px; }
.site-header.cf-scrolled .site-header__inner { min-height: 66px; }
.primary-navigation a,
.footer-navigation a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .065em;
  text-transform: uppercase;
}
.primary-navigation a::after,
.footer-navigation a::after {
  bottom: -10px;
  background: var(--cf-accent);
}

/* Hero: fewer devices, more editorial space */
.cf-hero {
  min-height: min(900px, calc(100svh - 78px));
  background:
    linear-gradient(180deg, rgba(7,26,29,.04), rgba(7,26,29,.18)),
    var(--cf-deep);
}
.cf-hero::before {
  width: min(48vw, 720px);
  height: min(48vw, 720px);
  right: -12vw;
  top: -20vw;
  border-color: rgba(247,249,247,.085);
}
.cf-hero::after {
  width: min(30vw, 470px);
  height: min(30vw, 470px);
  right: 5vw;
  top: 4vw;
  border-color: rgba(180,82,62,.34);
}
.cf-hero__grid {
  grid-template-columns: minmax(0,1.55fr) minmax(260px,.45fr);
  gap: clamp(80px,10vw,170px);
  align-items: center;
  padding-block: clamp(110px,13vw,175px) clamp(90px,10vw,130px);
}
.cf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  color: #9CB0AB;
  font-size: 10px;
  letter-spacing: .24em;
}
.cf-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: rgba(180,82,62,.9);
}
.cf-hero h1 {
  max-width: 940px;
  font-size: clamp(68px, 8.4vw, 132px);
  line-height: .91;
  letter-spacing: -.058em;
  font-weight: 400;
}
.cf-hero h1 em {
  color: #9CB0AB;
  font-style: italic;
  font-weight: 400;
}
.cf-hero__copy {
  max-width: 720px;
  margin-top: clamp(42px,5vw,68px);
  color: #CBD6D3;
  font-size: clamp(17px,1.32vw,20px);
  line-height: 1.8;
}
.cf-hero__copy p { max-width: 680px; margin-bottom: 20px; }
.cf-hero__copy p:last-child {
  width: fit-content;
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid rgba(247,249,247,.16);
  color: #F1F5F3;
  font-family: var(--cf-serif);
  font-size: 1.12em;
}
.cf-hero__evidence {
  position: relative;
  align-self: center;
  min-height: 360px;
  border: 0;
  border-top: 1px solid rgba(247,249,247,.17);
  border-bottom: 1px solid rgba(247,249,247,.11);
  padding: 30px 0 28px;
}
.cf-evidence-label {
  margin-bottom: 48px;
  color: #8FA6A0;
  font-size: 9px;
  letter-spacing: .25em;
}
.cf-evidence-row {
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-top-color: rgba(247,249,247,.1);
  color: #BFCBC8;
  font-size: 11px;
  line-height: 1.5;
}
.cf-evidence-row span:first-child {
  color: var(--cf-accent);
  font-size: 10px;
}
.cf-scroll-cue { opacity: .62; bottom: 24px; }

/* Intro: a quiet editorial interruption */
.cf-intro {
  padding: clamp(125px,15vw,210px) 0;
  background: var(--cf-bg);
}
.cf-intro__grid {
  grid-template-columns: minmax(140px,.38fr) minmax(0,1.62fr);
  gap: clamp(60px,10vw,170px);
}
.cf-intro__label {
  top: 118px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cf-secondary);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
}
.cf-intro__label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--cf-accent);
}
.cf-intro__statement {
  max-width: 1040px;
  font-size: clamp(50px,6vw,88px);
  line-height: .99;
  font-weight: 400;
  letter-spacing: -.045em;
}

/* Editorial index: do not announce itself like a generic homepage block */
.cf-explore__head {
  padding: 36px 0 34px;
  border-top: 1px solid var(--cf-border);
  border-bottom: 1px solid var(--cf-border);
  background: var(--cf-surface);
}
.cf-explore__head .cf-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cf-explore__head .cf-wrap::before {
  content: "EDITORIAL INDEX / 07";
  color: var(--cf-muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .24em;
}
.cf-explore__head h2 {
  font-family: var(--cf-sans);
  color: var(--cf-deep);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* Categories become individual editorial compositions instead of repeated rows. */
.cf-category {
  min-height: 72svh;
  background: var(--cf-surface);
  border-bottom-color: rgba(77,102,104,.18);
}
.cf-category:nth-of-type(odd) { background: var(--cf-surface); }
.cf-category:nth-of-type(even) { background: var(--cf-bg); }
.cf-category--dark {
  background: #102D31 !important;
  border-color: rgba(247,249,247,.105);
}
.cf-category__inner {
  min-height: 72svh;
  padding-block: clamp(110px,12vw,180px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  grid-template-rows: auto auto;
  column-gap: clamp(16px,2vw,30px);
  row-gap: 42px;
  align-items: center;
}
.cf-category__number {
  grid-row: 1;
  align-self: start;
  color: rgba(77,102,104,.16);
  font-size: clamp(88px,10vw,158px);
  font-weight: 400;
  line-height: .78;
}
.cf-category--dark .cf-category__number { color: rgba(247,249,247,.085); }
.cf-category__content {
  grid-row: 1;
  max-width: none;
  align-self: center;
}
.cf-category__content h3 {
  margin-bottom: 30px;
  max-width: 920px;
  font-size: clamp(56px,6.35vw,98px);
  line-height: .93;
  font-weight: 400;
  letter-spacing: -.052em;
}
.cf-category__content p {
  max-width: 640px;
  color: var(--cf-secondary);
  font-size: clamp(16px,1.28vw,19px);
  line-height: 1.78;
}
.cf-category--dark .cf-category__content p { color: #B9C8C4; }

/* CTA: tonal, underlined, no white/green fill flash. */
.cf-category__link {
  position: relative;
  grid-row: 2;
  justify-self: start;
  min-width: 0;
  width: fit-content;
  padding: 10px 0 9px;
  gap: 13px;
  color: var(--cf-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .19em;
  white-space: normal;
  transition: color .26s ease, letter-spacing .26s ease;
}
.cf-category--dark .cf-category__link { color: #D8E2DF; }
.cf-category__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: .32;
  transform-origin: left;
  transition: opacity .26s ease, background-color .26s ease, transform .26s ease;
}
.cf-category__link::after {
  content: "↗";
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  display: inline-block;
  color: var(--cf-accent);
  font-size: 15px;
  line-height: 1;
  transition: transform .26s cubic-bezier(.22,.61,.36,1), color .26s ease;
}
.cf-category__link:hover,
.cf-category__link:focus-visible {
  color: var(--cf-deep);
  letter-spacing: .205em;
}
.cf-category--dark .cf-category__link:hover,
.cf-category--dark .cf-category__link:focus-visible { color: #EEF3F1; }
.cf-category__link:hover::before,
.cf-category__link:focus-visible::before {
  opacity: .9;
  background: var(--cf-accent);
  transform: scaleX(.72);
}
.cf-category__link:hover::after,
.cf-category__link:focus-visible::after {
  transform: translate(4px,-4px);
  background: transparent;
  color: var(--cf-accent);
}
.cf-category--dark .cf-category__link:hover::after,
.cf-category--dark .cf-category__link:focus-visible::after {
  background: transparent;
  color: var(--cf-accent);
}

/* 01 History — archival margin */
.cf-category:nth-of-type(1) .cf-category__number { grid-column: 1 / 3; }
.cf-category:nth-of-type(1) .cf-category__content { grid-column: 3 / 10; }
.cf-category:nth-of-type(1) .cf-category__link { grid-column: 3 / 8; }
.cf-category:nth-of-type(1) .cf-art--history::before { left: 15%; }
.cf-category:nth-of-type(1) .cf-art--history::after { right: 8%; opacity: .6; }

/* 02 Space — title grounded left, orbit given the quiet right half */
.cf-category:nth-of-type(2) .cf-category__number { grid-column: 10 / 12; justify-self: end; }
.cf-category:nth-of-type(2) .cf-category__content { grid-column: 2 / 8; }
.cf-category:nth-of-type(2) .cf-category__link { grid-column: 2 / 7; }
.cf-art--space::before { width: min(46vw,760px); height: min(19vw,320px); right: -4vw; top: 20%; }
.cf-art--space::after { width: min(30vw,470px); height: min(30vw,470px); right: 9vw; bottom: -18vw; }

/* 03 Technology — information grid sits in the empty left field */
.cf-category:nth-of-type(3) .cf-category__number { grid-column: 1 / 3; align-self: end; }
.cf-category:nth-of-type(3) .cf-category__content { grid-column: 6 / 12; }
.cf-category:nth-of-type(3) .cf-category__link { grid-column: 6 / 10; }
.cf-art--tech {
  background-size: 56px 56px;
  opacity: .42;
  mask-image: linear-gradient(90deg,#000 0 38%,transparent 70%);
  -webkit-mask-image: linear-gradient(90deg,#000 0 38%,transparent 70%);
}

/* 04 Games — hardware geometry is secondary, not an icon card */
.cf-category:nth-of-type(4) .cf-category__number { grid-column: 10 / 12; justify-self: end; }
.cf-category:nth-of-type(4) .cf-category__content { grid-column: 2 / 8; }
.cf-category:nth-of-type(4) .cf-category__link { grid-column: 2 / 7; }
.cf-art--games::before {
  width: min(34vw,520px);
  height: min(18vw,270px);
  right: 7%;
  border-radius: 18px;
  opacity: .58;
}
.cf-art--games::after { opacity: .7; }

/* 05 Places — topographic field, large open title */
.cf-category:nth-of-type(5) .cf-category__number { grid-column: 8 / 10; justify-self: start; }
.cf-category:nth-of-type(5) .cf-category__content { grid-column: 2 / 8; }
.cf-category:nth-of-type(5) .cf-category__link { grid-column: 2 / 7; }
.cf-art--places::before { opacity: .72; right: -6vw; }

/* 06 Haunted — architecture is off-axis; copy sits opposite */
.cf-category:nth-of-type(6) .cf-category__number { grid-column: 1 / 3; }
.cf-category:nth-of-type(6) .cf-category__content { grid-column: 6 / 12; }
.cf-category:nth-of-type(6) .cf-category__link { grid-column: 6 / 11; }
.cf-art--haunted::before { right: auto; left: 8%; width: min(28vw,430px); height: min(28vw,430px); opacity: .6; }

/* 07 Survival — route line runs through negative space */
.cf-category:nth-of-type(7) .cf-category__number { grid-column: 1 / 3; align-self: end; }
.cf-category:nth-of-type(7) .cf-category__content { grid-column: 3 / 10; }
.cf-category:nth-of-type(7) .cf-category__link { grid-column: 3 / 8; }
.cf-art--survival::before { left: 8%; right: 5%; opacity: .7; }

/* Evidence section: cinnabar becomes an annotation, not a full-page billboard. */
.cf-truth {
  background: #102D31;
  color: var(--cf-surface);
  border-top: 1px solid rgba(247,249,247,.08);
}
.cf-truth::before {
  right: -3vw;
  top: 8%;
  color: rgba(247,249,247,.035);
  font-family: var(--cf-serif);
  font-weight: 400;
}
.cf-truth::after {
  content: "";
  position: absolute;
  top: 16%;
  bottom: 16%;
  left: calc((100% - min(calc(100% - 40px), var(--cf-max))) / 2);
  width: 1px;
  background: var(--cf-accent);
  opacity: .9;
}
.cf-truth__grid {
  padding-block: clamp(125px,15vw,210px);
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
}
.cf-truth h2 {
  padding-left: 30px;
  font-size: clamp(58px,6.7vw,96px);
  font-weight: 400;
}
.cf-truth__copy {
  color: #C4D0CD;
  font-size: clamp(17px,1.32vw,20px);
  line-height: 1.8;
}
.cf-truth__copy p:last-child {
  color: #F1F5F3;
  font-family: var(--cf-serif);
  font-size: 1.24em;
}

/* About returns to mineral lightness after the dark evidence field. */
.cf-about {
  position: relative;
  overflow: hidden;
  background: var(--cf-bg);
  color: var(--cf-ink);
  padding: clamp(125px,15vw,210px) 0;
}
.cf-about::after {
  content: "CINEFABLE";
  position: absolute;
  right: -1vw;
  bottom: -4vw;
  color: rgba(23,54,59,.035);
  font-family: var(--cf-serif);
  font-size: clamp(110px,17vw,290px);
  line-height: .8;
  letter-spacing: -.07em;
  pointer-events: none;
}
.cf-about__inner {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  align-items: start;
}
.cf-about h2 {
  color: var(--cf-deep);
  font-size: clamp(60px,6.7vw,96px);
  font-weight: 400;
}
.cf-about__copy {
  max-width: 650px;
  color: var(--cf-secondary);
  line-height: 1.8;
}
.cf-about__link {
  position: relative;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 0;
  color: var(--cf-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.cf-about__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--cf-accent);
  transform-origin: left;
  transition: transform .28s ease;
}
.cf-about__link:hover::after { transform: scaleX(.62); }

/* Inner pages inherit the same restraint. */
.cf-page-hero,
.cf-archive-hero {
  background: #102D31;
}
.cf-page-hero__eyebrow,
.cf-archive-hero__index {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #94AAA4;
  font-size: 9px;
  letter-spacing: .24em;
}
.cf-page-hero__eyebrow::before,
.cf-archive-hero__index::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--cf-accent);
}
.cf-page-hero h1,
.cf-archive-hero h1 { font-weight: 400; }
.cf-page-body { background: var(--cf-surface); }

/* Footer: quiet publication close rather than a utility block. */
.site-footer {
  background: #0D272B;
  padding: clamp(90px,10vw,130px) 0 32px;
}
.site-footer__top {
  grid-template-columns: minmax(0,1.35fr) minmax(0,.65fr);
  gap: 80px;
  padding-bottom: 72px;
}
.site-footer__brand {
  font-size: clamp(64px,8vw,118px);
  font-weight: 400;
  line-height: .83;
  letter-spacing: -.055em;
}
.site-footer__tagline {
  margin-top: 22px;
  color: #91A7A2;
  font-family: var(--cf-serif);
  font-size: clamp(18px,2vw,28px);
  font-style: italic;
}
.site-footer__note {
  margin-top: 42px;
  max-width: 520px;
  color: #96AAA5;
  font-size: 12px;
  line-height: 1.75;
}
.footer-navigation ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 18px;
  justify-items: start;
}
.site-footer__bottom {
  padding-top: 28px;
  color: #728A84;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Motion is already successful; refine rather than replace it. */
.cf-reveal {
  transform: translateY(22px);
  transition-duration: .82s;
  transition-timing-function: cubic-bezier(.19,.72,.22,1);
}
.cf-reveal-delay-1 { transition-delay: .07s; }
.cf-reveal-delay-2 { transition-delay: .14s; }
.cf-reveal-delay-3 { transition-delay: .21s; }

@media (max-width: 1120px) {
  .cf-category__inner {
    grid-template-columns: repeat(10,minmax(0,1fr));
    grid-template-rows: auto auto;
  }
  .cf-category:nth-of-type(n) .cf-category__number { grid-column: 1 / 3; justify-self: start; align-self: start; }
  .cf-category:nth-of-type(n) .cf-category__content { grid-column: 3 / 10; }
  .cf-category:nth-of-type(n) .cf-category__link { grid-column: 3 / 9; grid-row: 2; margin-top: 0; }
  .cf-category:nth-of-type(2) .cf-category__number,
  .cf-category:nth-of-type(4) .cf-category__number { grid-column: 8 / 10; justify-self: end; }
  .cf-category:nth-of-type(2) .cf-category__content,
  .cf-category:nth-of-type(4) .cf-category__content { grid-column: 2 / 8; }
  .cf-category:nth-of-type(2) .cf-category__link,
  .cf-category:nth-of-type(4) .cf-category__link { grid-column: 2 / 7; }
}

@media (max-width: 960px) {
  .cf-hero__grid { grid-template-columns: 1fr; gap: 80px; }
  .cf-hero__evidence { min-height: 0; max-width: 600px; }
  .cf-intro__grid,
  .cf-truth__grid,
  .cf-about__inner { grid-template-columns: 1fr; }
  .cf-intro__label { position: static; }
  .cf-truth::after { left: 20px; }
  .cf-truth h2,
  .cf-truth__copy { padding-left: 28px; }
  .site-footer__top { grid-template-columns: 1fr; }
  .footer-navigation { justify-self: start; }
}

@media (max-width: 680px) {
  .cf-hero__grid { padding-block: 96px 86px; gap: 64px; }
  .cf-hero h1 { font-size: clamp(58px,18vw,82px); }
  .cf-hero__copy { font-size: 16px; }
  .cf-intro { padding: 96px 0; }
  .cf-intro__statement { font-size: clamp(46px,13vw,62px); }
  .cf-explore__head .cf-wrap { align-items: flex-end; }
  .cf-explore__head .cf-wrap::before { font-size: 8px; }
  .cf-explore__head h2 { font-size: 9px; text-align: right; }
  .cf-category { min-height: auto; }
  .cf-category__inner {
    min-height: 590px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 26px;
    padding-block: 92px;
    align-content: center;
  }
  .cf-category:nth-of-type(n) .cf-category__number,
  .cf-category:nth-of-type(n) .cf-category__content,
  .cf-category:nth-of-type(n) .cf-category__link {
    grid-column: 1;
    justify-self: start;
  }
  .cf-category:nth-of-type(n) .cf-category__number { grid-row: 1; font-size: 74px; }
  .cf-category:nth-of-type(n) .cf-category__content { grid-row: 2; }
  .cf-category:nth-of-type(n) .cf-category__link { grid-row: 3; }
  .cf-category__content h3 { font-size: clamp(48px,14vw,66px); margin-bottom: 22px; }
  .cf-category__content p { max-width: 94%; font-size: 16px; }
  .cf-category__link { max-width: 92%; font-size: 9px; line-height: 1.6; }
  .cf-art--space::before { width: 520px; height: 210px; right: -290px; }
  .cf-art--space::after { width: 300px; height: 300px; right: -100px; bottom: -180px; }
  .cf-art--tech { opacity: .24; }
  .cf-art--games::before { width: 270px; height: 150px; right: -100px; }
  .cf-art--places::before { right: -260px; }
  .cf-art--haunted::before { left: auto; right: -90px; width: 260px; height: 260px; }
  .cf-truth__grid,
  .cf-about__inner { padding-block: 100px; }
  .cf-truth h2 { font-size: clamp(50px,14vw,68px); }
  .cf-about h2 { font-size: clamp(52px,14vw,70px); }
  .site-footer__brand { font-size: clamp(58px,18vw,82px); }
  .footer-navigation ul { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .cf-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .cf-parallax { transform: none !important; }
  .cf-category__link,
  .cf-category__link::before,
  .cf-category__link::after,
  .cf-about__link::after { transition: none !important; }
}


/* ==========================================================
   Cinefable 1.1.4 — responsive cleanup
   Remove decorative text that reads as accidental ghost copy.
   ========================================================== */

/* The oversized background wordmark looked like stray/faded copy in real use. */
.cf-about::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 680px) {
  /* Keep the archival geometry, but remove the vertical text strap on narrow screens. */
  .cf-art--history span {
    display: none !important;
  }
}
