/* ============================================================
   ZANE RA — zane-ra.com
   Gallery white. Cinematic pacing. The work is the color.
   Display: Fraunces (filmic high-contrast serif)
   Body:    Inter (quiet, refined sans)
   ============================================================ */

:root {
  --paper: #ffffff;
  --ink: #141414;
  --quiet: #8a8a8a;
  --whisper: #b6b6b6;
  --hair: #ececec;
  --sub-gap: 64px;   /* breathing room under light-grey subtitles */
  --col: 588px;
  --nav-h: 78px;
  --display: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
strong, b { font-weight: 500; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--paper); }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
}

.nav-wordmark {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-brand { display: flex; flex-direction: column; gap: 3px; }
.nav-tagline {
  font-family: var(--body);
  font-size: 9px;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--quiet);
  white-space: nowrap;
}
@media (max-width: 640px) { .nav-tagline { display: none; } }

.nav-links { display: flex; gap: 46px; list-style: none; }

.nav-links a {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.25s ease;
}

.nav-links a:hover { color: var(--quiet); }
.nav-links a.active { color: var(--whisper); pointer-events: none; }

a:focus-visible { outline: 1px solid var(--ink); outline-offset: 4px; }

/* ---------- Page scaffold ---------- */

main { padding-top: var(--nav-h); }

.page { max-width: var(--col); margin: 0 auto; padding: 0 28px; }

/* Filmic scroll reveal — hidden state gated by .js so no-JS users see everything */
.js .page .group,
.js .page .intertitle,
.js .page .closing,
.js .page .video-frame,
.js .page .contact-wrap,
.js .page .work-meta,
.js .page .act,
.js .page .page-title,
.js .page > p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.js .page .group.revealed,
.js .page .intertitle.revealed,
.js .page .closing.revealed,
.js .page .video-frame.revealed,
.js .page .contact-wrap.revealed,
.js .page .work-meta.revealed,
.js .page .act.revealed,
.js .page .page-title.revealed,
.js .page > p.revealed {
  opacity: 1;
  transform: none;
}
/* Breakout images keep their translateX(-50%) centering while revealing */
.js .page .evo-portrait,
.js .page .work-still,
.js .page .world-pair {
  opacity: 0;
  transform: translate(-50%, 16px);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.js .page .evo-portrait.revealed,
.js .page .work-still.revealed,
.js .page .world-pair.revealed {
  opacity: 1;
  transform: translateX(-50%);
}
@media (prefers-reduced-motion: reduce) {
  .js .page .group, .js .page .intertitle, .js .page .closing, .js .page .video-frame,
  .js .page .contact-wrap, .js .page .work-meta, .js .page .act, .js .page .page-title, .js .page > p {
    opacity: 1; transform: none; transition: none;
  }
  .js .page .evo-portrait, .js .page .work-still, .js .page .world-pair {
    opacity: 1; transform: translateX(-50%); transition: none;
  }
}

/* Hairline that fades in under the nav on scroll */
.nav { border-bottom: 0.5px solid transparent; transition: border-color 0.45s ease; }
.nav.scrolled { border-color: var(--hair); }

/* Film still band on Cinema — breaks out of the narrow text column */
.work-still {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, 92vw);
  margin: 56px 0 72px;
}
.work-still img { width: 100%; display: block; }
.work-still figcaption {
  font-family: var(--body); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--quiet);
  text-align: center; margin-top: 18px;
}

/* Side-by-side concept pair — matched 4:5 portrait frames */
.world-pair {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, 92vw);
  margin: 56px 0 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.world-pair figure { margin: 0; }
.world-pair .frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.world-pair .frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.world-pair figcaption {
  font-family: var(--body); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--quiet);
  text-align: center; margin-top: 18px;
}
@media (max-width: 620px) {
  .world-pair { grid-template-columns: 1fr; gap: 40px; }
}

/* Cinematic portrait band — breaks out of the narrow text column */
.evo-portrait {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, 92vw);
  margin: 110px 0;
}
.evo-portrait img { width: 100%; display: block; }
.evo-portrait figcaption {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--quiet);
  text-align: center;
  margin-top: 18px;
}

/* ---------- Type roles ---------- */

.page-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  margin: 150px 0 0;
}

.eyebrow {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--quiet);
  text-align: center;
}

.page .act {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--quiet);
  text-align: center;
  margin: 130px 0 var(--sub-gap);
}

.page .act:first-of-type { margin-top: 120px; }

/* Body groups: tight lines within, air between groups */
.page p { margin: 0; }

.group { margin: 0 0 34px; }
.group p + p { margin-top: 2px; }   /* fragmented lines sit close */

.lead { font-size: 15px; }

/* Cinematic intertitle — a held pause between movements */
.intertitle {
  font-family: var(--body);
  text-align: center;
  margin: 88px 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink);
}
.intertitle p + p { margin-top: 4px; }

/* THE TITLE CARD — arrives in silence */
.title-card {
  text-align: center;
  margin: 150px 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}
.title-card.reveal { opacity: 1; transform: none; }

.title-card .name {
  font-family: var(--display);
  font-size: clamp(52px, 9vw, 98px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.02;
  white-space: nowrap;
}

.title-card .sub {
  font-family: var(--body);
  font-style: italic;
  color: var(--quiet);
  margin-top: 40px;
  font-size: 15px;
}

/* Work presentation (Cinema) */
.work { margin: 0; }

.work-title {
  font-family: var(--display);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
  margin-bottom: 24px;
}
.work-title.wrap-ok { white-space: normal; font-style: normal; text-transform: none; }

.page .work-meta {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--quiet);
  line-height: 2.3;
  margin-bottom: var(--sub-gap);
}

.work-gap { height: 180px; }

.video-frame {
  margin: 60px 0 34px;
  aspect-ratio: 16 / 9;
  background: #f4f4f4;
  display: flex; align-items: center; justify-content: center;
}
.video-frame span {
  font-family: var(--body);
  font-size: 10.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--whisper);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.page .mood-note {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 300;
  color: var(--quiet);
  text-align: center;
  line-height: 1.75;
  max-width: 30rem;
  margin: 0 auto 30px;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-frame img.loop-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cta {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.cta:hover { color: var(--quiet); border-color: var(--quiet); }

/* ---------- ARTie access gate ---------- */
.artie-gate {
  max-width: 30rem;
  margin: 96px auto 0;
  text-align: center;
}
.artie-gate .eyebrow { margin-bottom: 16px; }
.page .gate-lead {
  font-size: 15px; font-weight: 300; color: var(--quiet);
  line-height: 1.7; margin: 0 auto 48px; max-width: 28rem;
}
.access-form { text-align: left; }
.access-form .field { margin-bottom: 24px; }
.access-form label {
  display: block;
  font-family: var(--body);
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--quiet);
  margin-bottom: 10px;
}
.access-form label span { text-transform: none; letter-spacing: 0.02em; color: var(--whisper); }
.access-form input,
.access-form textarea {
  width: 100%;
  font-family: var(--body); font-size: 15px; color: var(--ink);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--hair);
  padding: 8px 2px;
  transition: border-color 0.25s ease;
}
.access-form textarea { resize: vertical; line-height: 1.6; }
.access-form input:focus,
.access-form textarea:focus { outline: 0; border-color: var(--ink); }
.access-form .hp { position: absolute; left: -9999px; opacity: 0; }
.gate-submit {
  font-family: var(--body); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink);
  background: transparent; cursor: pointer;
  border: 0; border-bottom: 1px solid var(--ink);
  padding: 0 0 3px; margin-top: 16px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.gate-submit:hover { color: var(--quiet); border-color: var(--quiet); }
.gate-submit:disabled { color: var(--whisper); border-color: var(--whisper); cursor: default; }
.page .gate-status {
  font-size: 15px; font-weight: 300; line-height: 1.7;
  margin: 24px 0 0; color: var(--ink);
}
.gate-status.err { color: #b0403a; }
.page .gate-fallback {
  font-size: 13px; font-weight: 300; color: var(--quiet);
  margin: 44px 0 0;
}
.gate-fallback a { border-bottom: 1px solid var(--hair); padding-bottom: 1px; }
.gate-fallback a:hover { border-color: var(--quiet); }

.closing { margin: 120px 0 150px; text-align: center; }

/* ---------- Sigil watermark (bottom-left, every page) ---------- */
.sigil {
  position: fixed;
  left: 30px; bottom: 24px;
  width: 46px; height: auto;
  z-index: 60;
  opacity: 0.9;
  pointer-events: none;
}
/* Homepage sits over imagery — blend so the mark stays legible on any frame */
.sigil--hero { mix-blend-mode: difference; filter: brightness(0) invert(1); opacity: 0.85; }

@media (max-width: 760px) {
  .sigil { left: 16px; bottom: 14px; width: 34px; }
}

/* Instagram link — mirrors the sigil, bottom-right */
.ig-link {
  position: fixed;
  right: 32px; bottom: 24px;
  width: 25px; height: 25px;
  z-index: 60;
  color: var(--quiet);
  opacity: 0.9;
  transition: color 0.25s ease, opacity 0.25s ease;
}
.ig-link:hover { color: var(--ink); opacity: 1; }
.ig-link svg { width: 100%; height: 100%; display: block; }
@media (max-width: 760px) {
  .ig-link { right: 16px; bottom: 15px; width: 21px; height: 21px; }
}

/* ---------- Golden Hour (hidden) ---------- */
.gh-flare {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(62% 62% at 50% 44%, rgba(255,198,122,0.44), rgba(212,148,68,0.30) 42%, rgba(18,12,7,0.74) 100%);
  opacity: 0; transition: opacity 1.15s ease; cursor: pointer;
}
.gh-flare.on { opacity: 1; }
.gh-flare img {
  width: 72px; height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255,214,150,0.9));
  transform: translateY(12px) scale(0.9); transition: transform 1.3s cubic-bezier(.2,.7,.2,1);
}
.gh-flare.on img { transform: none; }
.gh-mantra {
  margin-top: 26px;
  font-family: var(--body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase; color: #fff;
  text-shadow: 0 0 16px rgba(255,214,150,0.85);
  opacity: 0; transition: opacity 1.5s ease 0.5s;
}
.gh-flare.on .gh-mantra { opacity: 0.96; }
@media (prefers-reduced-motion: reduce) {
  .gh-flare, .gh-flare img, .gh-mantra { transition: opacity 0.35s ease; }
}

/* ---------- Homepage hero ---------- */

.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 480px;
  overflow: hidden;
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s ease; }
.hero-slide.on { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }

.hero-caption {
  position: absolute;
  right: 52px; bottom: 42px;
  text-align: right;
  font-family: var(--body);
  font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: #fff;
  mix-blend-mode: difference; z-index: 5;
}

/* ---------- Archive ---------- */

.archive-flow {
  max-width: 1100px; margin: 0 auto;
  padding: 36px 28px 130px;
  column-count: 2; column-gap: 52px;
}
.archive-flow figure { break-inside: avoid; margin: 0 0 52px; }
.archive-flow img { width: 100%; transition: transform 0.5s ease; }
.archive-flow a:hover img { transform: scale(1.02); }

/* ---------- Inquiries ---------- */

.contact-wrap { max-width: 30rem; margin: 72px 0 0; }
.access-form select {
  width: 100%;
  font-family: var(--body); font-size: 15px; color: var(--ink);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--hair);
  padding: 8px 2px; border-radius: 0;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%238a8a8a' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
  cursor: pointer;
}
.access-form select:focus { outline: 0; border-color: var(--ink); }
.access-form select:invalid { color: var(--whisper); }

.end-space { height: 150px; }

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  .nav { padding: 0 24px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 9px; letter-spacing: 0.13em; }
  .nav-wordmark {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
  .page-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  margin: 150px 0 0;
}
  .page .act {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--quiet);
  text-align: center;
  margin: 130px 0 var(--sub-gap);
}
  .intertitle {
  font-family: var(--body);
  text-align: center;
  margin: 88px 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink);
}
  .title-card { margin: 104px 0; }
  .work-title {
  font-family: var(--display);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
  margin-bottom: 24px;
}
  .work-gap { height: 120px; }
  .archive-flow { column-count: 1; }
  .hero-caption { left: 24px; bottom: 28px; }
}

@media (max-width: 520px) {
  .nav { flex-direction: column; height: auto; padding: 15px 24px 13px; gap: 11px; }
  :root { --nav-h: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .archive-flow img { transition: none; }
  .title-card { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Archive: mixed layout engine ---------- */

.archive-wrap { max-width: 1180px; margin: 0 auto; padding: 30px 40px 140px; }

.arch-row { display: flex; gap: 48px; margin-bottom: 48px; align-items: flex-start; }
.arch-row.pair > .arch-item { flex: 1 1 0; }
.arch-row.single { justify-content: center; }
.arch-row.single > .arch-item { flex: 0 1 78%; }

.arch-item { position: relative; }
.arch-item img { width: 100%; display: block; }
.arch-item video { width: 100%; display: block; }

/* spinning-ball cutouts: own row, smaller, floating on paper; placement varies */
.arch-row.ball { margin: 70px 0; }
.arch-row.ball > .arch-item { flex: 0 1 300px; }
.arch-row.ball.ball-left   { justify-content: flex-start; }
.arch-row.ball.ball-center { justify-content: center; }
.arch-row.ball.ball-right  { justify-content: flex-end; }

/* zoomable */
.arch-item.zoom { cursor: zoom-in; }
.arch-item.zoom img { transition: transform 0.6s cubic-bezier(.2,.7,.2,1); }
.arch-item.zoom:hover img { transform: scale(1.03); }

/* Playable film in the archive feed — poster + play badge, opens in lightbox */
.arch-row.single > .arch-item.arch-video { flex-basis: 88%; }
.play-badge {
  position: absolute; top: 50%; left: 50%;
  width: 64px; height: 64px; transform: translate(-50%, -50%);
  border-radius: 50%; background: rgba(20, 20, 20, 0.4);
  pointer-events: none; transition: background 0.3s ease;
}
.play-badge::after {
  content: ''; position: absolute; top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid; border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent #fff;
}
.arch-item.arch-video:hover .play-badge { background: rgba(20, 20, 20, 0.58); }

/* spinning cutouts (bowling balls, later) */
@keyframes spin-cw  { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes spin-ccw { from { transform: rotate(0); } to { transform: rotate(-360deg); } }
.arch-item.spin-cw img  { animation: spin-cw 14s linear infinite; }
.arch-item.spin-ccw img { animation: spin-ccw 16s linear infinite; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  display: none; align-items: center; justify-content: center;
  padding: 5vh 5vw; cursor: zoom-out;
}
.lightbox.on { display: flex; }
.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; max-width: 100%; }
.lb-figure img,
.lb-figure video { max-width: 100%; max-height: 82vh; object-fit: contain; display: block; }
.lb-media { display: block; line-height: 0; }
.lb-media video { width: min(1180px, 92vw); }
.lb-figure figcaption {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--quiet);
  text-align: center;
  margin-top: 18px;
}
.lb-figure figcaption em { font-style: italic; }

/* Timeline gauge — 2005 to 2018, appears on dated works */
.lb-timeline {
  position: fixed;
  right: clamp(20px, 4vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  height: 44vh;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  pointer-events: none;
  animation: lb-tl-in 0.6s ease both;
}
@keyframes lb-tl-in { from { opacity: 0; } to { opacity: 1; } }
.lb-tl-end {
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--whisper);
}
.lb-tl-track {
  position: relative;
  flex: 1;
  width: 1px;
  background: rgba(20,20,20,0.14);
}
.lb-tl-mark {
  position: absolute;
  left: 50%;
  top: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: top 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.lb-tl-mark::after {
  content: attr(data-year);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--quiet);
  white-space: nowrap;
}
@media (max-width: 620px) { .lb-timeline { display: none !important; } }

@media (max-width: 760px) {
  .archive-wrap { padding: 20px 20px 100px; }
  .arch-row { gap: 20px; margin-bottom: 20px; }
  .arch-row.single > .arch-item { flex-basis: 100%; }
  .arch-item.spin-cw img, .arch-item.spin-ccw img { animation-duration: 20s; }
}

@media (max-width: 560px) {
  .arch-row.pair { flex-direction: column; gap: 26px; }
  .arch-row.single > .arch-item { flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .arch-item.spin-cw img, .arch-item.spin-ccw img { animation: none; }
  .arch-item.zoom img { transition: none; }
}


/* Consistent breathing room under page title when no ACT label follows */
.page-title + .group,
.page-title + p,
.page-title + .work,
.page-title + .contact-block,
.page-title + .intertitle { margin-top: 96px; }

/* Cinema: space under the work-meta subtext before body, and under title */
.work .work-title { margin-top: 0; }
